LDialogBase::EnableGdiPlus

#include "ltwrappr.h"

static L_BOOL LDialogBase::EnableGdiPlus (bEnable)

Enables or disables using GDI+ for the LEADTOOLS Common Dialogs.

Parameters

L_BOOL bEnable

Flag that indicates whether to enable or disable using GDI+ when painting the preview thumbnail of an image on the right hand side for the open dialog and the before/after previews. Possible values are:

Value Meaning
TRUE Uses GDI+.
FALSE Uses GDI.

Returns

The previous state.

Required DLLs and Libraries

See Also

Functions

Topics

Example

L_INT LDialogBase_EnableGdiPlusExample(LBitmap * pBitmap, HWND hWnd) 
{ 
   L_INT nRet; 
   LDialogColor DlgColor; 
 
   nRet = DlgColor.Initialize(DLG_INIT_COLOR ); 
   if(nRet != SUCCESS) 
      return nRet; 
 
   DlgColor.SetBitmap(pBitmap); 
   DlgColor.EnableGdiPlus(TRUE); 
 
   BRIGHTNESSDLGPARAMS DlgParams;  
 
   memset ( &DlgParams, 0, sizeof ( BRIGHTNESSDLGPARAMS ) ) ; 
 
   DlgParams.uStructSize      = sizeof ( BRIGHTNESSDLGPARAMS ) ; 
 
   DlgColor.EnableCallBack (FALSE); 
   DlgColor.EnablePreview(TRUE); 
   DlgColor.EnableAutoProcess(TRUE); 
   DlgColor.EnableToolbar(TRUE); 
 
   nRet = DlgColor.SetBrightnessParams(&DlgParams) ; 
   if(nRet != SUCCESS) 
      return nRet; 
 
   nRet = DlgColor.DoModalBrightness(hWnd); 
   if(nRet < 1) 
      return nRet; 
 
   // Gets the updated values for the structure 
 
   nRet = DlgColor.GetBrightnessParams(&DlgParams, sizeof(DlgParams)) ; 
   if(nRet != SUCCESS) 
      return nRet; 
 
   nRet = DlgColor.Free(); 
   if(nRet != SUCCESS) 
      return nRet; 
 
   return nRet; 
}  
Help Version 21.0.2021.7.2
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2021 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Common Dialog C++ Class Library Help

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2021 LEAD Technologies, Inc. All Rights Reserved.