Spec-Zone .ru
спецификации, руководства, описания, API
All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class java.awt.Toolkit

java.lang.Object
   |
   +----java.awt.Toolkit

public abstract class Toolkit
extends Object
This class is the abstract superclass of all actual implementations of the Abstract Window Toolkit. Subclasses of Toolkit are used to bind the various components to particular native toolkit implementations.

Most applications should not call any of the methods in this class directly. The methods defined by Toolkit are the "glue" that joins the platform-independent classes in the java.awt package with their counterparts in java.awt.peer. Some methods defined by Toolkit query the native operating system directly.


Constructor Index

 o Toolkit()

Method Index

 o beep()
Emits an audio beep.
 o checkImage(Image, int, int, ImageObserver)
Indicates the construction status of a specified image that is being prepared for display.
 o createButton(Button)
Creates this toolkit's implementation of Button using the specified peer interface.
 o createCanvas(Canvas)
Creates this toolkit's implementation of Canvas using the specified peer interface.
 o createCheckbox(Checkbox)
Creates this toolkit's implementation of Checkbox using the specified peer interface.
 o createCheckboxMenuItem(CheckboxMenuItem)
Creates this toolkit's implementation of CheckboxMenuItem using the specified peer interface.
 o createChoice(Choice)
Creates this toolkit's implementation of Choice using the specified peer interface.
 o createComponent(Component)
Creates a peer for a component or container.
 o createDialog(Dialog)
Creates this toolkit's implementation of Dialog using the specified peer interface.
 o createFileDialog(FileDialog)
Creates this toolkit's implementation of FileDialog using the specified peer interface.
 o createFrame(Frame)
Creates this toolkit's implementation of Frame using the specified peer interface.
 o createImage(byte[])
Creates an image which decodes the image stored in the specified byte array.
 o createImage(byte[], int, int)
Creates an image which decodes the image stored in the specified byte array, and at the specified offset and length.
 o createImage(ImageProducer)
Creates an image with the specified image producer.
 o createLabel(Label)
Creates this toolkit's implementation of Label using the specified peer interface.
 o createList(List)
Creates this toolkit's implementation of List using the specified peer interface.
 o createMenu(Menu)
Creates this toolkit's implementation of Menu using the specified peer interface.
 o createMenuBar(MenuBar)
Creates this toolkit's implementation of MenuBar using the specified peer interface.
 o createMenuItem(MenuItem)
Creates this toolkit's implementation of MenuItem using the specified peer interface.
 o createPanel(Panel)
Creates this toolkit's implementation of Panel using the specified peer interface.
 o createPopupMenu(PopupMenu)
Creates this toolkit's implementation of PopupMenu using the specified peer interface.
 o createScrollbar(Scrollbar)
Creates this toolkit's implementation of Scrollbar using the specified peer interface.
 o createScrollPane(ScrollPane)
Creates this toolkit's implementation of ScrollPane using the specified peer interface.
 o createTextArea(TextArea)
Creates this toolkit's implementation of TextArea using the specified peer interface.
 o createTextField(TextField)
Creates this toolkit's implementation of TextField using the specified peer interface.
 o createWindow(Window)
Creates this toolkit's implementation of Window using the specified peer interface.
 o getColorModel()
Determines the color model of this toolkit's screen.
 o getDefaultToolkit()
Gets the default toolkit.
 o getFontList()
Returns the names of the available fonts in this toolkit.

For 1.1, the following font names are deprecated (the replacement name follows):

The ZapfDingbats font is also deprecated in 1.1, but only as a separate fontname.

 o getFontMetrics(Font)
Gets the screen metrics of the font.
 o getFontPeer(String, int)
Creates this toolkit's implementation of Font using the specified peer interface.
 o getImage(String)
Returns an image which gets pixel data from the specified file.
 o getImage(URL)
Returns an image which gets pixel data from the specified URL.
 o getMenuShortcutKeyMask()
Determines which modifier key is the appropriate accelerator key for menu shortcuts.
 o getNativeContainer(Component)
Give native peers the ability to query the native container given a native component (eg the direct parent may be lightweight).
 o getPrintJob(Frame, String, Properties)
Gets a PrintJob object which is the result of initiating a print operation on the toolkit's platform.
 o getProperty(String, String)
Gets a property with the specified key and default.
 o getScreenResolution()
Returns the screen resolution in dots-per-inch.
 o getScreenSize()
Gets the size of the screen.
 o getSystemClipboard()
Gets an instance of the system clipboard which interfaces with clipboard facilities provided by the native platform.
 o getSystemEventQueue()
Get the application's or applet's EventQueue instance.
 o getSystemEventQueueImpl()
 o loadSystemColors(int[])
Fills in the integer array that is supplied as an argument with the current system color values.
 o prepareImage(Image, int, int, ImageObserver)
Prepares an image for rendering.
 o sync()
Synchronizes this toolkit's graphics state.

Constructors

 o Toolkit
 public Toolkit()

Methods

 o createButton
 protected abstract ButtonPeer createButton(Button target)
Creates this toolkit's implementation of Button using the specified peer interface.

Parameters:
target - the button to be implemented.
Returns:
this toolkit's implementation of Button.
See Also:
Button, ButtonPeer
 o createTextField
 protected abstract TextFieldPeer createTextField(TextField target)
Creates this toolkit's implementation of TextField using the specified peer interface.

Parameters:
target - the text field to be implemented.
Returns:
this toolkit's implementation of TextField.
See Also:
TextField, TextFieldPeer
 o createLabel
 protected abstract LabelPeer createLabel(Label target)
Creates this toolkit's implementation of Label using the specified peer interface.

Parameters:
target - the label to be implemented.
Returns:
this toolkit's implementation of Label.
See Also:
Label, LabelPeer
 o createList
 protected abstract ListPeer createList(List target)
Creates this toolkit's implementation of List using the specified peer interface.

Parameters:
target - the list to be implemented.
Returns:
this toolkit's implementation of List.
See Also:
List, ListPeer
 o createCheckbox
 protected abstract CheckboxPeer createCheckbox(Checkbox target)
Creates this toolkit's implementation of Checkbox using the specified peer interface.

Parameters:
target - the check box to be implemented.
Returns:
this toolkit's implementation of Checkbox.
See Also:
Checkbox, CheckboxPeer
 o createScrollbar
 protected abstract ScrollbarPeer createScrollbar(Scrollbar target)
Creates this toolkit's implementation of Scrollbar using the specified peer interface.

Parameters:
target - the scroll bar to be implemented.
Returns:
this toolkit's implementation of Scrollbar.
See Also:
Scrollbar, ScrollbarPeer
 o createScrollPane
 protected abstract ScrollPanePeer createScrollPane(ScrollPane target)
Creates this toolkit's implementation of ScrollPane using the specified peer interface.

Parameters:
target - the scroll pane to be implemented.
Returns:
this toolkit's implementation of ScrollPane.
See Also:
ScrollPane, ScrollPanePeer
 o createTextArea
 protected abstract TextAreaPeer createTextArea(TextArea target)
Creates this toolkit's implementation of TextArea using the specified peer interface.

Parameters:
target - the text area to be implemented.
Returns:
this toolkit's implementation of TextArea.
See Also:
TextArea, TextAreaPeer
 o createChoice
 protected abstract ChoicePeer createChoice(Choice target)
Creates this toolkit's implementation of Choice using the specified peer interface.

Parameters:
target - the choice to be implemented.
Returns:
this toolkit's implementation of Choice.
See Also:
Choice, ChoicePeer
 o createFrame
 protected abstract FramePeer createFrame(Frame target)
Creates this toolkit's implementation of Frame using the specified peer interface.

