public static class DC.RasterOperation
extends com.jniwrapper.util.EnumItem
Modifier and Type | Field and Description |
---|---|
static DC.RasterOperation |
BLACKNESS
Fills the destination rectangle using the color associated
with index 0 in the physical palette.
|
static DC.RasterOperation |
CAPTUREBLT
Windows 98/Me, Windows 2000/XP: Includes any windows that are
layered on top of your window in the resulting image.
|
static DC.RasterOperation |
DSTINVERT
Inverts the destination rectangle.
|
static DC.RasterOperation |
MERGECOPY
Merges the colors of the source rectangle with the brush
currently selected in hdcDest, by using the Boolean AND operator.
|
static DC.RasterOperation |
MERGEPAINT
Merges the colors of the inverted source rectangle with the
colors of the destination rectangle by using the Boolean OR operator.
|
static DC.RasterOperation |
NOMIRRORBITMAP
Windows 98/Me, Windows 2000/XP: Prevents the bitmap from being mirrored.
|
static DC.RasterOperation |
NOTSRCCOPY
Copies the inverted source rectangle to the destination.
|
static DC.RasterOperation |
NOTSRCERASE
Combines the colors of the source and destination rectangles
by using the Boolean OR operator and then inverts the resultant color.
|
static DC.RasterOperation |
PATCOPY
Copies the brush currently selected in hdcDest, into the destination bitmap.
|
static DC.RasterOperation |
PATINVERT
Combines the colors of the brush currently selected in hdcDest,
with the colors of the destination rectangle by using the Boolean XOR operator.
|
static DC.RasterOperation |
PATPAINT
Combines the colors of the brush currently selected in hdcDest,
with the colors of the inverted source rectangle by using the
Boolean OR operator.
|
static DC.RasterOperation |
SRCAND
Combines the colors of the source and destination rectangles
by using the Boolean AND operator.
|
static DC.RasterOperation |
SRCCOPY
Copies the source rectangle directly to the destination rectangle.
|
static DC.RasterOperation |
SRCERASE
Combines the inverted colors of the destination rectangle with the
colors of the source rectangle by using the Boolean AND operator.
|
static DC.RasterOperation |
SRCINVERT
Combines the colors of the source and destination rectangles by using
the Boolean XOR operator.
|
static DC.RasterOperation |
SRCPAINT
Combines the colors of the source and destination rectangles by using
the Boolean OR operator.
|
static DC.RasterOperation |
WHITENESS
Fills the destination rectangle using the color associated with index 1
in the physical palette.
|
Modifier and Type | Method and Description |
---|---|
static DC.RasterOperation |
or(DC.RasterOperation[] operations)
Represnts the OR operation.
|
public static final DC.RasterOperation BLACKNESS
public static final DC.RasterOperation CAPTUREBLT
public static final DC.RasterOperation DSTINVERT
public static final DC.RasterOperation MERGECOPY
public static final DC.RasterOperation MERGEPAINT
public static final DC.RasterOperation NOMIRRORBITMAP
public static final DC.RasterOperation NOTSRCCOPY
public static final DC.RasterOperation NOTSRCERASE
public static final DC.RasterOperation PATCOPY
public static final DC.RasterOperation PATINVERT
public static final DC.RasterOperation PATPAINT
public static final DC.RasterOperation SRCAND
public static final DC.RasterOperation SRCCOPY
public static final DC.RasterOperation SRCERASE
public static final DC.RasterOperation SRCINVERT
public static final DC.RasterOperation SRCPAINT
public static final DC.RasterOperation WHITENESS
public static DC.RasterOperation or(DC.RasterOperation[] operations)