public interface WindowStyle
OR
operation to define
the style settings for a Window
. For instance, the DEFAULT
style is defined
as TITLEBAR | RESIZE | CLOSE
.Modifier and Type | Field and Description |
---|---|
static int |
CLOSE
Adds a close button to the window.
|
static int |
DEFAULT
The default style, a resizable and closeable window with a title bar.
|
static int |
FULLSCREEN
Makes the window a fullscreen window.
|
static int |
NONE
Undecorated, non-resizable window.
|
static int |
RESIZE
Makes the window resizable.
|
static int |
TITLEBAR
Adds a title bar and a fixed border to the window.
|
static final int NONE
static final int TITLEBAR
static final int RESIZE
static final int CLOSE
static final int FULLSCREEN
static final int DEFAULT