Parameters:
target - the frame to be implemented.
Returns:
this toolkit's implementation of Frame.
See Also:
Frame, FramePeer
 o createCanvas
 protected abstract CanvasPeer createCanvas(Canvas target)
Creates this toolkit's implementation of Canvas using the specified peer interface.

Parameters:
target - the canvas to be implemented.
Returns:
this toolkit's implementation of Canvas.
See Also:
Canvas, CanvasPeer
 o createPanel
 protected abstract PanelPeer createPanel(Panel target)
Creates this toolkit's implementation of Panel using the specified peer interface.

Parameters:
target - the panel to be implemented.
Returns:
this toolkit's implementation of Panel.
See Also:
Panel, PanelPeer
 o createWindow
 protected abstract WindowPeer createWindow(Window target)
Creates this toolkit's implementation of Window using the specified peer interface.

Parameters:
target - the window to be implemented.
Returns:
this toolkit's implementation of Window.
See Also:
Window, WindowPeer
 o createDialog
 protected abstract DialogPeer createDialog(Dialog target)
Creates this toolkit's implementation of Dialog using the specified peer interface.

Parameters:
target - the dialog to be implemented.
Returns:
this toolkit's implementation of Dialog.
See Also:
Dialog, DialogPeer
 o createMenuBar
 protected abstract MenuBarPeer createMenuBar(MenuBar target)
Creates this toolkit's implementation of MenuBar using the specified peer interface.

Parameters:
target - the menu bar to be implemented.
Returns:
this toolkit's implementation of MenuBar.
See Also:
MenuBar, MenuBarPeer
 o createMenu
 protected abstract MenuPeer createMenu(Menu target)
Creates this toolkit's implementation of Menu using the specified peer interface.

Parameters:
target - the menu to be implemented.
Returns:
this toolkit's implementation of Menu.
See Also:
Menu, MenuPeer
 o createPopupMenu
 protected abstract PopupMenuPeer createPopupMenu(PopupMenu target)
Creates this toolkit's implementation of PopupMenu using the specified peer interface.

Parameters:
target - the popup menu to be implemented.
Returns:
this toolkit's implementation of PopupMenu.
See Also:
PopupMenu, PopupMenuPeer
 o createMenuItem
 protected abstract MenuItemPeer createMenuItem(MenuItem target)
Creates this toolkit's implementation of MenuItem using the specified peer interface.

Parameters:
target - the menu item to be implemented.
Returns:
this toolkit's implementation of MenuItem.
See Also:
MenuItem, MenuItemPeer
 o createFileDialog
 protected abstract FileDialogPeer createFileDialog(FileDialog target)
Creates this toolkit's implementation of FileDialog using the specified peer interface.

Parameters:
target - the file dialog to be implemented.
Returns:
this toolkit's implementation of FileDialog.
See Also:
FileDialog, FileDialogPeer
 o createCheckboxMenuItem
 protected abstract CheckboxMenuItemPeer createCheckboxMenuItem(CheckboxMenuItem target)
Creates this toolkit's implementation of CheckboxMenuItem using the specified peer interface.

Parameters:
target - the checkbox menu item to be implemented.
Returns:
this toolkit's implementation of CheckboxMenuItem.
See Also:
CheckboxMenuItem, CheckboxMenuItemPeer
 o createComponent
 protected LightweightPeer createComponent(Component target)
Creates a peer for a component or container. This peer is windowless and allows the Component and Container classes to be extended directly to create windowless components that are defined entirely in java.

Parameters:
target - The Component to be created.
 o getFontPeer
 protected abstract FontPeer getFontPeer(String name,
                                         int style)
Creates this toolkit's implementation of Font using the specified peer interface.

Parameters:
target - the font to be implemented.
Returns:
this toolkit's implementation of Font.
See Also:
Font, FontPeer
 o loadSystemColors
 protected void loadSystemColors(int systemColors[])
Fills in the integer array that is supplied as an argument with the current system color values.

This method is called by the method updateSystemColors in the SystemColor class.

Parameters:
an - integer array.
See Also:
updateSystemColors
 o getScreenSize
 public abstract Dimension getScreenSize()
Gets the size of the screen.

Returns:
the size of this toolkit's screen, in pixels.
 o getScreenResolution
 public abstract int getScreenResolution()
Returns the screen resolution in dots-per-inch.

Returns:
this toolkit's screen resolution, in dots-per-inch.
 o getColorModel
 public abstract ColorModel getColorModel()
Determines the color model of this toolkit's screen.

ColorModel is an abstract class that encapsulates the ability to translate between the pixel values of an image and its red, green, blue, and alpha components.

This toolkit method is called by the getColorModel method of the Component class.

Returns:
the color model of this toolkit's screen.
See Also:
ColorModel, getColorModel
 o getFontList
 public abstract String[] getFontList()
Returns the names of the available fonts in this toolkit.

For 1.1, the following font names are deprecated (the replacement name follows):

The ZapfDingbats font is also deprecated in 1.1, but only as a separate fontname. Unicode defines the ZapfDingbat characters starting at ?, and as of 1.1 Java supports those characters.

Returns:
the names of the available fonts in this toolkit.
 o getFontMetrics
 public abstract FontMetrics getFontMetrics(Font font)
Gets the screen metrics of the font.

Parameters:
font - a font.
Returns:
the screen metrics of the specified font in this toolkit.
 o sync
 public abstract void sync()
Synchronizes this toolkit's graphics state. Some window systems may do buffering of graphics events.

This method ensures that the display is up-to-date. It is useful for animation.

 o getDefaultToolkit
 public static Toolkit getDefaultToolkit()
Gets the default toolkit.

If there is a system property named "awt.toolkit", that property is treated as the name of a class that is a subclass of Toolkit.

If the system property does not exist, then the default toolkit used is the class named "sun.awt.motif.MToolkit", which is a motif implementation of the Abstract Window Toolkit.

Returns:
the default toolkit.
Throws: AWTError
if a toolkit could not be found, or if one could not be accessed or instantiated.
 o getImage
 public abstract Image getImage(String filename)
Returns an image which gets pixel data from the specified file.

Parameters:
filename - the name of a file containing pixel data in a recognized file format.
Returns:
an image which gets its pixel data from the specified file.
 o getImage
 public abstract Image getImage(URL url)
Returns an image which gets pixel data from the specified URL.

Parameters:
url - the URL to use in fetching the pixel data.
Returns:
an image which gets its pixel data from the specified URL.
 o prepareImage
 public abstract boolean prepareImage(Image image,
                                      int width,
                                      int height,
                                      ImageObserver observer)
Prepares an image for rendering.

If the values of the width and height arguments are both -1, this method prepares the image for rendering on the default screen; otherwise, this method prepares an image for rendering on the default screen at the specified width and height.

The image data is downloaded asynchronously in another thread, and an appropriately scaled screen representation of the image is generated.

This method is called by components prepareImage methods.

Information on the flags returned by this method can be found with the definition of the ImageObserver interface.

Parameters:
image - the image for which to prepare a screen representation.
width - the width of the desired screen representation, or -1.
height - the height of the desired screen representation, or -1.
observer - the ImageObserver object to be notified as the image is being prepared.
Returns:
true if the image has already been fully prepared; false otherwise.
See Also:
prepareImage, prepareImage, ImageObserver
 o checkImage
 public abstract int checkImage(Image image,
                                int width,
                                int height,
                                ImageObserver observer)
Indicates the construction status of a specified image that is being prepared for display.

If the values of the width and height arguments are both -1, this method returns the construction status of a screen representation of the specified image in this toolkit. Otherwise, this method returns the construction status of a scaled representation of the image at the specified width and height.

