forked from keizi666/charu3
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
OptMainDialog.h
77 lines (63 loc) · 2.08 KB
/
OptMainDialog.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
/*----------------------------------------------------------
設定メインクラスヘッダ
2002/11/16 (c)Keizi
----------------------------------------------------------*/
#if !defined(AFX_OPTMAINDIALOG_H__46D08C0C_FB56_4508_833C_C6377E38BFE2__INCLUDED_)
#define AFX_OPTMAINDIALOG_H__46D08C0C_FB56_4508_833C_C6377E38BFE2__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "stdafx.h"
#include "OptGeneral.h"
#include "OptStyle.h"
#include "OptPopup.h"
#include "OptFifo.h"
#include "OptKeySet.h"
#include "OptAdvanced.h"
//---------------------------------------------------
// COptMainDialog ダイアログ
//---------------------------------------------------
class COptMainDialog : public CDialog
{
// コンストラクション
public:
COptMainDialog(CWnd* pParent = NULL, int nPage = 0);
// ダイアログ データ
private:
//{{AFX_DATA(COptMainDialog)
enum { IDD = IDD_SETTINGS };
CTabCtrl m_ctrlTab;
//}}AFX_DATA
// オーバーライド
// ClassWizard は仮想関数のオーバーライドを生成します。
public:
//{{AFX_VIRTUAL(COptMainDialog)
virtual BOOL DestroyWindow();
virtual BOOL PreTranslateMessage(MSG* pMsg);
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV サポート
//}}AFX_VIRTUAL
// インプリメンテーション
private:
static const int NUM_PAGES = 6;
CDialog* m_pages[NUM_PAGES];
int m_nPageNo;
COptGeneral m_general;
COptStyle m_style;
COptPopup m_popup;
COptFifo m_fifo;
COptKeySet m_key;
COptAdvanced m_advanced;
// 生成されたメッセージ マップ関数
protected:
//{{AFX_MSG(COptMainDialog)
virtual BOOL OnInitDialog();
afx_msg void OnSelchangeOptTab(NMHDR* pNMHDR, LRESULT* pResult);
afx_msg void OnShowWindow(BOOL bShow, UINT nStatus);
afx_msg void OnActivate(UINT nState, CWnd* pWndOther, BOOL bMinimized);
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ は前行の直前に追加の宣言を挿入します。
#endif // !defined(AFX_OPTMAINDIALOG_H__46D08C0C_FB56_4508_833C_C6377E38BFE2__INCLUDED_)