Uses of Class
com.jniwrapper.win32.gdi.Bitmap

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

Uses of Bitmap in com.jniwrapper.win32.gdi
 

Subclasses of Bitmap in com.jniwrapper.win32.gdi
 class DDBitmap
          This class provides functionality for working with bitmaps in DDB (device-dependent bitmap) format.
 class DIBitmap
          This class provides functionality for working with bitmaps in DIB (device-independent bitmap ) format.
 

Methods in com.jniwrapper.win32.gdi that return Bitmap
 Bitmap IconInfo.getColorBitmap()
          Returns handle to the icon color bitmap.
 Bitmap IconInfo.getMaskBitmap()
          Returns the icon bitmask bitmap.
 Bitmap Bitmap.getTransparentMask()
          Returns transparancy bitmap mask.
 Bitmap DC.selectObject(Bitmap bitmap)
          Selects a specified bitmap in the device context.
 

Methods in com.jniwrapper.win32.gdi with parameters of type Bitmap
static Brush Brush.createPatternBrush(Bitmap bitmap)
          Creates a logical brush with the specified bitmap pattern.
 void DC.paintBitmap(Bitmap bitmap, int x, int y)
          Paints a bitmap on this device context.
 void DC.paintOpaqueBitmap(Bitmap bitmap, int x, int y)
          Paints an opaque bitmap on this device context.
 Bitmap DC.selectObject(Bitmap bitmap)
          Selects a specified bitmap in the device context.
 void DC.transparentBlt(Bitmap bitmap, int x, int y)
          Paints a transparent bitmap on screen DC.
 

Constructors in com.jniwrapper.win32.gdi with parameters of type Bitmap
IconInfo(Bitmap maskBitmap, Bitmap colorBitmap)
          Creates instance of the IconInfo.