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

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

Uses of Brush in com.jniwrapper.win32.gdi
 

Methods in com.jniwrapper.win32.gdi that return Brush
static Brush Brush.createBrushIndirect(LogBrush lb)
          Creates a logical brush that has the specified style, color, and pattern.
static Brush Brush.createHatchBrush(Brush.HatchStyle style, ColorRef colorRef)
          Creates a logical brush that has the specified hatch pattern and color.
static Brush Brush.createPatternBrush(Bitmap bitmap)
          Creates a logical brush with the specified bitmap pattern.
static Brush Brush.createSolidBrush(ColorRef colorRef)
          Creates a logical brush that has the specified solid color.
static Brush Brush.getStockObject(Brush.StockBrush object)
          This method retrieves one of the predefined stock brushes.
static Brush Brush.getSysColorBrush(int index)
          Retrieves a handle of a logical brush that corresponds to the specified color index.
 Brush DC.selectObject(Brush brush)
          Selects a specified brush in the device context.
 

Methods in com.jniwrapper.win32.gdi with parameters of type Brush
 void DC.fillRect(Rect rect, Brush brush)
          Fills a given rectangle with a specified brush.
 void DC.fillRegion(Region region, Brush brush)
          Fills a region by using the specified brush.
 void DC.frameRegion(Region region, Brush brush, int width, int heigh)
          Draws a border around the specified region by using the specified brush.
 void DC.maskBlt(Bitmap.PredefinedBitmap predefinedMaskBitmap, int x, int y, Brush fgBrush)
          Paints a bitmap using a mask.
 Brush DC.selectObject(Brush brush)
          Selects a specified brush in the device context.