forked from keizi666/charu3
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathOptPopup.h
69 lines (56 loc) · 1.87 KB
/
OptPopup.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
/*----------------------------------------------------------
ポップアップ設定クラスヘッダ
2002/11/16 (c)Keizi
----------------------------------------------------------*/
#if !defined(AFX_OPTPOPUP_H__3B3D553D_3B12_401F_A02E_A6ED8AF583C8__INCLUDED_)
#define AFX_OPTPOPUP_H__3B3D553D_3B12_401F_A02E_A6ED8AF583C8__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "stdafx.h"
#include "resource.h"
//---------------------------------------------------
// COptPopup ダイアログ
//---------------------------------------------------
class COptPopup : public CDialog
{
// コンストラクション
public:
COptPopup(CWnd* pParent = NULL); // 標準のコンストラクタ
// ダイアログ データ
private:
//{{AFX_DATA(COptPopup)
enum { IDD = IDD_SETTINGS_03_DATATREE };
//}}AFX_DATA
// オーバーライド
// ClassWizard は仮想関数のオーバーライドを生成します。
public:
//{{AFX_VIRTUAL(COptPopup)
virtual BOOL PreTranslateMessage(MSG* pMsg);
virtual BOOL DestroyWindow();
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV サポート
//}}AFX_VIRTUAL
// インプリメンテーション
private:
int m_nSelectByTypingCaseInsensitive;
int m_nSelectByTypingAutoPaste;
int m_nSelectByTypingAutoExpand;
int m_nScrollVertical;
int m_nScrollHorizontal;
int m_nSingleExpand;
int m_nSingleEnter;
int m_nKeepSelection;
int m_nKeepFolders;
// 生成されたメッセージ マップ関数
protected:
//{{AFX_MSG(COptPopup)
virtual BOOL OnInitDialog();
afx_msg void OnShowWindow(BOOL bShow, UINT nStatus);
afx_msg void OnCbnSelchangeOptPopupPos();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ は前行の直前に追加の宣言を挿入します。
#endif // !defined(AFX_OPTPOPUP_H__3B3D553D_3B12_401F_A02E_A6ED8AF583C8__INCLUDED_)