fLineStipplingC.h 1020 B

123456789101112131415161718192021222324252627
  1. //---------------------------------------------------------------------------
  2. #ifndef fLineStipplingCH
  3. #define fLineStipplingCH
  4. //---------------------------------------------------------------------------
  5. #include <System.Classes.hpp>
  6. #include <Vcl.Controls.hpp>
  7. #include <Vcl.StdCtrls.hpp>
  8. #include <Vcl.Forms.hpp>
  9. #include "GR32_Image.hpp"
  10. //---------------------------------------------------------------------------
  11. class TFormLineStipplingC : public TForm
  12. {
  13. __published: // IDE-managed Components
  14. TImage32 *Image;
  15. TScrollBar *ScrollBar;
  16. void __fastcall FormCreate(TObject *Sender);
  17. void __fastcall ScrollBarChange(TObject *Sender);
  18. private: // User declarations
  19. public: // User declarations
  20. void __fastcall Spiral (int X, int Y);
  21. __fastcall TFormLineStipplingC(TComponent* Owner);
  22. };
  23. //---------------------------------------------------------------------------
  24. extern PACKAGE TFormLineStipplingC *FormLineStipplingC;
  25. //---------------------------------------------------------------------------
  26. #endif