blob: dfb2ad77d6f5ad824d32e4f39ea97c50529a1d9f (
plain) (
tree)
|
|
#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.
|