summaryrefslogtreecommitdiffstats
path: root/awt/java/awt/Toolkit.java
blob: e38d5240208ecbf27ba521009b290df80f15ee76 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
/*
 *  Licensed to the Apache Software Foundation (ASF) under one or more
 *  contributor license agreements.  See the NOTICE file distributed with
 *  this work for additional information regarding copyright ownership.
 *  The ASF licenses this file to You under the Apache License, Version 2.0
 *  (the "License"); you may not use this file except in compliance with
 *  the License.  You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the License for the specific language governing permissions and
 *  limitations under the License.
 */

package java.awt;

import java.awt.event.AWTEventListener;
import java.awt.event.AWTEventListenerProxy;
import java.awt.event.InputEvent;
import java.awt.im.InputMethodHighlight;
import java.awt.image.ColorModel;
import java.awt.image.ImageObserver;
import java.awt.image.ImageProducer;
import java.awt.peer.FontPeer;
import java.beans.PropertyChangeListener;
import java.beans.PropertyChangeSupport;

import java.lang.reflect.InvocationTargetException;
import java.net.URL;
import java.security.AccessController;
import java.security.PrivilegedAction;
import java.util.Collections;
import java.util.EventListener;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Iterator;
import java.util.Map;
import java.util.MissingResourceException;
import java.util.Properties;
import java.util.ResourceBundle;

import org.apache.harmony.awt.ChoiceStyle;
import org.apache.harmony.awt.ComponentInternals;
import org.apache.harmony.awt.ContextStorage;
import org.apache.harmony.awt.ReadOnlyIterator;
import org.apache.harmony.awt.internal.nls.Messages;
import org.apache.harmony.awt.wtk.CreationParams;
import org.apache.harmony.awt.wtk.GraphicsFactory;
import org.apache.harmony.awt.wtk.NativeCursor;

import org.apache.harmony.awt.wtk.NativeEventQueue;
import org.apache.harmony.awt.wtk.NativeEventThread;
import org.apache.harmony.awt.wtk.ShutdownWatchdog;
import org.apache.harmony.awt.wtk.Synchronizer;
import org.apache.harmony.awt.wtk.WTK;
import org.apache.harmony.luni.util.NotImplementedException;

/**
 * The Toolkit class is the representation of the platform-specific Abstract
 * Window Toolkit implementation. Toolkit's subclasses are used to bind the
 * various components to particular native toolkit implementations.
 * 
 * @since Android 1.0
 */
public abstract class Toolkit {

    /**
     * The Constant RECOURCE_PATH.
     */
    private static final String RECOURCE_PATH = "org.apache.harmony.awt.resources.AWTProperties"; //$NON-NLS-1$

    /**
     * The Constant properties.
     */
    private static final ResourceBundle properties = loadResources(RECOURCE_PATH);

    /**
     * The dispatcher.
     */
    Dispatcher dispatcher;

    /**
     * The system event queue core.
     */
    private EventQueueCore systemEventQueueCore;

    /**
     * The dispatch thread.
     */
    EventDispatchThread dispatchThread;

    /**
     * The native thread.
     */
    NativeEventThread nativeThread;

    /**
     * The AWT events manager.
     */
    protected AWTEventsManager awtEventsManager;

    /**
     * The Class AWTTreeLock.
     */
    private class AWTTreeLock {
    }

    /**
     * The AWT tree lock.
     */
    final Object awtTreeLock = new AWTTreeLock();

    /**
     * The synchronizer.
     */
    private final Synchronizer synchronizer = ContextStorage.getSynchronizer();

    /**
     * The shutdown watchdog.
     */
    final ShutdownWatchdog shutdownWatchdog = new ShutdownWatchdog();

    /**
     * The auto number.
     */
    final AutoNumber autoNumber = new AutoNumber();

    /**
     * The event type lookup.
     */
    final AWTEvent.EventTypeLookup eventTypeLookup = new AWTEvent.EventTypeLookup();

    /**
     * The b dynamic layout set.
     */
    private boolean bDynamicLayoutSet = true;

    /**
     * The set of desktop properties that user set directly.
     */
    private final HashSet<String> userPropSet = new HashSet<String>();

    /**
     * The desktop properties.
     */
    protected Map<String, Object> desktopProperties;

    /**
     * The desktop props support.
     */
    protected PropertyChangeSupport desktopPropsSupport;

    /**
     * For this component the native window is being created It is used in the
     * callback-driven window creation (e.g. on Windows in the handler of
     * WM_CREATE event) to establish the connection between this component and
     * its native window.
     */
    private Object recentNativeWindowComponent;

    /**
     * The wtk.
     */
    private WTK wtk;

    /**
     * The Class ComponentInternalsImpl.
     * 
     * @since Android 1.0
     */
    protected final class ComponentInternalsImpl extends ComponentInternals {

