亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? toolkit.java

?? this gcc-g++-3.3.1.tar.gz is a source file of gcc, you can learn more about gcc through this codes f
?? JAVA
?? 第 1 頁 / 共 2 頁
字號:
/* Toolkit.java -- AWT Toolkit superclass   Copyright (C) 1999, 2000, 2001, 2002 Free Software Foundation, Inc.This file is part of GNU Classpath.GNU Classpath is free software; you can redistribute it and/or modifyit under the terms of the GNU General Public License as published bythe Free Software Foundation; either version 2, or (at your option)any later version.GNU Classpath is distributed in the hope that it will be useful, butWITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNUGeneral Public License for more details.You should have received a copy of the GNU General Public Licensealong with GNU Classpath; see the file COPYING.  If not, write to theFree Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA02111-1307 USA.Linking this library statically or dynamically with other modules ismaking a combined work based on this library.  Thus, the terms andconditions of the GNU General Public License cover the wholecombination.As a special exception, the copyright holders of this library give youpermission to link this library with independent modules to produce anexecutable, regardless of the license terms of these independentmodules, and to copy and distribute the resulting executable underterms of your choice, provided that you also meet, for each linkedindependent module, the terms and conditions of the license of thatmodule.  An independent module is a module which is not derived fromor based on this library.  If you modify this library, you may extendthis exception to your version of the library, but you are notobligated to do so.  If you do not wish to do so, delete thisexception statement from your version. */package java.awt;import java.awt.datatransfer.Clipboard;import java.awt.dnd.DragGestureEvent;import java.awt.dnd.DragGestureListener;import java.awt.dnd.DragGestureRecognizer;import java.awt.dnd.DragSource;import java.awt.dnd.peer.DragSourceContextPeer;import java.awt.event.AWTEventListener;import java.awt.event.KeyEvent;import java.awt.im.InputMethodHighlight;import java.awt.image.ColorModel;import java.awt.image.ImageObserver;import java.awt.image.ImageProducer;import java.awt.peer.ButtonPeer;import java.awt.peer.CanvasPeer;import java.awt.peer.CheckboxPeer;import java.awt.peer.CheckboxMenuItemPeer;import java.awt.peer.ChoicePeer;import java.awt.peer.DialogPeer;import java.awt.peer.FileDialogPeer;import java.awt.peer.FontPeer;import java.awt.peer.FramePeer;import java.awt.peer.LabelPeer;import java.awt.peer.LightweightPeer;import java.awt.peer.ListPeer;import java.awt.peer.MenuPeer;import java.awt.peer.MenuBarPeer;import java.awt.peer.MenuItemPeer;import java.awt.peer.PanelPeer;import java.awt.peer.PopupMenuPeer;import java.awt.peer.ScrollbarPeer;import java.awt.peer.ScrollPanePeer;import java.awt.peer.TextAreaPeer;import java.awt.peer.TextFieldPeer;import java.awt.peer.WindowPeer;import java.beans.PropertyChangeListener;import java.beans.PropertyChangeSupport;import java.net.URL;import java.util.Map;import java.util.Properties;/** * The AWT system uses a set of native peer objects to implement its * widgets.  These peers are provided by a peer toolkit, that is accessed * via a subclass of this superclass.  The system toolkit is retrieved * by the static methods <code>getDefaultToolkit</code>.  This method * determines the system toolkit by examining the system property * <code>awt.toolkit</code>.  That property is set to the name of the * <code>Toolkit</code> subclass for the specified peer set.  If the * <code>awt.toolkit</code> property is not set, then the default * toolkit <code>gnu.java.awt.peer.gtk.GtkToolkit</code> is used.  This * toolkit creates its peers using the GTK+ toolkit. * * @author Aaron M. Renn <arenn@urbanophile.com> */public abstract class Toolkit{  /** The default toolkit name. */  private static String default_toolkit_name    = "gnu.awt.gtk.GtkToolkit";  /**   * The toolkit in use.  Once we load it, we don't ever change it   * if the awt.toolkit property is set.   */  private static Toolkit toolkit;  /** The toolkit properties. */  private static Properties props = new Properties();  protected final Map desktopProperties = new Properties();  protected final PropertyChangeSupport desktopPropsSupport    = new PropertyChangeSupport(this);  /**   * Default constructor for subclasses.   */  public Toolkit()  {  }  /**   * Creates a peer object for the specified <code>Button</code>.   *   * @param target The <code>Button</code> to create the peer for.   *    * @return The peer for the specified <code>Button</code> object.   *   * @exception HeadlessException If GraphicsEnvironment.isHeadless() is true.   */  protected abstract ButtonPeer createButton(Button target);  /**   * Creates a peer object for the specified <code>TextField</code>.   *   * @param target The <code>TextField</code> to create the peer for.   * @return The peer for the specified <code>TextField</code> object.   *   * @exception HeadlessException If GraphicsEnvironment.isHeadless() is true.   */  protected abstract TextFieldPeer createTextField(TextField target);  /**   * Creates a peer object for the specified <code>Label</code>.   *   * @param target The <code>Label</code> to create the peer for.   * @return The peer for the specified <code>Label</code> object.   *   * @exception HeadlessException If GraphicsEnvironment.isHeadless() is true.   */  protected abstract LabelPeer createLabel(Label target);  /**   * Creates a peer object for the specified <code>List</code>.   *   * @param target The <code>List</code> to create the peer for.   * @return The peer for the specified <code>List</code> object.   *   * @exception HeadlessException If GraphicsEnvironment.isHeadless() is true.   */  protected abstract ListPeer createList(List target);  /**   * Creates a peer object for the specified <code>Checkbox</code>.   *   * @param target The <code>Checkbox</code> to create the peer for.   * @return The peer for the specified <code>Checkbox</code> object.   *   * @exception HeadlessException If GraphicsEnvironment.isHeadless() is true.   */  protected abstract CheckboxPeer createCheckbox(Checkbox target);  /**   * Creates a peer object for the specified <code>Scrollbar</code>.   *   * @param target The <code>Scrollbar</code> to create the peer for.   * @return The peer for the specified <code>Scrollbar</code> object.   *   * @exception HeadlessException If GraphicsEnvironment.isHeadless() is true.   */  protected abstract ScrollbarPeer createScrollbar(Scrollbar target);  /**   * Creates a peer object for the specified <code>ScrollPane</code>.   *   * @param target The <code>ScrollPane</code> to create the peer for.   * @return The peer for the specified <code>ScrollPane</code> object.   *   * @exception HeadlessException If GraphicsEnvironment.isHeadless() is true.   */  protected abstract ScrollPanePeer createScrollPane(ScrollPane target);  /**   * Creates a peer object for the specified <code>TextArea</code>.   *   * @param target The <code>TextArea</code> to create the peer for.   * @return The peer for the specified <code>TextArea</code> object.   *   * @exception HeadlessException If GraphicsEnvironment.isHeadless() is true.   */  protected abstract TextAreaPeer createTextArea(TextArea target);  /**   * Creates a peer object for the specified <code>Choice</code>.   *   * @param target The <code>Choice</code> to create the peer for.   * @return The peer for the specified <code>Choice</code> object.   *   * @exception HeadlessException If GraphicsEnvironment.isHeadless() is true.   */  protected abstract ChoicePeer createChoice(Choice target);  /**   * Creates a peer object for the specified <code>Frame</code>.   *   * @param target The <code>Frame</code> to create the peer for.   * @return The peer for the specified <code>Frame</code> object.   *   * @exception HeadlessException If GraphicsEnvironment.isHeadless() is true.   */  protected abstract FramePeer createFrame(Frame target);  /**   * Creates a peer object for the specified <code>Canvas</code>.   *   * @param target The <code>Canvas</code> to create the peer for.   * @return The peer for the specified <code>Canvas</code> object.   */  protected abstract CanvasPeer createCanvas(Canvas target);  /**   * Creates a peer object for the specified <code>Panel</code>.   *   * @param target The <code>Panel</code> to create the peer for.   * @return The peer for the specified <code>Panel</code> object.   */  protected abstract PanelPeer createPanel(Panel target);  /**   * Creates a peer object for the specified <code>Window</code>.   *   * @param target The <code>Window</code> to create the peer for.   * @return The peer for the specified <code>Window</code> object.   *   * @exception HeadlessException If GraphicsEnvironment.isHeadless() is true.   */  protected abstract WindowPeer createWindow(Window target);  /**   * Creates a peer object for the specified <code>Dialog</code>.   *   * @param target The dialog to create the peer for   * @return The peer for the specified font name.   *   * @exception HeadlessException If GraphicsEnvironment.isHeadless() is true.   */  protected abstract DialogPeer createDialog(Dialog target);  /**   * Creates a peer object for the specified <code>MenuBar</code>.   *   * @param target The <code>MenuBar</code> to create the peer for.   * @return The peer for the specified <code>MenuBar</code> object.   *   * @exception HeadlessException If GraphicsEnvironment.isHeadless() is true.   */  protected abstract MenuBarPeer createMenuBar(MenuBar target);  /**   * Creates a peer object for the specified <code>Menu</code>.   *   * @param target The <code>Menu</code> to create the peer for.   * @return The peer for the specified <code>Menu</code> object.   *   * @exception HeadlessException If GraphicsEnvironment.isHeadless() is true.   */  protected abstract MenuPeer createMenu(Menu target);  /**   * Creates a peer object for the specified <code>PopupMenu</code>.   *   * @param target The <code>PopupMenu</code> to create the peer for.   * @return The peer for the specified <code>PopupMenu</code> object.   *   * @exception HeadlessException If GraphicsEnvironment.isHeadless() is true.   */  protected abstract PopupMenuPeer createPopupMenu(PopupMenu target);  /**   * Creates a peer object for the specified <code>MenuItem</code>.   *   * @param target The <code>MenuItem</code> to create the peer for.   * @return The peer for the specified <code>MenuItem</code> object.   *   * @exception HeadlessException If GraphicsEnvironment.isHeadless() is true.   */  protected abstract MenuItemPeer createMenuItem(MenuItem target);  /**   * Creates a peer object for the specified <code>FileDialog</code>.   *   * @param target The <code>FileDialog</code> to create the peer for.   * @return The peer for the specified <code>FileDialog</code> object.   *   * @exception HeadlessException If GraphicsEnvironment.isHeadless() is true.   */  protected abstract FileDialogPeer createFileDialog(FileDialog target);  /**   * Creates a peer object for the specified <code>CheckboxMenuItem</code>.   *   * @param target The <code>CheckboxMenuItem</code> to create the peer for.   * @return The peer for the specified <code>CheckboxMenuItem</code> object.   *   * @exception HeadlessException If GraphicsEnvironment.isHeadless() is true.   */  protected abstract CheckboxMenuItemPeer    createCheckboxMenuItem(CheckboxMenuItem target);  /**   * Creates a peer object for the specified <code>Component</code>.  The   * peer returned by this method is not a native windowing system peer   * with its own native window.  Instead, this method allows the component   * to draw on its parent window as a "lightweight" widget.   *   * XXX: FIXME   *   * @param target The <code>Component</code> to create the peer for.   * @return The peer for the specified <code>Component</code> object.   */  protected LightweightPeer createComponent(Component target)  {    return null;  }  /**   * Creates a peer object for the specified font name.   *   * @param name The font to create the peer for.   * @param style The font style to create the peer for.   * @return The peer for the specified font name.   */  protected abstract FontPeer getFontPeer(String name, int style);  /**   * Copies the current system colors into the specified array.  This is   * the interface used by the <code>SystemColors</code> class.   *   * @param colors The array to copy the system colors into.   *   * @exception HeadlessException If GraphicsEnvironment.isHeadless() is true.   */  protected void loadSystemColors(int systemColors[])  {    // XXX Implement.  }  /**   * @since 1.4   *   * @exception HeadlessException If GraphicsEnvironment.isHeadless() is true.   */  public void setDynamicLayout(boolean dynamic)  {  }  /**   * @since 1.4   *   * @exception HeadlessException If GraphicsEnvironment.isHeadless() is true.   */  protected boolean isDynamicLayoutSet()  {    return false;  }  /**   * @since 1.4   *   * @exception HeadlessException If GraphicsEnvironment.isHeadless() is true.   */  public boolean isDynamicLayoutActive()  {    return false;  }  /**   * Returns the dimensions of the screen in pixels.   *   * @return The dimensions of the screen in pixels.   *    * @exception HeadlessException If GraphicsEnvironment.isHeadless() is true.   */  public abstract Dimension getScreenSize();  /**   * Returns the screen resolution in dots per square inch.   *   * @return The screen resolution in dots per square inch.   *   * @exception HeadlessException If GraphicsEnvironment.isHeadless() is true.   */  public abstract int getScreenResolution();  /**   * @exception HeadlessException If GraphicsEnvironment.isHeadless() is true.   *   * @since 1.4   */  public Insets getScreenInsets(GraphicsConfiguration gc)  {    return null;  }  /**

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
麻豆成人久久精品二区三区红 | 欧美成人三级电影在线| 国产精品久久久久久久第一福利| 日韩成人精品在线观看| 91影院在线观看| 久久精品这里都是精品| 日本va欧美va瓶| 在线免费不卡电影| 亚洲国产成人porn| 99麻豆久久久国产精品免费优播| 精品黑人一区二区三区久久| 午夜成人免费电影| 色成人在线视频| ㊣最新国产の精品bt伙计久久| 国产美女久久久久| 精品国产伦理网| 日本不卡1234视频| 欧美日韩亚洲国产综合| 一区二区三区四区亚洲| 99视频超级精品| 国产精品久久久一本精品| 国产福利精品导航| 久久久久国产精品麻豆ai换脸| 美国av一区二区| 欧美一区二区三区不卡| 日韩激情在线观看| 欧美精选在线播放| 天堂一区二区在线| 欧美精品乱码久久久久久| 亚洲高清不卡在线| 欧美视频在线一区二区三区 | 中文字幕中文字幕一区二区| 国产麻豆精品视频| 久久久亚洲午夜电影| 国产一区二三区| 久久久综合九色合综国产精品| 国产综合成人久久大片91| www激情久久| 国产成人免费视频一区| 久久久久88色偷偷免费| 风间由美一区二区三区在线观看 | 欧美一级国产精品| 免费在线一区观看| 欧美精品一区二区蜜臀亚洲| 国产又粗又猛又爽又黄91精品| 欧美精品一区二区高清在线观看| 国产在线精品视频| 日本一区二区三区高清不卡 | 久久99精品久久久| 久久蜜桃香蕉精品一区二区三区| 国产福利91精品一区二区三区| 久久综合色婷婷| 风间由美一区二区av101 | 久久视频一区二区| 欧美精品123区| 天天做天天摸天天爽国产一区| 欧美一区二区三区性视频| 久久av资源站| 欧美国产日韩精品免费观看| 99久久er热在这里只有精品15| 亚洲宅男天堂在线观看无病毒| 91精品在线观看入口| 九九九久久久精品| 国产精品久久久久影视| 欧洲生活片亚洲生活在线观看| 图片区小说区国产精品视频| 日韩免费一区二区| 国产精品911| 一区二区三区四区不卡视频 | 成人午夜在线免费| 亚洲欧美色一区| 91精品久久久久久久99蜜桃| 久久精品国产色蜜蜜麻豆| 日本一区二区三区视频视频| 色菇凉天天综合网| 久久精品噜噜噜成人88aⅴ| 国产欧美精品区一区二区三区 | 高清在线观看日韩| 一区二区免费在线| 日韩欧美电影一区| 成人免费视频一区| 午夜影院久久久| 久久精品欧美一区二区三区不卡 | 国产精品一区二区久久精品爱涩| 日韩理论在线观看| 欧美一区二区精美| 成人免费视频app| 午夜av区久久| 国产精品毛片高清在线完整版| 欧美视频一区二区在线观看| 精品一区二区三区免费播放| 亚洲欧美一区二区三区极速播放 | 日韩欧美国产一区二区在线播放 | 国产资源在线一区| 亚洲午夜精品在线| 久久久不卡影院| 欧美日韩aaa| 国产成人免费视频精品含羞草妖精| 亚洲青青青在线视频| 精品国产伦一区二区三区观看体验 | 国产精品夜夜嗨| 午夜精品福利一区二区三区av| 国产女同性恋一区二区| 欧美另类高清zo欧美| 成人黄色大片在线观看| 奇米色777欧美一区二区| 最新中文字幕一区二区三区| 日韩精品一区二区三区视频播放 | 欧美成人乱码一区二区三区| 日本久久一区二区三区| 国产一区二区精品久久| 五月天丁香久久| 成人欧美一区二区三区视频网页| 精品三级在线看| 欧美肥妇bbw| 色综合天天综合在线视频| 国产在线不卡一区| 日本不卡免费在线视频| 亚洲图片有声小说| 亚洲视频香蕉人妖| 国产日韩精品一区| 欧美videossexotv100| 欧美日韩中文字幕精品| 99re免费视频精品全部| 国产精品一二一区| 久久成人麻豆午夜电影| 亚洲国产婷婷综合在线精品| 亚洲欧美中日韩| 国产欧美一二三区| 精品动漫一区二区三区在线观看 | 成人免费av资源| 国产一区二区三区国产| 久久精品国产秦先生| 秋霞电影一区二区| 亚洲福利视频导航| 一区二区三区在线免费视频| 中文字幕日韩一区| 国产精品久久精品日日| 欧美国产欧美综合| 国产午夜精品久久| 久久久久久久久久看片| 精品福利在线导航| 精品999在线播放| 日韩欧美电影一区| 欧美大片在线观看一区| 日韩一区二区精品| 日韩一区二区在线观看| 欧美高清视频不卡网| 9191成人精品久久| 欧美精品乱码久久久久久| 欧美日本一道本在线视频| 欧美午夜影院一区| 欧美性猛交xxxxxx富婆| 欧美无砖专区一中文字| 欧美日免费三级在线| 欧美片网站yy| 日韩午夜在线观看视频| 日韩欧美另类在线| 26uuu欧美| 中文成人av在线| 中文字幕一区二区在线播放| 椎名由奈av一区二区三区| 亚洲人成网站精品片在线观看| 亚洲免费av网站| 亚洲成a人片综合在线| 三级成人在线视频| 蜜臀精品久久久久久蜜臀| 久久精品国产99久久6| 国产一区二区三区四区五区入口 | 欧美日韩免费观看一区三区| 欧美日韩中字一区| 日韩欧美一区二区三区在线| 精品久久久久久久久久久院品网 | 制服.丝袜.亚洲.另类.中文| 日韩精品一区二区三区在线播放| 26uuu国产电影一区二区| 中文字幕免费不卡在线| 成人免费在线播放视频| 亚洲在线观看免费视频| 日韩精品欧美精品| 国产自产高清不卡| www.亚洲在线| 欧美性受xxxx黑人xyx性爽| 欧美一区二区三区免费大片| 久久婷婷国产综合国色天香| 国产精品视频麻豆| 亚洲成人动漫精品| 韩国午夜理伦三级不卡影院| 成人av电影在线播放| 在线观看欧美黄色| 精品久久久网站| 自拍偷拍亚洲综合| 偷窥少妇高潮呻吟av久久免费| 91免费在线播放| 91精品一区二区三区久久久久久| 国产午夜精品福利| 亚洲一二三专区| 国产综合成人久久大片91| 日本高清免费不卡视频| 日韩欧美的一区|