#include "l_bitmap.h"
L_LTDLG_API L_INT L_DlgSave(hWndOwner, pOpenFileName, pDlgParams)
Displays the Save dialog box, and gets the options for L_DlgSave.
Handle of the window, which owns the dialog.
Windows structure. This structure is documented in the Microsoft Windows SDK documentation.
For this function, you must set the following members of the OPENFILENAMEW structure:
lStructSize
lpstrFilter
nFilterIndex
lpstrFile
nMaxFile
lpstrFileTitle
nMaxFileTitle
lpstrInitialDir
lpstrTitle
lpstrDefExt
Flags
LEADTOOLS specifically sets the following flags:
Pointer to a SAVEDLGPARAMS structure to be updated with the values entered by the user through the dialog. Set members of this structure, before calling this function, to set the dialogs initial values.
Value | Meaning |
---|---|
SUCCESS_DLG_OK | The "OK" button was pressed, and the dialog exited successfully. |
SUCCESS_DLG_CANCEL | The "Cancel" button was pressed, and the dialog exited successfully. |
< 1 | An error occurred. Refer to Return Codes. |
Required DLLs and Libraries
L_INT DlgSaveExample(HWND hWnd)
{
L_INT nRet;
SAVEDLGPARAMS DlgParams ;
OPENFILENAME OpenFileName ;
memset ( &DlgParams, 0, sizeof ( SAVEDLGPARAMS ) ) ;
memset ( &OpenFileName, 0, sizeof ( OPENFILENAME ) ) ;
OpenFileName.lStructSize = sizeof ( OPENFILENAME ) ;
OpenFileName.lpstrInitialDir = NULL;
OpenFileName.lpstrTitle = TEXT("Save a File");
OpenFileName.nFilterIndex = 0 ;
DlgParams.uStructSize = sizeof (SAVEDLGPARAMS) ;
DlgParams.nQFactor = 2 ;
DlgParams.nPageNumber = 1 ;
DlgParams.uSaveMulti = MULTIPAGE_OPERATION_APPEND ;
DlgParams.uDlgFlags = DLG_SAVE_SHOW_FILEOPTIONS_PROGRESSIVE |
DLG_SAVE_SHOW_FILEOPTIONS_MULTIPAGE |
DLG_SAVE_SHOW_FILEOPTIONS_STAMP |
DLG_SAVE_SHOW_FILEOPTIONS_QFACTOR |
DLG_SAVE_SHOW_FILEOPTIONS_J2KOPTIONS |
DLG_SAVE_SHOW_FILEOPTIONS_BASICJ2KOPTIONS ;
nRet = L_DlgInit (DLG_INIT_COLOR) ;
if(nRet != SUCCESS && nRet != ERROR_DLG_ALREADYINITIATED)
return nRet;
nRet = L_DlgSave ( hWnd, &OpenFileName, &DlgParams );
if(nRet < 1)
return nRet;
nRet = L_DlgFree () ;
if(nRet != SUCCESS)
return nRet;
return SUCCESS;
}