blob: dfb2ad77d6f5ad824d32e4f39ea97c50529a1d9f (
plain) (
blame)
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
|
#if !defined(__serchdlg_h) // Sentry, use file only if it's not already included.
#define __serchdlg_h
/* Project sword
GNU Copyleft GPL © 1995. Almost No Rights Reserved.
SUBSYSTEM: sword.apx Application
FILE: serchdlg.h
AUTHOR: The Sword Project Team
OVERVIEW
========
Class definition for SearchDlg (TDialog).
*/
#include <owl\owlpch.h>
#pragma hdrstop
#include <owl\listbox.h>
#include "swordapp.rh" // Definition of all resources.
//{{TDialog = SearchDlg}}
struct SearchDlgXfer {
//{{SearchDlgXFER_DATA}}
TListBoxData searchlbox;
//{{SearchDlgXFER_DATA_END}}
};
class SearchDlg : public TDialog {
public:
SearchDlg (TWindow* parent, TResId resId = DIALOG_1, TModule* module = 0);
virtual ~SearchDlg ();
//{{SearchDlgRSP_TBL_BEGIN}}
protected:
void FindClicked ();
void searchlbox_Dblclk ();
//{{SearchDlgRSP_TBL_END}}
DECLARE_RESPONSE_TABLE(SearchDlg);
//{{SearchDlgXFER_DEF}}
protected:
TListBox *searchlbox;
//{{SearchDlgXFER_DEF_END}}
}; //{{SearchDlg}}
#endif // __serchdlg_h sentry.
|