aboutsummaryrefslogtreecommitdiffstats
path: root/apps/windoze/CBuilder5/BibleCS/ModVisFrm.h
blob: b65ab82e4ae559ecc3a3d629aa35d35bb8e36701 (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
//---------------------------------------------------------------------------

#ifndef ModVisFrmH
#define ModVisFrmH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <Buttons.hpp>
#include <CheckLst.hpp>
#include <ExtCtrls.hpp>
#include <swconfig.h>
#include <swmgr.h>
#include <ComCtrls.hpp>

using namespace sword;

//---------------------------------------------------------------------------
class TModVisForm : public TForm
{
__published:	// IDE-managed Components
	TPanel *Panel2;
	TPanel *Panel1;
	TBitBtn *OkBtn;
	TBitBtn *CancelBtn;
	TListView *modList;
	void __fastcall FormShow(TObject *Sender);
	void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
private:	// User declarations
public:		// User declarations
	ConfigEntMap *section;
     SWMgr *mgr;

	__fastcall TModVisForm(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TModVisForm *ModVisForm;
//---------------------------------------------------------------------------
#endif