|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<QEventLoop.ProcessEventsFlag>
com.trolltech.qt.core.QEventLoop.ProcessEventsFlag
public static enum QEventLoop.ProcessEventsFlag
This enum controls the types of events processed by the processEvents functions.
Enum Constant Summary | |
---|---|
AllEvents
All events except DeferredDelete are processed. |
|
DeferredDeletion
Allow objects to be queued for deletion at a later time. |
|
ExcludeSocketNotifiers
Do not process socket notifier events. |
|
ExcludeUserInputEvents
Do not process user input events, such as ButtonPress and KeyPress. |
|
WaitForMoreEvents
Wait for events if no pending events are available. |
|
X11ExcludeTimers
Internal. |
Method Summary | |
---|---|
static QEventLoop.ProcessEventsFlags |
createQFlags(QEventLoop.ProcessEventsFlag... values)
|
static QEventLoop.ProcessEventsFlag |
resolve(int value)
|
int |
value()
|
static QEventLoop.ProcessEventsFlag |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static QEventLoop.ProcessEventsFlag[] |
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 QEventLoop.ProcessEventsFlag AllEvents
All events except DeferredDelete are processed.
public static final QEventLoop.ProcessEventsFlag ExcludeUserInputEvents
Do not process user input events, such as ButtonPress and KeyPress. Note that the events are not discarded; they will be delivered the next time processEvents is called without the ExcludeUserInputEvents flag.
public static final QEventLoop.ProcessEventsFlag ExcludeSocketNotifiers
Do not process socket notifier events. Note that the events are not discarded; they will be delivered the next time processEvents is called without the ExcludeSocketNotifiers flag.
public static final QEventLoop.ProcessEventsFlag WaitForMoreEvents
Wait for events if no pending events are available.
public static final QEventLoop.ProcessEventsFlag X11ExcludeTimers
public static final QEventLoop.ProcessEventsFlag DeferredDeletion
Allow objects to be queued for deletion at a later time.
Method Detail |
---|
public static final QEventLoop.ProcessEventsFlag[] values()
for(QEventLoop.ProcessEventsFlag c : QEventLoop.ProcessEventsFlag.values()) System.out.println(c);
public static QEventLoop.ProcessEventsFlag 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 QEventLoop.ProcessEventsFlags createQFlags(QEventLoop.ProcessEventsFlag... values)
public static QEventLoop.ProcessEventsFlag resolve(int value)
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |