|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<QFont.Weight>
com.trolltech.qt.gui.QFont.Weight
public static enum QFont.Weight
Qt uses a weighting scale from 0 to 99 similar to, but not the same as, the scales used in Windows or CSS. A weight of 0 is ultralight, whilst 99 will be an extremely black.
This enum contains the predefined font weights:
| Constant | Value | Description |
|---|---|---|
| Light | 25 | 25 |
| Normal | 50 | 50 |
| DemiBold | 63 | 63 |
| Bold | 75 | 75 |
| Black | 87 | 87 |
| Enum Constant Summary | |
|---|---|
Black
87 |
|
Bold
75 |
|
DemiBold
63 |
|
Light
25 |
|
Normal
50 |
|
| Method Summary | |
|---|---|
static QFont.Weight |
resolve(int value)
|
int |
value()
This function should return an integer value for the enum values of the enumeration that implements this interface. |
static QFont.Weight |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static QFont.Weight[] |
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 QFont.Weight Light
25
public static final QFont.Weight Normal
50
public static final QFont.Weight DemiBold
63
public static final QFont.Weight Bold
75
public static final QFont.Weight Black
87
| Method Detail |
|---|
public static final QFont.Weight[] values()
for(QFont.Weight c : QFont.Weight.values())
System.out.println(c);
public static QFont.Weight 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 QtEnumeratorpublic static QFont.Weight resolve(int value)
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||