Qt Jambi Home

com.trolltech.qt.core
Enum Qt.FillRule

java.lang.Object
  extended by java.lang.Enum<Qt.FillRule>
      extended by com.trolltech.qt.core.Qt.FillRule
All Implemented Interfaces:
QtEnumerator, java.io.Serializable, java.lang.Comparable<Qt.FillRule>
Enclosing interface:
Qt

public static enum Qt.FillRule
extends java.lang.Enum<Qt.FillRule>
implements QtEnumerator

Specifies which method should be used to fill the paths and polygons.


Enum Constant Summary
OddEvenFill
          Specifies that the region is filled using the odd even fill rule.
WindingFill
          Specifies that the region is filled using the non zero winding rule.
 
Method Summary
static Qt.FillRule 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.FillRule valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Qt.FillRule[] 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

OddEvenFill

public static final Qt.FillRule OddEvenFill

Specifies that the region is filled using the odd even fill rule. With this rule, we determine whether a point is inside the shape by using the following method. Draw a horizontal line from the point to a location outside the shape, and count the number of intersections. If the number of intersections is an odd number, the point is inside the shape. This mode is the default.


WindingFill

public static final Qt.FillRule WindingFill

Specifies that the region is filled using the non zero winding rule. With this rule, we determine whether a point is inside the shape by using the following method. Draw a horizontal line from the point to a location outside the shape. Determine whether the direction of the line at each intersection point is up or down. The winding number is determined by summing the direction of each intersection. If the number is non zero, the point is inside the shape. This fill mode can also in most cases be considered as the intersection of closed shapes.

Method Detail

values

public static final Qt.FillRule[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(Qt.FillRule c : Qt.FillRule.values())
        System.out.println(c);

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

valueOf

public static Qt.FillRule 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

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 Qt.FillRule resolve(int value)

Qt Jambi Home