1 /*
   2  * Copyright (c) 1995, 2016, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package java.awt;
  27 
  28 import java.awt.datatransfer.Clipboard;
  29 import java.awt.dnd.DragGestureListener;
  30 import java.awt.dnd.DragGestureRecognizer;
  31 import java.awt.dnd.DragSource;
  32 import java.awt.event.*;
  33 import java.awt.im.InputMethodHighlight;
  34 import java.awt.image.ColorModel;
  35 import java.awt.image.ImageObserver;
  36 import java.awt.image.ImageProducer;
  37 import java.beans.PropertyChangeEvent;
  38 import java.beans.PropertyChangeListener;
  39 import java.beans.PropertyChangeSupport;
  40 import java.io.File;
  41 import java.io.FileInputStream;
  42 import java.net.URL;
  43 import java.util.ArrayList;
  44 import java.util.EventListener;
  45 import java.util.HashMap;
  46 import java.util.Map;
  47 import java.util.MissingResourceException;
  48 import java.util.Properties;
  49 import java.util.ResourceBundle;
  50 import java.util.StringTokenizer;
  51 import java.util.WeakHashMap;
  52 
  53 import sun.awt.AWTAccessor;
  54 import sun.awt.AWTPermissions;
  55 import sun.awt.AppContext;
  56 import sun.awt.HeadlessToolkit;
  57 import sun.awt.PeerEvent;
  58 import sun.awt.SunToolkit;
  59 
  60 import java.security.AccessController;
  61 import java.security.PrivilegedAction;
  62 import java.util.Arrays;
  63 import java.util.ServiceLoader;
  64 import java.util.Set;
  65 import java.util.stream.Collectors;
  66 import javax.accessibility.AccessibilityProvider;
  67 
  68 /**
  69  * This class is the abstract superclass of all actual
  70  * implementations of the Abstract Window Toolkit. Subclasses of
  71  * the {@code Toolkit} class are used to bind the various components
  72  * to particular native toolkit implementations.
  73  * <p>
  74  * Many GUI events may be delivered to user
  75  * asynchronously, if the opposite is not specified explicitly.
  76  * As well as
  77  * many GUI operations may be performed asynchronously.
  78  * This fact means that if the state of a component is set, and then
  79  * the state immediately queried, the returned value may not yet
  80  * reflect the requested change.  This behavior includes, but is not
  81  * limited to:
  82  * <ul>
  83  * <li>Scrolling to a specified position.
  84  * <br>For example, calling {@code ScrollPane.setScrollPosition}
  85  *     and then {@code getScrollPosition} may return an incorrect
  86  *     value if the original request has not yet been processed.
  87  *
  88  * <li>Moving the focus from one component to another.
  89  * <br>For more information, see
  90  * <a href="http://docs.oracle.com/javase/tutorial/uiswing/misc/focus.html#transferTiming">Timing
  91  * Focus Transfers</a>, a section in
  92  * <a href="http://docs.oracle.com/javase/tutorial/uiswing/">The Swing
  93  * Tutorial</a>.
  94  *
  95  * <li>Making a top-level container visible.
  96  * <br>Calling {@code setVisible(true)} on a {@code Window},
  97  *     {@code Frame} or {@code Dialog} may occur
  98  *     asynchronously.
  99  *
 100  * <li>Setting the size or location of a top-level container.
 101  * <br>Calls to {@code setSize}, {@code setBounds} or
 102  *     {@code setLocation} on a {@code Window},
 103  *     {@code Frame} or {@code Dialog} are forwarded
 104  *     to the underlying window management system and may be
 105  *     ignored or modified.  See {@link java.awt.Window} for
 106  *     more information.
 107  * </ul>
 108  * <p>
 109  * Most applications should not call any of the methods in this
 110  * class directly. The methods defined by {@code Toolkit} are
 111  * the "glue" that joins the platform-independent classes in the
 112  * {@code java.awt} package with their counterparts in
 113  * {@code java.awt.peer}. Some methods defined by
 114  * {@code Toolkit} query the native operating system directly.
 115  *
 116  * @author      Sami Shaio
 117  * @author      Arthur van Hoff
 118  * @author      Fred Ecks
 119  * @since       1.0
 120  */
 121 public abstract class Toolkit {
 122 
 123     // The following method is called by the private method
 124     // <code>updateSystemColors</code> in <code>SystemColor</code>.
 125 
 126     /**
 127      * Fills in the integer array that is supplied as an argument
 128      * with the current system color values.
 129      *
 130      * @param     systemColors an integer array.
 131      * @exception HeadlessException if GraphicsEnvironment.isHeadless()
 132      * returns true
 133      * @see       java.awt.GraphicsEnvironment#isHeadless
 134      * @since     1.1
 135      */
 136     protected void loadSystemColors(int[] systemColors)
 137         throws HeadlessException {
 138         GraphicsEnvironment.checkHeadless();
 139     }
 140 
 141     /**
 142      * Controls whether the layout of Containers is validated dynamically
 143      * during resizing, or statically, after resizing is complete.
 144      * Use {@code isDynamicLayoutActive()} to detect if this feature enabled
 145      * in this program and is supported by this operating system
 146      * and/or window manager.
 147      * Note that this feature is supported not on all platforms, and
 148      * conversely, that this feature cannot be turned off on some platforms.
 149      * On these platforms where dynamic layout during resizing is not supported
 150      * (or is always supported), setting this property has no effect.
 151      * Note that this feature can be set or unset as a property of the
 152      * operating system or window manager on some platforms.  On such
 153      * platforms, the dynamic resize property must be set at the operating
 154      * system or window manager level before this method can take effect.
 155      * This method does not change support or settings of the underlying
 156      * operating system or
 157      * window manager.  The OS/WM support can be
 158      * queried using getDesktopProperty("awt.dynamicLayoutSupported") method.
 159      *
 160      * @param     dynamic  If true, Containers should re-layout their
 161      *            components as the Container is being resized.  If false,
 162      *            the layout will be validated after resizing is completed.
 163      * @exception HeadlessException if GraphicsEnvironment.isHeadless()
 164      *            returns true
 165      * @see       #isDynamicLayoutSet()
 166      * @see       #isDynamicLayoutActive()
 167      * @see       #getDesktopProperty(String propertyName)
 168      * @see       java.awt.GraphicsEnvironment#isHeadless
 169      * @since     1.4
 170      */
 171     public void setDynamicLayout(final boolean dynamic)
 172         throws HeadlessException {
 173         GraphicsEnvironment.checkHeadless();
 174         if (this != getDefaultToolkit()) {
 175             getDefaultToolkit().setDynamicLayout(dynamic);
 176         }
 177     }
 178 
 179     /**
 180      * Returns whether the layout of Containers is validated dynamically
 181      * during resizing, or statically, after resizing is complete.
 182      * Note: this method returns the value that was set programmatically;
 183      * it does not reflect support at the level of the operating system
 184      * or window manager for dynamic layout on resizing, or the current
 185      * operating system or window manager settings.  The OS/WM support can
 186      * be queried using getDesktopProperty("awt.dynamicLayoutSupported").
 187      *
 188      * @return    true if validation of Containers is done dynamically,
 189      *            false if validation is done after resizing is finished.
 190      * @exception HeadlessException if GraphicsEnvironment.isHeadless()
 191      *            returns true
 192      * @see       #setDynamicLayout(boolean dynamic)
 193      * @see       #isDynamicLayoutActive()
 194      * @see       #getDesktopProperty(String propertyName)
 195      * @see       java.awt.GraphicsEnvironment#isHeadless
 196      * @since     1.4
 197      */
 198     protected boolean isDynamicLayoutSet()
 199         throws HeadlessException {
 200         GraphicsEnvironment.checkHeadless();
 201 
 202         if (this != Toolkit.getDefaultToolkit()) {
 203             return Toolkit.getDefaultToolkit().isDynamicLayoutSet();
 204         } else {
 205             return false;
 206         }
 207     }
 208 
 209     /**
 210      * Returns whether dynamic layout of Containers on resize is currently
 211      * enabled on the underlying operating system and/or window manager). If the
 212      * platform supports it, {@code setDynamicLayout(boolean)} may be used to
 213      * programmatically enable or disable platform dynamic layout. Regardless of
 214      * whether that toggling is supported, or whether {@code true} or {@code
 215      * false} is specified as an argument, or has never been called at all, this
 216      * method will return the active current platform behavior and which will be
 217      * followed by the JDK in determining layout policy during resizing.
 218      * <p>
 219      * If dynamic layout is currently inactive then Containers re-layout their
 220      * components when resizing is completed. As a result the
 221      * {@code Component.validate()} method will be invoked only once per resize.
 222      * If dynamic layout is currently active then Containers re-layout their
 223      * components on every native resize event and the {@code validate()} method
 224      * will be invoked each time. The OS/WM support can be queried using the
 225      * getDesktopProperty("awt.dynamicLayoutSupported") method. This property
 226      * will reflect the platform capability but is not sufficient to tell if it
 227      * is presently enabled.
 228      *
 229      * @return true if dynamic layout of Containers on resize is currently
 230      *         active, false otherwise.
 231      * @throws HeadlessException if the GraphicsEnvironment.isHeadless() method
 232      *         returns true
 233      * @see #setDynamicLayout(boolean dynamic)
 234      * @see #isDynamicLayoutSet()
 235      * @see #getDesktopProperty(String propertyName)
 236      * @see java.awt.GraphicsEnvironment#isHeadless
 237      * @since 1.4
 238      */
 239     public boolean isDynamicLayoutActive()
 240         throws HeadlessException {
 241         GraphicsEnvironment.checkHeadless();
 242 
 243         if (this != Toolkit.getDefaultToolkit()) {
 244             return Toolkit.getDefaultToolkit().isDynamicLayoutActive();
 245         } else {
 246             return false;
 247         }
 248     }
 249 
 250     /**
 251      * Gets the size of the screen.  On systems with multiple displays, the
 252      * primary display is used.  Multi-screen aware display dimensions are
 253      * available from {@code GraphicsConfiguration} and
 254      * {@code GraphicsDevice}.
 255      * @return    the size of this toolkit's screen, in pixels.
 256      * @exception HeadlessException if GraphicsEnvironment.isHeadless()
 257      * returns true
 258      * @see       java.awt.GraphicsConfiguration#getBounds
 259      * @see       java.awt.GraphicsDevice#getDisplayMode
 260      * @see       java.awt.GraphicsEnvironment#isHeadless
 261      */
 262     public abstract Dimension getScreenSize()
 263         throws HeadlessException;
 264 
 265     /**
 266      * Returns the screen resolution in dots-per-inch.
 267      * @return    this toolkit's screen resolution, in dots-per-inch.
 268      * @exception HeadlessException if GraphicsEnvironment.isHeadless()
 269      * returns true
 270      * @see       java.awt.GraphicsEnvironment#isHeadless
 271      */
 272     public abstract int getScreenResolution()
 273         throws HeadlessException;
 274 
 275     /**
 276      * Gets the insets of the screen.
 277      * @param     gc a {@code GraphicsConfiguration}
 278      * @return    the insets of this toolkit's screen, in pixels.
 279      * @exception HeadlessException if GraphicsEnvironment.isHeadless()
 280      * returns true
 281      * @see       java.awt.GraphicsEnvironment#isHeadless
 282      * @since     1.4
 283      */
 284     public Insets getScreenInsets(GraphicsConfiguration gc)
 285         throws HeadlessException {
 286         GraphicsEnvironment.checkHeadless();
 287         if (this != Toolkit.getDefaultToolkit()) {
 288             return Toolkit.getDefaultToolkit().getScreenInsets(gc);
 289         } else {
 290             return new Insets(0, 0, 0, 0);
 291         }
 292     }
 293 
 294     /**
 295      * Determines the color model of this toolkit's screen.
 296      * <p>
 297      * {@code ColorModel} is an abstract class that
 298      * encapsulates the ability to translate between the
 299      * pixel values of an image and its red, green, blue,
 300      * and alpha components.
 301      * <p>
 302      * This toolkit method is called by the
 303      * {@code getColorModel} method
 304      * of the {@code Component} class.
 305      * @return    the color model of this toolkit's screen.
 306      * @exception HeadlessException if GraphicsEnvironment.isHeadless()
 307      * returns true
 308      * @see       java.awt.GraphicsEnvironment#isHeadless
 309      * @see       java.awt.image.ColorModel
 310      * @see       java.awt.Component#getColorModel
 311      */
 312     public abstract ColorModel getColorModel()
 313         throws HeadlessException;
 314 
 315     /**
 316      * Returns the names of the available fonts in this toolkit.<p>
 317      * For 1.1, the following font names are deprecated (the replacement
 318      * name follows):
 319      * <ul>
 320      * <li>TimesRoman (use Serif)
 321      * <li>Helvetica (use SansSerif)
 322      * <li>Courier (use Monospaced)
 323      * </ul><p>
 324      * The ZapfDingbats fontname is also deprecated in 1.1 but the characters
 325      * are defined in Unicode starting at 0x2700, and as of 1.1 Java supports
 326      * those characters.
 327      * @return    the names of the available fonts in this toolkit.
 328      * @deprecated see {@link java.awt.GraphicsEnvironment#getAvailableFontFamilyNames()}
 329      * @see java.awt.GraphicsEnvironment#getAvailableFontFamilyNames()
 330      */
 331     @Deprecated
 332     public abstract String[] getFontList();
 333 
 334     /**
 335      * Gets the screen device metrics for rendering of the font.
 336      * @param     font   a font
 337      * @return    the screen metrics of the specified font in this toolkit
 338      * @deprecated  As of JDK version 1.2, replaced by the {@code Font}
 339      *          method {@code getLineMetrics}.
 340      * @see java.awt.font.LineMetrics
 341      * @see java.awt.Font#getLineMetrics
 342      * @see java.awt.GraphicsEnvironment#getScreenDevices
 343      */
 344     @Deprecated
 345     public abstract FontMetrics getFontMetrics(Font font);
 346 
 347     /**
 348      * Synchronizes this toolkit's graphics state. Some window systems
 349      * may do buffering of graphics events.
 350      * <p>
 351      * This method ensures that the display is up-to-date. It is useful
 352      * for animation.
 353      */
 354     public abstract void sync();
 355 
 356     /**
 357      * The default toolkit.
 358      */
 359     private static Toolkit toolkit;
 360 
 361     /**
 362      * Used internally by the assistive technologies functions; set at
 363      * init time and used at load time
 364      */
 365     private static String atNames;
 366 
 367     /**
 368      * Initializes properties related to assistive technologies.
 369      * These properties are used both in the loadAssistiveProperties()
 370      * function below, as well as other classes in the jdk that depend
 371      * on the properties (such as the use of the screen_magnifier_present
 372      * property in Java2D hardware acceleration initialization).  The
 373      * initialization of the properties must be done before the platform-
 374      * specific Toolkit class is instantiated so that all necessary
 375      * properties are set up properly before any classes dependent upon them
 376      * are initialized.
 377      */
 378     private static void initAssistiveTechnologies() {
 379 
 380         // Get accessibility properties
 381         final String sep = File.separator;
 382         final Properties properties = new Properties();
 383 
 384 
 385         atNames = java.security.AccessController.doPrivileged(
 386             new java.security.PrivilegedAction<String>() {
 387             public String run() {
 388 
 389                 // Try loading the per-user accessibility properties file.
 390                 try {
 391                     File propsFile = new File(
 392                       System.getProperty("user.home") +
 393                       sep + ".accessibility.properties");
 394                     FileInputStream in =
 395                         new FileInputStream(propsFile);
 396 
 397                     // Inputstream has been buffered in Properties class
 398                     properties.load(in);
 399                     in.close();
 400                 } catch (Exception e) {
 401                     // Per-user accessibility properties file does not exist
 402                 }
 403 
 404                 // Try loading the system-wide accessibility properties
 405                 // file only if a per-user accessibility properties
 406                 // file does not exist or is empty.
 407                 if (properties.size() == 0) {
 408                     try {
 409                         File propsFile = new File(
 410                             System.getProperty("java.home") + sep + "conf" +
 411                             sep + "accessibility.properties");
 412                         FileInputStream in =
 413                             new FileInputStream(propsFile);
 414 
 415                         // Inputstream has been buffered in Properties class
 416                         properties.load(in);
 417                         in.close();
 418                     } catch (Exception e) {
 419                         // System-wide accessibility properties file does
 420                         // not exist;
 421                     }
 422                 }
 423 
 424                 // Get whether a screen magnifier is present.  First check
 425                 // the system property and then check the properties file.
 426                 String magPresent = System.getProperty("javax.accessibility.screen_magnifier_present");
 427                 if (magPresent == null) {
 428                     magPresent = properties.getProperty("screen_magnifier_present", null);
 429                     if (magPresent != null) {
 430                         System.setProperty("javax.accessibility.screen_magnifier_present", magPresent);
 431                     }
 432                 }
 433 
 434                 // Get the names of any assistive technologies to load.  First
 435                 // check the system property and then check the properties
 436                 // file.
 437                 String classNames = System.getProperty("javax.accessibility.assistive_technologies");
 438                 if (classNames == null) {
 439                     classNames = properties.getProperty("assistive_technologies", null);
 440                     if (classNames != null) {
 441                         System.setProperty("javax.accessibility.assistive_technologies", classNames);
 442                     }
 443                 }
 444                 return classNames;
 445             }
 446         });
 447     }
 448 
 449     /**
 450      * Rethrow the AWTError but include the cause.
 451      *
 452      * @param s the error message
 453      * @param e the original exception
 454      * @throws the new AWTError including the cause (the original exception)
 455      */
 456     private static void newAWTError(Throwable e, String s) {
 457         AWTError newAWTError = new AWTError(s);
 458         newAWTError.initCause(e);
 459         throw newAWTError;
 460     }
 461 
 462     /**
 463      * When a service provider for Assistive Technology is not found look for a
 464      * supporting class on the class path and instantiate it.
 465      *
 466      * @param atName the name of the class to be loaded
 467      */
 468     private static void fallbackToLoadClassForAT(String atName) {
 469         try {
 470             Class<?> c = Class.forName(atName, false, ClassLoader.getSystemClassLoader());
 471             c.newInstance();
 472         } catch (ClassNotFoundException e) {
 473             newAWTError(e, "Assistive Technology not found: " + atName);
 474         } catch (InstantiationException e) {
 475             newAWTError(e, "Could not instantiate Assistive Technology: " + atName);
 476         } catch (IllegalAccessException e) {
 477             newAWTError(e, "Could not access Assistive Technology: " + atName);
 478         } catch (Exception e) {
 479             newAWTError(e, "Error trying to install Assistive Technology: " + atName);
 480         }
 481     }
 482 
 483     /**
 484      * Loads accessibility support using the property assistive_technologies.
 485      * The form is assistive_technologies= followed by a comma-separated list of
 486      * assistive technology providers to load.  The order in which providers are
 487      * loaded is determined by the order in which the ServiceLoader discovers
 488      * implementations of the AccessibilityProvider interface, not by the order
 489      * of provider names in the property list.  When a provider is found its
 490      * accessibility implementation will be started by calling the provider's
 491      * activate method.  All errors are handled via an AWTError exception.
 492      */
 493     private static void loadAssistiveTechnologies() {
 494         // Load any assistive technologies
 495         if (atNames != null) {
 496             ClassLoader cl = ClassLoader.getSystemClassLoader();
 497             Set<String> names = Arrays.stream(atNames.split(","))
 498                                       .map(String::trim)
 499                                       .collect(Collectors.toSet());
 500             final Map<String, AccessibilityProvider> providers = new HashMap<>();
 501             AccessController.doPrivileged((PrivilegedAction<Void>) () -> {
 502                 try {
 503                     for (AccessibilityProvider p : ServiceLoader.load(AccessibilityProvider.class, cl)) {
 504                         String name = p.getName();
 505                         if (names.contains(name) && !providers.containsKey(name)) {
 506                             p.activate();
 507                             providers.put(name, p);
 508                         }
 509                     }
 510                 } catch (java.util.ServiceConfigurationError | Exception e) {
 511                     newAWTError(e, "Could not load or activate service provider");
 512                 }
 513                 return null;
 514             });
 515             names.stream()
 516                  .filter(n -> !providers.containsKey(n))
 517                  .forEach(Toolkit::fallbackToLoadClassForAT);
 518         }
 519     }
 520 
 521     /**
 522      * Gets the default toolkit.
 523      * <p>
 524      * If a system property named {@code "java.awt.headless"} is set
 525      * to {@code true} then the headless implementation
 526      * of {@code Toolkit} is used,
 527      * otherwise the default platform-specific implementation of
 528      * {@code Toolkit} is used.
 529      * <p>
 530      * If this Toolkit is not a headless implementation and if they exist, service
 531      * providers of {@link javax.accessibility.AccessibilityProvider} will be loaded
 532      * if specified by the system property
 533      * {@code javax.accessibility.assistive_technologies}.
 534      * <p>
 535      * An example of setting this property is to invoke Java with
 536      * {@code -Djavax.accessibility.assistive_technologies=MyServiceProvider}.
 537      * In addition to MyServiceProvider other service providers can be specified
 538      * using a comma separated list.  Service providers are loaded after the AWT
 539      * toolkit is created. All errors are handled via an AWTError exception.
 540      * <p>
 541      * The names specified in the assistive_technologies property are used to query
 542      * each service provider implementation.  If the requested name matches the
 543      * {@linkplain AccessibilityProvider#getName name} of the service provider, the
 544      * {@link AccessibilityProvider#activate} method will be invoked to activate the
 545      * matching service provider.
 546      *
 547      * @implSpec
 548      * If assistive technology service providers are not specified with a system
 549      * property this implementation will look in a properties file located as follows:
 550      * <ul>
 551      * <li> {@code ${user.home}/.accessibility.properties}
 552      * <li> {@code ${java.home}/conf/accessibility.properties}
 553      * </ul>
 554      * Only the first of these files to be located will be consulted.  The requested
 555      * service providers are specified by setting the {@code assistive_technologies=}
 556      * property.  A single provider or a comma separated list of providers can be
 557      * specified.
 558      *
 559      * @return     the default toolkit.
 560      * @exception  AWTError  if a toolkit could not be found, or
 561      *                 if one could not be accessed or instantiated.
 562      * @see java.util.ServiceLoader
 563      * @see javax.accessibility.AccessibilityProvider
 564      */
 565     public static synchronized Toolkit getDefaultToolkit() {
 566         if (toolkit == null) {
 567             java.security.AccessController.doPrivileged(
 568                     new java.security.PrivilegedAction<Void>() {
 569                 public Void run() {
 570                     Class<?> cls = null;
 571                     String nm = System.getProperty("awt.toolkit");
 572                     try {
 573                         cls = Class.forName(nm);
 574                     } catch (ClassNotFoundException e) {
 575                         ClassLoader cl = ClassLoader.getSystemClassLoader();
 576                         if (cl != null) {
 577                             try {
 578                                 cls = cl.loadClass(nm);
 579                             } catch (final ClassNotFoundException ignored) {
 580                                 throw new AWTError("Toolkit not found: " + nm);
 581                             }
 582                         }
 583                     }
 584                     try {
 585                         if (cls != null) {
 586                             toolkit = (Toolkit)cls.newInstance();
 587                             if (GraphicsEnvironment.isHeadless()) {
 588                                 toolkit = new HeadlessToolkit(toolkit);
 589                             }
 590                         }
 591                     } catch (final InstantiationException ignored) {
 592                         throw new AWTError("Could not instantiate Toolkit: " + nm);
 593                     } catch (final IllegalAccessException ignored) {
 594                         throw new AWTError("Could not access Toolkit: " + nm);
 595                     }
 596                     return null;
 597                 }
 598             });
 599             if (!GraphicsEnvironment.isHeadless()) {
 600                 loadAssistiveTechnologies();
 601             }
 602         }
 603         return toolkit;
 604     }
 605 
 606     /**
 607      * Returns an image which gets pixel data from the specified file,
 608      * whose format can be either GIF, JPEG or PNG.
 609      * The underlying toolkit attempts to resolve multiple requests
 610      * with the same filename to the same returned Image.
 611      * <p>
 612      * Since the mechanism required to facilitate this sharing of
 613      * {@code Image} objects may continue to hold onto images
 614      * that are no longer in use for an indefinite period of time,
 615      * developers are encouraged to implement their own caching of
 616      * images by using the {@link #createImage(java.lang.String) createImage}
 617      * variant wherever available.
 618      * If the image data contained in the specified file changes,
 619      * the {@code Image} object returned from this method may
 620      * still contain stale information which was loaded from the
 621      * file after a prior call.
 622      * Previously loaded image data can be manually discarded by
 623      * calling the {@link Image#flush flush} method on the
 624      * returned {@code Image}.
 625      * <p>
 626      * This method first checks if there is a security manager installed.
 627      * If so, the method calls the security manager's
 628      * {@code checkRead} method with the file specified to ensure
 629      * that the access to the image is allowed.
 630      * @param     filename   the name of a file containing pixel data
 631      *                         in a recognized file format.
 632      * @return    an image which gets its pixel data from
 633      *                         the specified file.
 634      * @throws SecurityException  if a security manager exists and its
 635      *                            checkRead method doesn't allow the operation.
 636      * @see #createImage(java.lang.String)
 637      */
 638     public abstract Image getImage(String filename);
 639 
 640     /**
 641      * Returns an image which gets pixel data from the specified URL.
 642      * The pixel data referenced by the specified URL must be in one
 643      * of the following formats: GIF, JPEG or PNG.
 644      * The underlying toolkit attempts to resolve multiple requests
 645      * with the same URL to the same returned Image.
 646      * <p>
 647      * Since the mechanism required to facilitate this sharing of
 648      * {@code Image} objects may continue to hold onto images
 649      * that are no longer in use for an indefinite period of time,
 650      * developers are encouraged to implement their own caching of
 651      * images by using the {@link #createImage(java.net.URL) createImage}
 652      * variant wherever available.
 653      * If the image data stored at the specified URL changes,
 654      * the {@code Image} object returned from this method may
 655      * still contain stale information which was fetched from the
 656      * URL after a prior call.
 657      * Previously loaded image data can be manually discarded by
 658      * calling the {@link Image#flush flush} method on the
 659      * returned {@code Image}.
 660      * <p>
 661      * This method first checks if there is a security manager installed.
 662      * If so, the method calls the security manager's
 663      * {@code checkPermission} method with the
 664      * url.openConnection().getPermission() permission to ensure
 665      * that the access to the image is allowed. For compatibility
 666      * with pre-1.2 security managers, if the access is denied with
 667      * {@code FilePermission} or {@code SocketPermission},
 668      * the method throws the {@code SecurityException}
 669      * if the corresponding 1.1-style SecurityManager.checkXXX method
 670      * also denies permission.
 671      * @param     url   the URL to use in fetching the pixel data.
 672      * @return    an image which gets its pixel data from
 673      *                         the specified URL.
 674      * @throws SecurityException  if a security manager exists and its
 675      *                            checkPermission method doesn't allow
 676      *                            the operation.
 677      * @see #createImage(java.net.URL)
 678      */
 679     public abstract Image getImage(URL url);
 680 
 681     /**
 682      * Returns an image which gets pixel data from the specified file.
 683      * The returned Image is a new object which will not be shared
 684      * with any other caller of this method or its getImage variant.
 685      * <p>
 686      * This method first checks if there is a security manager installed.
 687      * If so, the method calls the security manager's
 688      * {@code checkRead} method with the specified file to ensure
 689      * that the image creation is allowed.
 690      * @param     filename   the name of a file containing pixel data
 691      *                         in a recognized file format.
 692      * @return    an image which gets its pixel data from
 693      *                         the specified file.
 694      * @throws SecurityException  if a security manager exists and its
 695      *                            checkRead method doesn't allow the operation.
 696      * @see #getImage(java.lang.String)
 697      */
 698     public abstract Image createImage(String filename);
 699 
 700     /**
 701      * Returns an image which gets pixel data from the specified URL.
 702      * The returned Image is a new object which will not be shared
 703      * with any other caller of this method or its getImage variant.
 704      * <p>
 705      * This method first checks if there is a security manager installed.
 706      * If so, the method calls the security manager's
 707      * {@code checkPermission} method with the
 708      * url.openConnection().getPermission() permission to ensure
 709      * that the image creation is allowed. For compatibility
 710      * with pre-1.2 security managers, if the access is denied with
 711      * {@code FilePermission} or {@code SocketPermission},
 712      * the method throws {@code SecurityException}
 713      * if the corresponding 1.1-style SecurityManager.checkXXX method
 714      * also denies permission.
 715      * @param     url   the URL to use in fetching the pixel data.
 716      * @return    an image which gets its pixel data from
 717      *                         the specified URL.
 718      * @throws SecurityException  if a security manager exists and its
 719      *                            checkPermission method doesn't allow
 720      *                            the operation.
 721      * @see #getImage(java.net.URL)
 722      */
 723     public abstract Image createImage(URL url);
 724 
 725     /**
 726      * Prepares an image for rendering.
 727      * <p>
 728      * If the values of the width and height arguments are both
 729      * {@code -1}, this method prepares the image for rendering
 730      * on the default screen; otherwise, this method prepares an image
 731      * for rendering on the default screen at the specified width and height.
 732      * <p>
 733      * The image data is downloaded asynchronously in another thread,
 734      * and an appropriately scaled screen representation of the image is
 735      * generated.
 736      * <p>
 737      * This method is called by components {@code prepareImage}
 738      * methods.
 739      * <p>
 740      * Information on the flags returned by this method can be found
 741      * with the definition of the {@code ImageObserver} interface.
 742 
 743      * @param     image      the image for which to prepare a
 744      *                           screen representation.
 745      * @param     width      the width of the desired screen
 746      *                           representation, or {@code -1}.
 747      * @param     height     the height of the desired screen
 748      *                           representation, or {@code -1}.
 749      * @param     observer   the {@code ImageObserver}
 750      *                           object to be notified as the
 751      *                           image is being prepared.
 752      * @return    {@code true} if the image has already been
 753      *                 fully prepared; {@code false} otherwise.
 754      * @see       java.awt.Component#prepareImage(java.awt.Image,
 755      *                 java.awt.image.ImageObserver)
 756      * @see       java.awt.Component#prepareImage(java.awt.Image,
 757      *                 int, int, java.awt.image.ImageObserver)
 758      * @see       java.awt.image.ImageObserver
 759      */
 760     public abstract boolean prepareImage(Image image, int width, int height,
 761                                          ImageObserver observer);
 762 
 763     /**
 764      * Indicates the construction status of a specified image that is
 765      * being prepared for display.
 766      * <p>
 767      * If the values of the width and height arguments are both
 768      * {@code -1}, this method returns the construction status of
 769      * a screen representation of the specified image in this toolkit.
 770      * Otherwise, this method returns the construction status of a
 771      * scaled representation of the image at the specified width
 772      * and height.
 773      * <p>
 774      * This method does not cause the image to begin loading.
 775      * An application must call {@code prepareImage} to force
 776      * the loading of an image.
 777      * <p>
 778      * This method is called by the component's {@code checkImage}
 779      * methods.
 780      * <p>
 781      * Information on the flags returned by this method can be found
 782      * with the definition of the {@code ImageObserver} interface.
 783      * @param     image   the image whose status is being checked.
 784      * @param     width   the width of the scaled version whose status is
 785      *                 being checked, or {@code -1}.
 786      * @param     height  the height of the scaled version whose status
 787      *                 is being checked, or {@code -1}.
 788      * @param     observer   the {@code ImageObserver} object to be
 789      *                 notified as the image is being prepared.
 790      * @return    the bitwise inclusive <strong>OR</strong> of the
 791      *                 {@code ImageObserver} flags for the
 792      *                 image data that is currently available.
 793      * @see       java.awt.Toolkit#prepareImage(java.awt.Image,
 794      *                 int, int, java.awt.image.ImageObserver)
 795      * @see       java.awt.Component#checkImage(java.awt.Image,
 796      *                 java.awt.image.ImageObserver)
 797      * @see       java.awt.Component#checkImage(java.awt.Image,
 798      *                 int, int, java.awt.image.ImageObserver)
 799      * @see       java.awt.image.ImageObserver
 800      */
 801     public abstract int checkImage(Image image, int width, int height,
 802                                    ImageObserver observer);
 803 
 804     /**
 805      * Creates an image with the specified image producer.
 806      * @param     producer the image producer to be used.
 807      * @return    an image with the specified image producer.
 808      * @see       java.awt.Image
 809      * @see       java.awt.image.ImageProducer
 810      * @see       java.awt.Component#createImage(java.awt.image.ImageProducer)
 811      */
 812     public abstract Image createImage(ImageProducer producer);
 813 
 814     /**
 815      * Creates an image which decodes the image stored in the specified
 816      * byte array.
 817      * <p>
 818      * The data must be in some image format, such as GIF or JPEG,
 819      * that is supported by this toolkit.
 820      * @param     imagedata   an array of bytes, representing
 821      *                         image data in a supported image format.
 822      * @return    an image.
 823      * @since     1.1
 824      */
 825     public Image createImage(byte[] imagedata) {
 826         return createImage(imagedata, 0, imagedata.length);
 827     }
 828 
 829     /**
 830      * Creates an image which decodes the image stored in the specified
 831      * byte array, and at the specified offset and length.
 832      * The data must be in some image format, such as GIF or JPEG,
 833      * that is supported by this toolkit.
 834      * @param     imagedata   an array of bytes, representing
 835      *                         image data in a supported image format.
 836      * @param     imageoffset  the offset of the beginning
 837      *                         of the data in the array.
 838      * @param     imagelength  the length of the data in the array.
 839      * @return    an image.
 840      * @since     1.1
 841      */
 842     public abstract Image createImage(byte[] imagedata,
 843                                       int imageoffset,
 844                                       int imagelength);
 845 
 846     /**
 847      * Gets a {@code PrintJob} object which is the result of initiating
 848      * a print operation on the toolkit's platform.
 849      * <p>
 850      * Each actual implementation of this method should first check if there
 851      * is a security manager installed. If there is, the method should call
 852      * the security manager's {@code checkPrintJobAccess} method to
 853      * ensure initiation of a print operation is allowed. If the default
 854      * implementation of {@code checkPrintJobAccess} is used (that is,
 855      * that method is not overriden), then this results in a call to the
 856      * security manager's {@code checkPermission} method with a
 857      * {@code RuntimePermission("queuePrintJob")} permission.
 858      *
 859      * @param   frame the parent of the print dialog. May not be null.
 860      * @param   jobtitle the title of the PrintJob. A null title is equivalent
 861      *          to "".
 862      * @param   props a Properties object containing zero or more properties.
 863      *          Properties are not standardized and are not consistent across
 864      *          implementations. Because of this, PrintJobs which require job
 865      *          and page control should use the version of this function which
 866      *          takes JobAttributes and PageAttributes objects. This object
 867      *          may be updated to reflect the user's job choices on exit. May
 868      *          be null.
 869      * @return  a {@code PrintJob} object, or {@code null} if the
 870      *          user cancelled the print job.
 871      * @throws  NullPointerException if frame is null
 872      * @throws  SecurityException if this thread is not allowed to initiate a
 873      *          print job request
 874      * @see     java.awt.GraphicsEnvironment#isHeadless
 875      * @see     java.awt.PrintJob
 876      * @see     java.lang.RuntimePermission
 877      * @since   1.1
 878      */
 879     public abstract PrintJob getPrintJob(Frame frame, String jobtitle,
 880                                          Properties props);
 881 
 882     /**
 883      * Gets a {@code PrintJob} object which is the result of initiating
 884      * a print operation on the toolkit's platform.
 885      * <p>
 886      * Each actual implementation of this method should first check if there
 887      * is a security manager installed. If there is, the method should call
 888      * the security manager's {@code checkPrintJobAccess} method to
 889      * ensure initiation of a print operation is allowed. If the default
 890      * implementation of {@code checkPrintJobAccess} is used (that is,
 891      * that method is not overriden), then this results in a call to the
 892      * security manager's {@code checkPermission} method with a
 893      * {@code RuntimePermission("queuePrintJob")} permission.
 894      *
 895      * @param   frame the parent of the print dialog. May not be null.
 896      * @param   jobtitle the title of the PrintJob. A null title is equivalent
 897      *          to "".
 898      * @param   jobAttributes a set of job attributes which will control the
 899      *          PrintJob. The attributes will be updated to reflect the user's
 900      *          choices as outlined in the JobAttributes documentation. May be
 901      *          null.
 902      * @param   pageAttributes a set of page attributes which will control the
 903      *          PrintJob. The attributes will be applied to every page in the
 904      *          job. The attributes will be updated to reflect the user's
 905      *          choices as outlined in the PageAttributes documentation. May be
 906      *          null.
 907      * @return  a {@code PrintJob} object, or {@code null} if the
 908      *          user cancelled the print job.
 909      * @throws  NullPointerException if frame is null
 910      * @throws  IllegalArgumentException if pageAttributes specifies differing
 911      *          cross feed and feed resolutions. Also if this thread has
 912      *          access to the file system and jobAttributes specifies
 913      *          print to file, and the specified destination file exists but
 914      *          is a directory rather than a regular file, does not exist but
 915      *          cannot be created, or cannot be opened for any other reason.
 916      *          However in the case of print to file, if a dialog is also
 917      *          requested to be displayed then the user will be given an
 918      *          opportunity to select a file and proceed with printing.
 919      *          The dialog will ensure that the selected output file
 920      *          is valid before returning from this method.
 921      * @throws  SecurityException if this thread is not allowed to initiate a
 922      *          print job request, or if jobAttributes specifies print to file,
 923      *          and this thread is not allowed to access the file system
 924      * @see     java.awt.PrintJob
 925      * @see     java.awt.GraphicsEnvironment#isHeadless
 926      * @see     java.lang.RuntimePermission
 927      * @see     java.awt.JobAttributes
 928      * @see     java.awt.PageAttributes
 929      * @since   1.3
 930      */
 931     public PrintJob getPrintJob(Frame frame, String jobtitle,
 932                                 JobAttributes jobAttributes,
 933                                 PageAttributes pageAttributes) {
 934         // Override to add printing support with new job/page control classes
 935 
 936         if (this != Toolkit.getDefaultToolkit()) {
 937             return Toolkit.getDefaultToolkit().getPrintJob(frame, jobtitle,
 938                                                            jobAttributes,
 939                                                            pageAttributes);
 940         } else {
 941             return getPrintJob(frame, jobtitle, null);
 942         }
 943     }
 944 
 945     /**
 946      * Emits an audio beep depending on native system settings and hardware
 947      * capabilities.
 948      * @since     1.1
 949      */
 950     public abstract void beep();
 951 
 952     /**
 953      * Gets the singleton instance of the system Clipboard which interfaces
 954      * with clipboard facilities provided by the native platform. This
 955      * clipboard enables data transfer between Java programs and native
 956      * applications which use native clipboard facilities.
 957      * <p>
 958      * In addition to any and all default formats text returned by the system
 959      * Clipboard's {@code getTransferData()} method is available in the
 960      * following flavors:
 961      * <ul>
 962      * <li>DataFlavor.stringFlavor</li>
 963      * <li>DataFlavor.plainTextFlavor (<b>deprecated</b>)</li>
 964      * </ul>
 965      * As with {@code java.awt.datatransfer.StringSelection}, if the
 966      * requested flavor is {@code DataFlavor.plainTextFlavor}, or an
 967      * equivalent flavor, a Reader is returned. <b>Note:</b> The behavior of
 968      * the system Clipboard's {@code getTransferData()} method for
 969      * {@code DataFlavor.plainTextFlavor}, and equivalent DataFlavors, is
 970      * inconsistent with the definition of {@code DataFlavor.plainTextFlavor}.
 971      * Because of this, support for
 972      * {@code DataFlavor.plainTextFlavor}, and equivalent flavors, is
 973      * <b>deprecated</b>.
 974      * <p>
 975      * Each actual implementation of this method should first check if there
 976      * is a security manager installed. If there is, the method should call
 977      * the security manager's {@link SecurityManager#checkPermission
 978      * checkPermission} method to check {@code AWTPermission("accessClipboard")}.
 979      *
 980      * @return    the system Clipboard
 981      * @exception HeadlessException if GraphicsEnvironment.isHeadless()
 982      * returns true
 983      * @see       java.awt.GraphicsEnvironment#isHeadless
 984      * @see       java.awt.datatransfer.Clipboard
 985      * @see       java.awt.datatransfer.StringSelection
 986      * @see       java.awt.datatransfer.DataFlavor#stringFlavor
 987      * @see       java.awt.datatransfer.DataFlavor#plainTextFlavor
 988      * @see       java.io.Reader
 989      * @see       java.awt.AWTPermission
 990      * @since     1.1
 991      */
 992     public abstract Clipboard getSystemClipboard()
 993         throws HeadlessException;
 994 
 995     /**
 996      * Gets the singleton instance of the system selection as a
 997      * {@code Clipboard} object. This allows an application to read and
 998      * modify the current, system-wide selection.
 999      * <p>
1000      * An application is responsible for updating the system selection whenever
1001      * the user selects text, using either the mouse or the keyboard.
1002      * Typically, this is implemented by installing a
1003      * {@code FocusListener} on all {@code Component}s which support
1004      * text selection, and, between {@code FOCUS_GAINED} and
1005      * {@code FOCUS_LOST} events delivered to that {@code Component},
1006      * updating the system selection {@code Clipboard} when the selection
1007      * changes inside the {@code Component}. Properly updating the system
1008      * selection ensures that a Java application will interact correctly with
1009      * native applications and other Java applications running simultaneously
1010      * on the system. Note that {@code java.awt.TextComponent} and
1011      * {@code javax.swing.text.JTextComponent} already adhere to this
1012      * policy. When using these classes, and their subclasses, developers need
1013      * not write any additional code.
1014      * <p>
1015      * Some platforms do not support a system selection {@code Clipboard}.
1016      * On those platforms, this method will return {@code null}. In such a
1017      * case, an application is absolved from its responsibility to update the
1018      * system selection {@code Clipboard} as described above.
1019      * <p>
1020      * Each actual implementation of this method should first check if there
1021      * is a security manager installed. If there is, the method should call
1022      * the security manager's {@link SecurityManager#checkPermission
1023      * checkPermission} method to check {@code AWTPermission("accessClipboard")}.
1024      *
1025      * @return the system selection as a {@code Clipboard}, or
1026      *         {@code null} if the native platform does not support a
1027      *         system selection {@code Clipboard}
1028      * @exception HeadlessException if GraphicsEnvironment.isHeadless()
1029      *            returns true
1030      *
1031      * @see java.awt.datatransfer.Clipboard
1032      * @see java.awt.event.FocusListener
1033      * @see java.awt.event.FocusEvent#FOCUS_GAINED
1034      * @see java.awt.event.FocusEvent#FOCUS_LOST
1035      * @see TextComponent
1036      * @see javax.swing.text.JTextComponent
1037      * @see AWTPermission
1038      * @see GraphicsEnvironment#isHeadless
1039      * @since 1.4
1040      */
1041     public Clipboard getSystemSelection() throws HeadlessException {
1042         GraphicsEnvironment.checkHeadless();
1043 
1044         if (this != Toolkit.getDefaultToolkit()) {
1045             return Toolkit.getDefaultToolkit().getSystemSelection();
1046         } else {
1047             GraphicsEnvironment.checkHeadless();
1048             return null;
1049         }
1050     }
1051 
1052     /**
1053      * Determines which modifier key is the appropriate accelerator
1054      * key for menu shortcuts.
1055      * <p>
1056      * Menu shortcuts, which are embodied in the
1057      * {@code MenuShortcut} class, are handled by the
1058      * {@code MenuBar} class.
1059      * <p>
1060      * By default, this method returns {@code Event.CTRL_MASK}.
1061      * Toolkit implementations should override this method if the
1062      * <b>Control</b> key isn't the correct key for accelerators.
1063      * @return    the modifier mask on the {@code Event} class
1064      *                 that is used for menu shortcuts on this toolkit.
1065      * @exception HeadlessException if GraphicsEnvironment.isHeadless()
1066      * returns true
1067      * @see       java.awt.GraphicsEnvironment#isHeadless
1068      * @see       java.awt.MenuBar
1069      * @see       java.awt.MenuShortcut
1070      * @since     1.1
1071      */
1072     public int getMenuShortcutKeyMask() throws HeadlessException {
1073         GraphicsEnvironment.checkHeadless();
1074 
1075         return Event.CTRL_MASK;
1076     }
1077 
1078     /**
1079      * Returns whether the given locking key on the keyboard is currently in
1080      * its "on" state.
1081      * Valid key codes are
1082      * {@link java.awt.event.KeyEvent#VK_CAPS_LOCK VK_CAPS_LOCK},
1083      * {@link java.awt.event.KeyEvent#VK_NUM_LOCK VK_NUM_LOCK},
1084      * {@link java.awt.event.KeyEvent#VK_SCROLL_LOCK VK_SCROLL_LOCK}, and
1085      * {@link java.awt.event.KeyEvent#VK_KANA_LOCK VK_KANA_LOCK}.
1086      *
1087      * @param  keyCode the key code
1088      * @return {@code true} if the given key is currently in its "on" state;
1089      *          otherwise {@code false}
1090      * @exception java.lang.IllegalArgumentException if {@code keyCode}
1091      * is not one of the valid key codes
1092      * @exception java.lang.UnsupportedOperationException if the host system doesn't
1093      * allow getting the state of this key programmatically, or if the keyboard
1094      * doesn't have this key
1095      * @exception HeadlessException if GraphicsEnvironment.isHeadless()
1096      * returns true
1097      * @see       java.awt.GraphicsEnvironment#isHeadless
1098      * @since 1.3
1099      */
1100     public boolean getLockingKeyState(int keyCode)
1101         throws UnsupportedOperationException
1102     {
1103         GraphicsEnvironment.checkHeadless();
1104 
1105         if (! (keyCode == KeyEvent.VK_CAPS_LOCK || keyCode == KeyEvent.VK_NUM_LOCK ||
1106                keyCode == KeyEvent.VK_SCROLL_LOCK || keyCode == KeyEvent.VK_KANA_LOCK)) {
1107             throw new IllegalArgumentException("invalid key for Toolkit.getLockingKeyState");
1108         }
1109         throw new UnsupportedOperationException("Toolkit.getLockingKeyState");
1110     }
1111 
1112     /**
1113      * Sets the state of the given locking key on the keyboard.
1114      * Valid key codes are
1115      * {@link java.awt.event.KeyEvent#VK_CAPS_LOCK VK_CAPS_LOCK},
1116      * {@link java.awt.event.KeyEvent#VK_NUM_LOCK VK_NUM_LOCK},
1117      * {@link java.awt.event.KeyEvent#VK_SCROLL_LOCK VK_SCROLL_LOCK}, and
1118      * {@link java.awt.event.KeyEvent#VK_KANA_LOCK VK_KANA_LOCK}.
1119      * <p>
1120      * Depending on the platform, setting the state of a locking key may
1121      * involve event processing and therefore may not be immediately
1122      * observable through getLockingKeyState.
1123      *
1124      * @param  keyCode the key code
1125      * @param  on the state of the key
1126      * @exception java.lang.IllegalArgumentException if {@code keyCode}
1127      * is not one of the valid key codes
1128      * @exception java.lang.UnsupportedOperationException if the host system doesn't
1129      * allow setting the state of this key programmatically, or if the keyboard
1130      * doesn't have this key
1131      * @exception HeadlessException if GraphicsEnvironment.isHeadless()
1132      * returns true
1133      * @see       java.awt.GraphicsEnvironment#isHeadless
1134      * @since 1.3
1135      */
1136     public void setLockingKeyState(int keyCode, boolean on)
1137         throws UnsupportedOperationException
1138     {
1139         GraphicsEnvironment.checkHeadless();
1140 
1141         if (! (keyCode == KeyEvent.VK_CAPS_LOCK || keyCode == KeyEvent.VK_NUM_LOCK ||
1142                keyCode == KeyEvent.VK_SCROLL_LOCK || keyCode == KeyEvent.VK_KANA_LOCK)) {
1143             throw new IllegalArgumentException("invalid key for Toolkit.setLockingKeyState");
1144         }
1145         throw new UnsupportedOperationException("Toolkit.setLockingKeyState");
1146     }
1147 
1148     /**
1149      * Give native peers the ability to query the native container
1150      * given a native component (eg the direct parent may be lightweight).
1151      *
1152      * @param  c the component to fetch the container for
1153      * @return the native container object for the component
1154      */
1155     protected static Container getNativeContainer(Component c) {
1156         return c.getNativeContainer();
1157     }
1158 
1159     /**
1160      * Creates a new custom cursor object.
1161      * If the image to display is invalid, the cursor will be hidden (made
1162      * completely transparent), and the hotspot will be set to (0, 0).
1163      *
1164      * <p>Note that multi-frame images are invalid and may cause this
1165      * method to hang.
1166      *
1167      * @param cursor the image to display when the cursor is activated
1168      * @param hotSpot the X and Y of the large cursor's hot spot; the
1169      *   hotSpot values must be less than the Dimension returned by
1170      *   {@code getBestCursorSize}
1171      * @param     name a localized description of the cursor, for Java Accessibility use
1172      * @exception IndexOutOfBoundsException if the hotSpot values are outside
1173      *   the bounds of the cursor
1174      * @return the cursor created
1175      * @exception HeadlessException if GraphicsEnvironment.isHeadless()
1176      * returns true
1177      * @see       java.awt.GraphicsEnvironment#isHeadless
1178      * @since     1.2
1179      */
1180     public Cursor createCustomCursor(Image cursor, Point hotSpot, String name)
1181         throws IndexOutOfBoundsException, HeadlessException
1182     {
1183         // Override to implement custom cursor support.
1184         if (this != Toolkit.getDefaultToolkit()) {
1185             return Toolkit.getDefaultToolkit().
1186                 createCustomCursor(cursor, hotSpot, name);
1187         } else {
1188             return new Cursor(Cursor.DEFAULT_CURSOR);
1189         }
1190     }
1191 
1192     /**
1193      * Returns the supported cursor dimension which is closest to the desired
1194      * sizes.  Systems which only support a single cursor size will return that
1195      * size regardless of the desired sizes.  Systems which don't support custom
1196      * cursors will return a dimension of 0, 0. <p>
1197      * Note:  if an image is used whose dimensions don't match a supported size
1198      * (as returned by this method), the Toolkit implementation will attempt to
1199      * resize the image to a supported size.
1200      * Since converting low-resolution images is difficult,
1201      * no guarantees are made as to the quality of a cursor image which isn't a
1202      * supported size.  It is therefore recommended that this method
1203      * be called and an appropriate image used so no image conversion is made.
1204      *
1205      * @param     preferredWidth the preferred cursor width the component would like
1206      * to use.
1207      * @param     preferredHeight the preferred cursor height the component would like
1208      * to use.
1209      * @return    the closest matching supported cursor size, or a dimension of 0,0 if
1210      * the Toolkit implementation doesn't support custom cursors.
1211      * @exception HeadlessException if GraphicsEnvironment.isHeadless()
1212      * returns true
1213      * @see       java.awt.GraphicsEnvironment#isHeadless
1214      * @since     1.2
1215      */
1216     public Dimension getBestCursorSize(int preferredWidth,
1217         int preferredHeight) throws HeadlessException {
1218         GraphicsEnvironment.checkHeadless();
1219 
1220         // Override to implement custom cursor support.
1221         if (this != Toolkit.getDefaultToolkit()) {
1222             return Toolkit.getDefaultToolkit().
1223                 getBestCursorSize(preferredWidth, preferredHeight);
1224         } else {
1225             return new Dimension(0, 0);
1226         }
1227     }
1228 
1229     /**
1230      * Returns the maximum number of colors the Toolkit supports in a custom cursor
1231      * palette.<p>
1232      * Note: if an image is used which has more colors in its palette than
1233      * the supported maximum, the Toolkit implementation will attempt to flatten the
1234      * palette to the maximum.  Since converting low-resolution images is difficult,
1235      * no guarantees are made as to the quality of a cursor image which has more
1236      * colors than the system supports.  It is therefore recommended that this method
1237      * be called and an appropriate image used so no image conversion is made.
1238      *
1239      * @return    the maximum number of colors, or zero if custom cursors are not
1240      * supported by this Toolkit implementation.
1241      * @exception HeadlessException if GraphicsEnvironment.isHeadless()
1242      * returns true
1243      * @see       java.awt.GraphicsEnvironment#isHeadless
1244      * @since     1.2
1245      */
1246     public int getMaximumCursorColors() throws HeadlessException {
1247         GraphicsEnvironment.checkHeadless();
1248 
1249         // Override to implement custom cursor support.
1250         if (this != Toolkit.getDefaultToolkit()) {
1251             return Toolkit.getDefaultToolkit().getMaximumCursorColors();
1252         } else {
1253             return 0;
1254         }
1255     }
1256 
1257     /**
1258      * Returns whether Toolkit supports this state for
1259      * {@code Frame}s.  This method tells whether the <em>UI
1260      * concept</em> of, say, maximization or iconification is
1261      * supported.  It will always return false for "compound" states
1262      * like {@code Frame.ICONIFIED|Frame.MAXIMIZED_VERT}.
1263      * In other words, the rule of thumb is that only queries with a
1264      * single frame state constant as an argument are meaningful.
1265      * <p>Note that supporting a given concept is a platform-
1266      * dependent feature. Due to native limitations the Toolkit
1267      * object may report a particular state as supported, however at
1268      * the same time the Toolkit object will be unable to apply the
1269      * state to a given frame.  This circumstance has two following
1270      * consequences:
1271      * <ul>
1272      * <li>Only the return value of {@code false} for the present
1273      * method actually indicates that the given state is not
1274      * supported. If the method returns {@code true} the given state
1275      * may still be unsupported and/or unavailable for a particular
1276      * frame.
1277      * <li>The developer should consider examining the value of the
1278      * {@link java.awt.event.WindowEvent#getNewState} method of the
1279      * {@code WindowEvent} received through the {@link
1280      * java.awt.event.WindowStateListener}, rather than assuming
1281      * that the state given to the {@code setExtendedState()} method
1282      * will be definitely applied. For more information see the
1283      * documentation for the {@link Frame#setExtendedState} method.
1284      * </ul>
1285      *
1286      * @param state one of named frame state constants.
1287      * @return {@code true} is this frame state is supported by
1288      *     this Toolkit implementation, {@code false} otherwise.
1289      * @exception HeadlessException
1290      *     if {@code GraphicsEnvironment.isHeadless()}
1291      *     returns {@code true}.
1292      * @see java.awt.Window#addWindowStateListener
1293      * @since   1.4
1294      */
1295     public boolean isFrameStateSupported(int state)
1296         throws HeadlessException
1297     {
1298         GraphicsEnvironment.checkHeadless();
1299 
1300         if (this != Toolkit.getDefaultToolkit()) {
1301             return Toolkit.getDefaultToolkit().
1302                 isFrameStateSupported(state);
1303         } else {
1304             return (state == Frame.NORMAL); // others are not guaranteed
1305         }
1306     }
1307 
1308     /**
1309      * Support for I18N: any visible strings should be stored in
1310      * sun.awt.resources.awt.properties.  The ResourceBundle is stored
1311      * here, so that only one copy is maintained.
1312      */
1313     private static ResourceBundle resources;
1314     private static ResourceBundle platformResources;
1315 
1316     // called by platform toolkit
1317     private static void setPlatformResources(ResourceBundle bundle) {
1318         platformResources = bundle;
1319     }
1320 
1321     /**
1322      * Initialize JNI field and method ids
1323      */
1324     private static native void initIDs();
1325 
1326     /**
1327      * WARNING: This is a temporary workaround for a problem in the
1328      * way the AWT loads native libraries. A number of classes in the
1329      * AWT package have a native method, initIDs(), which initializes
1330      * the JNI field and method ids used in the native portion of
1331      * their implementation.
1332      *
1333      * Since the use and storage of these ids is done by the
1334      * implementation libraries, the implementation of these method is
1335      * provided by the particular AWT implementations (for example,
1336      * "Toolkit"s/Peer), such as Motif, Microsoft Windows, or Tiny. The
1337      * problem is that this means that the native libraries must be
1338      * loaded by the java.* classes, which do not necessarily know the
1339      * names of the libraries to load. A better way of doing this
1340      * would be to provide a separate library which defines java.awt.*
1341      * initIDs, and exports the relevant symbols out to the
1342      * implementation libraries.
1343      *
1344      * For now, we know it's done by the implementation, and we assume
1345      * that the name of the library is "awt".  -br.
1346      *
1347      * If you change loadLibraries(), please add the change to
1348      * java.awt.image.ColorModel.loadLibraries(). Unfortunately,
1349      * classes can be loaded in java.awt.image that depend on
1350      * libawt and there is no way to call Toolkit.loadLibraries()
1351      * directly.  -hung
1352      */
1353     private static boolean loaded = false;
1354     static void loadLibraries() {
1355         if (!loaded) {
1356             java.security.AccessController.doPrivileged(
1357                 new java.security.PrivilegedAction<Void>() {
1358                     public Void run() {
1359                         System.loadLibrary("awt");
1360                         return null;
1361                     }
1362                 });
1363             loaded = true;
1364         }
1365     }
1366 
1367     static {
1368         AWTAccessor.setToolkitAccessor(
1369                 new AWTAccessor.ToolkitAccessor() {
1370                     @Override
1371                     public void setPlatformResources(ResourceBundle bundle) {
1372                         Toolkit.setPlatformResources(bundle);
1373                     }
1374                 });
1375 
1376         java.security.AccessController.doPrivileged(
1377                                  new java.security.PrivilegedAction<Void>() {
1378             public Void run() {
1379                 try {
1380                     resources = ResourceBundle.getBundle("sun.awt.resources.awt");
1381                 } catch (MissingResourceException e) {
1382                     // No resource file; defaults will be used.
1383                 }
1384                 return null;
1385             }
1386         });
1387 
1388         // ensure that the proper libraries are loaded
1389         loadLibraries();
1390         initAssistiveTechnologies();
1391         initIDs();
1392     }
1393 
1394     /**
1395      * Gets a property with the specified key and default.
1396      * This method returns defaultValue if the property is not found.
1397      *
1398      * @param  key the key
1399      * @param  defaultValue the default value
1400      * @return the value of the property or the default value
1401      *         if the property was not found
1402      */
1403     public static String getProperty(String key, String defaultValue) {
1404         // first try platform specific bundle
1405         if (platformResources != null) {
1406             try {
1407                 return platformResources.getString(key);
1408             }
1409             catch (MissingResourceException e) {}
1410         }
1411 
1412         // then shared one
1413         if (resources != null) {
1414             try {
1415                 return resources.getString(key);
1416             }
1417             catch (MissingResourceException e) {}
1418         }
1419 
1420         return defaultValue;
1421     }
1422 
1423     /**
1424      * Get the application's or applet's EventQueue instance.
1425      * Depending on the Toolkit implementation, different EventQueues
1426      * may be returned for different applets.  Applets should
1427      * therefore not assume that the EventQueue instance returned
1428      * by this method will be shared by other applets or the system.
1429      *
1430      * <p> If there is a security manager then its
1431      * {@link SecurityManager#checkPermission checkPermission} method
1432      * is called to check {@code AWTPermission("accessEventQueue")}.
1433      *
1434      * @return    the {@code EventQueue} object
1435      * @throws  SecurityException
1436      *          if a security manager is set and it denies access to
1437      *          the {@code EventQueue}
1438      * @see     java.awt.AWTPermission
1439     */
1440     public final EventQueue getSystemEventQueue() {
1441         SecurityManager security = System.getSecurityManager();
1442         if (security != null) {
1443             security.checkPermission(AWTPermissions.CHECK_AWT_EVENTQUEUE_PERMISSION);
1444         }
1445         return getSystemEventQueueImpl();
1446     }
1447 
1448     /**
1449      * Gets the application's or applet's {@code EventQueue}
1450      * instance, without checking access.  For security reasons,
1451      * this can only be called from a {@code Toolkit} subclass.
1452      * @return the {@code EventQueue} object
1453      */
1454     protected abstract EventQueue getSystemEventQueueImpl();
1455 
1456     /* Accessor method for use by AWT package routines. */
1457     static EventQueue getEventQueue() {
1458         return getDefaultToolkit().getSystemEventQueueImpl();
1459     }
1460 
1461     /**
1462      * Creates a concrete, platform dependent, subclass of the abstract
1463      * DragGestureRecognizer class requested, and associates it with the
1464      * DragSource, Component and DragGestureListener specified.
1465      *
1466      * subclasses should override this to provide their own implementation
1467      *
1468      * @param <T> the type of DragGestureRecognizer to create
1469      * @param abstractRecognizerClass The abstract class of the required recognizer
1470      * @param ds                      The DragSource
1471      * @param c                       The Component target for the DragGestureRecognizer
1472      * @param srcActions              The actions permitted for the gesture
1473      * @param dgl                     The DragGestureListener
1474      *
1475      * @return the new object or null.  Always returns null if
1476      * GraphicsEnvironment.isHeadless() returns true.
1477      * @see java.awt.GraphicsEnvironment#isHeadless
1478      */
1479     public <T extends DragGestureRecognizer> T
1480         createDragGestureRecognizer(Class<T> abstractRecognizerClass,
1481                                     DragSource ds, Component c, int srcActions,
1482                                     DragGestureListener dgl)
1483     {
1484         return null;
1485     }
1486 
1487     /**
1488      * Obtains a value for the specified desktop property.
1489      *
1490      * A desktop property is a uniquely named value for a resource that
1491      * is Toolkit global in nature. Usually it also is an abstract
1492      * representation for an underlying platform dependent desktop setting.
1493      * For more information on desktop properties supported by the AWT see
1494      * <a href="doc-files/DesktopProperties.html">AWT Desktop Properties</a>.
1495      *
1496      * @param  propertyName the property name
1497      * @return the value for the specified desktop property
1498      */
1499     public final synchronized Object getDesktopProperty(String propertyName) {
1500         // This is a workaround for headless toolkits.  It would be
1501         // better to override this method but it is declared final.
1502         // "this instanceof" syntax defeats polymorphism.
1503         // --mm, 03/03/00
1504         if (this instanceof HeadlessToolkit) {
1505             return ((HeadlessToolkit)this).getUnderlyingToolkit()
1506                 .getDesktopProperty(propertyName);
1507         }
1508 
1509         if (desktopProperties.isEmpty()) {
1510             initializeDesktopProperties();
1511         }
1512 
1513         Object value;
1514 
1515         // This property should never be cached
1516         if (propertyName.equals("awt.dynamicLayoutSupported")) {
1517             return getDefaultToolkit().lazilyLoadDesktopProperty(propertyName);
1518         }
1519 
1520         value = desktopProperties.get(propertyName);
1521 
1522         if (value == null) {
1523             value = lazilyLoadDesktopProperty(propertyName);
1524 
1525             if (value != null) {
1526                 setDesktopProperty(propertyName, value);
1527             }
1528         }
1529 
1530         /* for property "awt.font.desktophints" */
1531         if (value instanceof RenderingHints) {
1532             value = ((RenderingHints)value).clone();
1533         }
1534 
1535         return value;
1536     }
1537 
1538     /**
1539      * Sets the named desktop property to the specified value and fires a
1540      * property change event to notify any listeners that the value has changed.
1541      *
1542      * @param  name the property name
1543      * @param  newValue the new property value
1544      */
1545     protected final void setDesktopProperty(String name, Object newValue) {
1546         // This is a workaround for headless toolkits.  It would be
1547         // better to override this method but it is declared final.
1548         // "this instanceof" syntax defeats polymorphism.
1549         // --mm, 03/03/00
1550         if (this instanceof HeadlessToolkit) {
1551             ((HeadlessToolkit)this).getUnderlyingToolkit()
1552                 .setDesktopProperty(name, newValue);
1553             return;
1554         }
1555         Object oldValue;
1556 
1557         synchronized (this) {
1558             oldValue = desktopProperties.get(name);
1559             desktopProperties.put(name, newValue);
1560         }
1561 
1562         // Don't fire change event if old and new values are null.
1563         // It helps to avoid recursive resending of WM_THEMECHANGED
1564         if (oldValue != null || newValue != null) {
1565             desktopPropsSupport.firePropertyChange(name, oldValue, newValue);
1566         }
1567     }
1568 
1569     /**
1570      * An opportunity to lazily evaluate desktop property values.
1571      * @return the desktop property or null
1572      * @param name the name
1573      */
1574     protected Object lazilyLoadDesktopProperty(String name) {
1575         return null;
1576     }
1577 
1578     /**
1579      * initializeDesktopProperties
1580      */
1581     protected void initializeDesktopProperties() {
1582     }
1583 
1584     /**
1585      * Adds the specified property change listener for the named desktop
1586      * property. When a {@link java.beans.PropertyChangeListenerProxy} object is added,
1587      * its property name is ignored, and the wrapped listener is added.
1588      * If {@code name} is {@code null} or {@code pcl} is {@code null},
1589      * no exception is thrown and no action is performed.
1590      *
1591      * @param   name The name of the property to listen for
1592      * @param   pcl The property change listener
1593      * @see PropertyChangeSupport#addPropertyChangeListener(String,
1594                 PropertyChangeListener)
1595      * @since   1.2
1596      */
1597     public void addPropertyChangeListener(String name, PropertyChangeListener pcl) {
1598         desktopPropsSupport.addPropertyChangeListener(name, pcl);
1599     }
1600 
1601     /**
1602      * Removes the specified property change listener for the named
1603      * desktop property. When a {@link java.beans.PropertyChangeListenerProxy} object
1604      * is removed, its property name is ignored, and
1605      * the wrapped listener is removed.
1606      * If {@code name} is {@code null} or {@code pcl} is {@code null},
1607      * no exception is thrown and no action is performed.
1608      *
1609      * @param   name The name of the property to remove
1610      * @param   pcl The property change listener
1611      * @see PropertyChangeSupport#removePropertyChangeListener(String,
1612                 PropertyChangeListener)
1613      * @since   1.2
1614      */
1615     public void removePropertyChangeListener(String name, PropertyChangeListener pcl) {
1616         desktopPropsSupport.removePropertyChangeListener(name, pcl);
1617     }
1618 
1619     /**
1620      * Returns an array of all the property change listeners
1621      * registered on this toolkit. The returned array
1622      * contains {@link java.beans.PropertyChangeListenerProxy} objects
1623      * that associate listeners with the names of desktop properties.
1624      *
1625      * @return all of this toolkit's {@link PropertyChangeListener}
1626      *         objects wrapped in {@code java.beans.PropertyChangeListenerProxy} objects
1627      *         or an empty array  if no listeners are added
1628      *
1629      * @see PropertyChangeSupport#getPropertyChangeListeners()
1630      * @since 1.4
1631      */
1632     public PropertyChangeListener[] getPropertyChangeListeners() {
1633         return desktopPropsSupport.getPropertyChangeListeners();
1634     }
1635 
1636     /**
1637      * Returns an array of all property change listeners
1638      * associated with the specified name of a desktop property.
1639      *
1640      * @param  propertyName the named property
1641      * @return all of the {@code PropertyChangeListener} objects
1642      *         associated with the specified name of a desktop property
1643      *         or an empty array if no such listeners are added
1644      *
1645      * @see PropertyChangeSupport#getPropertyChangeListeners(String)
1646      * @since 1.4
1647      */
1648     public PropertyChangeListener[] getPropertyChangeListeners(String propertyName) {
1649         return desktopPropsSupport.getPropertyChangeListeners(propertyName);
1650     }
1651 
1652     /**
1653      * The desktop properties.
1654      */
1655     protected final Map<String,Object> desktopProperties =
1656             new HashMap<String,Object>();
1657     /**
1658      * The desktop properties change support.
1659      */
1660     protected final PropertyChangeSupport desktopPropsSupport =
1661             Toolkit.createPropertyChangeSupport(this);
1662 
1663     /**
1664      * Returns whether the always-on-top mode is supported by this toolkit.
1665      * To detect whether the always-on-top mode is supported for a
1666      * particular Window, use {@link Window#isAlwaysOnTopSupported}.
1667      * @return {@code true}, if current toolkit supports the always-on-top mode,
1668      *     otherwise returns {@code false}
1669      * @see Window#isAlwaysOnTopSupported
1670      * @see Window#setAlwaysOnTop(boolean)
1671      * @since 1.6
1672      */
1673     public boolean isAlwaysOnTopSupported() {
1674         return true;
1675     }
1676 
1677     /**
1678      * Returns whether the given modality type is supported by this toolkit. If
1679      * a dialog with unsupported modality type is created, then
1680      * {@code Dialog.ModalityType.MODELESS} is used instead.
1681      *
1682      * @param modalityType modality type to be checked for support by this toolkit
1683      *
1684      * @return {@code true}, if current toolkit supports given modality
1685      *     type, {@code false} otherwise
1686      *
1687      * @see java.awt.Dialog.ModalityType
1688      * @see java.awt.Dialog#getModalityType
1689      * @see java.awt.Dialog#setModalityType
1690      *
1691      * @since 1.6
1692      */
1693     public abstract boolean isModalityTypeSupported(Dialog.ModalityType modalityType);
1694 
1695     /**
1696      * Returns whether the given modal exclusion type is supported by this
1697      * toolkit. If an unsupported modal exclusion type property is set on a window,
1698      * then {@code Dialog.ModalExclusionType.NO_EXCLUDE} is used instead.
1699      *
1700      * @param modalExclusionType modal exclusion type to be checked for support by this toolkit
1701      *
1702      * @return {@code true}, if current toolkit supports given modal exclusion
1703      *     type, {@code false} otherwise
1704      *
1705      * @see java.awt.Dialog.ModalExclusionType
1706      * @see java.awt.Window#getModalExclusionType
1707      * @see java.awt.Window#setModalExclusionType
1708      *
1709      * @since 1.6
1710      */
1711     public abstract boolean isModalExclusionTypeSupported(Dialog.ModalExclusionType modalExclusionType);
1712 
1713     // 8014718: logging has been removed from SunToolkit
1714 
1715     private static final int LONG_BITS = 64;
1716     private int[] calls = new int[LONG_BITS];
1717     private static volatile long enabledOnToolkitMask;
1718     private AWTEventListener eventListener = null;
1719     private WeakHashMap<AWTEventListener, SelectiveAWTEventListener> listener2SelectiveListener = new WeakHashMap<>();
1720 
1721     /*
1722      * Extracts a "pure" AWTEventListener from a AWTEventListenerProxy,
1723      * if the listener is proxied.
1724      */
1725     private static AWTEventListener deProxyAWTEventListener(AWTEventListener l)
1726     {
1727         AWTEventListener localL = l;
1728 
1729         if (localL == null) {
1730             return null;
1731         }
1732         // if user passed in a AWTEventListenerProxy object, extract
1733         // the listener
1734         if (l instanceof AWTEventListenerProxy) {
1735             localL = ((AWTEventListenerProxy)l).getListener();
1736         }
1737         return localL;
1738     }
1739 
1740     /**
1741      * Adds an AWTEventListener to receive all AWTEvents dispatched
1742      * system-wide that conform to the given {@code eventMask}.
1743      * <p>
1744      * First, if there is a security manager, its {@code checkPermission}
1745      * method is called with an
1746      * {@code AWTPermission("listenToAllAWTEvents")} permission.
1747      * This may result in a SecurityException.
1748      * <p>
1749      * {@code eventMask} is a bitmask of event types to receive.
1750      * It is constructed by bitwise OR-ing together the event masks
1751      * defined in {@code AWTEvent}.
1752      * <p>
1753      * Note:  event listener use is not recommended for normal
1754      * application use, but are intended solely to support special
1755      * purpose facilities including support for accessibility,
1756      * event record/playback, and diagnostic tracing.
1757      *
1758      * If listener is null, no exception is thrown and no action is performed.
1759      *
1760      * @param    listener   the event listener.
1761      * @param    eventMask  the bitmask of event types to receive
1762      * @throws SecurityException
1763      *        if a security manager exists and its
1764      *        {@code checkPermission} method doesn't allow the operation.
1765      * @see      #removeAWTEventListener
1766      * @see      #getAWTEventListeners
1767      * @see      SecurityManager#checkPermission
1768      * @see      java.awt.AWTEvent
1769      * @see      java.awt.AWTPermission
1770      * @see      java.awt.event.AWTEventListener
1771      * @see      java.awt.event.AWTEventListenerProxy
1772      * @since    1.2
1773      */
1774     public void addAWTEventListener(AWTEventListener listener, long eventMask) {
1775         AWTEventListener localL = deProxyAWTEventListener(listener);
1776 
1777         if (localL == null) {
1778             return;
1779         }
1780         SecurityManager security = System.getSecurityManager();
1781         if (security != null) {
1782           security.checkPermission(AWTPermissions.ALL_AWT_EVENTS_PERMISSION);
1783         }
1784         synchronized (this) {
1785             SelectiveAWTEventListener selectiveListener =
1786                 listener2SelectiveListener.get(localL);
1787 
1788             if (selectiveListener == null) {
1789                 // Create a new selectiveListener.
1790                 selectiveListener = new SelectiveAWTEventListener(localL,
1791                                                                  eventMask);
1792                 listener2SelectiveListener.put(localL, selectiveListener);
1793                 eventListener = ToolkitEventMulticaster.add(eventListener,
1794                                                             selectiveListener);
1795             }
1796             // OR the eventMask into the selectiveListener's event mask.
1797             selectiveListener.orEventMasks(eventMask);
1798 
1799             enabledOnToolkitMask |= eventMask;
1800 
1801             long mask = eventMask;
1802             for (int i=0; i<LONG_BITS; i++) {
1803                 // If no bits are set, break out of loop.
1804                 if (mask == 0) {
1805                     break;
1806                 }
1807                 if ((mask & 1L) != 0) {  // Always test bit 0.
1808                     calls[i]++;
1809                 }
1810                 mask >>>= 1;  // Right shift, fill with zeros on left.
1811             }
1812         }
1813     }
1814 
1815     /**
1816      * Removes an AWTEventListener from receiving dispatched AWTEvents.
1817      * <p>
1818      * First, if there is a security manager, its {@code checkPermission}
1819      * method is called with an
1820      * {@code AWTPermission("listenToAllAWTEvents")} permission.
1821      * This may result in a SecurityException.
1822      * <p>
1823      * Note:  event listener use is not recommended for normal
1824      * application use, but are intended solely to support special
1825      * purpose facilities including support for accessibility,
1826      * event record/playback, and diagnostic tracing.
1827      *
1828      * If listener is null, no exception is thrown and no action is performed.
1829      *
1830      * @param    listener   the event listener.
1831      * @throws SecurityException
1832      *        if a security manager exists and its
1833      *        {@code checkPermission} method doesn't allow the operation.
1834      * @see      #addAWTEventListener
1835      * @see      #getAWTEventListeners
1836      * @see      SecurityManager#checkPermission
1837      * @see      java.awt.AWTEvent
1838      * @see      java.awt.AWTPermission
1839      * @see      java.awt.event.AWTEventListener
1840      * @see      java.awt.event.AWTEventListenerProxy
1841      * @since    1.2
1842      */
1843     public void removeAWTEventListener(AWTEventListener listener) {
1844         AWTEventListener localL = deProxyAWTEventListener(listener);
1845 
1846         if (listener == null) {
1847             return;
1848         }
1849         SecurityManager security = System.getSecurityManager();
1850         if (security != null) {
1851             security.checkPermission(AWTPermissions.ALL_AWT_EVENTS_PERMISSION);
1852         }
1853 
1854         synchronized (this) {
1855             SelectiveAWTEventListener selectiveListener =
1856                 listener2SelectiveListener.get(localL);
1857 
1858             if (selectiveListener != null) {
1859                 listener2SelectiveListener.remove(localL);
1860                 int[] listenerCalls = selectiveListener.getCalls();
1861                 for (int i=0; i<LONG_BITS; i++) {
1862                     calls[i] -= listenerCalls[i];
1863                     assert calls[i] >= 0: "Negative Listeners count";
1864 
1865                     if (calls[i] == 0) {
1866                         enabledOnToolkitMask &= ~(1L<<i);
1867                     }
1868                 }
1869             }
1870             eventListener = ToolkitEventMulticaster.remove(eventListener,
1871             (selectiveListener == null) ? localL : selectiveListener);
1872         }
1873     }
1874 
1875     static boolean enabledOnToolkit(long eventMask) {
1876         return (enabledOnToolkitMask & eventMask) != 0;
1877         }
1878 
1879     synchronized int countAWTEventListeners(long eventMask) {
1880         int ci = 0;
1881         for (; eventMask != 0; eventMask >>>= 1, ci++) {
1882         }
1883         ci--;
1884         return calls[ci];
1885     }
1886     /**
1887      * Returns an array of all the {@code AWTEventListener}s
1888      * registered on this toolkit.
1889      * If there is a security manager, its {@code checkPermission}
1890      * method is called with an
1891      * {@code AWTPermission("listenToAllAWTEvents")} permission.
1892      * This may result in a SecurityException.
1893      * Listeners can be returned
1894      * within {@code AWTEventListenerProxy} objects, which also contain
1895      * the event mask for the given listener.
1896      * Note that listener objects
1897      * added multiple times appear only once in the returned array.
1898      *
1899      * @return all of the {@code AWTEventListener}s or an empty
1900      *         array if no listeners are currently registered
1901      * @throws SecurityException
1902      *        if a security manager exists and its
1903      *        {@code checkPermission} method doesn't allow the operation.
1904      * @see      #addAWTEventListener
1905      * @see      #removeAWTEventListener
1906      * @see      SecurityManager#checkPermission
1907      * @see      java.awt.AWTEvent
1908      * @see      java.awt.AWTPermission
1909      * @see      java.awt.event.AWTEventListener
1910      * @see      java.awt.event.AWTEventListenerProxy
1911      * @since 1.4
1912      */
1913     public AWTEventListener[] getAWTEventListeners() {
1914         SecurityManager security = System.getSecurityManager();
1915         if (security != null) {
1916             security.checkPermission(AWTPermissions.ALL_AWT_EVENTS_PERMISSION);
1917         }
1918         synchronized (this) {
1919             EventListener[] la = ToolkitEventMulticaster.getListeners(eventListener,AWTEventListener.class);
1920 
1921             AWTEventListener[] ret = new AWTEventListener[la.length];
1922             for (int i = 0; i < la.length; i++) {
1923                 SelectiveAWTEventListener sael = (SelectiveAWTEventListener)la[i];
1924                 AWTEventListener tempL = sael.getListener();
1925                 //assert tempL is not an AWTEventListenerProxy - we should
1926                 // have weeded them all out
1927                 // don't want to wrap a proxy inside a proxy
1928                 ret[i] = new AWTEventListenerProxy(sael.getEventMask(), tempL);
1929             }
1930             return ret;
1931         }
1932     }
1933 
1934     /**
1935      * Returns an array of all the {@code AWTEventListener}s
1936      * registered on this toolkit which listen to all of the event
1937      * types specified in the {@code eventMask} argument.
1938      * If there is a security manager, its {@code checkPermission}
1939      * method is called with an
1940      * {@code AWTPermission("listenToAllAWTEvents")} permission.
1941      * This may result in a SecurityException.
1942      * Listeners can be returned
1943      * within {@code AWTEventListenerProxy} objects, which also contain
1944      * the event mask for the given listener.
1945      * Note that listener objects
1946      * added multiple times appear only once in the returned array.
1947      *
1948      * @param  eventMask the bitmask of event types to listen for
1949      * @return all of the {@code AWTEventListener}s registered
1950      *         on this toolkit for the specified
1951      *         event types, or an empty array if no such listeners
1952      *         are currently registered
1953      * @throws SecurityException
1954      *        if a security manager exists and its
1955      *        {@code checkPermission} method doesn't allow the operation.
1956      * @see      #addAWTEventListener
1957      * @see      #removeAWTEventListener
1958      * @see      SecurityManager#checkPermission
1959      * @see      java.awt.AWTEvent
1960      * @see      java.awt.AWTPermission
1961      * @see      java.awt.event.AWTEventListener
1962      * @see      java.awt.event.AWTEventListenerProxy
1963      * @since 1.4
1964      */
1965     public AWTEventListener[] getAWTEventListeners(long eventMask) {
1966         SecurityManager security = System.getSecurityManager();
1967         if (security != null) {
1968             security.checkPermission(AWTPermissions.ALL_AWT_EVENTS_PERMISSION);
1969         }
1970         synchronized (this) {
1971             EventListener[] la = ToolkitEventMulticaster.getListeners(eventListener,AWTEventListener.class);
1972 
1973             java.util.List<AWTEventListenerProxy> list = new ArrayList<>(la.length);
1974 
1975             for (int i = 0; i < la.length; i++) {
1976                 SelectiveAWTEventListener sael = (SelectiveAWTEventListener)la[i];
1977                 if ((sael.getEventMask() & eventMask) == eventMask) {
1978                     //AWTEventListener tempL = sael.getListener();
1979                     list.add(new AWTEventListenerProxy(sael.getEventMask(),
1980                                                        sael.getListener()));
1981                 }
1982             }
1983             return list.toArray(new AWTEventListener[0]);
1984         }
1985     }
1986 
1987     /*
1988      * This method notifies any AWTEventListeners that an event
1989      * is about to be dispatched.
1990      *
1991      * @param theEvent the event which will be dispatched.
1992      */
1993     void notifyAWTEventListeners(AWTEvent theEvent) {
1994         // This is a workaround for headless toolkits.  It would be
1995         // better to override this method but it is declared package private.
1996         // "this instanceof" syntax defeats polymorphism.
1997         // --mm, 03/03/00
1998         if (this instanceof HeadlessToolkit) {
1999             ((HeadlessToolkit)this).getUnderlyingToolkit()
2000                 .notifyAWTEventListeners(theEvent);
2001             return;
2002         }
2003 
2004         AWTEventListener eventListener = this.eventListener;
2005         if (eventListener != null) {
2006             eventListener.eventDispatched(theEvent);
2007         }
2008     }
2009 
2010     private static class ToolkitEventMulticaster extends AWTEventMulticaster
2011         implements AWTEventListener {
2012         // Implementation cloned from AWTEventMulticaster.
2013 
2014         ToolkitEventMulticaster(AWTEventListener a, AWTEventListener b) {
2015             super(a, b);
2016         }
2017 
2018         @SuppressWarnings("overloads")
2019         static AWTEventListener add(AWTEventListener a,
2020                                     AWTEventListener b) {
2021             if (a == null)  return b;
2022             if (b == null)  return a;
2023             return new ToolkitEventMulticaster(a, b);
2024         }
2025 
2026         @SuppressWarnings("overloads")
2027         static AWTEventListener remove(AWTEventListener l,
2028                                        AWTEventListener oldl) {
2029             return (AWTEventListener) removeInternal(l, oldl);
2030         }
2031 
2032         // #4178589: must overload remove(EventListener) to call our add()
2033         // instead of the static addInternal() so we allocate a
2034         // ToolkitEventMulticaster instead of an AWTEventMulticaster.
2035         // Note: this method is called by AWTEventListener.removeInternal(),
2036         // so its method signature must match AWTEventListener.remove().
2037         protected EventListener remove(EventListener oldl) {
2038             if (oldl == a)  return b;
2039             if (oldl == b)  return a;
2040             AWTEventListener a2 = (AWTEventListener)removeInternal(a, oldl);
2041             AWTEventListener b2 = (AWTEventListener)removeInternal(b, oldl);
2042             if (a2 == a && b2 == b) {
2043                 return this;    // it's not here
2044             }
2045             return add(a2, b2);
2046         }
2047 
2048         public void eventDispatched(AWTEvent event) {
2049             ((AWTEventListener)a).eventDispatched(event);
2050             ((AWTEventListener)b).eventDispatched(event);
2051         }
2052     }
2053 
2054     private class SelectiveAWTEventListener implements AWTEventListener {
2055         AWTEventListener listener;
2056         private long eventMask;
2057         // This array contains the number of times to call the eventlistener
2058         // for each event type.
2059         int[] calls = new int[Toolkit.LONG_BITS];
2060 
2061         public AWTEventListener getListener() {return listener;}
2062         public long getEventMask() {return eventMask;}
2063         public int[] getCalls() {return calls;}
2064 
2065         public void orEventMasks(long mask) {
2066             eventMask |= mask;
2067             // For each event bit set in mask, increment its call count.
2068             for (int i=0; i<Toolkit.LONG_BITS; i++) {
2069                 // If no bits are set, break out of loop.
2070                 if (mask == 0) {
2071                     break;
2072                 }
2073                 if ((mask & 1L) != 0) {  // Always test bit 0.
2074                     calls[i]++;
2075                 }
2076                 mask >>>= 1;  // Right shift, fill with zeros on left.
2077             }
2078         }
2079 
2080         SelectiveAWTEventListener(AWTEventListener l, long mask) {
2081             listener = l;
2082             eventMask = mask;
2083         }
2084 
2085         public void eventDispatched(AWTEvent event) {
2086             long eventBit = 0; // Used to save the bit of the event type.
2087             if (((eventBit = eventMask & AWTEvent.COMPONENT_EVENT_MASK) != 0 &&
2088                  event.id >= ComponentEvent.COMPONENT_FIRST &&
2089                  event.id <= ComponentEvent.COMPONENT_LAST)
2090              || ((eventBit = eventMask & AWTEvent.CONTAINER_EVENT_MASK) != 0 &&
2091                  event.id >= ContainerEvent.CONTAINER_FIRST &&
2092                  event.id <= ContainerEvent.CONTAINER_LAST)
2093              || ((eventBit = eventMask & AWTEvent.FOCUS_EVENT_MASK) != 0 &&
2094                  event.id >= FocusEvent.FOCUS_FIRST &&
2095                  event.id <= FocusEvent.FOCUS_LAST)
2096              || ((eventBit = eventMask & AWTEvent.KEY_EVENT_MASK) != 0 &&
2097                  event.id >= KeyEvent.KEY_FIRST &&
2098                  event.id <= KeyEvent.KEY_LAST)
2099              || ((eventBit = eventMask & AWTEvent.MOUSE_WHEEL_EVENT_MASK) != 0 &&
2100                  event.id == MouseEvent.MOUSE_WHEEL)
2101              || ((eventBit = eventMask & AWTEvent.MOUSE_MOTION_EVENT_MASK) != 0 &&
2102                  (event.id == MouseEvent.MOUSE_MOVED ||
2103                   event.id == MouseEvent.MOUSE_DRAGGED))
2104              || ((eventBit = eventMask & AWTEvent.MOUSE_EVENT_MASK) != 0 &&
2105                  event.id != MouseEvent.MOUSE_MOVED &&
2106                  event.id != MouseEvent.MOUSE_DRAGGED &&
2107                  event.id != MouseEvent.MOUSE_WHEEL &&
2108                  event.id >= MouseEvent.MOUSE_FIRST &&
2109                  event.id <= MouseEvent.MOUSE_LAST)
2110              || ((eventBit = eventMask & AWTEvent.WINDOW_EVENT_MASK) != 0 &&
2111                  (event.id >= WindowEvent.WINDOW_FIRST &&
2112                  event.id <= WindowEvent.WINDOW_LAST))
2113              || ((eventBit = eventMask & AWTEvent.ACTION_EVENT_MASK) != 0 &&
2114                  event.id >= ActionEvent.ACTION_FIRST &&
2115                  event.id <= ActionEvent.ACTION_LAST)
2116              || ((eventBit = eventMask & AWTEvent.ADJUSTMENT_EVENT_MASK) != 0 &&
2117                  event.id >= AdjustmentEvent.ADJUSTMENT_FIRST &&
2118                  event.id <= AdjustmentEvent.ADJUSTMENT_LAST)
2119              || ((eventBit = eventMask & AWTEvent.ITEM_EVENT_MASK) != 0 &&
2120                  event.id >= ItemEvent.ITEM_FIRST &&
2121                  event.id <= ItemEvent.ITEM_LAST)
2122              || ((eventBit = eventMask & AWTEvent.TEXT_EVENT_MASK) != 0 &&
2123                  event.id >= TextEvent.TEXT_FIRST &&
2124                  event.id <= TextEvent.TEXT_LAST)
2125              || ((eventBit = eventMask & AWTEvent.INPUT_METHOD_EVENT_MASK) != 0 &&
2126                  event.id >= InputMethodEvent.INPUT_METHOD_FIRST &&
2127                  event.id <= InputMethodEvent.INPUT_METHOD_LAST)
2128              || ((eventBit = eventMask & AWTEvent.PAINT_EVENT_MASK) != 0 &&
2129                  event.id >= PaintEvent.PAINT_FIRST &&
2130                  event.id <= PaintEvent.PAINT_LAST)
2131              || ((eventBit = eventMask & AWTEvent.INVOCATION_EVENT_MASK) != 0 &&
2132                  event.id >= InvocationEvent.INVOCATION_FIRST &&
2133                  event.id <= InvocationEvent.INVOCATION_LAST)
2134              || ((eventBit = eventMask & AWTEvent.HIERARCHY_EVENT_MASK) != 0 &&
2135                  event.id == HierarchyEvent.HIERARCHY_CHANGED)
2136              || ((eventBit = eventMask & AWTEvent.HIERARCHY_BOUNDS_EVENT_MASK) != 0 &&
2137                  (event.id == HierarchyEvent.ANCESTOR_MOVED ||
2138                   event.id == HierarchyEvent.ANCESTOR_RESIZED))
2139              || ((eventBit = eventMask & AWTEvent.WINDOW_STATE_EVENT_MASK) != 0 &&
2140                  event.id == WindowEvent.WINDOW_STATE_CHANGED)
2141              || ((eventBit = eventMask & AWTEvent.WINDOW_FOCUS_EVENT_MASK) != 0 &&
2142                  (event.id == WindowEvent.WINDOW_GAINED_FOCUS ||
2143                   event.id == WindowEvent.WINDOW_LOST_FOCUS))
2144                 || ((eventBit = eventMask & sun.awt.SunToolkit.GRAB_EVENT_MASK) != 0 &&
2145                     (event instanceof sun.awt.UngrabEvent))) {
2146                 // Get the index of the call count for this event type.
2147                 // Instead of using Math.log(...) we will calculate it with
2148                 // bit shifts. That's what previous implementation looked like:
2149                 //
2150                 // int ci = (int) (Math.log(eventBit)/Math.log(2));
2151                 int ci = 0;
2152                 for (long eMask = eventBit; eMask != 0; eMask >>>= 1, ci++) {
2153                 }
2154                 ci--;
2155                 // Call the listener as many times as it was added for this
2156                 // event type.
2157                 for (int i=0; i<calls[ci]; i++) {
2158                     listener.eventDispatched(event);
2159                 }
2160             }
2161         }
2162     }
2163 
2164     /**
2165      * Returns a map of visual attributes for the abstract level description
2166      * of the given input method highlight, or null if no mapping is found.
2167      * The style field of the input method highlight is ignored. The map
2168      * returned is unmodifiable.
2169      * @param highlight input method highlight
2170      * @return style attribute map, or {@code null}
2171      * @exception HeadlessException if
2172      *     {@code GraphicsEnvironment.isHeadless} returns true
2173      * @see       java.awt.GraphicsEnvironment#isHeadless
2174      * @since 1.3
2175      */
2176     public abstract Map<java.awt.font.TextAttribute,?>
2177         mapInputMethodHighlight(InputMethodHighlight highlight)
2178         throws HeadlessException;
2179 
2180     private static PropertyChangeSupport createPropertyChangeSupport(Toolkit toolkit) {
2181         if (toolkit instanceof SunToolkit || toolkit instanceof HeadlessToolkit) {
2182             return new DesktopPropertyChangeSupport(toolkit);
2183         } else {
2184             return new PropertyChangeSupport(toolkit);
2185         }
2186     }
2187 
2188     @SuppressWarnings("serial")
2189     private static class DesktopPropertyChangeSupport extends PropertyChangeSupport {
2190 
2191         private static final StringBuilder PROP_CHANGE_SUPPORT_KEY =
2192                 new StringBuilder("desktop property change support key");
2193         private final Object source;
2194 
2195         public DesktopPropertyChangeSupport(Object sourceBean) {
2196             super(sourceBean);
2197             source = sourceBean;
2198         }
2199 
2200         @Override
2201         public synchronized void addPropertyChangeListener(
2202                 String propertyName,
2203                 PropertyChangeListener listener)
2204         {
2205             PropertyChangeSupport pcs = (PropertyChangeSupport)
2206                     AppContext.getAppContext().get(PROP_CHANGE_SUPPORT_KEY);
2207             if (null == pcs) {
2208                 pcs = new PropertyChangeSupport(source);
2209                 AppContext.getAppContext().put(PROP_CHANGE_SUPPORT_KEY, pcs);
2210             }
2211             pcs.addPropertyChangeListener(propertyName, listener);
2212         }
2213 
2214         @Override
2215         public synchronized void removePropertyChangeListener(
2216                 String propertyName,
2217                 PropertyChangeListener listener)
2218         {
2219             PropertyChangeSupport pcs = (PropertyChangeSupport)
2220                     AppContext.getAppContext().get(PROP_CHANGE_SUPPORT_KEY);
2221             if (null != pcs) {
2222                 pcs.removePropertyChangeListener(propertyName, listener);
2223             }
2224         }
2225 
2226         @Override
2227         public synchronized PropertyChangeListener[] getPropertyChangeListeners()
2228         {
2229             PropertyChangeSupport pcs = (PropertyChangeSupport)
2230                     AppContext.getAppContext().get(PROP_CHANGE_SUPPORT_KEY);
2231             if (null != pcs) {
2232                 return pcs.getPropertyChangeListeners();
2233             } else {
2234                 return new PropertyChangeListener[0];
2235             }
2236         }
2237 
2238         @Override
2239         public synchronized PropertyChangeListener[] getPropertyChangeListeners(String propertyName)
2240         {
2241             PropertyChangeSupport pcs = (PropertyChangeSupport)
2242                     AppContext.getAppContext().get(PROP_CHANGE_SUPPORT_KEY);
2243             if (null != pcs) {
2244                 return pcs.getPropertyChangeListeners(propertyName);
2245             } else {
2246                 return new PropertyChangeListener[0];
2247             }
2248         }
2249 
2250         @Override
2251         public synchronized void addPropertyChangeListener(PropertyChangeListener listener) {
2252             PropertyChangeSupport pcs = (PropertyChangeSupport)
2253                     AppContext.getAppContext().get(PROP_CHANGE_SUPPORT_KEY);
2254             if (null == pcs) {
2255                 pcs = new PropertyChangeSupport(source);
2256                 AppContext.getAppContext().put(PROP_CHANGE_SUPPORT_KEY, pcs);
2257             }
2258             pcs.addPropertyChangeListener(listener);
2259         }
2260 
2261         @Override
2262         public synchronized void removePropertyChangeListener(PropertyChangeListener listener) {
2263             PropertyChangeSupport pcs = (PropertyChangeSupport)
2264                     AppContext.getAppContext().get(PROP_CHANGE_SUPPORT_KEY);
2265             if (null != pcs) {
2266                 pcs.removePropertyChangeListener(listener);
2267             }
2268         }
2269 
2270         /*
2271          * we do expect that all other fireXXX() methods of java.beans.PropertyChangeSupport
2272          * use this method.  If this will be changed we will need to change this class.
2273          */
2274         @Override
2275         public void firePropertyChange(final PropertyChangeEvent evt) {
2276             Object oldValue = evt.getOldValue();
2277             Object newValue = evt.getNewValue();
2278             String propertyName = evt.getPropertyName();
2279             if (oldValue != null && newValue != null && oldValue.equals(newValue)) {
2280                 return;
2281             }
2282             Runnable updater = new Runnable() {
2283                 public void run() {
2284                     PropertyChangeSupport pcs = (PropertyChangeSupport)
2285                             AppContext.getAppContext().get(PROP_CHANGE_SUPPORT_KEY);
2286                     if (null != pcs) {
2287                         pcs.firePropertyChange(evt);
2288                     }
2289                 }
2290             };
2291             final AppContext currentAppContext = AppContext.getAppContext();
2292             for (AppContext appContext : AppContext.getAppContexts()) {
2293                 if (null == appContext || appContext.isDisposed()) {
2294                     continue;
2295                 }
2296                 if (currentAppContext == appContext) {
2297                     updater.run();
2298                 } else {
2299                     final PeerEvent e = new PeerEvent(source, updater, PeerEvent.ULTIMATE_PRIORITY_EVENT);
2300                     SunToolkit.postEvent(appContext, e);
2301                 }
2302             }
2303         }
2304     }
2305 
2306     /**
2307     * Reports whether events from extra mouse buttons are allowed to be processed and posted into
2308     * {@code EventQueue}.
2309     * <br>
2310     * To change the returned value it is necessary to set the {@code sun.awt.enableExtraMouseButtons}
2311     * property before the {@code Toolkit} class initialization. This setting could be done on the application
2312     * startup by the following command:
2313     * <pre>
2314     * java -Dsun.awt.enableExtraMouseButtons=false Application
2315     * </pre>
2316     * Alternatively, the property could be set in the application by using the following code:
2317     * <pre>
2318     * System.setProperty("sun.awt.enableExtraMouseButtons", "true");
2319     * </pre>
2320     * before the {@code Toolkit} class initialization.
2321     * If not set by the time of the {@code Toolkit} class initialization, this property will be
2322     * initialized with {@code true}.
2323     * Changing this value after the {@code Toolkit} class initialization will have no effect.
2324     *
2325     * @exception HeadlessException if GraphicsEnvironment.isHeadless() returns true
2326     * @return {@code true} if events from extra mouse buttons are allowed to be processed and posted;
2327     *         {@code false} otherwise
2328     * @see System#getProperty(String propertyName)
2329     * @see System#setProperty(String propertyName, String value)
2330     * @see java.awt.EventQueue
2331     * @since 1.7
2332      */
2333     public boolean areExtraMouseButtonsEnabled() throws HeadlessException {
2334         GraphicsEnvironment.checkHeadless();
2335 
2336         return Toolkit.getDefaultToolkit().areExtraMouseButtonsEnabled();
2337     }
2338 }