|
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<QAbstractItemView.DragDropMode>
com.trolltech.qt.gui.QAbstractItemView.DragDropMode
public static enum QAbstractItemView.DragDropMode
Describes the various drag and drop events the view can act upon. By default the view does not support dragging or dropping (NoDragDrop).
Note that the model used needs to provide support for drag and drop operations.
Enum Constant Summary | |
---|---|
DragDrop
The view supports both dragging and dropping |
|
DragOnly
The view supports dragging of its own items |
|
DropOnly
The view accepts drops |
|
InternalMove
only accepts move operations only from itself. |
|
NoDragDrop
Does not support dragging or dropping. |
Method Summary | |
---|---|
static QAbstractItemView.DragDropMode |
resolve(int value)
|
int |
value()
This function should return an integer value for the enum values of the enumeration that implements this interface. |
static QAbstractItemView.DragDropMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static QAbstractItemView.DragDropMode[] |
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 QAbstractItemView.DragDropMode NoDragDrop
Does not support dragging or dropping.
public static final QAbstractItemView.DragDropMode DragOnly
The view supports dragging of its own items
public static final QAbstractItemView.DragDropMode DropOnly
The view accepts drops
public static final QAbstractItemView.DragDropMode DragDrop
The view supports both dragging and dropping
public static final QAbstractItemView.DragDropMode InternalMove
only accepts move operations only from itself.
Method Detail |
---|
public static final QAbstractItemView.DragDropMode[] values()
for(QAbstractItemView.DragDropMode c : QAbstractItemView.DragDropMode.values()) System.out.println(c);
public static QAbstractItemView.DragDropMode 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()
QtEnumerator
value
in interface QtEnumerator
public static QAbstractItemView.DragDropMode resolve(int value)
|
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |