forked from keizi666/charu3
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathSearchDialog.h
70 lines (58 loc) · 1.82 KB
/
SearchDialog.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
/*----------------------------------------------------------
Charu3
検索ダイアログヘッダ
----------------------------------------------------------*/
#if !defined(AFX_SEARCHDIALOG_H__F054EA83_2A07_11D4_8AC7_0050DAC3512B__INCLUDED_)
#define AFX_SEARCHDIALOG_H__F054EA83_2A07_11D4_8AC7_0050DAC3512B__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "stdafx.h"
#include "resource.h"
//---------------------------------------------------
// CSearchDialog ダイアログ
//---------------------------------------------------
class CSearchDialog : public CDialog
{
// コンストラクション
public:
CSearchDialog(CWnd* pParent = NULL); // 標準のコンストラクタ
// ダイアログ データ
//{{AFX_DATA(CSearchDialog)
private:
enum { IDD = IDD_SEARCH };
CEdit m_ctrlSearchText;
CButton m_ctrlSearchByName;
CButton m_ctrlSearchByData;
CButton m_ctrlSearchAnd;
CButton m_ctrlSearchOr;
CButton m_ctrlCaseInsensitive;
//}}AFX_DATA
// オーバーライド
// ClassWizard は仮想関数のオーバーライドを生成します。
protected:
//{{AFX_VIRTUAL(CSearchDialog)
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV サポート
//}}AFX_VIRTUAL
// インプリメンテーション
public:
int GetTarget();
int GetSearchLogic();
bool GetCaseInsensitive();
CString GetSearchText();
private:
void OnFindPrev();
void OnFindNext();
// 生成されたメッセージ マップ関数
protected:
//{{AFX_MSG(CSearchDialog)
virtual BOOL OnInitDialog();
virtual void OnCancel();
virtual void OnOK();
virtual BOOL PreTranslateMessage(MSG* pMsg);
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ は前行の直前に追加の宣言を挿入します。
#endif // !defined(AFX_SEARCHDIALOG_H__F054EA83_2A07_11D4_8AC7_0050DAC3512B__INCLUDED_)