comparison dwt/internal/BidiUtil.d @ 240:ce446666f5a2

Update to SWT 3.4M7
author Frank Benoit <benoit@tionex.de>
date Mon, 12 May 2008 19:13:01 +0200
parents 380bad9f6852
children c0d810de7093
comparison
equal deleted inserted replaced
239:06a1f6829310 240:ce446666f5a2
13 module dwt.internal.BidiUtil; 13 module dwt.internal.BidiUtil;
14 14
15 import dwt.dwthelper.utils; 15 import dwt.dwthelper.utils;
16 16
17 import dwt.graphics.GC; 17 import dwt.graphics.GC;
18 import dwt.widgets.Control;
19 import dwt.dwthelper.Runnable;
18 import dwt.internal.gtk.OS; 20 import dwt.internal.gtk.OS;
19 import dwt.dwthelper.Runnable;
20 21
21 /* 22 /*
22 * This class is supplied so that the StyledText code that supports bidi text (supported 23 * This class is supplied so that the StyledText code that supports bidi text (supported
23 * for win platforms) is not platform dependent. Bidi text is not implemented on 24 * for win platforms) is not platform dependent. Bidi text is not implemented on
24 * emulated platforms. 25 * emulated platforms.
46 47
47 /* 48 /*
48 * Not implemented. 49 * Not implemented.
49 */ 50 */
50 public static void addLanguageListener(GtkWidget* hwnd, Runnable runnable) { 51 public static void addLanguageListener(GtkWidget* hwnd, Runnable runnable) {
52 }
53 public static void addLanguageListener (Control control, Runnable runnable) {
51 } 54 }
52 /* 55 /*
53 * Not implemented. 56 * Not implemented.
54 * 57 *
55 */ 58 */
96 /* 99 /*
97 * Not implemented. 100 * Not implemented.
98 */ 101 */
99 public static void removeLanguageListener(GtkWidget* hwnd) { 102 public static void removeLanguageListener(GtkWidget* hwnd) {
100 } 103 }
104 public static void removeLanguageListener (Control control) {
105 }
101 /* 106 /*
102 * Not implemented. 107 * Not implemented.
103 */ 108 */
104 public static void setKeyboardLanguage(int language) { 109 public static void setKeyboardLanguage(int language) {
105 } 110 }
107 * Not implemented. 112 * Not implemented.
108 */ 113 */
109 public static bool setOrientation(GtkWidget* hwnd, int orientation) { 114 public static bool setOrientation(GtkWidget* hwnd, int orientation) {
110 return false; 115 return false;
111 } 116 }
117 public static bool setOrientation (Control control, int orientation) {
118 return false;
112 } 119 }
120 }