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 의 문자열 클래스
Definition INIUtilities.h:20
FLImaging 모듈의 수행 결과 객체
Definition ResultsDef.h:1514
리소스 뷰에서 만든 다이얼로그를 부모 창(dockable pane 등)의 자식으로 추가할 수 있는 사용자 정의 다이얼로그 클래스.
Definition GUIDialogCustomEmbedded.h:26
리소스 뷰에서 만든 다이얼로그를 연결할 수 있는 사용자 정의 다이얼로그 클래스
Definition GUIDialogCustom.h:25