FLImaging 7.8.25.3
GUIDialogBase.h
1#pragma once
2
3namespace FLImaging
4{
5 namespace GUI
6 {
7 class CGUIControlResizeHelper;
8
9 class FL_EXPORT CGUIDialogBase : public CDialogEx, public Base::CFLBase
10 {
11 public:
12 CGUIDialogBase(bool bSetupRes);
13 CGUIDialogBase(bool bSetupRes, UINT nIDTemplate, CWnd* pParent = NULL);
14 CGUIDialogBase(bool bSetupRes, LPCTSTR lpszTemplateName, CWnd* pParentWnd = NULL);
15 virtual ~CGUIDialogBase();
16
17 virtual const CResult EnableRelativeResizingControls(bool bEnable);
18 virtual bool IsRelativeResizingControlsEnabled() const;
19
20 virtual const CGUIControlResizeHelper* GetControlResizeHelper() const;
21
22 protected:
23 CGUIControlResizeHelper* m_pControlResizeHelper;
24 };
25 }
26}
Definition D2DObject.h:12