FLImaging 6.5.8.1
GUIDialogCustomEmbedded.h
1#pragma once
2#include "GUIDialogCustom.h"
3
13namespace FLImaging
14{
16 namespace GUI
17 {
26 {
27 DECLARE_DYNAMIC(CGUIDialogCustomEmbedded)
28
29 public:
37
45
53
65 CGUIDialogCustomEmbedded(UINT nIDTemplate, CWnd* pParent = nullptr);
66
74
88 virtual const CResult Assign(const CGUIDialogCustomEmbedded* pRhs);
89
103 virtual const CResult Assign(const CGUIDialogCustomEmbedded& rhs);
104
116 virtual void SetTitle(const Base::CFLString<wchar_t>& strTitle);
117
129 virtual Base::CFLString<wchar_t> GetTitle() const;
130
131 SupportToDuplicateObject(CGUIDialogCustomEmbedded, *this);
132 DeclareGetClassType();
133
134 public:
135 virtual void PreSubclassWindow();
136
137 protected:
138 Base::CFLString<wchar_t> m_strTitle;
139 };
140 }
141}
Template type string class.
Definition INIUtilities.h:20
FLImaging module execution result object.
Definition ResultsDef.h:1514
A custom dialog class that allows a dialog created in the resource view to be embedded as a child of ...
Definition GUIDialogCustomEmbedded.h:26
A custom dialog class that can be linked to a dialog created in the resource view.
Definition GUIDialogCustom.h:25