2
0

fcGenoise.h 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. //---------------------------------------------------------------------------
  2. #ifndef fcGenoiseH
  3. #define fcGenoiseH
  4. //---------------------------------------------------------------------------
  5. #include <System.Classes.hpp>
  6. #include <FMX.Controls.hpp>
  7. #include <FMX.Forms.hpp>
  8. #include <FMX.Colors.hpp>
  9. #include <FMX.Controls.Presentation.hpp>
  10. #include <FMX.Dialogs.hpp>
  11. #include <FMX.Layouts.hpp>
  12. #include <FMX.ListBox.hpp>
  13. #include <FMX.Objects.hpp>
  14. #include <FMX.StdCtrls.hpp>
  15. #include <FMX.Types.hpp>
  16. //---------------------------------------------------------------------------
  17. class TFormGenoise : public TForm
  18. {
  19. __published: // IDE-managed Components
  20. TImage *Image1;
  21. TLayout *Layout1;
  22. TButton *Button1;
  23. TLabel *Label1;
  24. TComboBox *ComboBox1;
  25. TLabel *Label2;
  26. TComboBox *ComboBox2;
  27. TButton *Button2;
  28. TComboColorBox *ComboColorBox1;
  29. TCheckBox *CheckBox1;
  30. TSaveDialog *SaveDialog1;
  31. private: // User declarations
  32. public: // User declarations
  33. __fastcall TFormGenoise(TComponent* Owner);
  34. };
  35. //---------------------------------------------------------------------------
  36. extern PACKAGE TFormGenoise *FormGenoise;
  37. //---------------------------------------------------------------------------
  38. #endif