summaryrefslogtreecommitdiffstats
path: root/Diaspora/Main.h
blob: c766ce9940720f961aec3305fdf630a959b35b40 (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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/*
 *
 * Copyright 2001 CrossWire Bible Society (http://www.crosswire.org)
 *	CrossWire Bible Society
 *	P. O. Box 2528
 *	Tempe, AZ  85280-2528
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License as published by the
 * Free Software Foundation version 2.
 *
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 *
 */
//---------------------------------------------------------------------------
#ifndef MainH
#define MainH
//---------------------------------------------------------------------------
#include <vcl\sysutils.hpp>
#include <vcl\windows.hpp>
#include <vcl\messages.hpp>
#include <vcl\sysutils.hpp>
#include <vcl\classes.hpp>
#include <vcl\graphics.hpp>
#include <vcl\controls.hpp>
#include <vcl\forms.hpp>
#include <vcl\dialogs.hpp>
#include <vcl\stdctrls.hpp>
#include <vcl\buttons.hpp>
#include <vcl\extctrls.hpp>
#include <vcl\menus.hpp>
#include <Buttons.hpp>
#include <Classes.hpp>
#include <ComCtrls.hpp>
#include <Controls.hpp>
#include <Dialogs.hpp>
#include <ExtCtrls.hpp>
#include <Menus.hpp>
#include <CheckLst.hpp>
#include <StdCtrls.hpp>
#include <encfiltmgr.h>
using namespace sword;
//---------------------------------------------------------------------------
class TMainForm : public TForm
{
__published:
        TCheckListBox *modlist;
        TPanel *Panel1;
        TLabel *Label1;
        TEdit *outputpath;
        TButton *output;
        TMemo *feedback;
        TRadioGroup *RadioGroup1;
        TRadioButton *fmtThML;
        TRadioButton *fmtOLB;
        TRadioButton *fmtGBF;
        TRadioButton *fmtPalm;
        TRadioButton *fmtPlain;
        TCheckBox *optFootnotes;
        TCheckBox *optStrongs;
        TCheckBox *optHeadings;
        TCheckBox *optMorph;
        TCheckBox *optGAccents;
        TCheckBox *optHCant;
        TCheckBox *optHVowels;
        TCheckBox *optRoman;
        TEdit *range;
        TLabel *label;
        TRadioGroup *xlitFmt;
	void __fastcall FormCreate(TObject *Sender);
        void __fastcall outputClick(TObject *Sender);
        void __fastcall optRomanClick(TObject *Sender);
private:        // private user declarations
        SWMgr* manager;
public:         // public user declarations
	virtual __fastcall TMainForm(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern TMainForm *MainForm;
//---------------------------------------------------------------------------
#endif