blob: c766ce9940720f961aec3305fdf630a959b35b40 (
plain) (
tree)
|
|
/*
*
* 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
|