Uses of Class
com.jniwrapper.win32.Point

Packages that use Point
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.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 Point in com.jniwrapper.win32
 

Methods in com.jniwrapper.win32 that return Point
 Point Msg.getPoint()
           
 

Constructors in com.jniwrapper.win32 with parameters of type Point
Point(Point that)
          Constructs a new point with the same coordinates as in the passed one.
 

Uses of Point in com.jniwrapper.win32.gdi
 

Methods in com.jniwrapper.win32.gdi that return Point
static Point Brush.getBrushOrigin(DC hDC)
          Retrieves the current brush origin for the specified device context.
static Point Cursor.getCursorPosition()
          Returns the cursor position, in screen coordinates.
static Point Brush.setBrushOrigin(DC hDC, int xOrg, int yOrg)
          Sets the brush origin that GDI assigns to the next brush which an application selects into the specified device context.
 

Methods in com.jniwrapper.win32.gdi with parameters of type Point
static Region Region.createPolygonRgn(Point[] points, int nPoints, PolyFillMode polyFillMode)
          Creates a polygonal region.
static Region Region.createPolyPolygonRgn(Point[] points, int[] polyCounts, int count, PolyFillMode polyFillMode)
          Creates a region consisting of a series of polygons.
 boolean Region.isPointInRegion(Point point)
          Determines whether the specified point is inside the specified region.
 

Uses of Point in com.jniwrapper.win32.hook
 

Methods in com.jniwrapper.win32.hook that return Point
 Point CBTEvent.ClickSkipped.getCursorCoordinates()
          Contains the x- and y-coordinates of the cursor, in screen coordinates.
 Point MouseEvent.getPoint()
           
 Point LowLevelMouseEvent.getPoint()
          Retursn structure that contains the x- and y-coordinates of the cursor, in screen coordinates.
 

Constructors in com.jniwrapper.win32.hook with parameters of type Point
CBTEvent.ClickSkipped(java.lang.Object source, long mouseMessage, Point point, Wnd window, long hitTestCode)
           
MouseEvent(java.lang.Object source, long mouseMessageID, Point point, Wnd wnd, long hitTestCode, long extraInfo)
           
 

Uses of Point in com.jniwrapper.win32.ui
 

Methods in com.jniwrapper.win32.ui that return Point
 Point Wnd.clientToScreen(Point point)
          Converts the client-area coordinates of a specified point to screen coordinates.
 Point WindowPlacement.getMaxPosition()
           
 Point WindowPlacement.getMinPosition()
           
 Point Wnd.screenToClient(Point point)
          Converts the screen coordinates of a specified point on the screen to client-area coordinates.
 

Methods in com.jniwrapper.win32.ui with parameters of type Point
 Point Wnd.clientToScreen(Point point)
          Converts the client-area coordinates of a specified point to screen coordinates.
 Point Wnd.screenToClient(Point point)
          Converts the screen coordinates of a specified point on the screen to client-area coordinates.
 

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