Uses of Class
com.jniwrapper.win32.Rect

Packages that use Rect
com.jniwrapper.win32 The com.jniwrapper.win32 package contains classes that provide basic functionality for Win32 platform. 
com.jniwrapper.win32.gdi The com.jniwrapper.win32.gdi package contains classes that provide GDI related functionality. 
com.jniwrapper.win32.hook The com.jniwrapper.win32.hook package contains classes, which allows you to work with native hooks, such as keyboard hook, mouse hook, system idle tracker etc. 
com.jniwrapper.win32.shell The com.jniwrapper.win32.shell package contains classes for Windows desktop integration. 
com.jniwrapper.win32.ui The com.jniwrapper.win32.ui package contains auxilious classes for working with native windows, such as Wnd, which provides you with useful window related functionality, WindowProc, which is designed for obtaining native window messages etc. 
 

Uses of Rect in com.jniwrapper.win32
 

Methods in com.jniwrapper.win32 that return Rect
 Rect Rect.centerRect(Size innerRect)
           
 

Methods in com.jniwrapper.win32 with parameters of type Rect
 void Rect.assign(Rect anotherRect)
           
 

Constructors in com.jniwrapper.win32 with parameters of type Rect
Rect(Rect that)
           
 

Uses of Rect in com.jniwrapper.win32.gdi
 

Methods in com.jniwrapper.win32.gdi that return Rect
 Rect Region.getRegionBox()
          Retrieves the bounding rectangle of the region.
 

Methods in com.jniwrapper.win32.gdi with parameters of type Rect
static Region Region.createElliptic(Rect rect)
          Factory method for creating elliptic regions via bounding rectangle.
static Region Region.createRectRegion(Rect rect)
          Creates a rectangular region.
 void DC.drawGrayed(DC srcDC, Rect destRect)
          Draws the grayed picture from source DC on the current DC.
 boolean DC.drawRectangle(Rect rect)
           
 void DC.drawText(java.lang.String text, Rect clipRect, com.jniwrapper.UInt uFormat)
          Draws a specified text.
 void DC.fillRect(Rect rect, Brush brush)
          Fills a given rectangle with a specified brush.
 boolean DC.gradientFill(Rect rect, java.awt.Color leftColor, java.awt.Color rightColor)
          Fills a rectangle by horisontal gradient.
 boolean Region.isRectInRegion(Rect rect)
          Determines whether any part of the specified rectangle is within the boundaries of a region.
 

Uses of Rect in com.jniwrapper.win32.hook
 

Methods in com.jniwrapper.win32.hook that return Rect
 Rect CBTEvent.MoveSize.getWindowRect()
          The coordinates of the window.
 

Constructors in com.jniwrapper.win32.hook with parameters of type Rect
CBTEvent.MoveSize(java.lang.Object source, com.jniwrapper.Bool allow, Wnd windowHandle, Rect rect)
           
 

Uses of Rect in com.jniwrapper.win32.shell
 

Methods in com.jniwrapper.win32.shell that return Rect
static Rect ApplicationBar.getAppBarPosition()
           
 

Uses of Rect in com.jniwrapper.win32.ui
 

Methods in com.jniwrapper.win32.ui that return Rect
 Rect Wnd.getBounds()
          Returns window bounds.
 Rect Wnd.getClientRect()
          Returns a window client rectangle.
 Rect WindowPlacement.getNormalPosition()
           
 Rect GUIThreadInfo.getRcCaret()
           
 Rect Wnd.getWindowRect()
          Returns the bounding rectangle of the window.
 

Methods in com.jniwrapper.win32.ui with parameters of type Rect
 boolean Wnd.getUpdateRect(Rect rect)
          Retrieves the coordinates of the smallest rectangle that completely encloses the update region of the specified window.
 boolean Wnd.getUpdateRect(Rect rect, boolean erase)
          Retrieves the coordinates of the smallest rectangle that completely encloses the update region of the specified window.
 void Wnd.invalidateRect(Rect rect, boolean erase)
          Adds a rectangle to the specified window's update region.
 void Wnd.redraw(Rect updateRect, Region updateRegion, int flags)
          Updates a specified rectangle or region in the window's client area.
 

Constructors in com.jniwrapper.win32.ui with parameters of type Rect
WindowPlacement(long flags, long showCmd, Point ptMinPosition, Point ptMaxPosition, Rect ptNormalPosition)