org.gnu.gdk

Class Fill

public class Fill extends Enum

Field Summary
static FillOPAQUE_STIPPLED
Draw using the stipple bitmap.
static FillSOLID
Draw with the foreground color.
static FillSTIPPLED
Draw using a stipple bitmap.
static FillTILED
Draw with a tiled pixmap.
Method Summary
Filland(Fill other)
static Fillintern(int value)
Fillor(Fill other)
booleantest(Fill other)
Fillxor(Fill other)

Field Detail

OPAQUE_STIPPLED

public static final Fill OPAQUE_STIPPLED

Deprecated: Superceeded by java-gnome 4.0; this method or constant will no doubt exist conceptually, but it may have a different name or signature in order that the presented API is an algorithmic mapping of the underlying native libraries.

Draw using the stipple bitmap. Pixels corresponding to bits in the stipple bitmap that are set will be drawn in the foreground color; pixels corresponding to bits that are not set will be drawn with the background color.

SOLID

public static final Fill SOLID

Deprecated: Superceeded by java-gnome 4.0; this method or constant will no doubt exist conceptually, but it may have a different name or signature in order that the presented API is an algorithmic mapping of the underlying native libraries.

Draw with the foreground color.

STIPPLED

public static final Fill STIPPLED

Deprecated: Superceeded by java-gnome 4.0; this method or constant will no doubt exist conceptually, but it may have a different name or signature in order that the presented API is an algorithmic mapping of the underlying native libraries.

Draw using a stipple bitmap. Pixels corresponding to bits in the stipple bitmap that are set will be drawn in the foreground color; pixels corresponding to bits that are not set will be left untouched.

TILED

public static final Fill TILED

Deprecated: Superceeded by java-gnome 4.0; this method or constant will no doubt exist conceptually, but it may have a different name or signature in order that the presented API is an algorithmic mapping of the underlying native libraries.

Draw with a tiled pixmap.

Method Detail

and

public Fill and(Fill other)

intern

public static Fill intern(int value)

or

public Fill or(Fill other)

test

public boolean test(Fill other)

xor

public Fill xor(Fill other)