javauis/eswt_qt/org.eclipse.swt/Eclipse_SWT_PI/qt/org/eclipse/swt/graphics/Internal_GfxPackageSupport.java
changeset 72 1f0034e370aa
parent 57 59b3b4473dc8
child 80 d6dafc5d983f
--- a/javauis/eswt_qt/org.eclipse.swt/Eclipse_SWT_PI/qt/org/eclipse/swt/graphics/Internal_GfxPackageSupport.java	Thu Sep 02 13:22:59 2010 +0300
+++ b/javauis/eswt_qt/org.eclipse.swt/Eclipse_SWT_PI/qt/org/eclipse/swt/graphics/Internal_GfxPackageSupport.java	Fri Sep 17 16:44:34 2010 +0300
@@ -13,6 +13,8 @@
 
 import java.io.InputStream;
 
+import org.eclipse.swt.internal.qt.graphics.WindowSurface;
+
 /**
  * <p>
  * <b>IMPORTANT:</b> This class is <em>not</em> part of the SWT public API. It
@@ -80,4 +82,20 @@
     return Font.qt_new(device, handle);
 }
 
+/* 
+ * From class GC
+ */
+
+public static Rectangle startExternalRendering(GC gc) {
+	return gc.startExternalRendering();
 }
+
+public static void endExternalRendering(GC gc) {
+	gc.endExternalRendering();
+}
+
+public static WindowSurface getWindowSurface(GC gc) {
+	return gc.getWindowSurface();
+}
+
+}