|
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<QPainter.RenderHint>
com.trolltech.qt.gui.QPainter.RenderHint
public static enum QPainter.RenderHint
Renderhints are used to specify flags to QPainter that may or may not be respected by any given engine.
Quality
,
Circles Example
Enum Constant Summary | |
---|---|
Antialiasing
Indicates that the engine should antialias edges of primitives if possible. |
|
HighQualityAntialiasing
An OpenGL-specific rendering hint indicating that the engine should use fragment programs and offscreen rendering for antialiasing. |
|
SmoothPixmapTransform
Indicates that the engine should use a smooth pixmap transformation algorithm (such as bilinear) rather than nearest neighbor. |
|
TextAntialiasing
Indicates that the engine should antialias text if possible. |
Method Summary | |
---|---|
static QPainter.RenderHints |
createQFlags(QPainter.RenderHint... values)
|
static QPainter.RenderHint |
resolve(int value)
|
int |
value()
This function should return an integer value for the enum values of the enumeration that implements this interface. |
static QPainter.RenderHint |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static QPainter.RenderHint[] |
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 QPainter.RenderHint Antialiasing
Indicates that the engine should antialias edges of primitives if possible.
public static final QPainter.RenderHint TextAntialiasing
Indicates that the engine should antialias text if possible.
public static final QPainter.RenderHint SmoothPixmapTransform
Indicates that the engine should use a smooth pixmap transformation algorithm (such as bilinear) rather than nearest neighbor.
public static final QPainter.RenderHint HighQualityAntialiasing
An OpenGL-specific rendering hint indicating that the engine should use fragment programs and offscreen rendering for antialiasing.
Method Detail |
---|
public static final QPainter.RenderHint[] values()
for(QPainter.RenderHint c : QPainter.RenderHint.values()) System.out.println(c);
public static QPainter.RenderHint 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 QPainter.RenderHints createQFlags(QPainter.RenderHint... values)
public static QPainter.RenderHint resolve(int value)
|
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |