Qt Jambi Home

com.trolltech.qt.gui
Enum QAbstractItemView.DropIndicatorPosition

java.lang.Object
  extended by java.lang.Enum<QAbstractItemView.DropIndicatorPosition>
      extended by com.trolltech.qt.gui.QAbstractItemView.DropIndicatorPosition
All Implemented Interfaces:
QtEnumerator, java.io.Serializable, java.lang.Comparable<QAbstractItemView.DropIndicatorPosition>
Enclosing class:
QAbstractItemView

public static enum QAbstractItemView.DropIndicatorPosition
extends java.lang.Enum<QAbstractItemView.DropIndicatorPosition>
implements QtEnumerator

This enum indicates the position of the drop indicator in relation to the index at the current mouse position.

ConstantValueDescription
OnItem0The item will be dropped on the index.
AboveItem1The item will be dropped above the index.
BelowItem2The item will be dropped below the index.
OnViewport3The 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 are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

OnItem

public static final QAbstractItemView.DropIndicatorPosition OnItem

The item will be dropped on the index.


AboveItem

public static final QAbstractItemView.DropIndicatorPosition AboveItem

The item will be dropped above the index.


BelowItem

public static final QAbstractItemView.DropIndicatorPosition BelowItem

The item will be dropped below the index.


OnViewport

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

values

public static QAbstractItemView.DropIndicatorPosition[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (QAbstractItemView.DropIndicatorPosition c : QAbstractItemView.DropIndicatorPosition.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static QAbstractItemView.DropIndicatorPosition valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

value

public int value()
Description copied from interface: QtEnumerator
This function should return an integer value for the enum values of the enumeration that implements this interface.

Specified by:
value in interface QtEnumerator

resolve

public static QAbstractItemView.DropIndicatorPosition resolve(int value)

Qt Jambi Home