Uses of Class
java.awt.GraphicsConfiguration
-
Packages that use GraphicsConfiguration 软件包 描述 java.awt 包含用于创建用户界面和绘制图形和图像的所有类。java.awt.image 提供创建和修改图像的类。javax.print 提供Java®打印服务API的主要类和接口。javax.swing 提供一套“轻量级”(全Java语言)组件,尽可能地在所有平台上工作。 -
-
Uses of GraphicsConfiguration in java.awt
Methods in java.awt that return GraphicsConfiguration Modifier and Type 方法 描述 abstract GraphicsConfiguration
GraphicsConfigTemplate. getBestConfiguration(GraphicsConfiguration[] gc)
返回可能通过GraphicsConfigTemplate
定义的条件的“最佳”配置。GraphicsConfiguration
GraphicsDevice. getBestConfiguration(GraphicsConfigTemplate gct)
返回可能通过GraphicsConfigTemplate
中定义的条件的“最佳”配置。abstract GraphicsConfiguration[]
GraphicsDevice. getConfigurations()
返回与此GraphicsDevice
相关联的所有GraphicsConfiguration
对象。abstract GraphicsConfiguration
GraphicsDevice. getDefaultConfiguration()
返回默认GraphicsConfiguration
与此相关GraphicsDevice
。abstract GraphicsConfiguration
Graphics2D. getDeviceConfiguration()
返回与此Graphics2D
关联的设备配置。GraphicsConfiguration
Component. getGraphicsConfiguration()
获取GraphicsConfiguration
与此Component
相关联。Methods in java.awt with parameters of type GraphicsConfiguration Modifier and Type 方法 描述 abstract GraphicsConfiguration
GraphicsConfigTemplate. getBestConfiguration(GraphicsConfiguration[] gc)
返回可能通过GraphicsConfigTemplate
定义的条件的“最佳”配置。ImageCapabilities
Image. getCapabilities(GraphicsConfiguration gc)
返回一个ImageCapabilities对象,可以在指定的GraphicsConfiguration上查询该Image的功能。Insets
Toolkit. getScreenInsets(GraphicsConfiguration gc)
获取屏幕的插图。abstract boolean
GraphicsConfigTemplate. isGraphicsConfigSupported(GraphicsConfiguration gc)
返回一个boolean
指示是否可以使用指定的GraphicsConfiguration
来创建支持指定功能的绘图面。Constructors in java.awt with parameters of type GraphicsConfiguration Constructor 描述 Canvas(GraphicsConfiguration config)
给一个GraphicsConfiguration对象构造一个新的Canvas。Dialog(Dialog owner, String title, boolean modal, GraphicsConfiguration gc)
构造最初无形Dialog
与指定的所有者Dialog
,标题,模式和GraphicsConfiguration
。Dialog(Frame owner, String title, boolean modal, GraphicsConfiguration gc)
构造最初不可见的Dialog
与指定的所有者Frame
,标题,模态和GraphicsConfiguration
。Dialog(Window owner, String title, Dialog.ModalityType modalityType, GraphicsConfiguration gc)
构造最初不可见的Dialog
与指定的所有者Window
,标题,模式和GraphicsConfiguration
。Frame(GraphicsConfiguration gc)
构造一个新的,最初看不到的Frame
,其中指定的是GraphicsConfiguration
。Frame(String title, GraphicsConfiguration gc)
构造一个新的,最初不可见的Frame
对象与指定的标题和一个GraphicsConfiguration
。Window(Window owner, GraphicsConfiguration gc)
构造一个新的最初不可见的窗口,其中指定的所有者为Window
和屏幕设备的GraphicsConfiguration
。 -
Uses of GraphicsConfiguration in java.awt.image
Methods in java.awt.image with parameters of type GraphicsConfiguration Modifier and Type 方法 描述 abstract int
VolatileImage. validate(GraphicsConfiguration gc)
如果自上一次validate
调用后表面已丢失,则尝试恢复图像的绘图面。 -
Uses of GraphicsConfiguration in javax.print
Methods in javax.print with parameters of type GraphicsConfiguration Modifier and Type 方法 描述 static PrintService
ServiceUI. printDialog(GraphicsConfiguration gc, int x, int y, PrintService[] services, PrintService defaultService, DocFlavor flavor, PrintRequestAttributeSet attributes)
向用户呈现一个对话框,用于选择打印服务(打印机)。 -
Uses of GraphicsConfiguration in javax.swing
Constructors in javax.swing with parameters of type GraphicsConfiguration Constructor 描述 JDialog(Dialog owner, String title, boolean modal, GraphicsConfiguration gc)
创建一个具有指定标题的对话框,所有者Dialog
,模式和GraphicsConfiguration
。JDialog(Frame owner, String title, boolean modal, GraphicsConfiguration gc)
创建一个具有指定标题的对话框,所有者Frame
,模态和GraphicsConfiguration
。JDialog(Window owner, String title, Dialog.ModalityType modalityType, GraphicsConfiguration gc)
创建一个具有指定标题的对话框,所有者Window
,模态和GraphicsConfiguration
。JFrame(GraphicsConfiguration gc)
在屏幕设备的指定GraphicsConfiguration
中创建一个Frame
和一个空白标题。JFrame(String title, GraphicsConfiguration gc)
创建JFrame
具有指定标题和指定GraphicsConfiguration
屏幕设备的。JWindow(GraphicsConfiguration gc)
使用指定的屏幕设备GraphicsConfiguration
创建一个窗口。JWindow(Window owner, GraphicsConfiguration gc)
创建具有指定所有者窗口的窗口和屏幕设备的GraphicsConfiguration
。
-