Filler.h
上传用户:xrc9201
上传日期:2013-02-04
资源大小:35k
文件大小:1k
源码类别:

源码/资料

开发平台:

Visual C++

  1. #ifndef _FILLER
  2. #define _FILLER
  3. #include "stdafx.h"
  4. // List of predefined constants
  5. #ifndef SUCCESS 
  6. #define SUCCESS 0
  7. #endif
  8. #ifndef FAILURE
  9. #define FAILURE -1
  10. #endif
  11. // Class CFiller for filling a rectangle
  12. class CFiller
  13. {
  14. // Constructor and Destructor
  15. public :
  16. CFiller();
  17. virtual ~CFiller();
  18. // Services
  19. public :
  20. INT SetFillerText( LPCSTR );
  21. INT SetFillerRange( INT, INT );
  22. INT SetFillerPos( INT );
  23. INT GetFillerPos();
  24. COLORREF SetFillerColor( COLORREF & );
  25. COLORREF SetFillerBkColor( COLORREF & );
  26. COLORREF SetFillerTextColor( COLORREF & );
  27. virtual INT DoFill( CWnd *, const CRect & ) = 0;
  28. // Attributes
  29. protected :
  30. CString m_csText;
  31. INT m_nMinVal;
  32. INT m_nMaxVal;
  33. INT m_nPos;
  34. COLORREF m_FillerColor;
  35. COLORREF m_FillerBkColor;
  36. COLORREF m_FillerTextColor;
  37. };
  38. // Class CLToRFiller for Left to Right Filler
  39. class CLToRFiller : public CFiller
  40. {
  41. // Constructor and Destructor
  42. public :
  43. CLToRFiller();
  44. virtual ~CLToRFiller();
  45. // Services
  46. public :
  47. virtual INT DoFill( CWnd *, const CRect & );
  48. };
  49. // Class CRToLFiller for Right to Left Filler
  50. class CRToLFiller : public CFiller
  51. {
  52. // Constructor and Destructor
  53. public :
  54. CRToLFiller();
  55. virtual ~CRToLFiller();
  56. // Services
  57. public :
  58. virtual INT DoFill( CWnd *, const CRect & );
  59. };
  60. #endif