javauis/eswt_qt/org.eclipse.swt/Eclipse_SWT_PI/qt/org/eclipse/swt/widgets/Internal_PackageSupport.java
changeset 79 2f468c1958d0
parent 61 bf7ee68962da
equal deleted inserted replaced
76:4ad59aaee882 79:2f468c1958d0
    11 
    11 
    12 package org.eclipse.swt.widgets;
    12 package org.eclipse.swt.widgets;
    13 
    13 
    14 import org.eclipse.ercp.swt.mobile.Command;
    14 import org.eclipse.ercp.swt.mobile.Command;
    15 import org.eclipse.ercp.swt.mobile.MobileDevice;
    15 import org.eclipse.ercp.swt.mobile.MobileDevice;
       
    16 import org.eclipse.swt.graphics.GC;
    16 import org.eclipse.swt.graphics.Image;
    17 import org.eclipse.swt.graphics.Image;
    17 import org.eclipse.swt.graphics.Point;
    18 import org.eclipse.swt.graphics.Point;
       
    19 import org.eclipse.swt.graphics.Rectangle;
    18 import org.eclipse.swt.internal.qt.CommandArranger;
    20 import org.eclipse.swt.internal.qt.CommandArranger;
    19 import org.eclipse.swt.internal.qt.SymbianWindowVisibilityListener;
    21 import org.eclipse.swt.internal.qt.SymbianWindowVisibilityListener;
    20 import org.eclipse.swt.internal.qt.graphics.WindowSurface;
    22 import org.eclipse.swt.internal.qt.graphics.WindowSurface;
    21 
    23 
    22 /**
    24 /**
   202     return w.sendKeyEvent(type, key, modifier, character, nativeScanCode);
   204     return w.sendKeyEvent(type, key, modifier, character, nativeScanCode);
   203 }
   205 }
   204 /*
   206 /*
   205  * From the class Control
   207  * From the class Control
   206  */
   208  */
       
   209 public static void endWindowSurfaceSession(Control c) {
       
   210 	c.endWindowSurfaceSession();
       
   211 }
   207 public static int extraStyle(Control c) {
   212 public static int extraStyle(Control c) {
   208     return c.extraStyle;
   213     return c.extraStyle;
   209 }
   214 }
   210 public static void setExtraStyle(Control c, int extraStyle) {
   215 public static void setExtraStyle(Control c, int extraStyle) {
   211     c.extraStyle = extraStyle;
   216     c.extraStyle = extraStyle;
   248     return c.setTabGroupFocus_pp();
   253     return c.setTabGroupFocus_pp();
   249 }
   254 }
   250 public static void setTraversalFlags(Control c, int type, int key, int modifier, int character) {
   255 public static void setTraversalFlags(Control c, int type, int key, int modifier, int character) {
   251     c.setTraversalFlags_pp(type, key, modifier, character);
   256     c.setTraversalFlags_pp(type, key, modifier, character);
   252 }
   257 }
       
   258 public static Rectangle startWindowSurfaceSession(Control c, Rectangle clip) {
       
   259 	return c.startWindowSurfaceSession(clip);
       
   260 }
       
   261 public static Rectangle toWindowSurface(Control c, Rectangle rect) {
       
   262 	return c.toWindowSurface(rect);
       
   263 }
       
   264 
   253 /*
   265 /*
   254  * From the class Scrollable
   266  * From the class Scrollable
   255  */
   267  */
   256 public static int scrollAreaHandle(Scrollable s) {
   268 public static int scrollAreaHandle(Scrollable s) {
   257     return s.scrollAreaHandle;
   269     return s.scrollAreaHandle;