|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Qt.PenJoinStyle>
com.trolltech.qt.core.Qt.PenJoinStyle
public static enum Qt.PenJoinStyle
This enum type defines the pen join styles supported by Qt, i.e. which joins between two connected lines can be drawn using QPainter.
![]() | ![]() | ![]() |
Qt::BevelJoin | Qt::MiterJoin | Qt::RoundJoin |
Enum Constant Summary | |
---|---|
BevelJoin
The triangular notch between the two lines is filled. |
|
MiterJoin
The outer edges of the lines are extended to meet at an angle, and this area is filled. |
|
MPenJoinStyle
Internal. |
|
RoundJoin
A circular arc between the two lines is filled. |
|
SvgMiterJoin
A miter join corresponding to the definition of a miter join in the SVG 1.2 Tiny specification. |
Method Summary | |
---|---|
static Qt.PenJoinStyle |
resolve(int value)
|
int |
value()
|
static Qt.PenJoinStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Qt.PenJoinStyle[] |
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.PenJoinStyle MiterJoin
The outer edges of the lines are extended to meet at an angle, and this area is filled.
public static final Qt.PenJoinStyle BevelJoin
The triangular notch between the two lines is filled.
public static final Qt.PenJoinStyle RoundJoin
A circular arc between the two lines is filled.
public static final Qt.PenJoinStyle SvgMiterJoin
A miter join corresponding to the definition of a miter join in the SVG 1.2 Tiny specification.
public static final Qt.PenJoinStyle MPenJoinStyle
Method Detail |
---|
public static final Qt.PenJoinStyle[] values()
for(Qt.PenJoinStyle c : Qt.PenJoinStyle.values()) System.out.println(c);
public static Qt.PenJoinStyle 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()
value
in interface QtEnumerator
public static Qt.PenJoinStyle resolve(int value)
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |