Jump to content

GreGetWindowViewportXform: Difference between revisions

From EDM2
Created page with "GreGetWindowViewportXform queries the current window or viewport transform matrix. On completion, paXformData is an array of two-dimensional values defining the current window..."
 
Ak120 (talk | contribs)
mNo edit summary
 
Line 1: Line 1:
GreGetWindowViewportXform queries the current window or viewport transform matrix. On completion, paXformData is an array of two-dimensional values defining the current window or viewport transform matrix.  
GreGetWindowViewportXform queries the current window or viewport transform matrix. On completion, paXformData is an array of two-dimensional values defining the current window or viewport transform matrix.


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==
  GreGetWindowViewportXform(hdc,paXformData, pInstance, lFunction);
  GreGetWindowViewportXform(hdc,paXformData, pInstance, lFunction)
 
==Parameters==
==Parameters==
;hdc (HDC) - input  
;hdc (HDC) - input:Device context handle.
:Device context handle.  
;paXformData (PXFORM) - input:Pointer to return data.
 
:Pointer to return data in which the array of six matrix elements (M11, M12, M21, M22, M41, and M42) are to be stored.
;paXformData (PXFORM) - input  
;pInstance (PVOID) - input:Pointer to instance data.
:Pointer to return data.  
;lFunction (ULONG) - input:High-order WORD=flags; low-order WORD=NGreGetWindowViewportXform.
 
:Pointer to return data in which the array of six matrix elements (M11, M12, M21, M22, M41, and M42) are to be stored.  
 
;pInstance (PVOID) - input  
:Pointer to instance data.  
 
;lFunction (ULONG) - input  
:High-order WORD=flags; low-order WORD=NGreGetWindowViewportXform.  


==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_HDC
 
:Refer to the "Error Explanations" section in the ''Presentation Manager Programming Reference'' for further explanation.
: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_HDC  
 
:Refer to the "Error Explanations" section in the Presentation Manager Programming Reference for further explanation.  


==Declaration==
==Declaration==
<PRE>
<PRE>
#define INCL_GRE_XFORMS
#define INCL_GRE_XFORMS
#include <os2.h>
#include <os2.h>


HDC      hdc;         /* Device context handle. */
HDC      hdc;         /* Device context handle. */
PXFORM    paXformData; /* Pointer to return data. */
PXFORM    paXformData; /* Pointer to return data. */
PVOID    pInstance;   /* Pointer to instance data. */
PVOID    pInstance;   /* Pointer to instance data. */
ULONG    lFunction;   /* High-order WORD=flags; low-order WORD=NGreGetWindowViewportXform. */
ULONG    lFunction;   /* High-order WORD=flags; low-order WORD=NGreGetWindowViewportXform. */
BOOL      fSuccess;     /* Return codes. */
BOOL      fSuccess;   /* Return codes. */
 
fSuccess = GreGetWindowViewportXform(hdc,
            paXformData, pInstance, lFunction);


fSuccess = GreGetWindowViewportXform(hdc, paXformData, pInstance, lFunction);
</PRE>
</PRE>


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

Latest revision as of 17:29, 7 February 2020

GreGetWindowViewportXform queries the current window or viewport transform matrix. On completion, paXformData is an array of two-dimensional values defining the current window or viewport transform matrix.

This function can be hooked by the presentation driver.

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

Syntax

GreGetWindowViewportXform(hdc,paXformData, pInstance, lFunction)

Parameters

hdc (HDC) - input
Device context handle.
paXformData (PXFORM) - input
Pointer to return data.
Pointer to return data in which the array of six matrix elements (M11, M12, M21, M22, M41, and M42) are to be stored.
pInstance (PVOID) - input
Pointer to instance data.
lFunction (ULONG) - input
High-order WORD=flags; low-order WORD=NGreGetWindowViewportXform.

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_HDC
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. */
PXFORM    paXformData; /* Pointer to return data. */
PVOID     pInstance;   /* Pointer to instance data. */
ULONG     lFunction;   /* High-order WORD=flags; low-order WORD=NGreGetWindowViewportXform. */
BOOL      fSuccess;    /* Return codes. */

fSuccess = GreGetWindowViewportXform(hdc, paXformData, pInstance, lFunction);