HTMLMAPPERDLGPARAMS
typedef struct _HTMLMAPPERDLGPARAMS
{
L_UINT uStructSize ;
pBITMAPHANDLE pBitmap ;
L_BOOL bZoomToFit ;
LPDLGHISTORYLIST pURLEntries ;
LPDLGHISTORYLIST pALTEntries ;
LPDLGHISTORYLIST pTargetEntries ;
LPDLGHISTORYLIST pRolloverEntries ;
L_UINT32 uDlgFlags ;
LTCOMMDLGHELPCB pfnHelpCallback ;
L_VOID *pHelpCallBackUserData ;
} HTMLMAPPERDLGPARAMS, * LPHTMLMAPPERDLGPARAMS ;
The HTMLMAPPERDLGPARAMS structure provides information used to initialize the dialog box created by the LDialogWeb::DoModalHTMLMapper function. After the user closes the dialog box, this structure is updated with information about the user's selections.
Member |
Description |
|
uStructSize |
Size of this structure, in bytes. Use the sizeof operator to calculate this value. |
|
pBitmap |
Ignored. |
|
bZoomToFit |
Flag that indicates the initial zoom level for previewing the image. Possible values are: |
|
|
Value |
Meaning |
|
TRUE |
Set the initial zoom level to "Zoom to fit". |
|
FALSE |
Set the initial zoom level to "Normal (1:1)". |
pURLEntries |
Pointer to an array of DLGHISTORYLIST structures that contains URLs displayed in the URL History Combo Box in the dialog. These URLs may be associated with a specific area and activated when the user clicks on that area. This member can be NULL. Set this member to initialize the dialog. This member will be updated with the value entered by the user in the dialog. |
|
pALTEntries |
Pointer to an array of DLGHISTORYLIST structures that contain information used in the ALT history combo box in the dialog. The ALT history combo box may be used to enter a short description of a specific area. Some browsers can display this text as a tool tip when the user hovers over the area. This parameter can be NULL. Set this member to initialize the dialog. This member will be updated with the value entered by the user in the dialog. |
|
pTargetEntries |
Pointer to an array of DLGHISTORYLIST structures that contain information used in the Target history combo box in the dialog. The information in the Target combo box can be used to determine how the new page should be displayed. This parameter can be NULL. Set this member to initialize the dialog. This member will be updated with the value entered by the user in the dialog. |
|
pRolloverEntries |
Pointer to an array of DLGHISTORYLIST structures that contain information used in the Rollover history combo box in the dialog. This parameter can be NULL. Set this member to initialize the dialog. This member will be updated with the value entered by the user in the dialog. |
uDlgFlags |
User interface flags for this dialog, which determine the layout and action of the dialog. Possible values are: |
|
|
Value |
Meaning |
|
DLG_HTMLMAPPER_SHOW_CONTEXTHELP |
[0x00000001] Dialog should contain a context sensitive help icon. |
pfnHelpCallback |
Ignored. |
|
pHelpCallBackUserData |
Ignored. |