        /**
         * Shutdown.
         */
        @Override
        public void shutdown() {
            dispatchThread.shutdown();
        }

        /**
         * Sets the desktop property to the specified value and fires a property
         * change event.
         * 
         * @param name
         *            the name of property.
         * @param value
         *            the new value of property.
         */
        @Override
        public void setDesktopProperty(String name, Object value) {
            Toolkit.this.setDesktopProperty(name, value);
        }
    }

    /**
     * A lot of methods must throw HeadlessException if
     * <code>GraphicsEnvironment.isHeadless()</code> returns <code>true</code>.
     * 
     * @throws HeadlessException
     *             the headless exception.
     */
    static void checkHeadless() throws HeadlessException {
        if (GraphicsEnvironment.getLocalGraphicsEnvironment().isHeadlessInstance())
            throw new HeadlessException();
    }

    /**
     * Lock AWT.
     */
    final void lockAWT() {
        synchronizer.lock();
    }

    /**
     * Static lock AWT.
     */
    static final void staticLockAWT() {
        ContextStorage.getSynchronizer().lock();
    }

    /**
     * Unlock AWT.
     */
    final void unlockAWT() {
        synchronizer.unlock();
    }

    /**
     * Static unlock AWT.
     */
    static final void staticUnlockAWT() {
        ContextStorage.getSynchronizer().unlock();
    }

    /**
     * InvokeAndWait under AWT lock. W/o this method system can hang up. Added
     * to support modality (Dialog.show() & PopupMenu.show()) from not event
     * dispatch thread. Use in other cases is not recommended. Still can be
     * called only for whole API methods that cannot be called from other
     * classes API methods. Examples: show() for modal dialogs - correct, only
     * user can call it, directly or through setVisible(true) setBounds() for
     * components - incorrect, setBounds() can be called from layoutContainer()
     * for layout managers
     * 
     * @param runnable
     *            the runnable.
     * @throws InterruptedException
     *             the interrupted exception.
     * @throws InvocationTargetException
     *             the invocation target exception.
     */
    final void unsafeInvokeAndWait(Runnable runnable) throws InterruptedException,
            InvocationTargetException {
        synchronizer.storeStateAndFree();
        try {
            EventQueue.invokeAndWait(runnable);
        } finally {
            synchronizer.lockAndRestoreState();
        }
    }

    /**
     * Gets the synchronizer.
     * 
     * @return the synchronizer.
     */
    final Synchronizer getSynchronizer() {
        return synchronizer;
    }

    /**
     * Gets the wTK.
     * 
     * @return the wTK.
     */
    final WTK getWTK() {
        return wtk;
    }

    /**
     * Gets the property with the specified key and default value. This method
     * returns the defValue if the property is not found.
     * 
     * @param propName
     *            the name of property.
     * @param defVal
     *            the default value.
     * @return the property value.
     */
    public static String getProperty(String propName, String defVal) {
        if (propName == null) {
            // awt.7D=Property name is null
            throw new NullPointerException(Messages.getString("awt.7D")); //$NON-NLS-1$
        }
        staticLockAWT();
        try {
            String retVal = null;
            if (properties != null) {
                try {
                    retVal = properties.getString(propName);
                } catch (MissingResourceException e) {
                } catch (ClassCastException e) {
                }
            }
            return (retVal == null) ? defVal : retVal;
        } finally {
            staticUnlockAWT();
        }
    }

    /**
     * Gets the default Toolkit.
     * 
     * @return the default Toolkit.
     */
    public static Toolkit getDefaultToolkit() {
        synchronized (ContextStorage.getContextLock()) {
            if (ContextStorage.shutdownPending()) {
                return null;
            }
            Toolkit defToolkit = ContextStorage.getDefaultToolkit();
            if (defToolkit != null) {
                return defToolkit;
            }
            staticLockAWT();
            try {
                defToolkit = GraphicsEnvironment.isHeadless() ? new HeadlessToolkit()
                        : new ToolkitImpl();
                ContextStorage.setDefaultToolkit(defToolkit);
                return defToolkit;
            } finally {
                staticUnlockAWT();
            }
            // TODO: read system property named awt.toolkit
            // and create an instance of the specified class,
            // by default use ToolkitImpl
        }
    }

    /**
     * Gets the default Font.
     * 
     * @return the default Font for Toolkit.
     */
    Font getDefaultFont() {
        return wtk.getSystemProperties().getDefaultFont();
    }

    /**
     * Load resources.
     * 
     * @param path
     *            the path.
     * @return the resource bundle.
     */
    private static ResourceBundle loadResources(String path) {
        try {
            return ResourceBundle.getBundle(path);
        } catch (MissingResourceException e) {
            return null;
        }
    }

    /**
     * Gets the wTK class name.
     * 
     * @return the wTK class name.
     */
    private static String getWTKClassName() {
        return "com.android.internal.awt.AndroidWTK";
    }

    /**
     * Gets the component by id.
     * 
     * @param id
     *            the id.
     * @return the component by id.
     */
    Component getComponentById(long id) {
        if (id == 0) {
            return null;
        }
        return null;
    }

    /**
     * Gets the GraphicsFactory.
     * 
     * @return the GraphicsFactory object.
     */
    public GraphicsFactory getGraphicsFactory() {
        return wtk.getGraphicsFactory();
    }

    /**
     * Instantiates a new toolkit.
     */
    public Toolkit() {
        init();
    }

    /**
     * Initiates AWT.
     */
    protected void init() {
        lockAWT();
        try {
            ComponentInternals.setComponentInternals(new ComponentInternalsImpl());
            new EventQueue(this); // create the system EventQueue
            dispatcher = new Dispatcher(this);
            final String className = getWTKClassName();
            desktopProperties = new HashMap<String, Object>();
            desktopPropsSupport = new PropertyChangeSupport(this);
            awtEventsManager = new AWTEventsManager();
            dispatchThread = new EventDispatchThread(this, dispatcher);
            nativeThread = new NativeEventThread();
            NativeEventThread.Init init = new NativeEventThread.Init() {
                public WTK init() {
                    wtk = createWTK(className);
                    wtk.getNativeEventQueue().setShutdownWatchdog(shutdownWatchdog);
                    synchronizer.setEnvironment(wtk, dispatchThread);
                    ContextStorage.setWTK(wtk);
                    return wtk;
                }
            };
            nativeThread.start(init);
            dispatchThread.start();
            wtk.getNativeEventQueue().awake();
        } finally {
            unlockAWT();
        }
    }

    /**
     * Synchronizes this toolkit's graphics.
     */
    public abstract void sync();

    /**
     * Returns the construction status of a specified image that is being
     * created.
     * 
     * @param a0
     *            the image to be checked.
     * @param a1
     *            the width of scaled image for which the status is being
     *            checked or -1.
     * @param a2
     *            the height of scaled image for which the status is being
     *            checked or -1.
     * @param a3
     *            the ImageObserver object to be notified while the image is
     *            being prepared.
     * @return the ImageObserver flags which give the current state of the image
     *         data.
     */
    public abstract int checkImage(Image a0, int a1, int a2, ImageObserver a3);

    /**
     * Creates the image with the specified ImageProducer.
     * 
     * @param a0
     *            the ImageProducer to be used for image creation.
     * @return the image with the specified ImageProducer.
     */
    public abstract Image createImage(ImageProducer a0);

    /**
     * Creates the image from the specified byte array, offset and length. The
     * byte array should contain data with image format supported by Toolkit
     * such as JPEG, GIF, or PNG.
     * 
     * @param a0
     *            the byte array with the image data.
     * @param a1
     *            the offset of the beginning the image data in the byte array.
     * @param a2
     *            the length of the image data in the byte array.
     * @return the created Image.
     */
    public abstract Image createImage(byte[] a0, int a1, int a2);

    /**
     * Creates the image using image data from the specified URL.
     * 
     * @param a0
     *            the URL for extracting image data.
     * @return the Image.
     */
    public abstract Image createImage(URL a0);

    /**
     * Creates the image using image data from the specified file.
     * 
     * @param a0
     *            the file name which contains image data of supported format.
     * @return the Image.
     */
    public abstract Image createImage(String a0);

    /**
     * Gets the color model.
     * 
     * @return the ColorModel of Toolkit's screen.
     * @throws HeadlessException
     *             if the GraphicsEnvironment.isHeadless() method returns true.
     */
    public abstract ColorModel getColorModel() throws HeadlessException;

    /**
     * Gets the screen device metrics for the specified font.
     * 
     * @param font
     *            the Font.
     * @return the FontMetrics for the specified Font.
     * @deprecated Use getLineMetrics method from Font class.
     */

    @Deprecated
    public abstract FontMetrics getFontMetrics(Font font);

    /**
     * Prepares the specified image for rendering on the screen with the
     * specified size.
     * 
     * @param a0
     *            the Image to be prepared.
     * @param a1
     *            the width of the screen representation or -1 for the current
     *            screen.
     * @param a2
     *            the height of the screen representation or -1 for the current
     *            screen.
     * @param a3
     *            the ImageObserver object to be notified as soon as the image
     *            is prepared.
     * @return true, if image is fully prepared, false otherwise.
     */
    public abstract boolean prepareImage(Image a0, int a1, int a2, ImageObserver a3);

    /**
     * Creates an audio beep.
     */
    public abstract void beep();

