fcGraph.h 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. //---------------------------------------------------------------------------
  2. #ifndef fcGraphH
  3. #define fcGraphH
  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 "fcGraph.h"
  13. #include "fcFxy.h"
  14. #include "fñHeightField.h"
  15. #include "fcPoints.h"
  16. #include "fñSplines.h"
  17. ///#include "fñProjection.h"
  18. //---------------------------------------------------------------------------
  19. class TFormGraph : public TForm
  20. {
  21. __published: // IDE-managed Components
  22. TPanel *PanelLeft;
  23. TTreeView *tvGraph;
  24. TMainMenu *MainMenu;
  25. void __fastcall tvGraphClick(TObject *Sender);
  26. void __fastcall FormCreate(TObject *Sender);
  27. void __fastcall FormShow(TObject *Sender);
  28. private: // User declarations
  29. public: // User declarations
  30. __fastcall TFormGraph(TComponent* Owner);
  31. };
  32. //---------------------------------------------------------------------------
  33. extern PACKAGE TFormGraph *FormGraph;
  34. //---------------------------------------------------------------------------
  35. #endif