LDialogColor::DoModalBalanceColors
#include "ltwrappr.h"
virtual L_INT LDialogColor::DoModalBalanceColors(hWndOwner)
HWND hWndOwner; |
/* handle of the window which owns the dialog */ |
Displays the Balance Colors dialog box, and gets the options for LBitmap::BalanceColors. This function supports only RGB images. It does not support grayscale images.
Support for 48-bit and 64-bit colored images are available only in the Medical toolkits.
Parameter |
Description |
hWndOwner |
Handle of the window which owns the dialog. |
Returns
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. |
Comments
LDialogColor::SetBalanceColorsParams must be called before using this function to set the initial values for the dialog. You can get the updated BALANCECOLORSDLGPARAMS with the values entered by the user through the dialog by using LDialogColor::GetBalanceColorsParams.
The Balance Colors dialog is shown in the following figure:
Required DLLs and Libraries
LTDLGCLR 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: |
|
Topics: |
Example
void TestFunction(LBitmap * pBitmap, HWND hWnd)
{
LDialogColor DlgColor;
DlgColor.Initialize(DLG_INIT_COLOR );
DlgColor.SetBitmap(pBitmap);
BALANCECOLORSDLGPARAMS DlgParams ;
BALANCING RedFactor ;
BALANCING GreenFactor ;
BALANCING BlueFactor ;
memset ( &DlgParams, 0, sizeof ( BALANCECOLORSDLGPARAMS ) ) ;
memset ( &RedFactor, 0, sizeof ( BALANCING ) ) ;
memset ( &GreenFactor, 0, sizeof ( BALANCING ) ) ;
memset ( &BlueFactor, 0, sizeof ( BALANCING ) ) ;
DlgParams.uStructSize = sizeof ( BALANCECOLORSDLGPARAMS ) ;
DlgParams.RedFactor = RedFactor ;
DlgParams.GreenFactor = GreenFactor ;
DlgParams.BlueFactor = BlueFactor ;
DlgColor.EnableCallBack(FALSE);
DlgColor.EnablePreview(TRUE);
DlgColor.EnableAutoProcess(TRUE);
DlgColor.EnableToolbar(TRUE);
DlgColor.SetBalanceColorParams(&DlgParams) ;
DlgColor.DoModalBalanceColors(hWnd);
// Gets the updated values for the structure
DlgColor.GetBalanceColorParams(&DlgParams, sizeof(DlgParams)) ;
DlgColor.Free();
}