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 变量和类型 方法 描述 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 变量和类型 方法 描述 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 构造器 描述 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)
使用指定的标题和GraphicsConfiguration
构造一个新的,最初不可见的Frame
对象。Window(Window owner, GraphicsConfiguration gc)
构造一个新的,最初不可见的窗口,其中包含指定的所有者Window
和一个屏幕设备的GraphicsConfiguration
。 -
Uses of GraphicsConfiguration in java.awt.image
Methods in java.awt.image with parameters of type GraphicsConfiguration 变量和类型 方法 描述 abstract int
VolatileImage. validate(GraphicsConfiguration gc)
如果自上次validate
调用后表面已丢失,则尝试恢复图像的绘图表面。 -
Uses of GraphicsConfiguration in javax.print
Methods in javax.print with parameters of type GraphicsConfiguration 变量和类型 方法 描述 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 构造器 描述 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)
使用指定的标题和指定的屏幕设备GraphicsConfiguration
创建JFrame
。JWindow(GraphicsConfiguration gc)
创建一个具有指定的屏幕设备GraphicsConfiguration
的窗口。JWindow(Window owner, GraphicsConfiguration gc)
使用指定的所有者窗口和屏幕设备的GraphicsConfiguration
创建一个窗口。
-