summaryrefslogtreecommitdiff
path: root/apps/windoze/CBuilder5/BibleCS/vrslstfrm.h
blob: 7af64b95f22f9d819fc09429aff0e655611809b6 (plain)
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
//---------------------------------------------------------------------------
#ifndef vrslstfrmH
#define vrslstfrmH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <ExtCtrls.hpp>
#include "mainfrm.h"
//---------------------------------------------------------------------------
class TVerseListFrm : public TForm
{
__published:	// IDE-managed Components
	TPanel *plPreview;
	TListBox *ListBox1;
	void __fastcall ListBox1Click(TObject *Sender);
	void __fastcall ListBox1DblClick(TObject *Sender);
	void __fastcall FormShow(TObject *Sender);
private:	// User declarations
	SWDispRTF *pvrtf;
	ListKey &verseList;
public:		// User declarations
	__fastcall TVerseListFrm(TComponent* Owner, ListKey &iVerseList);
};
//---------------------------------------------------------------------------
extern PACKAGE TVerseListFrm *VerseListFrm;
//---------------------------------------------------------------------------
#endif