fGraphC.h 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. //---------------------------------------------------------------------------
  2. #ifndef fGraphCH
  3. #define fGraphCH
  4. //---------------------------------------------------------------------------
  5. #include <System.Classes.hpp>
  6. #include <Vcl.Controls.hpp>
  7. #include <Vcl.StdCtrls.hpp>
  8. #include <Vcl.Forms.hpp>
  9. #include <Vcl.ComCtrls.hpp>
  10. #include <Vcl.ExtCtrls.hpp>
  11. #include <Vcl.Menus.hpp>
  12. #include "fGraphC.h"
  13. #include "fFxyC.h"
  14. #include "fHeightFieldC.h"
  15. #include "fPointsC.h"
  16. #include "fProjectionC.h"
  17. #include "fSplinesC.h"
  18. //---------------------------------------------------------------------------
  19. class TFormGraph : public TForm
  20. {
  21. __published: // IDE-managed Components
  22. TPanel *PanelLeft;
  23. TTreeView *tvGraph;
  24. TPageControl *PageControl;
  25. TTabSheet *tsFxy;
  26. TTabSheet *tsHeightField;
  27. TTabSheet *tsPoints;
  28. TTabSheet *tsProjection;
  29. TTabSheet *tsSplines;
  30. TMainMenu *MainMenu;
  31. void __fastcall FormCreate(TObject *Sender);
  32. void __fastcall FormShow(TObject *Sender);
  33. void __fastcall tvGraphClick(TObject *Sender);
  34. private: // User declarations
  35. public: // User declarations
  36. __fastcall TFormGraph(TComponent* Owner);
  37. };
  38. //---------------------------------------------------------------------------
  39. extern PACKAGE TFormGraph *FormGraph;
  40. //---------------------------------------------------------------------------
  41. #endif