home *** CD-ROM | disk | FTP | other *** search
- //---------------------------------------------------------------------------
- #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 <Controls.hpp>
- #include <ExtCtrls.hpp>
- #include <Menus.hpp>
- #include <DBGrids.hpp>
- #include <Grids.hpp>
- #include <DBCtrls.hpp>
- #include <StdCtrls.hpp>
- #include "Vrprev.h"
- #include "Vrprogr.h"
- #include "VRPROGR.h"
- //---------------------------------------------------------------------------
- class TMainForm : public TForm
- {
- __published:
- TMainMenu *MainMenu;
- TMenuItem *PrintItem;
- TMenuItem *PrintSetupItem;
- TMenuItem *ExitItem;
- TMenuItem *AboutItem;
- TPanel *SpeedBar;
- TSpeedButton *SpeedButton1; // &Print...
- TSpeedButton *SpeedButton2; // P&rint Setup...
- TSpeedButton *SpeedButton3; // E&xit
- TSpeedButton *SpeedButton4; // &About...
- TMenuItem *PrintPreviewItem;
- TSpeedButton *SpeedButton5;
- TPanel *CustPanel;
- TLabel *CustLabel;
- TDBGrid *CustGrid;
- TSplitter *Splitter1;
- TPanel *MethodsPanel;
- TLabel *MethodsLabel;
- TDBGrid *MethodsGrid;
- TVRPreview *VRPreview;
- TVRPrintProgress *VRPrintProgress;
- void __fastcall PrintSetup(TObject *Sender);
- void __fastcall Exit(TObject *Sender);
- void __fastcall About(TObject *Sender);
- void __fastcall PrintPreviewItemClick(TObject *Sender);
- void __fastcall PrintItemClick(TObject *Sender);
- private: // private user declarations
- public: // public user declarations
- virtual __fastcall TMainForm(TComponent* Owner);
- };
- //---------------------------------------------------------------------------
- extern PACKAGE TMainForm *MainForm;
- //---------------------------------------------------------------------------
- #endif