-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbase_dlg.h
37 lines (29 loc) · 1.05 KB
/
base_dlg.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// GNU LESSER GENERAL PUBLIC LICENSE
// Version 3, 29 June 2007
//
// Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
//
// Everyone is permitted to copy and distribute verbatim copies of this license
// document, but changing it is not allowed.
//
// This version of the GNU Lesser General Public License incorporates the terms
// and conditions of version 3 of the GNU General Public License, supplemented
// by the additional permissions listed below.
#ifndef MPA_HEADER_INFO_BASE_DLG_H_
#define MPA_HEADER_INFO_BASE_DLG_H_
#include "dpi_wnd_behavior.h"
class CBaseDlg : public CDialog {
DECLARE_DYNAMIC(CBaseDlg)
public:
CBaseDlg();
explicit CBaseDlg(LPCTSTR lpszTemplateName, CWnd* pParentWnd = nullptr);
explicit CBaseDlg(UINT nIDTemplate, CWnd* pParentWnd = nullptr);
virtual ~CBaseDlg();
protected:
BOOL OnInitDialog() override;
afx_msg void OnDestroy();
afx_msg LRESULT OnDpiChanged(WPARAM wParam, LPARAM lParam);
DECLARE_MESSAGE_MAP()
DpiWindowBehavior m_dpi_behavior;
};
#endif // !MPA_HEADER_INFO_BASE_DLG_H_