fLineStipplingC.cpp 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. //---------------------------------------------------------------------------
  2. #include <vcl.h>
  3. #pragma hdrstop
  4. #include "fLineStipplingC.h"
  5. //---------------------------------------------------------------------------
  6. #pragma package(smart_init)
  7. #pragma link "GR32_Image"
  8. #pragma resource "*.dfm"
  9. TFormLineStipplingC *FormLineStipplingC;
  10. //---------------------------------------------------------------------------
  11. __fastcall TFormLineStipplingC::TFormLineStipplingC(TComponent* Owner)
  12. : TForm(Owner)
  13. {
  14. }
  15. //---------------------------------------------------------------------------
  16. void __fastcall TFormLineStipplingC::FormCreate(TObject *Sender)
  17. {
  18. Image->SetupBitmap;
  19. ScrollBarChange(Sender);
  20. }
  21. //---------------------------------------------------------------------------
  22. void __fastcall TFormLineStipplingC::ScrollBarChange(TObject *Sender)
  23. {
  24. //
  25. }
  26. //---------------------------------------------------------------------------
  27. void __fastcall TFormLineStipplingC::Spiral(int X, int Y);
  28. {
  29. //
  30. }
  31. //---------------------------------------------------------------------------