//--------------------------------------------------------------------------- #ifndef OptionsH #define OptionsH //--------------------------------------------------------------------------- #include #include #include #include #include #include #include #include "main.h" //--------------------------------------------------------------------------- class TOptionsForm : public TForm { __published: // IDE-managed Components TBevel *Bevel1; TBitBtn *BitBtn2; TBitBtn *BitBtn1; TCheckBox *cbShowImages; TCheckBox *cbInsDel; TCheckBox *cbShowDrag; TCheckBox *cbCanDrag; TCheckBox *cbSelect; TCheckBox *cbFocus; TCheckBox *cbButtons; TCheckBox *cbEdit; TGroupBox *GroupBox1; TCheckBox *cbLeft; TCheckBox *cbCenter; TCheckBox *cbRight; TCheckBox *cbVCenter; TCheckBox *cbWrap; TCheckBox *cbUpper; TCheckBox *cbLower; TCheckBox *cbGrow; TLabel *Label3; TLabel *Label2; TLabel *Label1; TEdit *meX; TEdit *meY; TEdit *meLineWidth; void __fastcall FormActivate(TObject *Sender); void __fastcall BitBtn2Click(TObject *Sender); private: // User declarations public: // User declarations __fastcall TOptionsForm(TComponent* Owner); }; //--------------------------------------------------------------------------- extern TOptionsForm *OptionsForm; //--------------------------------------------------------------------------- #endif