    /**
     * Returns the array of font names which are available in this Toolkit.
     * 
     * @return the array of font names which are available in this Toolkit.
     * @deprecated use GraphicsEnvironment.getAvailableFontFamilyNames() method.
     */
    @Deprecated
    public abstract String[] getFontList();

    /**
     * Gets the the Font implementation using the specified peer interface.
     * 
     * @param a0
     *            the Font name to be implemented.
     * @param a1
     *            the the font style: PLAIN, BOLD, ITALIC.
     * @return the FontPeer implementation of the specified Font.
     * @deprecated use java.awt.GraphicsEnvironment.getAllFonts method.
     */

    @Deprecated
    protected abstract FontPeer getFontPeer(String a0, int a1);

    /**
     * Gets the image from the specified file which contains image data in a
     * supported image format (such as JPEG, GIF, or PNG); this method should
     * return the same Image for multiple calls of this method with the same
     * image file name.
     * 
     * @param a0
     *            the file name which contains image data in a supported image
     *            format (such as JPEG, GIF, or PNG).
     * @return the Image.
     */
    public abstract Image getImage(String a0);

    /**
     * Gets the image from the specified URL which contains image data in a
     * supported image format (such as JPEG, GIF, or PNG); this method should
     * return the same Image for multiple calls of this method with the same
     * image URL.
     * 
     * @param a0
     *            the URL which contains image data in a supported image format
     *            (such as JPEG, GIF, or PNG).
     * @return the Image.
     */
    public abstract Image getImage(URL a0);

    /**
     * Gets the screen resolution.
     * 
     * @return the screen resolution.
     * @throws HeadlessException
     *             if the GraphicsEnvironment.isHeadless() method returns true.
     */
    public abstract int getScreenResolution() throws HeadlessException;

    /**
     * Gets the screen size.
     * 
     * @return a Dimension object containing the width and height of the screen.
     * @throws HeadlessException
     *             if the GraphicsEnvironment.isHeadless() method returns true.
     */
    public abstract Dimension getScreenSize() throws HeadlessException;

    /**
     * Gets the EventQueue instance without checking access.
     * 
     * @return the system EventQueue.
     */
    protected abstract EventQueue getSystemEventQueueImpl();

    /**
     * Returns a map of text attributes for the abstract level description of
     * the specified input method highlight, or null if no mapping is found.
     * 
     * @param highlight
     *            the InputMethodHighlight.
     * @return the Map<java.awt.font. text attribute,?>.
     * @throws HeadlessException
     *             if the GraphicsEnvironment.isHeadless() method returns true.
     */
    public abstract Map<java.awt.font.TextAttribute, ?> mapInputMethodHighlight(
            InputMethodHighlight highlight) throws HeadlessException;

    /**
     * Map input method highlight impl.
     * 
     * @param highlight
     *            the highlight.
     * @return the map<java.awt.font. text attribute,?>.
     * @throws HeadlessException
     *             the headless exception.
     */
    Map<java.awt.font.TextAttribute, ?> mapInputMethodHighlightImpl(InputMethodHighlight highlight)
            throws HeadlessException {
        HashMap<java.awt.font.TextAttribute, ?> map = new HashMap<java.awt.font.TextAttribute, Object>();
        wtk.getSystemProperties().mapInputMethodHighlight(highlight, map);
        return Collections.<java.awt.font.TextAttribute, Object> unmodifiableMap(map);
    }

    /**
     * Adds the specified PropertyChangeListener listener for the specified
     * property.
     * 
     * @param propName
     *            the property name for which the specified
     *            PropertyChangeListener will be added.
     * @param l
     *            the PropertyChangeListener object.
     */
    public void addPropertyChangeListener(String propName, PropertyChangeListener l) {
        lockAWT();
        try {
            if (desktopProperties.isEmpty()) {
                initializeDesktopProperties();
            }
        } finally {
            unlockAWT();
        }
        if (l != null) { // there is no guarantee that null listener will not be
            // added
            desktopPropsSupport.addPropertyChangeListener(propName, l);
        }
    }

    /**
     * Returns an array of the property change listeners registered with this
     * Toolkit.
     * 
     * @return an array of the property change listeners registered with this
     *         Toolkit.
     */
    public PropertyChangeListener[] getPropertyChangeListeners() {
        return desktopPropsSupport.getPropertyChangeListeners();
    }

    /**
     * Returns an array of the property change listeners registered with this
     * Toolkit for notification regarding the specified property.
     * 
     * @param propName
     *            the property name for which the PropertyChangeListener was
     *            registered.
     * @return the array of PropertyChangeListeners registered for the specified
     *         property name.
     */
    public PropertyChangeListener[] getPropertyChangeListeners(String propName) {
        return desktopPropsSupport.getPropertyChangeListeners(propName);
    }

