Java Doc for QtToolkit.java in  » 6.0-JDK-Modules » j2me » java » awt » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » 6.0 JDK Modules » j2me » java.awt 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   java.awt.Toolkit
      sun.awt.SunToolkit
         java.awt.QtToolkit

QtToolkit
class QtToolkit extends SunToolkit (Code)
The toolkit used by this AWT implementation based on the Qt library.
version:
   1.8, 11/27/01



Constructor Summary
public  QtToolkit()
    

Method Summary
public  voidactivate(Window window)
    
native public  voidbeep()
     Emits an audio beep.
public  intcheckImage(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.
Parameters:
  width - the width of the scaled version whose status isbeing checked, or -1.
Parameters:
  height - the height of the scaled version whose statusis being checked, or -1.
Parameters:
  observer - the ImageObserver object to benotified as the image is being prepared.

public  ImagecreateImage(ImageProducer producer)
     Creates an image with the specified image producer.
Parameters:
  producer - the image producer to be used.
public  ImagecreateImage(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, representingimage data in a supported image format.
Parameters:
  imageoffset - the offset of the beginningof the data in the array.
Parameters:
  imagelength - the length of the data in the array.
 ImagecreateImage(Component component, int width, int height)
    
public  voiddeactivate(Window window)
    
public  ColorModelgetColorModel()
     Determines the color model of this toolkit's screen.
public  StringgetDefaultCharacterEncoding()
    
public  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):

  • TimesRoman (use Serif)
  • Helvetica (use SansSerif)
  • Courier (use Monospaced)

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

public  FontMetricsgetFontMetrics(Font font)
     Gets the screen metrics of the font.
Parameters:
  font - a font.
 GraphicsgetGraphics(Window window)
    
 GraphicsEnvironmentgetLocalGraphicsEnvironment()
    
protected  intgetScreenHeight()
    
native public  intgetScreenResolution()
     Returns the screen resolution in dots-per-inch.
protected  intgetScreenWidth()
    
public  booleanprepareImage(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 ascreen representation.
Parameters:
  width - the width of the desired screenrepresentation, or -1.
Parameters:
  height - the height of the desired screenrepresentation, or -1.
Parameters:
  observer - the ImageObserverobject to be notified as theimage is being prepared.

public  voidsync()
     Synchronizes this toolkit's graphics state.


Constructor Detail
QtToolkit
public QtToolkit()(Code)




Method Detail
activate
public void activate(Window window)(Code)
Show the specified window in a multi-vm environment



beep
native public void beep()(Code)
Emits an audio beep.
since:
   JDK1.1



checkImage
public int checkImage(Image image, int width, int height, ImageObserver observer)(Code)
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.
Parameters:
  width - the width of the scaled version whose status isbeing checked, or -1.
Parameters:
  height - the height of the scaled version whose statusis being checked, or -1.
Parameters:
  observer - the ImageObserver object to benotified as the image is being prepared. the bitwise inclusive OR of theImageObserver flags for theimage data that is currently available.
See Also:   java.awt.Toolkit.prepareImage(java.awt.Imageintintjava.awt.image.ImageObserver)
See Also:   java.awt.Component.checkImage(java.awt.Imagejava.awt.image.ImageObserver)
See Also:   java.awt.Component.checkImage(java.awt.Imageintintjava.awt.image.ImageObserver)
See Also:   java.awt.image.ImageObserver
since:
   JDK1.0




createImage
public Image createImage(ImageProducer producer)(Code)
Creates an image with the specified image producer.
Parameters:
  producer - the image producer to be used. an image with the specified image producer.
See Also:   java.awt.Image
See Also:   java.awt.image.ImageProducer
See Also:   java.awt.Component.createImage(java.awt.image.ImageProducer)
since:
   JDK1.0



createImage
public Image createImage(byte[] imagedata, int imageoffset, int imagelength)(Code)
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, representingimage data in a supported image format.
Parameters:
  imageoffset - the offset of the beginningof the data in the array.
Parameters:
  imagelength - the length of the data in the array. an image.
since:
   JDK1.1



createImage
Image createImage(Component component, int width, int height)(Code)



deactivate
public void deactivate(Window window)(Code)
Hide the specified window in a multi-vm environment



getColorModel
public ColorModel getColorModel()(Code)
Determines the color model of this toolkit's screen.

ColorModel is an 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. the color model of this toolkit's screen.
See Also:   java.awt.image.ColorModel
See Also:   java.awt.Component.getColorModel
since:
   JDK1.0




getDefaultCharacterEncoding
public String getDefaultCharacterEncoding()(Code)



getFontList
public String[] getFontList()(Code)
Returns the names of the available fonts in this toolkit.

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

  • TimesRoman (use Serif)
  • Helvetica (use SansSerif)
  • Courier (use Monospaced)

The ZapfDingbats font is also deprecated in 1.1, but only as a separate fontname. Unicode defines the ZapfDingbat characters starting at \u2700, and as of 1.1 Java supports those characters. the names of the available fonts in this toolkit.
since:
   JDK1.0




getFontMetrics
public FontMetrics getFontMetrics(Font font)(Code)
Gets the screen metrics of the font.
Parameters:
  font - a font. the screen metrics of the specified font in this toolkit.
since:
   JDK1.0



getGraphics
Graphics getGraphics(Window window)(Code)



getLocalGraphicsEnvironment
GraphicsEnvironment getLocalGraphicsEnvironment()(Code)



getScreenHeight
protected int getScreenHeight()(Code)



getScreenResolution
native public int getScreenResolution()(Code)
Returns the screen resolution in dots-per-inch. this toolkit's screen resolution, in dots-per-inch.
since:
   JDK1.0



getScreenWidth
protected int getScreenWidth()(Code)



prepareImage
public boolean prepareImage(Image image, int width, int height, ImageObserver observer)(Code)
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 ascreen representation.
Parameters:
  width - the width of the desired screenrepresentation, or -1.
Parameters:
  height - the height of the desired screenrepresentation, or -1.
Parameters:
  observer - the ImageObserverobject to be notified as theimage is being prepared. true if the image has already beenfully prepared; false otherwise.
See Also:   java.awt.Component.prepareImage(java.awt.Imagejava.awt.image.ImageObserver)
See Also:   java.awt.Component.prepareImage(java.awt.Imageintintjava.awt.image.ImageObserver)
See Also:   java.awt.image.ImageObserver
since:
   JDK1.0




sync
public void sync()(Code)
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.
since:
   JDK1.0




Methods inherited from sun.awt.SunToolkit
public void activate(Window window)(Code)(Java Doc)
public Image createImage(String filename)(Code)(Java Doc)
public Image createImage(URL url)(Code)(Java Doc)
public Image createImage(byte[] data, int offset, int length)(Code)(Java Doc)
public static AppContext createNewAppContext()(Code)(Java Doc)
public void deactivate(Window window)(Code)(Java Doc)
public boolean enableInputMethodsForTextComponent()(Code)(Java Doc)
abstract public String getDefaultCharacterEncoding()(Code)(Java Doc)
public Image getImage(String filename)(Code)(Java Doc)
public Image getImage(URL url)(Code)(Java Doc)
abstract protected int getScreenHeight()(Code)(Java Doc)
public Dimension getScreenSize()(Code)(Java Doc)
abstract protected int getScreenWidth()(Code)(Java Doc)
protected EventQueue getSystemEventQueueImpl()(Code)(Java Doc)
public static void insertTargetMapping(Object target, AppContext appContext)(Code)(Java Doc)
public static void postEvent(AppContext appContext, AWTEvent event)(Code)(Java Doc)
public static AppContext targetToAppContext(Object target)(Code)(Java Doc)

Methods inherited from java.awt.Toolkit
public void addAWTEventListener(AWTEventListener listener, long eventMask)(Code)(Java Doc)
abstract public void beep()(Code)(Java Doc)
abstract public int checkImage(Image image, int width, int height, ImageObserver observer)(Code)(Java Doc)
abstract public Image createImage(String filename)(Code)(Java Doc)
abstract public Image createImage(URL url)(Code)(Java Doc)
abstract public Image createImage(ImageProducer producer)(Code)(Java Doc)
public Image createImage(byte[] imagedata)(Code)(Java Doc)
abstract public Image createImage(byte[] imagedata, int imageoffset, int imagelength)(Code)(Java Doc)
public AWTEventListener[] getAWTEventListeners()(Code)(Java Doc)
public AWTEventListener[] getAWTEventListeners(long eventMask)(Code)(Java Doc)
abstract public ColorModel getColorModel()(Code)(Java Doc)
public static Toolkit getDefaultToolkit()(Code)(Java Doc)
static EventQueue getEventQueue()(Code)(Java Doc)
abstract public String[] getFontList()(Code)(Java Doc)
abstract public FontMetrics getFontMetrics(Font font)(Code)(Java Doc)
Graphics getGraphics(Window window)(Code)(Java Doc)
abstract public Image getImage(String filename)(Code)(Java Doc)
abstract public Image getImage(URL url)(Code)(Java Doc)
GraphicsEnvironment getLocalGraphicsEnvironment()(Code)(Java Doc)
public int getMenuShortcutKeyMask()(Code)(Java Doc)
public static String getProperty(String key, String defaultValue)(Code)(Java Doc)
public Insets getScreenInsets(GraphicsConfiguration gc) throws HeadlessException(Code)(Java Doc)
abstract public int getScreenResolution()(Code)(Java Doc)
abstract public Dimension getScreenSize()(Code)(Java Doc)
abstract public Clipboard getSystemClipboard()(Code)(Java Doc)
final public EventQueue getSystemEventQueue()(Code)(Java Doc)
abstract protected EventQueue getSystemEventQueueImpl()(Code)(Java Doc)
public boolean isFrameStateSupported(int state) throws HeadlessException(Code)(Java Doc)
protected void loadSystemColors(int[] systemColors)(Code)(Java Doc)
void notifyAWTEventListeners(AWTEvent theEvent)(Code)(Java Doc)
abstract public boolean prepareImage(Image image, int width, int height, ImageObserver observer)(Code)(Java Doc)
public void removeAWTEventListener(AWTEventListener listener)(Code)(Java Doc)
abstract public void sync()(Code)(Java Doc)

Methods inherited from java.lang.Object
public boolean equals(Object obj)(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.