This method does not cause the image to begin loading. An application must call prepareImage to force the loading of an image.

This method is called by the component's checkImage methods.

Information on the flags returned by this method can be found with the definition of the ImageObserver interface.

Parameters:
image - the image whose status is being checked.
width - the width of the scaled version whose status is being checked, or -1.
height - the height of the scaled version whose status is being checked, or -1.
observer - the ImageObserver object to be notified as the image is being prepared.
Returns:
the bitwise inclusive OR of the ImageObserver flags for the image data that is currently available.
See Also:
prepareImage, checkImage, checkImage, ImageObserver
 o createImage
 public abstract Image createImage(ImageProducer producer)
Creates an image with the specified image producer.

Parameters:
producer - the image producer to be used.
Returns:
an image with the specified image producer.
See Also:
Image, ImageProducer, createImage
 o createImage
 public Image createImage(byte imagedata[])
Creates an image which decodes the image stored in the specified byte array.

The data must be in some image format, such as GIF or JPEG, that is supported by this toolkit.

Parameters:
imagedata - an array of bytes, representing image data in a supported image format.
Returns:
an image.
 o createImage
 public abstract Image createImage(byte imagedata[],
                                   int imageoffset,
                                   int imagelength)
Creates an image which decodes the image stored in the specified byte array, and at the specified offset and length. The data must be in some image format, such as GIF or JPEG, that is supported by this toolkit.

Parameters:
imagedata - an array of bytes, representing image data in a supported image format.
imageoffset - the offset of the beginning of the data in the array.
imagelength - the length of the data in the array.
Returns:
an image.
 o getPrintJob
 public abstract PrintJob getPrintJob(Frame frame,
                                      String jobtitle,
                                      Properties props)
Gets a PrintJob object which is the result of initiating a print operation on the toolkit's platform.

Returns:
a PrintJob object, or null if the user cancelled the print job.
See Also:
PrintJob
 o beep
 public abstract void beep()
Emits an audio beep.

 o getSystemClipboard
 public abstract Clipboard getSystemClipboard()
Gets an instance of the system clipboard which interfaces with clipboard facilities provided by the native platform.

This clipboard enables data transfer between Java programs and native applications which use native clipboard facilities.

Returns:
an instance of the system clipboard.
See Also:
Clipboard
 o getMenuShortcutKeyMask
 public int getMenuShortcutKeyMask()
Determines which modifier key is the appropriate accelerator key for menu shortcuts.

Menu shortcuts, which are embodied in the MenuShortcut class, are handled by the MenuBar class.

By default, this method returns Event.CTRL_MASK. Toolkit implementations should override this method if the Control key isn't the correct key for accelerators.

Returns:
the modifier mask on the Event class that is used for menu shortcuts on this toolkit.
See Also:
MenuBar, MenuShortcut
 o getNativeContainer
 protected static Container getNativeContainer(Component c)
Give native peers the ability to query the native container given a native component (eg the direct parent may be lightweight).

 o getProperty
 public static String getProperty(String key,
                                  String defaultValue)
Gets a property with the specified key and default. This method returns defaultValue if the property is not found.

 o getSystemEventQueue
 public final EventQueue getSystemEventQueue()
Get the application's or applet's EventQueue instance. Depending on the Toolkit implementation, different EventQueues may be returned for different applets. Applets should therefore not assume that the EventQueue instance returned by this method will be shared by other applets or the system.

 o getSystemEventQueueImpl
 protected abstract EventQueue getSystemEventQueueImpl()

All Packages  Class Hierarchy  This Package  Previous  Next  Index

Submit a bug or feature - Version 1.1.8 of Java Platform API Specification
Java is a trademark or registered trademark of Sun Microsystems, Inc. in the US and other countries.
Copyright 1995-1999 Sun Microsystems, Inc. 901 San Antonio Road,
Palo Alto, California, 94303, U.S.A. All Rights Reserved.