    /**
     * Removes the specified property change listener registered for the
     * specified property name.
     * 
     * @param propName
     *            the property name.
     * @param l
     *            the PropertyChangeListener registered for the specified
     *            property name.
     */
    public void removePropertyChangeListener(String propName, PropertyChangeListener l) {
        desktopPropsSupport.removePropertyChangeListener(propName, l);
    }

    /**
     * Creates a custom cursor with the specified Image, hot spot, and cursor
     * description.
     * 
     * @param img
     *            the image of activated cursor.
     * @param hotSpot
     *            the Point giving the coordinates of the cursor's hot spot.
     * @param name
     *            the cursor description.
     * @return the cursor with the specified Image, hot spot, and cursor
     *         description.
     * @throws IndexOutOfBoundsException
     *             if the hot spot values are outside the bounds of the cursor.
     * @throws HeadlessException
     *             if isHeadless() method of GraphicsEnvironment class returns
     *             true.
     */
    public Cursor createCustomCursor(Image img, Point hotSpot, String name)
            throws IndexOutOfBoundsException, HeadlessException {
        lockAWT();
        try {
            int w = img.getWidth(null), x = hotSpot.x;
            int h = img.getHeight(null), y = hotSpot.y;
            if (x < 0 || x >= w || y < 0 || y >= h) {
                // awt.7E=invalid hotSpot
                throw new IndexOutOfBoundsException(Messages.getString("awt.7E")); //$NON-NLS-1$
            }
            return new Cursor(name, img, hotSpot);
        } finally {
            unlockAWT();
        }
    }

    /**
     * Returns the supported cursor dimension which is closest to the specified
     * width and height. If the Toolkit only supports a single cursor size, this
     * method should return the supported cursor size. If custom cursor is not
     * supported, a dimension of 0, 0 should be returned.
     * 
     * @param prefWidth
     *            the preferred cursor width.
     * @param prefHeight
     *            the preferred cursor height.
     * @return the supported cursor dimension which is closest to the specified
     *         width and height.
     * @throws HeadlessException
     *             if GraphicsEnvironment.isHeadless() returns true.
     */
    public Dimension getBestCursorSize(int prefWidth, int prefHeight) throws HeadlessException {
        lockAWT();
        try {
            return wtk.getCursorFactory().getBestCursorSize(prefWidth, prefHeight);
        } finally {
            unlockAWT();
        }
    }

    /**
     * Gets the value for the specified desktop property.
     * 
     * @param propName
     *            the property name.
     * @return the Object that is the property's value.
     */
    public final Object getDesktopProperty(String propName) {
        lockAWT();
        try {
            if (desktopProperties.isEmpty()) {
                initializeDesktopProperties();
            }
            if (propName.equals("awt.dynamicLayoutSupported")) { //$NON-NLS-1$
                // dynamicLayoutSupported is special case
                return Boolean.valueOf(isDynamicLayoutActive());
            }
            Object val = desktopProperties.get(propName);
            if (val == null) {
                // try to lazily load prop value
                // just for compatibility, our lazilyLoad is empty
                val = lazilyLoadDesktopProperty(propName);
            }
            return val;
        } finally {
            unlockAWT();
        }
    }

    /**
     * Returns the locking key state for the specified key.
     * 
     * @param a0
     *            the key code: VK_CAPS_LOCK, VK_NUM_LOCK, VK_SCROLL_LOCK, or
     *            VK_KANA_LOCK.
     * @return true if the specified key code is in the locked state, false
     *         otherwise.
     * @throws UnsupportedOperationException
     *             if the state of this key can't be retrieved, or if the
     *             keyboard doesn't have this key.
     * @throws NotImplementedException
     *             if this method is not implemented.
     */
    public boolean getLockingKeyState(int a0) throws UnsupportedOperationException,
            org.apache.harmony.luni.util.NotImplementedException {
        lockAWT();
        try {
        } finally {
            unlockAWT();
        }
        if (true) {
            throw new RuntimeException("Method is not implemented"); //TODO: implement //$NON-NLS-1$
        }
        return true;
    }

    /**
     * Returns the maximum number of colors which the Toolkit supports for
     * custom cursor.
     * 
     * @return the maximum cursor colors.
     * @throws HeadlessException
     *             if the GraphicsEnvironment.isHeadless() method returns true.
     */
    public int getMaximumCursorColors() throws HeadlessException {
        lockAWT();
        try {
            return wtk.getCursorFactory().getMaximumCursorColors();
        } finally {
            unlockAWT();
        }
    }

    /**
     * Gets the menu shortcut key mask.
     * 
     * @return the menu shortcut key mask.
     * @throws HeadlessException
     *             if the GraphicsEnvironment.isHeadless() method returns true.
     */
    public int getMenuShortcutKeyMask() throws HeadlessException {
        lockAWT();
        try {
            return InputEvent.CTRL_MASK;
        } finally {
            unlockAWT();
        }
    }

    /**
     * Gets the screen insets.
     * 
     * @param gc
     *            the GraphicsConfiguration.
     * @return the insets of this toolkit.
     * @throws HeadlessException
     *             if the GraphicsEnvironment.isHeadless() method returns true.
     */
    public Insets getScreenInsets(GraphicsConfiguration gc) throws HeadlessException {
        if (gc == null) {
            throw new NullPointerException();
        }
        lockAWT();
        try {
            return new Insets(0, 0, 0, 0); // TODO: get real screen insets
        } finally {
            unlockAWT();
        }
    }

    /**
     * Gets the system EventQueue instance. If the default implementation of
     * checkAwtEventQueueAccess is used, then this results of a call to the
     * security manager's checkPermission method with an
     * AWTPermission("accessEventQueue") permission.
     * 
     * @return the system EventQueue instance.
     */
    public final EventQueue getSystemEventQueue() {
        SecurityManager sm = System.getSecurityManager();
        if (sm != null) {
            sm.checkAwtEventQueueAccess();
        }
        return getSystemEventQueueImpl();
    }

    /**
     * Gets the system event queue core.
     * 
     * @return the system event queue core.
     */
    EventQueueCore getSystemEventQueueCore() {
        return systemEventQueueCore;
    }

    /**
     * Sets the system event queue core.
     * 
     * @param core
     *            the new system event queue core.
     */
    void setSystemEventQueueCore(EventQueueCore core) {
        systemEventQueueCore = core;
    }

    /**
     * Initialize the desktop properties.
     */
    protected void initializeDesktopProperties() {
        lockAWT();
        try {
            wtk.getSystemProperties().init(desktopProperties);
        } finally {
            unlockAWT();
        }
    }

    /**
     * Checks if dynamic layout of Containers is active or not.
     * 
     * @return true, if is dynamic layout of Containers is active, false
     *         otherwise.
     * @throws HeadlessException
     *             if the GraphicsEnvironment.isHeadless() method returns true.
     */
    public boolean isDynamicLayoutActive() throws HeadlessException {
        lockAWT();
        try {
            // always return true
            return true;
        } finally {
            unlockAWT();
        }
    }

    /**
     * Returns if the layout of Containers is checked dynamically during
     * resizing, or statically after resizing is completed.
     * 
     * @return true, if if the layout of Containers is checked dynamically
     *         during resizing; false, if the layout of Containers is checked
     *         statically after resizing is completed.
     * @throws HeadlessException
     *             if the GraphicsEnvironment.isHeadless() method returns true.
     */
    protected boolean isDynamicLayoutSet() throws HeadlessException {
        lockAWT();
        try {
            return bDynamicLayoutSet;
        } finally {
            unlockAWT();
        }
    }

    /**
     * Checks if the specified frame state is supported by Toolkit or not.
     * 
     * @param state
     *            the frame state.
     * @return true, if frame state is supported, false otherwise.
     * @throws HeadlessException
     *             if the GraphicsEnvironment.isHeadless() method returns true.
     */
    public boolean isFrameStateSupported(int state) throws HeadlessException {
        lockAWT();
        try {
            return wtk.getWindowFactory().isWindowStateSupported(state);
        } finally {
            unlockAWT();
        }
    }

    /**
     * Loads the value of the desktop property with the specified property name.
     * 
     * @param propName
     *            the property name.
     * @return the desktop property values.
     */
    protected Object lazilyLoadDesktopProperty(String propName) {
        return null;
    }

    /**
     * Loads the current system color values to the specified array.
     * 
     * @param colors
     *            the array where the current system color values are written by
     *            this method.
     * @throws HeadlessException
     *             if the GraphicsEnvironment.isHeadless() method returns true.
     */
    protected void loadSystemColors(int[] colors) throws HeadlessException {
        lockAWT();
        try {
        } finally {
            unlockAWT();
        }
    }

    /**
     * Sets the value of the desktop property with the specified name.
     * 
     * @param propName
     *            the property's name.
     * @param value
     *            the property's value.
     */
    protected final void setDesktopProperty(String propName, Object value) {
        Object oldVal;
        lockAWT();
        try {
            oldVal = getDesktopProperty(propName);
            userPropSet.add(propName);
            desktopProperties.put(propName, value);
        } finally {
            unlockAWT();
        }
        desktopPropsSupport.firePropertyChange(propName, oldVal, value);
    }

    /**
     * Sets the layout state, whether the Container layout is checked
     * dynamically during resizing, or statically after resizing is completed.
     * 
     * @param dynamic
     *            the new dynamic layout state - if true the layout of
     *            Containers is checked dynamically during resizing, if false -
     *            statically after resizing is completed.
     * @throws HeadlessException
     *             if the GraphicsEnvironment.isHeadless() method returns true.
     */
    public void setDynamicLayout(boolean dynamic) throws HeadlessException {
        lockAWT();
        try {
            bDynamicLayoutSet = dynamic;
        } finally {
            unlockAWT();
        }
    }

    /**
     * Sets the locking key state for the specified key code.
     * 
     * @param a0
     *            the key code: VK_CAPS_LOCK, VK_NUM_LOCK, VK_SCROLL_LOCK, or
     *            VK_KANA_LOCK.
     * @param a1
     *            the state - true to set the specified key code to the locked
     *            state, false - to unlock it.
     * @throws UnsupportedOperationException
     *             if the state of this key can't be set, or if the keyboard
     *             doesn't have this key.
     * @throws NotImplementedException
     *             if this method is not implemented.
     */
    public void setLockingKeyState(int a0, boolean a1) throws UnsupportedOperationException,
            org.apache.harmony.luni.util.NotImplementedException {
        lockAWT();
        try {
        } finally {
            unlockAWT();
        }
        if (true) {
            throw new RuntimeException("Method is not implemented"); //TODO: implement //$NON-NLS-1$
        }
        return;
    }

    /**
     * On queue empty.
     */
    void onQueueEmpty() {
        throw new RuntimeException("Not implemented!");
    }

    /**
     * Creates the wtk.
     * 
     * @param clsName
     *            the cls name.
     * @return the wTK.
     */
    private WTK createWTK(String clsName) {
        WTK newWTK = null;
        try {
            newWTK = (WTK)Class.forName(clsName).newInstance();
        } catch (Exception e) {
            throw new RuntimeException(e);
        }
        return newWTK;
    }

    /**
     * Connect the component to its native window
     * 
     * @param winId
     *            the id of native window just created.
     */
    boolean onWindowCreated(long winId) {
        return false;
    }

    /**
     * Gets the native event queue.
     * 
     * @return the native event queue.
     */
    NativeEventQueue getNativeEventQueue() {
        return wtk.getNativeEventQueue();
    }

    /**
     * Returns a shared instance of implementation of
     * org.apache.harmony.awt.wtk.NativeCursor for current platform for.
     * 
     * @param type
     *            the Java Cursor type.
     * @return new instance of implementation of NativeCursor.
     */
    NativeCursor createNativeCursor(int type) {
        return wtk.getCursorFactory().getCursor(type);
    }

    /**
     * Returns a shared instance of implementation of
     * org.apache.harmony.awt.wtk.NativeCursor for current platform for custom
     * cursor
     * 
     * @param img
     *            the img.
     * @param hotSpot
     *            the hot spot.
     * @param name
     *            the name.
     * @return new instance of implementation of NativeCursor.
     */
    NativeCursor createCustomNativeCursor(Image img, Point hotSpot, String name) {
        return wtk.getCursorFactory().createCustomCursor(img, hotSpot.x, hotSpot.y);
    }

    /**
     * Adds an AWTEventListener to the Toolkit to listen for events of types
     * corresponding to bits in the specified event mask. Event masks are
     * defined in AWTEvent class.
     * 
     * @param listener
     *            the AWTEventListener.
     * @param eventMask
     *            the bitmask of event types.
     */
    public void addAWTEventListener(AWTEventListener listener, long eventMask) {
        lockAWT();
        try {
            SecurityManager security = System.getSecurityManager();
            if (security != null) {
                security.checkPermission(awtEventsManager.permission);
            }
            awtEventsManager.addAWTEventListener(listener, eventMask);
        } finally {
            unlockAWT();
        }
    }

    /**
     * Removes the specified AWT event listener.
     * 
     * @param listener
     *            the AWTEventListener to be removed.
     */
    public void removeAWTEventListener(AWTEventListener listener) {
        lockAWT();
        try {
            SecurityManager security = System.getSecurityManager();
            if (security != null) {
                security.checkPermission(awtEventsManager.permission);
            }
            awtEventsManager.removeAWTEventListener(listener);
        } finally {
            unlockAWT();
        }
    }

    /**
     * Gets the array of all AWT event listeners registered with this Toolkit.
     * 
     * @return the array of all AWT event listeners registered with this
     *         Toolkit.
     */
    public AWTEventListener[] getAWTEventListeners() {
        lockAWT();
        try {
            SecurityManager security = System.getSecurityManager();
            if (security != null) {
                security.checkPermission(awtEventsManager.permission);
            }
            return awtEventsManager.getAWTEventListeners();
        } finally {
            unlockAWT();
        }
    }

