-
Notifications
You must be signed in to change notification settings - Fork 21
/
aboutdlg.h
55 lines (49 loc) · 1.82 KB
/
aboutdlg.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
// Copyright (C) FlatGlobus([email protected]) All rights reserved.
//
// This file is a part of the WTLBuilder.
// The use and distribution terms for this software are covered by the
// Microsoft Public License (http://opensource.org/licenses/MS-PL)
// which can be found in the file MS-PL.txt at the root folder.
#pragma once
//////////////////////////////////////////////////////////////////////////
#include "resource.h"
#include "LayoutMgr.h"
//{{WTLBUILDER_INCLUDE_DECLARATION
#include "atlctrlx.h"
//}}WTLBUILDER_INCLUDE_DECLARATION
//{{WTLBUILDER_CONTROL_ID_DECLARATION
#define IDC_CABOUTDLG_PICTURE5 1005
#define IDC_CABOUTDLG_STATIC8 1008
#define IDC_CABOUTDLG_STATIC9 1009
#define IDC_CABOUTDLG_STATIC11 1011
#define IDC_CABOUTDLG_HYPERLINK12 1012
//}}WTLBUILDER_CONTROL_ID_DECLARATION
class CAboutDlg:public CDialogImpl<CAboutDlg>
{
CToolTipCtrl m_toolTip;
//{{WTLBUILDER_MEMBER_DECLARATION
CFont m_formFont;
CButton m_button2;
CStatic m_picture5;
CBitmap m_picture5Bitmap;
CStatic m_static8;
CStatic m_static9;
CFont m_static9Font;
CStatic m_version;
CHyperLink m_hyperlink12;
//}}WTLBUILDER_MEMBER_DECLARATION
public:
enum { IDD = IDD_NULL };
typedef CDialogImpl<CAboutDlg> thisClass;
BEGIN_MSG_MAP(CAboutDlg)
MESSAGE_HANDLER(WM_INITDIALOG, OnInitDialog)
COMMAND_ID_HANDLER(IDOK, OnCloseCmd)
COMMAND_ID_HANDLER(IDCANCEL, OnCloseCmd)
REFLECT_NOTIFICATIONS_EX()
END_MSG_MAP()
CAboutDlg(void);
~CAboutDlg(void);
LRESULT OnInitDialog(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& /*bHandled*/);
LRESULT OnCloseCmd(WORD /*wNotifyCode*/, WORD wID, HWND /*hWndCtl*/, BOOL& /*bHandled*/);
};
//////////////////////////////////////////////////////////////////////////