/* * * 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 #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include 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