diff dwt/dnd/ImageTransfer.d @ 240:ce446666f5a2

Update to SWT 3.4M7
author Frank Benoit <benoit@tionex.de>
date Mon, 12 May 2008 19:13:01 +0200
parents
children c0d810de7093
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/dwt/dnd/ImageTransfer.d	Mon May 12 19:13:01 2008 +0200
@@ -0,0 +1,194 @@
+/*******************************************************************************
+ * Copyright (c) 2000, 2004 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+module dwt.dnd.ImageTransfer;
+
+import dwt.DWT;
+import dwt.graphics.Image;
+import dwt.graphics.ImageData;
+import dwt.internal.Converter;
+import dwt.internal.gtk.OS;
+import dwt.widgets.Display;
+import dwt.dnd.ByteArrayTransfer;
+import dwt.dnd.TransferData;
+import dwt.dnd.DND;
+
+import dwt.dwthelper.utils;
+
+/**
+ * The class <code>ImageTransfer</code> provides a platform specific mechanism
+ * for converting a Image represented as a java <code>ImageData</code> to a
+ * platform specific representation of the data and vice versa.
+ * See <code>Transfer</code> for additional information.
+ *
+ * <p>An example of a java <code>ImageData</code> is shown
+ * below:</p>
+ *
+ * <code><pre>
+ *     Image image = new Image("C:\temp\img1.gif");
+ *     ImageData imgData = image.getImageData();
+ * </code></pre>
+ */
+public class ImageTransfer : ByteArrayTransfer {
+
+    private static ImageTransfer _instance;
+
+    private static const String JPEG = "image/jpge"; //$NON-NLS-1$
+    private static int JPEG_ID;
+    private static const String PNG = "image/png"; //$NON-NLS-1$
+    private static int PNG_ID;
+    private static const String BMP = "image/bmp"; //$NON-NLS-1$
+    private static int BMP_ID;
+    private static const String EPS = "image/eps"; //$NON-NLS-1$
+    private static int EPS_ID;
+    private static const String PCX = "image/pcx"; //$NON-NLS-1$
+    private static int PCX_ID;
+    private static const String PPM = "image/ppm"; //$NON-NLS-1$
+    private static int PPM_ID;
+    private static const String RGB = "image/ppm"; //$NON-NLS-1$
+    private static int RGB_ID;
+    private static const String TGA = "image/tga"; //$NON-NLS-1$
+    private static int TGA_ID;
+    private static const String XBM = "image/xbm"; //$NON-NLS-1$
+    private static int XBM_ID;
+    private static const String XPM = "image/xpm"; //$NON-NLS-1$
+    private static int XPM_ID;
+    private static const String XV = "image/xv"; //$NON-NLS-1$
+    private static int XV_ID;
+
+static this(){
+    JPEG_ID = registerType(JPEG);
+    PNG_ID = registerType(PNG);
+    BMP_ID = registerType(BMP);
+    EPS_ID = registerType(EPS);
+    PCX_ID = registerType(PCX);
+    PPM_ID = registerType(PPM);
+    RGB_ID = registerType(RGB);
+    TGA_ID = registerType(TGA);
+    XBM_ID = registerType(XBM);
+    XPM_ID = registerType(XPM);
+    XV_ID = registerType(XV);
+    _instance = new ImageTransfer();
+}
+
+private this() {
+}
+
+/**
+ * Returns the singleton instance of the ImageTransfer class.
+ *
+ * @return the singleton instance of the ImageTransfer class
+ */
+public static ImageTransfer getInstance () {
+    return _instance;
+}
+
+/**
+ * This implementation of <code>javaToNative</code> converts an ImageData object represented
+ * by java <code>ImageData</code> to a platform specific representation.
+ * For additional information see <code>Transfer#javaToNative</code>.
+ *
+ * @param object a java <code>ImageData</code> containing the ImageData to be
+ * converted
+ * @param transferData an empty <code>TransferData</code> object; this
+ *  object will be filled in on return with the platform specific format of the data
+ */
+public void javaToNative(Object object, TransferData transferData) {
+    if (!checkImage(object) || !isSupportedType(transferData)) {
+        DND.error(DND.ERROR_INVALID_DATA);
+    }
+    if (OS.GTK_VERSION < OS.buildVERSION (2, 4, 0)) return;
+
+    ImageData imgData = cast(ImageData)object;
+    if (imgData is null) DWT.error(DWT.ERROR_NULL_ARGUMENT);
+    Image image = new Image(Display.getCurrent(), imgData);
+    auto pixmap = image.pixmap;
+    int width = imgData.width;
+    int height = imgData.height;
+    auto pixbuf = OS.gdk_pixbuf_new(OS.GDK_COLORSPACE_RGB, true, 8, width, height);
+    if (pixbuf is null) DWT.error(DWT.ERROR_NO_HANDLES);
+    auto colormap = OS.gdk_colormap_get_system();
+    OS.gdk_pixbuf_get_from_drawable(pixbuf, pixmap, colormap, 0, 0, 0, 0, width, height);
+
+    String typeStr = "";
+    if (transferData.type is  cast(void*)JPEG_ID) typeStr = "jpeg";
+    if (transferData.type is  cast(void*)PNG_ID) typeStr = "png";
+    if (transferData.type is  cast(void*)BMP_ID) typeStr = "bmp";
+    if (transferData.type is  cast(void*)EPS_ID) typeStr = "eps";
+    if (transferData.type is  cast(void*)PCX_ID) typeStr = "pcx";
+    if (transferData.type is  cast(void*)PPM_ID) typeStr = "ppm";
+    if (transferData.type is  cast(void*)RGB_ID) typeStr = "rgb";
+    if (transferData.type is  cast(void*)TGA_ID) typeStr = "tga";
+    if (transferData.type is  cast(void*)XBM_ID) typeStr = "xbm";
+    if (transferData.type is  cast(void*)XPM_ID) typeStr = "xpm";
+    if (transferData.type is  cast(void*)XV_ID) typeStr = "xv";
+    char* type = typeStr.ptr;
+    char* buffer;
+    uint len;
+    if (type is null) return;
+    OS.gdk_pixbuf_save_to_buffer0(pixbuf, &buffer, &len, type, null);
+    OS.g_object_unref(pixbuf);
+    image.dispose();
+    transferData.pValue = buffer;
+    transferData.length = (len + 3) / 4 * 4;
+    transferData.result = 1;
+    transferData.format = 32;
+}
+
+/**
+ * This implementation of <code>nativeToJava</code> converts a platform specific
+ * representation of an <code>ImageData</code> to java.
+ * For additional information see <code>Transfer#nativeToJava</code>.
+ *
+ * @param transferData the platform specific representation of the data to be
+ * been converted
+ * @return a java <code>ImageData</code> the imageData of the image if
+ * conversion was successful; otherwise null
+ */
+public Object nativeToJava(TransferData transferData) {
+    ImageData imgData = null;
+    if (transferData.length > 0)
+    {
+        auto loader = OS.gdk_pixbuf_loader_new();
+        OS.gdk_pixbuf_loader_write(loader, transferData.pValue, transferData.length, null);
+        OS.gdk_pixbuf_loader_close(loader, null);
+        auto pixbuf = OS.gdk_pixbuf_loader_get_pixbuf(loader);
+        if (pixbuf !is null) {
+            OS.g_object_ref(pixbuf);
+            GdkPixmap* pixmap_return;
+            OS.gdk_pixbuf_render_pixmap_and_mask(pixbuf, &pixmap_return, null, 0);
+            auto handle = pixmap_return;
+            if (handle is null) DWT.error(DWT.ERROR_NO_HANDLES);
+            OS.g_object_unref(loader);
+            Image img = Image.gtk_new(Display.getCurrent(), DWT.BITMAP, handle, null);
+            imgData = img.getImageData();
+            img.dispose();
+        }
+    }
+    return imgData;
+}
+
+protected int[] getTypeIds(){
+    return [JPEG_ID, PNG_ID, BMP_ID, EPS_ID, PCX_ID, PPM_ID, RGB_ID, TGA_ID, XBM_ID, XPM_ID, XV_ID];
+}
+
+protected String[] getTypeNames(){
+    return [JPEG, PNG, BMP, EPS, PCX, PPM, RGB, TGA, XBM, XPM, XV];
+}
+
+bool checkImage(Object object) {
+    if (object is null || !( null !is cast(ImageData)object )) return false;
+    return true;
+}
+
+protected bool validate(Object object) {
+    return checkImage(object);
+}
+}