|
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Qt.ApplicationAttribute>
com.trolltech.qt.core.Qt.ApplicationAttribute
public static enum Qt.ApplicationAttribute
This enum describes attributes that change the behavior of application-wide features. These are enabled and disabled using QCoreApplication::setAttribute(), and can be tested for with QCoreApplication::testAttribute().
Enum Constant Summary | |
---|---|
AA_AttributeCount
Internal. |
|
AA_ImmediateWidgetCreation
Ensures that widgets are created as soon as they are constructed. |
|
AA_MSWindowsUseDirect3DByDefault
Is a Windows specific attribute, that will make the Direct3D paint engine the default Qt widget paint engine. |
Method Summary | |
---|---|
static Qt.ApplicationAttribute |
resolve(int value)
|
int |
value()
This function should return an integer value for the enum values of the enumeration that implements this interface. |
static Qt.ApplicationAttribute |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Qt.ApplicationAttribute[] |
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 Qt.ApplicationAttribute AA_ImmediateWidgetCreation
Ensures that widgets are created as soon as they are constructed. By default, resources for widgets are allocated on demand to improve efficiency and minimize resource usage. Setting or clearing this attribute affects widgets constructed after the change. Setting it tells Qt to create toplevel windows immediately. Therefore, if it is important to minimize resource consumption, do not set this attribute.
public static final Qt.ApplicationAttribute AA_MSWindowsUseDirect3DByDefault
Is a Windows specific attribute, that will make the Direct3D paint engine the default Qt widget paint engine. Note that you can toggle usage of the Direct3D engine on individual QWidgets by setting/clearing the WA_MSWindowsUseDirect3D attribute on a specific widget. This functionality is experimental.
public static final Qt.ApplicationAttribute AA_AttributeCount
Method Detail |
---|
public static final Qt.ApplicationAttribute[] values()
for(Qt.ApplicationAttribute c : Qt.ApplicationAttribute.values()) System.out.println(c);
public static Qt.ApplicationAttribute 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 Qt.ApplicationAttribute resolve(int value)
|
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |