diff -r 4ad59aaee882 -r 2f468c1958d0 javauis/eswt_qt/org.eclipse.swt/Eclipse_SWT_PI/qt/org/eclipse/swt/widgets/Internal_PackageSupport.java --- a/javauis/eswt_qt/org.eclipse.swt/Eclipse_SWT_PI/qt/org/eclipse/swt/widgets/Internal_PackageSupport.java Fri Sep 17 08:28:21 2010 +0300 +++ b/javauis/eswt_qt/org.eclipse.swt/Eclipse_SWT_PI/qt/org/eclipse/swt/widgets/Internal_PackageSupport.java Mon Oct 04 00:10:53 2010 +0300 @@ -13,8 +13,10 @@ import org.eclipse.ercp.swt.mobile.Command; import org.eclipse.ercp.swt.mobile.MobileDevice; +import org.eclipse.swt.graphics.GC; import org.eclipse.swt.graphics.Image; import org.eclipse.swt.graphics.Point; +import org.eclipse.swt.graphics.Rectangle; import org.eclipse.swt.internal.qt.CommandArranger; import org.eclipse.swt.internal.qt.SymbianWindowVisibilityListener; import org.eclipse.swt.internal.qt.graphics.WindowSurface; @@ -204,6 +206,9 @@ /* * From the class Control */ +public static void endWindowSurfaceSession(Control c) { + c.endWindowSurfaceSession(); +} public static int extraStyle(Control c) { return c.extraStyle; } @@ -250,6 +255,13 @@ public static void setTraversalFlags(Control c, int type, int key, int modifier, int character) { c.setTraversalFlags_pp(type, key, modifier, character); } +public static Rectangle startWindowSurfaceSession(Control c, Rectangle clip) { + return c.startWindowSurfaceSession(clip); +} +public static Rectangle toWindowSurface(Control c, Rectangle rect) { + return c.toWindowSurface(rect); +} + /* * From the class Scrollable */