    /**
     * Returns the array of the AWT event listeners registered with this Toolkit
     * for the event types corresponding to the specified event mask.
     * 
     * @param eventMask
     *            the bit mask of event type.
     * @return the array of the AWT event listeners registered in this Toolkit
     *         for the event types corresponding to the specified event mask.
     */
    public AWTEventListener[] getAWTEventListeners(long eventMask) {
        lockAWT();
        try {
            SecurityManager security = System.getSecurityManager();
            if (security != null) {
                security.checkPermission(awtEventsManager.permission);
            }
            return awtEventsManager.getAWTEventListeners(eventMask);
        } finally {
            unlockAWT();
        }
    }

    /**
     * Dispatch AWT event.
     * 
     * @param event
     *            the event.
     */
    void dispatchAWTEvent(AWTEvent event) {
        awtEventsManager.dispatchAWTEvent(event);
    }

    /**
     * The Class AWTEventsManager.
     */
    final class AWTEventsManager {

        /**
         * The permission.
         */
        AWTPermission permission = new AWTPermission("listenToAllAWTEvents"); //$NON-NLS-1$

        /**
         * The listeners.
         */
        private final AWTListenerList<AWTEventListenerProxy> listeners = new AWTListenerList<AWTEventListenerProxy>();

        /**
         * Adds the AWT event listener.
         * 
         * @param listener
         *            the listener.
         * @param eventMask
         *            the event mask.
         */
        void addAWTEventListener(AWTEventListener listener, long eventMask) {
            if (listener != null) {
                listeners.addUserListener(new AWTEventListenerProxy(eventMask, listener));
            }
        }

        /**
         * Removes the AWT event listener.
         * 
         * @param listener
         *            the listener.
         */
        void removeAWTEventListener(AWTEventListener listener) {
            if (listener != null) {
                for (AWTEventListenerProxy proxy : listeners.getUserListeners()) {
                    if (listener == proxy.getListener()) {
                        listeners.removeUserListener(proxy);
                        return;
                    }
                }
            }
        }

        /**
         * Gets the AWT event listeners.
         * 
         * @return the AWT event listeners.
         */
        AWTEventListener[] getAWTEventListeners() {
            HashSet<EventListener> listenersSet = new HashSet<EventListener>();
            for (AWTEventListenerProxy proxy : listeners.getUserListeners()) {
                listenersSet.add(proxy.getListener());
            }
            return listenersSet.toArray(new AWTEventListener[listenersSet.size()]);
        }

        /**
         * Gets the AWT event listeners.
         * 
         * @param eventMask
         *            the event mask.
         * @return the AWT event listeners.
         */
        AWTEventListener[] getAWTEventListeners(long eventMask) {
            HashSet<EventListener> listenersSet = new HashSet<EventListener>();
            for (AWTEventListenerProxy proxy : listeners.getUserListeners()) {
                if ((proxy.getEventMask() & eventMask) == eventMask) {
                    listenersSet.add(proxy.getListener());
                }
            }
            return listenersSet.toArray(new AWTEventListener[listenersSet.size()]);
        }

        /**
         * Dispatch AWT event.
         * 
         * @param event
         *            the event.
         */
        void dispatchAWTEvent(AWTEvent event) {
            AWTEvent.EventDescriptor descriptor = eventTypeLookup.getEventDescriptor(event);
            if (descriptor == null) {
                return;
            }
            for (AWTEventListenerProxy proxy : listeners.getUserListeners()) {
                if ((proxy.getEventMask() & descriptor.eventMask) != 0) {
                    proxy.eventDispatched(event);
                }
            }
        }
    }

    /**
     * The Class AutoNumber.
     */
    static final class AutoNumber {

        /**
         * The next component.
         */
        int nextComponent = 0;

        /**
         * The next canvas.
         */
        int nextCanvas = 0;

        /**
         * The next panel.
         */
        int nextPanel = 0;

        /**
         * The next window.
         */
        int nextWindow = 0;

        /**
         * The next frame.
         */
        int nextFrame = 0;

        /**
         * The next dialog.
         */
        int nextDialog = 0;

        /**
         * The next button.
         */
        int nextButton = 0;

        /**
         * The next menu component.
         */
        int nextMenuComponent = 0;

        /**
         * The next label.
         */
        int nextLabel = 0;

        /**
         * The next check box.
         */
        int nextCheckBox = 0;

        /**
         * The next scrollbar.
         */
        int nextScrollbar = 0;

        /**
         * The next scroll pane.
         */
        int nextScrollPane = 0;

        /**
         * The next list.
         */
        int nextList = 0;

        /**
         * The next choice.
         */
        int nextChoice = 0;

        /**
         * The next file dialog.
         */
        int nextFileDialog = 0;

        /**
         * The next text area.
         */
        int nextTextArea = 0;

        /**
         * The next text field.
         */
        int nextTextField = 0;
    }

    private class Lock {
    }

    /**
     * The lock.
     */
    private final Object lock = new Lock();

}