|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<QClipboard.Mode>
com.trolltech.qt.gui.QClipboard.Mode
public static enum QClipboard.Mode
This enum type is used to control which part of the system clipboard is used by QClipboard.:mimeData(), QClipboard::setMimeData() and related functions.
Enum Constant Summary | |
---|---|
Clipboard
indicates that data should be stored and retrieved from the global clipboard. |
|
FindBuffer
indicates that data should be stored and retrieved from the Find buffer. |
|
Selection
indicates that data should be stored and retrieved from the global mouse selection. |
Method Summary | |
---|---|
static QClipboard.Mode |
resolve(int value)
|
int |
value()
|
static QClipboard.Mode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static QClipboard.Mode[] |
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 QClipboard.Mode Clipboard
indicates that data should be stored and retrieved from the global clipboard.
public static final QClipboard.Mode Selection
indicates that data should be stored and retrieved from the global mouse selection. Support for Selection is provided only on systems with a global mouse selection (e.g. X11).
public static final QClipboard.Mode FindBuffer
indicates that data should be stored and retrieved from the Find buffer. This mode is used for holding search strings on Mac OS X.
Method Detail |
---|
public static final QClipboard.Mode[] values()
for(QClipboard.Mode c : QClipboard.Mode.values()) System.out.println(c);
public static QClipboard.Mode 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 QClipboard.Mode resolve(int value)
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |