com.trolltech.qt.core
Enum Qt.ScrollBarPolicy

java.lang.Object
  extended by java.lang.Enum<Qt.ScrollBarPolicy>
      extended by com.trolltech.qt.core.Qt.ScrollBarPolicy
All Implemented Interfaces:
QtEnumerator, java.io.Serializable, java.lang.Comparable<Qt.ScrollBarPolicy>
Enclosing interface:
Qt

public static enum Qt.ScrollBarPolicy
extends java.lang.Enum<Qt.ScrollBarPolicy>
implements QtEnumerator

This enum type describes the various modes of QAbstractScrollArea's scroll bars.

(The modes for the horizontal and vertical scroll bars are independent.)


Enum Constant Summary
ScrollBarAlwaysOff
          QAbstractScrollArea never shows a scroll bar.
ScrollBarAlwaysOn
          QAbstractScrollArea always shows a scroll bar.
ScrollBarAsNeeded
          QAbstractScrollArea shows a scroll bar when the content is too large to fit and not otherwise.
 
Method Summary
static Qt.ScrollBarPolicy resolve(int value)
           
 int value()
           
static Qt.ScrollBarPolicy valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Qt.ScrollBarPolicy[] 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

ScrollBarAsNeeded

public static final Qt.ScrollBarPolicy ScrollBarAsNeeded

QAbstractScrollArea shows a scroll bar when the content is too large to fit and not otherwise. This is the default.


ScrollBarAlwaysOff

public static final Qt.ScrollBarPolicy ScrollBarAlwaysOff

QAbstractScrollArea never shows a scroll bar.


ScrollBarAlwaysOn

public static final Qt.ScrollBarPolicy ScrollBarAlwaysOn

QAbstractScrollArea always shows a scroll bar.

Method Detail

values

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

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

valueOf

public static Qt.ScrollBarPolicy 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

value

public int value()
Specified by:
value in interface QtEnumerator

resolve

public static Qt.ScrollBarPolicy resolve(int value)