Uses of Class
com.jniwrapper.win32.gdi.DC.RasterOperation

Packages that use DC.RasterOperation
com.jniwrapper.win32.gdi The com.jniwrapper.win32.gdi package contains classes that provide GDI related functionality. 
 

Uses of DC.RasterOperation in com.jniwrapper.win32.gdi
 

Fields in com.jniwrapper.win32.gdi declared as DC.RasterOperation
static DC.RasterOperation DC.RasterOperation.BLACKNESS
          Fills the destination rectangle using the color associated with index 0 in the physical palette.
static DC.RasterOperation 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 DC.RasterOperation.DSTINVERT
          Inverts the destination rectangle.
static DC.RasterOperation 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 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 DC.RasterOperation.NOMIRRORBITMAP
          Windows 98/Me, Windows 2000/XP: Prevents the bitmap from being mirrored.
static DC.RasterOperation DC.RasterOperation.NOTSRCCOPY
          Copies the inverted source rectangle to the destination.
static DC.RasterOperation 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 DC.RasterOperation.PATCOPY
          Copies the brush currently selected in hdcDest, into the destination bitmap.
static DC.RasterOperation 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 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 DC.RasterOperation.SRCAND
          Combines the colors of the source and destination rectangles by using the Boolean AND operator.
static DC.RasterOperation DC.RasterOperation.SRCCOPY
          Copies the source rectangle directly to the destination rectangle.
static DC.RasterOperation 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 DC.RasterOperation.SRCINVERT
          Combines the colors of the source and destination rectangles by using the Boolean XOR operator.
static DC.RasterOperation DC.RasterOperation.SRCPAINT
          Combines the colors of the source and destination rectangles by using the Boolean OR operator.
static DC.RasterOperation DC.RasterOperation.WHITENESS
          Fills the destination rectangle using the color associated with index 1 in the physical palette.
 

Methods in com.jniwrapper.win32.gdi that return DC.RasterOperation
static DC.RasterOperation DC.RasterOperation.or(DC.RasterOperation[] operations)
          Represnts the OR operation.
 

Methods in com.jniwrapper.win32.gdi with parameters of type DC.RasterOperation
static void DC.bitBlt(DC hdcDest, int xDest, int yDest, int width, int height, DC hdcSrc, int xSrc, int ySrc, DC.RasterOperation rop)
          Performs a bit-block transfer of the color data corresponding to a rectangle of pixels from the specified source device context into a destination device context.
static DC.RasterOperation DC.RasterOperation.or(DC.RasterOperation[] operations)
          Represnts the OR operation.
 boolean DC.patBlt(int xLeft, int yLeft, int width, int height, DC.RasterOperation rasterOp)
          This method paints the specified rectangle using the brush that is currently selected into the specified device context.
static boolean DC.stretchBlt(DC hDCDest, int xOriginDest, int yOriginDest, int widthDest, int heightDest, DC hDCSrc, int xOriginSrc, int yOriginSrc, int widthSrc, int heightSrc, DC.RasterOperation rasterOp)
          Copies a bitmap from a source rectangle into a destination rectangle, stretching or shrinking to fit the dimensions of the destination rectangle, if necessary.