Jump to content

GrePtInRegion: Difference between revisions

From EDM2
Created page with "GrePtInRegion checks whether a point lies within a region. GrePtInRegion raises an error when hrgn is the handle of the currently selected clip region. The point is always exp..."
 
Ak120 (talk | contribs)
mNo edit summary
 
Line 1: Line 1:
GrePtInRegion checks whether a point lies within a region. GrePtInRegion raises an error when hrgn is the handle of the currently selected clip region. The point is always expected in device coordinates.  
GrePtInRegion checks whether a point lies within a region. GrePtInRegion raises an error when hrgn is the handle of the currently selected clip region. The point is always expected in device coordinates.


This function can be hooked by the presentation driver.  
This function can be hooked by the presentation driver.


;Simulation support: This function is simulated by a handling routine in the graphics engine.  
;Simulation support: This function is simulated by a handling routine in the graphics engine.


==Syntax==
==Syntax==
  GrePtInRegion(hdc, hrgn, pptlPoint, pInstance, lFunction);
  GrePtInRegion(hdc, hrgn, pptlPoint, pInstance, lFunction)


==Parameters==
==Parameters==
;hdc (HDC) - input  
;hdc (HDC) - input:Device context handle.
:Device context handle.  
;hrgn (HRGN) - input:Region handle.
 
;pptlPoint (PPOINTL) - input:Pointer to (x, y) point specified in device coordinates.
;hrgn (HRGN) - input  
;pInstance (PVOID) - input:Pointer to instance data.
:Region handle.  
;lFunction (ULONG) - input:High-order WORD=flags; low-order WORD=NGrePtInRegion.
 
;pptlPoint (PPOINTL) - input  
:Pointer to (x, y) point specified in device coordinates.  
 
;pInstance (PVOID) - input  
:Pointer to instance data.  
 
;lFunction (ULONG) - input  
:High-order WORD=flags; low-order WORD=NGrePtInRegion.  


==Return Code==
==Return Code==
;rc (LONG) - returns  
;rc (LONG) - returns:Return codes.
:Return codes.  
:This function returns an integer (lInside) indicating whether the point is inside the region:
 
:*RGN_ERROR Error
:This function returns an integer (lInside) indicating whether the point is inside the region:  
:*PRGN_INSIDE In region
 
:*PRGN_OUTSIDE Not in region.
:*RGN_ERROR Error  
:Possible Errors Detected: When an error is detected, the handling routine must call WinSetErrorInfo to post the condition. Error codes for conditions that the handling routine is expected to check include:
:*PRGN_INSIDE In region  
:*PMERR_HRGN_BUSY
:*PRGN_OUTSIDE Not in region.  
:*PMERR_INV_COORDINATE
 
:*PMERR_INV_HRGN
:Possible Errors Detected:   When an error is detected, the handling routine must call WinSetErrorInfo to post the condition. Error codes for conditions that the handling routine is expected to check include:  
:*PMERR_INV_RECT
 
:*PMERR_REGION_IS_CLIP_REGION
:*PMERR_HRGN_BUSY  
:Refer to the "Error Explanations" section in the ''Presentation Manager Programming Reference'' for further explanation.
:*PMERR_INV_COORDINATE  
:*PMERR_INV_HRGN  
:*PMERR_INV_RECT  
:*PMERR_REGION_IS_CLIP_REGION  
 
:Refer to the "Error Explanations" section in the Presentation Manager Programming Reference for further explanation.  


==Declaration==
==Declaration==
Line 56: Line 41:
LONG      rc;        /*  Return codes. */
LONG      rc;        /*  Return codes. */


rc = GrePtInRegion(hdc, hrgn, pptlPoint, pInstance,
rc = GrePtInRegion(hdc, hrgn, pptlPoint, pInstance, lFunction);
      lFunction);
</PRE>
</PRE>


[[Category:Gre]]
[[Category:Gre]]

Latest revision as of 23:14, 24 March 2020

GrePtInRegion checks whether a point lies within a region. GrePtInRegion raises an error when hrgn is the handle of the currently selected clip region. The point is always expected in device coordinates.

This function can be hooked by the presentation driver.

Simulation support
This function is simulated by a handling routine in the graphics engine.

Syntax

GrePtInRegion(hdc, hrgn, pptlPoint, pInstance, lFunction)

Parameters

hdc (HDC) - input
Device context handle.
hrgn (HRGN) - input
Region handle.
pptlPoint (PPOINTL) - input
Pointer to (x, y) point specified in device coordinates.
pInstance (PVOID) - input
Pointer to instance data.
lFunction (ULONG) - input
High-order WORD=flags; low-order WORD=NGrePtInRegion.

Return Code

rc (LONG) - returns
Return codes.
This function returns an integer (lInside) indicating whether the point is inside the region:
  • RGN_ERROR Error
  • PRGN_INSIDE In region
  • PRGN_OUTSIDE Not in region.
Possible Errors Detected: When an error is detected, the handling routine must call WinSetErrorInfo to post the condition. Error codes for conditions that the handling routine is expected to check include:
  • PMERR_HRGN_BUSY
  • PMERR_INV_COORDINATE
  • PMERR_INV_HRGN
  • PMERR_INV_RECT
  • PMERR_REGION_IS_CLIP_REGION
Refer to the "Error Explanations" section in the Presentation Manager Programming Reference for further explanation.

Declaration

#define INCL_GRE_REGIONS
#include <os2.h>

HDC        hdc;        /*  Device context handle. */
HRGN       hrgn;       /*  Region handle. */
PPOINTL    pptlPoint;  /*  Pointer to (x, y) point specified in device coordinates. */
PVOID      pInstance;  /*  Pointer to instance data. */
ULONG      lFunction;  /*  High-order WORD=flags; low-order WORD=NGrePtInRegion. */
LONG       rc;         /*  Return codes. */

rc = GrePtInRegion(hdc, hrgn, pptlPoint, pInstance, lFunction);