| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- //---------------------------------------------------------------------------
- #ifndef fGraphCH
- #define fGraphCH
- //---------------------------------------------------------------------------
- #include <System.Classes.hpp>
- #include <Vcl.Controls.hpp>
- #include <Vcl.StdCtrls.hpp>
- #include <Vcl.Forms.hpp>
- #include <Vcl.ComCtrls.hpp>
- #include <Vcl.ExtCtrls.hpp>
- #include <Vcl.Menus.hpp>
- #include "fGraphC.h"
- #include "fFxyC.h"
- #include "fHeightFieldC.h"
- #include "fPointsC.h"
- #include "fProjectionC.h"
- #include "fSplinesC.h"
- //---------------------------------------------------------------------------
- class TFormGraph : public TForm
- {
- __published: // IDE-managed Components
- TPanel *PanelLeft;
- TTreeView *tvGraph;
- TPageControl *PageControl;
- TTabSheet *tsFxy;
- TTabSheet *tsHeightField;
- TTabSheet *tsPoints;
- TTabSheet *tsProjection;
- TTabSheet *tsSplines;
- TMainMenu *MainMenu;
- void __fastcall FormCreate(TObject *Sender);
- void __fastcall FormShow(TObject *Sender);
- void __fastcall tvGraphClick(TObject *Sender);
- private: // User declarations
- public: // User declarations
- __fastcall TFormGraph(TComponent* Owner);
- };
- //---------------------------------------------------------------------------
- extern PACKAGE TFormGraph *FormGraph;
- //---------------------------------------------------------------------------
- #endif
|