forked from hiyohiyo/CrystalDiskMark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AboutDlg.h
60 lines (51 loc) · 1.48 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
56
57
58
59
60
/*---------------------------------------------------------------------------*/
// Author : hiyohiyo
// Mail : [email protected]
// Web : https://crystalmark.info/
// License : The MIT License
/*---------------------------------------------------------------------------*/
#pragma once
#include "DialogFx.h"
#include "StaticFx.h"
#include "ButtonFx.h"
class CAboutDlg : public CDialogFx
{
DECLARE_DYNCREATE(CAboutDlg)
#ifdef SUISHO_SHIZUKU_SUPPORT
static const int SIZE_X = 640;
static const int SIZE_Y = 660;
#else
static const int SIZE_X = 480;
static const int SIZE_Y = 152;
#endif
public:
CAboutDlg(CWnd* pParent = NULL);
virtual ~CAboutDlg();
enum { IDD = IDD_ABOUT };
protected:
virtual void DoDataExchange(CDataExchange* pDX);
virtual BOOL OnInitDialog();
virtual void UpdateDialogSize();
DECLARE_MESSAGE_MAP()
afx_msg void OnCrystalDewWorld();
afx_msg void OnVersion();
afx_msg void OnLicense();
afx_msg void OnProjectSite1();
afx_msg void OnProjectSite2();
afx_msg void OnProjectSite3();
afx_msg void OnProjectSite4();
afx_msg void OnProjectSite5();
CButtonFx m_CtrlCrystalDewWorld;
CButtonFx m_CtrlSecretVoice;
CButtonFx m_CtrlProjectSite1;
CButtonFx m_CtrlProjectSite2;
CButtonFx m_CtrlProjectSite3;
CButtonFx m_CtrlProjectSite4;
CButtonFx m_CtrlProjectSite5;
CButtonFx m_CtrlVersion;
CButtonFx m_CtrlLicense;
CStaticFx m_CtrlEdition;
CStaticFx m_CtrlRelease;
CStaticFx m_CtrlCopyright1;
CStaticFx m_CtrlCopyright2;
};