|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Qt.FocusPolicy>
com.trolltech.qt.core.Qt.FocusPolicy
public static enum Qt.FocusPolicy
This enum type defines the various policies a widget can have with respect to acquiring keyboard focus.
Enum Constant Summary | |
---|---|
ClickFocus
the widget accepts focus by clicking. |
|
NoFocus
the widget does not accept focus. |
|
StrongFocus
the widget accepts focus by both tabbing and clicking. |
|
TabFocus
the widget accepts focus by tabbing. |
|
WheelFocus
like Qt::StrongFocus plus the widget accepts focus by using the mouse wheel. |
Method Summary | |
---|---|
static Qt.FocusPolicy |
resolve(int value)
|
int |
value()
|
static Qt.FocusPolicy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Qt.FocusPolicy[] |
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.FocusPolicy NoFocus
the widget does not accept focus.
public static final Qt.FocusPolicy TabFocus
the widget accepts focus by tabbing.
public static final Qt.FocusPolicy ClickFocus
the widget accepts focus by clicking.
public static final Qt.FocusPolicy StrongFocus
the widget accepts focus by both tabbing and clicking. On Mac OS X this will also be indicate that the widget accepts tab focus when in 'Text/List focus mode'.
public static final Qt.FocusPolicy WheelFocus
like Qt::StrongFocus plus the widget accepts focus by using the mouse wheel.
Method Detail |
---|
public static final Qt.FocusPolicy[] values()
for(Qt.FocusPolicy c : Qt.FocusPolicy.values()) System.out.println(c);
public static Qt.FocusPolicy 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.FocusPolicy resolve(int value)
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |