home *** CD-ROM | disk | FTP | other *** search
- //---------------------------------------------------------------------------
- #ifndef frmMainH
- #define frmMainH
- //---------------------------------------------------------------------------
- #include <vcl\Classes.hpp>
- #include <vcl\Controls.hpp>
- #include <vcl\StdCtrls.hpp>
- #include <vcl\Forms.hpp>
- #include "RChart.hpp"
- #include <vcl\Buttons.hpp>
- //---------------------------------------------------------------------------
- class TForm1 : public TForm
- {
- __published: // IDE-managed Components
- TRChart *ExportChart;
- TScrollBar *SBarHeight;
- TScrollBar *SBarDepth;
- TScrollBar *SBarAngle;
- TLabel *Label3;
- TLabel *Label2;
- TLabel *Label1;
- TRadioButton *RBRect;
- TRadioButton *RB3Don;
- TBitBtn *BButStop;
- TBitBtn *BButAuto;
- TBitBtn *BButDone;
- void __fastcall BButDoneClick(TObject *Sender);
- void __fastcall FormMouseMove(TObject *Sender, TShiftState Shift, int X, int Y);
- void __fastcall RB3DonClick(TObject *Sender);
- void __fastcall FormActivate(TObject *Sender);
- void __fastcall BButAutoClick(TObject *Sender);
- void __fastcall BButStopClick(TObject *Sender);
- void __fastcall SBarHeightChange(TObject *Sender);
- void __fastcall SBarDepthChange(TObject *Sender);
- void __fastcall SBarAngleChange(TObject *Sender);
- void __fastcall RBRectClick(TObject *Sender);
- private: // User declarations
- void __fastcall DisplayChart (double Hgt, int Depth, int Ang);
- public: // User declarations
- __fastcall TForm1(TComponent* Owner);
- };
- //---------------------------------------------------------------------------
- extern TForm1 *Form1;
- //---------------------------------------------------------------------------
- #endif
-