javauis/eswt_qt/org.eclipse.swt/Eclipse_SWT_PI/qt/org/eclipse/swt/widgets/Internal_PackageSupport.java
changeset 35 85266cc22c7f
parent 23 98ccebc37403
child 47 f40128debb5d
child 49 35baca0e7a2e
--- a/javauis/eswt_qt/org.eclipse.swt/Eclipse_SWT_PI/qt/org/eclipse/swt/widgets/Internal_PackageSupport.java	Thu May 27 12:49:31 2010 +0300
+++ b/javauis/eswt_qt/org.eclipse.swt/Eclipse_SWT_PI/qt/org/eclipse/swt/widgets/Internal_PackageSupport.java	Fri Jun 11 13:33:44 2010 +0300
@@ -13,9 +13,9 @@
 
 import org.eclipse.ercp.swt.mobile.Command;
 import org.eclipse.ercp.swt.mobile.MobileDevice;
-import org.eclipse.ercp.swt.mobile.TextExtension;
 import org.eclipse.swt.graphics.Image;
 import org.eclipse.swt.graphics.Point;
+import org.eclipse.swt.internal.qt.CommandArranger;
 import org.eclipse.swt.internal.qt.graphics.WindowSurface;
 
 /**
@@ -348,17 +348,29 @@
 public static Display getDisplayInstance() {
     return Display.Default;
 }
+public static Display getInternalDisplayInstance() {
+    return Display.Internal;	
+}
+public static Display internalInstance() {
+	return Display.internalInstance();
+}
 public static Widget getDWidget(Display display, int widgetHandle) {
-    return display.getWidget(widgetHandle);
+    return Display.getWidget(widgetHandle);
 }
 public static int initializeMobileDevice(Display display) {
-    return display.initializeMobileDevice();
+    return Display.initializeMobileDevice();
 }
 public static int handle(Display d) {
-    return d.handle;
+    return Display.handle;
 }
 public static Point readAndClearImageLoadSize(Display d) {
-	return d.readAndClearImageLoadSize();
+	return Display.readAndClearImageLoadSize();
+}
+public static CommandArranger commandArranger() {
+	return Display.commandArranger;
+}
+public static int untranslateKey (int key) {
+	return Display.untranslateKey(key);
 }
 /*
  * From the class Label
@@ -368,7 +380,7 @@
 }
 
 public static void setMobileDevice(Display display, MobileDevice mobileDevice){
-	display.mobileDevice = mobileDevice;
+	Display.mobileDevice = mobileDevice;
 }
 
 }