L_CaptureAreaOptionDlg

#include "l_bitmap.h"

L_INT L_CaptureAreaOptionDlg(hParentWnd, uFlags, pCaptureAreaOption, nUseDefault, pfnCallBack, pUserData)

HWND hParentWnd;

/* handle to parent window */

L_UINT uFlags;

/* flags */

pLEADCAPTUREAREAOPTION pCaptureAreaOption;

/* pointer to a capture area options structure */

L_INT nUseDefault;

/* flag */

LTSCRHELPCB pfnCallBack;

/* optional help callback function */

L_VOID* pUserData;

/* pointer to more parameters for the help callback */

Displays a dialog to retrieve the options for the L_CaptureArea function.

Parameter

Description

hParentWnd

Handle to the parent window.

uFlags

Flags that determine the options dialog. Possible values are:

 

Value

Meaning

 

NONE

[0x0000] No flags.

 

SCRDLG_SETCAPTUREOPTION_CONTEXTHELP

[0x0001] Capture options dialog context help.

 

SCRDLG_CAPTUREAREAOPTION_CONTEXTHELP

[0x0002] Area options dialog context help.

 

SCRDLG_CAPTUREOBJECTOPTION_CONTEXTHELP

[0x0004] Object options dialog context help.

 

SCRDLG_CAPTUREFROMEXE_CONTEXTHELP

[0x0008] Capture from exe context help.

pCaptureAreaOption

Pointer to a LEADCAPTUREAREAOPTION structure that contains information about capturing an area.

nUseDefault

If TRUE, the dialog will start with default values. Otherwise the dialog will use the values specified by the pLEADCAPTUREAREAOPTION structure. These values must be a valid values or the dialog will return an error code.

pfnCallback

Optional help callback function for displaying help dialog.

 

If you do not provide help callback function, use NULL as the value of this parameter.

 

If you do provide help callback function, use the function pointer as the value of this parameter.

 

The callback function must adhere to the function prototype described in LTSCRHELPCB Function.

pUserData

Void pointer that you can use to pass one or more additional parameters that the help callback function needs.

 

To use this feature, assign a value to a variable or create a structure that contains as many fields as you need. Then, in this parameter, pass the address of the variable or structure, casting it to L_VOID *. The callback function, which receives the address in its own pUserData parameter, can cast it to a pointer of the appropriate data type to access your variable or structure.

 

If the additional parameters are not needed, you can pass NULL in this parameter.

Returns

SUCCESS

The function was successful.

< 1

An error occurred. Refer to Return Codes.

Comments

This function will display the common dialog for setting the options for the L_CaptureArea function. The options selected by the user will be copied to pCaptureAreaOption.

If a help callback function was provided in pfnCallback, a Help button will appear on the dialog. If NULL was provided, no Help button will appear.

Required DLLs and Libraries

LTSCR

For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application.

See Also

Functions:

L_CaptureArea, L_GetDefaultAreaOption, LTSCRHELPCB Function

Example

int MyMain()
{
   BITMAPHANDLE              Bitmap;
   LEADCAPTUREAREAOPTION     CaptureAreaOption;
   HWND                      hwnd;
   int nRet;

   /* To call the L_CaptureAreaOptionDlg */
   hwnd = GetForegroundWindow();
    /* use the defaults*/
   L_CaptureAreaOptionDlg (hwnd, 0, &CaptureAreaOption, TRUE, NULL, NULL); 
    L_FreeBitmap(&Bitmap);

return 0;
}