-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathEsmFindDlg.h
127 lines (100 loc) · 3.56 KB
/
EsmFindDlg.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
/*===========================================================================
*
* File: Esmfinddlg.H
* Author: Dave Humphrey (uesp@m0use.net)
* Created On: March 3, 2003
*
* Description
*
*=========================================================================*/
#ifndef __ESMFINDDLG_H
#define __ESMFINDDLG_H
/*===========================================================================
*
* Begin Required Include Files
*
*=========================================================================*/
#include "MWEditDoc.h"
#include "EsmListCtrl.h"
/*===========================================================================
* End of Required Include Files
*=========================================================================*/
/*===========================================================================
*
* Begin Type Definitions
*
*=========================================================================*/
class CEsmDlgHandler;
/*===========================================================================
* End of Type Definitions
*=========================================================================*/
/*===========================================================================
*
* Begin Class CEsmFindDlg Definition
*
*=========================================================================*/
class CEsmFindDlg : public CFormView {
/*---------- Begin Protected Class Members --------------------*/
protected:
CEsmDlgHandler* m_pDlgHandler;
HACCEL m_hAccelerator;
/*---------- Begin Protected Class Methods --------------------*/
protected:
CEsmFindDlg();
virtual ~CEsmFindDlg();
DECLARE_DYNCREATE(CEsmFindDlg);
/* Save a find history to the registry */
void AddFindHistory (const TCHAR* pString);
/* Fills the find list with previous entries */
void FillFindList (void);
/*---------- Begin Public Class Methods -----------------------*/
public:
/* Set parent dialog handler */
void SetDlgHandler (CEsmDlgHandler* pParent) { m_pDlgHandler = pParent; }
//{{AFX_DATA(CEsmFindDlg)
enum { IDD = IDD_FIND_DLG };
CProgressCtrl m_ProgressBar;
CComboBox m_FindList;
CStatic m_CountLabel;
CEsmListCtrl m_RecordList;
//}}AFX_DATA
/* ClassWizard generated virtual function overrides */
//{{AFX_VIRTUAL(CEsmFindDlg)
public:
virtual void OnInitialUpdate();
virtual BOOL PreTranslateMessage(MSG* pMsg);
protected:
virtual void DoDataExchange(CDataExchange* pDX);
//}}AFX_VIRTUAL
protected:
/* Class diagnostics */
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
/* Generated message map functions */
//{{AFX_MSG(CEsmFindDlg)
afx_msg void OnFindbutton();
afx_msg void OnCancel();
afx_msg void OnDestroy();
afx_msg LRESULT OnEditRecord (LPARAM lParam, LPARAM wParam);
afx_msg void OnEditInfo();
afx_msg void OnUpdateEditInfo(CCmdUI* pCmdUI);
afx_msg void OnEditCopy();
afx_msg void OnEditCut();
afx_msg void OnEditPaste();
afx_msg void OnContextMenu(CWnd* pWnd, CPoint point);
afx_msg void OnEditSelectrecord();
afx_msg void OnUpdateEditSelectrecord(CCmdUI* pCmdUI);
//}}AFX_MSG
DECLARE_MESSAGE_MAP();
};
/*===========================================================================
* End of Class CEsmFindDlg Definition
*=========================================================================*/
//{{AFX_INSERT_LOCATION}}
//}}AFX_INSERT_LOCATION
#endif
/*===========================================================================
* End of File Esmfinddlg.H
*=========================================================================*/