Qt Jambi Home

com.trolltech.qt.gui
Enum QFont.Weight

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

public static enum QFont.Weight
extends java.lang.Enum<QFont.Weight>
implements QtEnumerator

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:

ConstantValueDescription
Light2525
Normal5050
DemiBold6363
Bold7575
Black8787


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 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

Light

public static final QFont.Weight Light

25


Normal

public static final QFont.Weight Normal

50


DemiBold

public static final QFont.Weight DemiBold

63


Bold

public static final QFont.Weight Bold

75


Black

public static final QFont.Weight Black

87

Method Detail

values

public static QFont.Weight[] 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 (QFont.Weight c : QFont.Weight.values())
    System.out.println(c);

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

valueOf

public static QFont.Weight 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 QFont.Weight resolve(int value)

Qt Jambi Home