fcCanvas.hpp
上传用户:hylc_2004
上传日期:2014-01-23
资源大小:46800k
文件大小:3k
源码类别:

Delphi控件源码

开发平台:

Delphi

  1. // Borland C++ Builder
  2. // Copyright (c) 1995, 1999 by Borland International
  3. // All rights reserved
  4. // (DO NOT EDIT: machine generated header) 'fcCanvas.pas' rev: 5.00
  5. #ifndef fcCanvasHPP
  6. #define fcCanvasHPP
  7. #pragma delphiheader begin
  8. #pragma option push -w-
  9. #pragma option push -Vx
  10. #include <fcCommon.hpp> // Pascal unit
  11. #include <Controls.hpp> // Pascal unit
  12. #include <Classes.hpp> // Pascal unit
  13. #include <SysUtils.hpp> // Pascal unit
  14. #include <Messages.hpp> // Pascal unit
  15. #include <Graphics.hpp> // Pascal unit
  16. #include <Windows.hpp> // Pascal unit
  17. #include <SysInit.hpp> // Pascal unit
  18. #include <System.hpp> // Pascal unit
  19. //-- user supplied -----------------------------------------------------------
  20. namespace Fccanvas
  21. {
  22. //-- type declarations -------------------------------------------------------
  23. #pragma option push -b-
  24. enum TwwRectSide { rsLeft, rsTop, rsRight, rsBottom };
  25. #pragma option pop
  26. typedef Set<TwwRectSide, rsLeft, rsBottom>  TwwRectSides;
  27. class DELPHICLASS TfcCanvas;
  28. class PASCALIMPLEMENTATION TfcCanvas : public Controls::TControlCanvas 
  29. {
  30. typedef Controls::TControlCanvas inherited;
  31. public:
  32. HIDESBASE void __fastcall Refresh(void);
  33. Types::TRect __fastcall DrawText(AnsiString AText, const Types::TRect &ARect, int Style);
  34. void __fastcall DottedLine(const Types::TPoint &p1, const Types::TPoint &p2);
  35. void __fastcall VCenterDrawText(AnsiString AText, const Types::TRect &ARect, int Style);
  36. void __fastcall CenterDraw(Graphics::TGraphic* SourceBitmap, const Types::TRect &ClipRect);
  37. void __fastcall CenterRect(Graphics::TBitmap* SourceBitmap, const Types::TRect &SourceRect, const Types::TRect &ClipRect);
  38. void __fastcall DisabledDraw(int X, int Y, Graphics::TBitmap* Bitmap);
  39. void __fastcall FrameRectPen(const Types::TRect &ARect);
  40. void __fastcall ClearRect(const Types::TRect &ARect, Graphics::TGraphic* AGraphic, bool Stretch, Graphics::TColor FillColor);
  41. void __fastcall TileDraw(Graphics::TBitmap* SourceBitmap);
  42. void __fastcall Dither(const Types::TRect &r, Graphics::TBitmap* ABrush);
  43. void __fastcall DrawFrameControl(const Types::TRect &r, int uType, int uState);
  44. void __fastcall ParseDraw(const Types::TRect &DestRect, Graphics::TBitmap* ABitmap, int NumImages, int ImageIndex);
  45. void __fastcall ParseCenterDraw(const Types::TRect &DestRect, Graphics::TBitmap* ABitmap, int NumImages, int ImageIndex);
  46. public:
  47. #pragma option push -w-inl
  48. /* TControlCanvas.Destroy */ inline __fastcall virtual ~TfcCanvas(void) { }
  49. #pragma option pop
  50. public:
  51. #pragma option push -w-inl
  52. /* TCanvas.Create */ inline __fastcall TfcCanvas(void) : Controls::TControlCanvas() { }
  53. #pragma option pop
  54. };
  55. //-- var, const, procedure ---------------------------------------------------
  56. static const int DT_DISABLED = 0x80000;
  57. } /* namespace Fccanvas */
  58. #if !defined(NO_IMPLICIT_NAMESPACE_USE)
  59. using namespace Fccanvas;
  60. #endif
  61. #pragma option pop // -w-
  62. #pragma option pop // -Vx
  63. #pragma delphiheader end.
  64. //-- end unit ----------------------------------------------------------------
  65. #endif // fcCanvas