|
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<QAbstractItemView.DropIndicatorPosition>
com.trolltech.qt.gui.QAbstractItemView.DropIndicatorPosition
public static enum QAbstractItemView.DropIndicatorPosition
This enum indicates the position of the drop indicator in relation to the index at the current mouse position.
Constant | Value | Description |
---|---|---|
OnItem | 0 | The item will be dropped on the index. |
AboveItem | 1 | The item will be dropped above the index. |
BelowItem | 2 | The item will be dropped below the index. |
OnViewport | 3 | The item will be dropped onto a region of the viewport with no items. The way each view handles items dropped onto the viewport depends on the behavior of the underlying model in use. |
Enum Constant Summary | |
---|---|
AboveItem
The item will be dropped above the index. |
|
BelowItem
The item will be dropped below the index. |
|
OnItem
The item will be dropped on the index. |
|
OnViewport
The item will be dropped onto a region of the viewport with no items. |
Method Summary | |
---|---|
static QAbstractItemView.DropIndicatorPosition |
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.DropIndicatorPosition |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static QAbstractItemView.DropIndicatorPosition[] |
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.DropIndicatorPosition OnItem
The item will be dropped on the index.
public static final QAbstractItemView.DropIndicatorPosition AboveItem
The item will be dropped above the index.
public static final QAbstractItemView.DropIndicatorPosition BelowItem
The item will be dropped below the index.
public static final QAbstractItemView.DropIndicatorPosition OnViewport
The item will be dropped onto a region of the viewport with no items. The way each view handles items dropped onto the viewport depends on the behavior of the underlying model in use.
Method Detail |
---|
public static final QAbstractItemView.DropIndicatorPosition[] values()
for(QAbstractItemView.DropIndicatorPosition c : QAbstractItemView.DropIndicatorPosition.values()) System.out.println(c);
public static QAbstractItemView.DropIndicatorPosition 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.DropIndicatorPosition resolve(int value)
|
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |