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 GraphicsConfigurationGraphicsConfigTemplate. getBestConfiguration(GraphicsConfiguration[] gc)返回可能通过GraphicsConfigTemplate定义的条件的“最佳”配置。GraphicsConfigurationGraphicsDevice. getBestConfiguration(GraphicsConfigTemplate gct)返回可能通过GraphicsConfigTemplate中定义的条件的“最佳”配置。abstract GraphicsConfiguration[]GraphicsDevice. getConfigurations()返回与此GraphicsDevice相关联的所有GraphicsConfiguration对象。abstract GraphicsConfigurationGraphicsDevice. getDefaultConfiguration()返回默认GraphicsConfiguration与此相关GraphicsDevice。abstract GraphicsConfigurationGraphics2D. getDeviceConfiguration()返回与此Graphics2D关联的设备配置。GraphicsConfigurationComponent. getGraphicsConfiguration()获取GraphicsConfiguration与此Component相关联。Methods in java.awt with parameters of type GraphicsConfiguration Modifier and Type 方法 描述 abstract GraphicsConfigurationGraphicsConfigTemplate. getBestConfiguration(GraphicsConfiguration[] gc)返回可能通过GraphicsConfigTemplate定义的条件的“最佳”配置。ImageCapabilitiesImage. getCapabilities(GraphicsConfiguration gc)返回一个ImageCapabilities对象,可以在指定的GraphicsConfiguration上查询该Image的功能。InsetsToolkit. getScreenInsets(GraphicsConfiguration gc)获取屏幕的插图。abstract booleanGraphicsConfigTemplate. 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 intVolatileImage. validate(GraphicsConfiguration gc)如果自上一次validate调用后表面已丢失,则尝试恢复图像的绘图面。 -
Uses of GraphicsConfiguration in javax.print
Methods in javax.print with parameters of type GraphicsConfiguration Modifier and Type 方法 描述 static PrintServiceServiceUI. 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。
-