aboutsummaryrefslogtreecommitdiffstats
path: root/apps/windoze/CBuilder5/BibleCS/vrslstfrm.h
blob: 1a8471ef34b82650f20e8cb9bc0b0f22beb3c8ea (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
//---------------------------------------------------------------------------
#ifndef vrslstfrmH
#define vrslstfrmH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <ExtCtrls.hpp>
#include "mainfrm.h"
#include "RxRichEditX.h"
#include <Buttons.hpp>
#include <Dialogs.hpp>
//---------------------------------------------------------------------------
class TVerseListForm : public TForm
{
__published:	// IDE-managed Components
	TPanel *plPreview;
	TListBox *ListBox1;
	TPanel *Panel1;
	TSpeedButton *SpeedButton1;
	TSpeedButton *SpeedButton2;
	TSpeedButton *SpeedButton3;
	TSpeedButton *SpeedButton4;
	TSpeedButton *SpeedButton5;
	TSpeedButton *SpeedButton6;
	TOpenDialog *VLOpenDialog;
	TSaveDialog *VLSaveDialog;
	void __fastcall ListBox1Click(TObject *Sender);
	void __fastcall ListBox1DblClick(TObject *Sender);
	void __fastcall FormShow(TObject *Sender);
	void __fastcall SpeedButton1Click(TObject *Sender);
	void __fastcall SpeedButton2Click(TObject *Sender);
	void __fastcall SpeedButton3Click(TObject *Sender);
	void __fastcall SpeedButton4Click(TObject *Sender);
	void __fastcall SpeedButton5Click(TObject *Sender);
	void __fastcall SpeedButton6Click(TObject *Sender);
private:	// User declarations
	TRxRichEditX *pvrtf;
	ListKey verseList;
	void fillWithVerseList(ListKey &verseList);
public:		// User declarations
	__fastcall TVerseListForm(TComponent* Owner, ListKey &iVerseList);
};
//---------------------------------------------------------------------------
extern PACKAGE TVerseListForm *VerseListForm;
//---------------------------------------------------------------------------
#endif