Displays the Hole Punch Remove box, and gets the options for LBitmap::HolePunchRemove. This function is available in the Document/Medical toolkits.
#include "ltwrappr.h"
virtual L_INT LDialogDocument::DoModalHolePunchRemove(hWndOwner)
Handle of the window which owns the dialog.
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. |
LDialogDocument::SetHolePunchRemoveParams must be called before using this function to set the initial values for the dialog. You can get the updated HOLEPUNCHREMOVEDLGPARAMS with the values entered by the user through the dialog by using LDialogDocument::GetHolePunchRemoveParams.
The LBitmap::HolePunchRemove function only works with 1-bit images. If you provide a bitmap in the LDialogDocument class, it must be a 1-bit bitmap.
L_INT LDialogDocument_DoModalHolePunchRemoveExample(LBitmap * pBitmap, HWND hWnd)
{
L_INT nRet;
LDialogDocument DlgDocument;
nRet = LDialogDocument::Initialize(0);
if(nRet != SUCCESS)
return nRet;
DlgDocument.SetBitmap(pBitmap);
LBitmap BitmapRegion;
HOLEPUNCHREMOVEDLGPARAMS DlgParams;
memset ( &DlgParams, 0, sizeof ( HOLEPUNCHREMOVEDLGPARAMS ) ) ;
nRet = BitmapRegion.Initialize ();
if(nRet != SUCCESS)
return nRet;
DlgParams.uStructSize = sizeof ( HOLEPUNCHREMOVEDLGPARAMS ) ;
DlgParams.HolePunchRemove.uStructSize = sizeof ( HOLEPUNCH ) ;
DlgParams.HolePunchRemove.pBitmapRegion = BitmapRegion.GetHandle();
DlgParams.HolePunchRemove.uBitmapStructSize = sizeof ( BITMAPHANDLE );
DlgParams.HolePunchRemove.iMinHoleWidth = 1000 ;
DlgParams.HolePunchRemove.iMinHoleHeight = 1000 ;
DlgParams.HolePunchRemove.iMaxHoleWidth = 1000 ;
DlgParams.HolePunchRemove.iMaxHoleHeight = 1000 ;
DlgParams.HolePunchRemove.iMinHoleCount = 2 ;
DlgParams.HolePunchRemove.iMaxHoleCount = 4 ;
DlgParams.HolePunchRemove.uFlags = HOLEPUNCH_USE_DPI ;
DlgParams.HolePunchRemove.iLocation = HOLEPUNCH_RIGHT ;
DlgDocument.EnableCallBack (FALSE);
DlgDocument.EnablePreview(TRUE);
DlgDocument.EnableAutoProcess(TRUE);
DlgDocument.EnableToolbar(TRUE);
nRet = DlgDocument.SetHolePunchRemoveParams(&DlgParams) ;
if(nRet != SUCCESS)
return nRet;
nRet = DlgDocument.DoModalHolePunchRemove(hWnd);
if(nRet < 1)
return nRet;
if(BitmapRegion.HasRgn())
{
nRet = BitmapRegion.Region()->Free();
if(nRet != SUCCESS)
return nRet;
}
// Gets the updated values for the structure
nRet = DlgDocument.GetHolePunchRemoveParams(&DlgParams, sizeof(DlgParams)) ;
if(nRet != SUCCESS)
return nRet;
nRet = LDialogDocument::Free();
if(nRet != SUCCESS)
return nRet;
return nRet;
}