/* Hyperbolic Tessellations Copyright (C) 2007 Dmitry Brant http://dmitrybrant.com 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; either version 2 of the License, or (at your option) any later version. 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. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ //--------------------------------------------------------------------------- #ifndef MainFormH #define MainFormH //--------------------------------------------------------------------------- #include #include #include #include #include #include #include #include #include //--------------------------------------------------------------------------- class TForm1 : public TForm { __published: // IDE-managed Components TMainMenu *MainMenu1; TMenuItem *mnuFile; TMenuItem *mnuEdit; TMenuItem *mnuHelp; TMenuItem *mnuAbout; TMenuItem *mnuNew; TMenuItem *N1; TMenuItem *SaveasWindowsBitmap1; TMenuItem *N2; TMenuItem *Exit1; TMenuItem *mnuCopy; TImageList *ImageList1; TStatusBar *StatusBar1; TXPManifest *XPManifest1; void __fastcall mnuAboutClick(TObject *Sender); void __fastcall Exit1Click(TObject *Sender); void __fastcall mnuNewClick(TObject *Sender); void __fastcall mnuCopyClick(TObject *Sender); void __fastcall SaveasWindowsBitmap1Click(TObject *Sender); void __fastcall StatusBar1DrawPanel(TStatusBar *StatusBar, TStatusPanel *Panel, const TRect &Rect); void __fastcall FormShow(TObject *Sender); private: // User declarations int totalForms; public: // User declarations __fastcall TForm1(TComponent* Owner); }; //--------------------------------------------------------------------------- extern PACKAGE TForm1 *Form1; //--------------------------------------------------------------------------- #endif