|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Qt.WindowState>
com.trolltech.qt.core.Qt.WindowState
public static enum Qt.WindowState
This enum type is used to specify the current state of a top-level window.
The states are
Enum Constant Summary | |
---|---|
WindowActive
The window is the active window, i.e. it has keyboard focus. |
|
WindowFullScreen
The window fills the entire screen without any frame around it. |
|
WindowMaximized
The window is maximized with a frame around it. |
|
WindowMinimized
The window is minimized (i.e. iconified). |
|
WindowNoState
The window has no state set (in normal state). |
Method Summary | |
---|---|
static Qt.WindowStates |
createQFlags(Qt.WindowState... values)
|
static Qt.WindowState |
resolve(int value)
|
int |
value()
|
static Qt.WindowState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Qt.WindowState[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final Qt.WindowState WindowNoState
The window has no state set (in normal state).
public static final Qt.WindowState WindowMinimized
The window is minimized (i.e. iconified).
public static final Qt.WindowState WindowMaximized
The window is maximized with a frame around it.
public static final Qt.WindowState WindowFullScreen
The window fills the entire screen without any frame around it.
public static final Qt.WindowState WindowActive
The window is the active window, i.e. it has keyboard focus.
Method Detail |
---|
public static final Qt.WindowState[] values()
for(Qt.WindowState c : Qt.WindowState.values()) System.out.println(c);
public static Qt.WindowState valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namepublic int value()
value
in interface QtEnumerator
public static Qt.WindowStates createQFlags(Qt.WindowState... values)
public static Qt.WindowState resolve(int value)
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |