Jump to content

GreSetGraphicsField: Difference between revisions

From EDM2
Created page with "GreSetGraphicsField sets the boundaries of the graphics field (clip) limits in page-coordinate space. The boundaries are inclusive so that points on them are not clipped. By d..."
 
Ak120 (talk | contribs)
mNo edit summary
 
Line 1: Line 1:
GreSetGraphicsField sets the boundaries of the graphics field (clip) limits in page-coordinate space. The boundaries are inclusive so that points on them are not clipped. By default, no clipping is performed.  
GreSetGraphicsField sets the boundaries of the graphics field (clip) limits in page-coordinate space. The boundaries are inclusive so that points on them are not clipped. By default, no clipping is performed.


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==
  GreSetGraphicsField(hdc, prclGraphicsField, pInstance, lFunction);
  GreSetGraphicsField(hdc, prclGraphicsField, pInstance, lFunction)


==Parameters==
==Parameters==
;hdc (HDC) - input  
;hdc (HDC) - input:Device context handle.
:Device context handle.  
;prclGraphicsField (PRECTL) - input:Pointer to graphics field.
 
:RECTL structure:
;prclGraphicsField (PRECTL) - input  
:*xLeft Minimum x-coordinate of graphics field
:Pointer to graphics field.  
:*yBottom Minimum y-coordinate
 
:*xRight Maximum x-coordinate of graphics field
:RECTL structure:  
:*yTop Maximum y-coordinate
 
:An error is raised when xLeft is greater than xRight, or yBottom is greater than yTop.
:*xLeft Minimum x-coordinate of graphics field  
;pInstance (PVOID) - input:Pointer to instance data.
:*yBottom Minimum y-coordinate  
;lFunction (ULONG) - input:High-order WORD=flags; low-order WORD=NGreSetGraphicsField.
:*xRight Maximum x-coordinate of graphics field  
:*yTop Maximum y-coordinate  
 
:An error is raised when xLeft is greater than xRight, or yBottom is greater than yTop.  
 
;pInstance (PVOID) - input  
:Pointer to instance data.  
 
;lFunction (ULONG) - input  
:High-order WORD=flags; low-order WORD=NGreSetGraphicsField.  


==Return Code==
==Return Code==
;fSuccess (BOOL) - returns  
;fSuccess (BOOL) - returns:Return codes.
:Return codes.  
:This function returns BOOLEAN (fSuccess).
 
:*TRUE Successful
:This function returns BOOLEAN (fSuccess).  
:*FALSE 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:
:*TRUE Successful  
:*PMERR_HDC_BUSY
:*FALSE Error  
:*PMERR_INV_COORDINATE
 
:*PMERR_INV_GRAPHICS_FIELD
;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_HDC
 
:*PMERR_INV_IN_AREA
:*PMERR_HDC_BUSY  
:*PMERR_INV_IN_PATH
:*PMERR_INV_COORDINATE  
:Refer to the "Error Explanations" section in the Presentation Manager Programming Reference for further explanation.
:*PMERR_INV_GRAPHICS_FIELD  
:*PMERR_INV_HDC  
:*PMERR_INV_IN_AREA  
:*PMERR_INV_IN_PATH  
 
:Refer to the "Error Explanations" section in the Presentation Manager Programming Reference for further explanation.  


==Declaration==
==Declaration==

Latest revision as of 18:09, 5 April 2025

GreSetGraphicsField sets the boundaries of the graphics field (clip) limits in page-coordinate space. The boundaries are inclusive so that points on them are not clipped. By default, no clipping is performed.

This function can be hooked by the presentation driver.

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

Syntax

GreSetGraphicsField(hdc, prclGraphicsField, pInstance, lFunction)

Parameters

hdc (HDC) - input
Device context handle.
prclGraphicsField (PRECTL) - input
Pointer to graphics field.
RECTL structure:
  • xLeft Minimum x-coordinate of graphics field
  • yBottom Minimum y-coordinate
  • xRight Maximum x-coordinate of graphics field
  • yTop Maximum y-coordinate
An error is raised when xLeft is greater than xRight, or yBottom is greater than yTop.
pInstance (PVOID) - input
Pointer to instance data.
lFunction (ULONG) - input
High-order WORD=flags; low-order WORD=NGreSetGraphicsField.

Return Code

fSuccess (BOOL) - returns
Return codes.
This function returns BOOLEAN (fSuccess).
  • TRUE Successful
  • FALSE 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:
  • PMERR_HDC_BUSY
  • PMERR_INV_COORDINATE
  • PMERR_INV_GRAPHICS_FIELD
  • PMERR_INV_HDC
  • PMERR_INV_IN_AREA
  • PMERR_INV_IN_PATH
Refer to the "Error Explanations" section in the Presentation Manager Programming Reference for further explanation.

Declaration

#define INCL_GRE_XFORMS
#include <os2.h>

HDC       hdc;                /*  Device context handle. */
PRECTL    prclGraphicsField;  /*  Pointer to graphics field. */
PVOID     pInstance;          /*  Pointer to instance data. */
ULONG     lFunction;          /*  High-order WORD=flags; low-order WORD=NGreSetGraphicsField. */
BOOL      fSuccess;           /*  Return codes. */

fSuccess = GreSetGraphicsField(hdc, prclGraphicsField, pInstance, lFunction);