Uses of Class
java.awt.GraphicsConfiguration
-
Packages that use GraphicsConfiguration Package Description java.awt Contains all of the classes for creating user interfaces and for painting graphics and images. -
-
Uses of GraphicsConfiguration in java.awt
Methods in java.awt that return GraphicsConfiguration Modifier and Type Method and Description GraphicsConfiguration
GraphicsDevice. getBestConfiguration(GraphicsConfigTemplate gct)
Returns the "best" configuration possible that passes the criteria defined in theGraphicsConfigTemplate
.abstract GraphicsConfiguration
GraphicsConfigTemplate. getBestConfiguration(GraphicsConfiguration[] gc)
Returns the "best" configuration possible that passes the criteria defined in theGraphicsConfigTemplate
.abstract GraphicsConfiguration[]
GraphicsDevice. getConfigurations()
Returns all of theGraphicsConfiguration
objects associated with thisGraphicsDevice
.abstract GraphicsConfiguration
GraphicsDevice. getDefaultConfiguration()
Returns the defaultGraphicsConfiguration
associated with thisGraphicsDevice
.abstract GraphicsConfiguration
Graphics2D. getDeviceConfiguration()
Returns the device configuration associated with thisGraphics2D
.GraphicsConfiguration
Component. getGraphicsConfiguration()
Gets theGraphicsConfiguration
associated with thisComponent
.Methods in java.awt with parameters of type GraphicsConfiguration Modifier and Type Method and Description abstract GraphicsConfiguration
GraphicsConfigTemplate. getBestConfiguration(GraphicsConfiguration[] gc)
Returns the "best" configuration possible that passes the criteria defined in theGraphicsConfigTemplate
.ImageCapabilities
Image. getCapabilities(GraphicsConfiguration gc)
Returns an ImageCapabilities object which can be inquired as to the capabilities of this Image on the specified GraphicsConfiguration.Insets
Toolkit. getScreenInsets(GraphicsConfiguration gc)
Gets the insets of the screen.abstract boolean
GraphicsConfigTemplate. isGraphicsConfigSupported(GraphicsConfiguration gc)
Returns aboolean
indicating whether or not the specifiedGraphicsConfiguration
can be used to create a drawing surface that supports the indicated features.Constructors in java.awt with parameters of type GraphicsConfiguration Constructor and Description Canvas(GraphicsConfiguration config)
Constructs a new Canvas given a GraphicsConfiguration object.Dialog(Dialog owner, java.lang.String title, boolean modal, GraphicsConfiguration gc)
Constructs an initially invisibleDialog
with the specified ownerDialog
, title, modality andGraphicsConfiguration
.Dialog(Frame owner, java.lang.String title, boolean modal, GraphicsConfiguration gc)
Constructs an initially invisibleDialog
with the specified ownerFrame
, title, modality, andGraphicsConfiguration
.Dialog(Window owner, java.lang.String title, Dialog.ModalityType modalityType, GraphicsConfiguration gc)
Constructs an initially invisibleDialog
with the specified ownerWindow
, title, modality andGraphicsConfiguration
.Frame(GraphicsConfiguration gc)
Constructs a new, initially invisibleFrame
with the specifiedGraphicsConfiguration
.Frame(java.lang.String title, GraphicsConfiguration gc)
Constructs a new, initially invisibleFrame
object with the specified title and aGraphicsConfiguration
.Window(Window owner, GraphicsConfiguration gc)
Constructs a new, initially invisible window with the specified ownerWindow
and aGraphicsConfiguration
of a screen device.
-