javauis/eswt_qt/org.eclipse.swt/Eclipse_SWT_PI/qt/library/graphics/qt/imageimpl.h
changeset 80 d6dafc5d983f
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/javauis/eswt_qt/org.eclipse.swt/Eclipse_SWT_PI/qt/library/graphics/qt/imageimpl.h	Fri Oct 15 12:29:39 2010 +0300
@@ -0,0 +1,68 @@
+/*******************************************************************************
+ * Copyright (c) 2008, 2010 Nokia Corporation and/or its subsidiary(-ies).
+ * 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:
+ *     Nokia Corporation - initial API and implementation
+ *******************************************************************************/
+#ifndef IMAGEIMPL_H_
+#define IMAGEIMPL_H_
+
+#include <QImage>
+#include "imagebase.h"
+
+namespace Java { namespace GFX {
+
+class ImageImpl: public ImageBase
+    {
+public:
+    /**
+      * Ctor
+      */
+    ImageImpl();
+    
+    /**
+     * Dtor
+     */    
+    virtual ~ImageImpl();
+    
+    /**
+     * from Image
+     * @see Image
+     */
+    virtual void createBySize(int aWidth, int aHeight, int aFillColor, TImageFormat aFormat);
+    virtual void createFromQImage(const QImage& aImage);
+    virtual void createFromQPixmap(const QPixmap& aPixmap);
+    virtual void createFromImage(Image* aImage, int aX, int aY, int aWidth, int aHeight);
+    virtual void createFromImageData(ImageDataWrapper* aData);
+    virtual void createFromRGB(int* aRgbdata, int aWidth, int aHeight, bool aHasAlpha);
+    virtual void dispose();
+    virtual QPaintDevice* getBindable();
+    virtual TImageFormat getFormat();
+    virtual int getHeight();
+    virtual const QImage* getConstImage();
+    virtual QImage* getImage();
+    virtual const QPixmap* getConstPixmap();
+    virtual QPixmap* getPixmap();
+    virtual void getRgb(int* aRgbdata, int aOffset, int aScanlength, int aX, int aY, int aWidth, int aHeight);
+    virtual void getRgb(char* aRgbdata, char* aTransparencyMask,int aOffset, int aScanlength, int aX, int aY, int aWidth, int aHeight, int aFormat);
+    virtual void getRgb(short* aRgbdata, int aOffset, int aScanlength, int aX, int aY, int aWidth, int aHeight, int aFormat);
+    virtual int getWidth();
+    virtual const QImage toConstImage();
+    virtual QImage toImage();
+    virtual QPixmap toPixmap();
+    virtual void transform(TTransform aTransform);
+    virtual TImageType type();
+    virtual bool hasAlphaChannel();
+    
+private:
+    QImage   mImage;
+    };
+
+} // namespace GFX
+} // namespace Java
+
+#endif /* IMAGEIMPL_H_ */