StaticCounter.h
上传用户:tlk791129
上传日期:2007-01-02
资源大小:19k
文件大小:5k
源码类别:

Static控件

开发平台:

Visual C++

  1. /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  2. // CStaticCounter - CStatic derived numeric counter display
  3. //
  4. // Author: Jason Hattingh
  5. // Email:  jhattingh@greystonefx.com
  6. // Copyright 1999, Jason Hattingh
  7. //
  8. // You may freely use or modify this code provided this
  9. // Copyright is included in all derived versions.
  10. //
  11. // This class implements a LED style counter without the need for bitmap resources
  12. //
  13. /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  14. #if !defined(AFX_STATICCOUNTER_H__F666A491_3847_11D3_A58E_00805FC1DE10__INCLUDED_)
  15. #define AFX_STATICCOUNTER_H__F666A491_3847_11D3_A58E_00805FC1DE10__INCLUDED_
  16. #if _MSC_VER > 1000
  17. #pragma once
  18. #endif // _MSC_VER > 1000
  19. // StaticCounter.h : header file
  20. //
  21. const DWORD STCOUNTER0  = 252;
  22. const DWORD STCOUNTER1  = 96;
  23. const DWORD STCOUNTER2  = 218;
  24. const DWORD STCOUNTER3  = 242;
  25. const DWORD STCOUNTER4  = 102;
  26. const DWORD STCOUNTER5  = 182;
  27. const DWORD STCOUNTER6  = 190;
  28. const DWORD STCOUNTER7  = 224;
  29. const DWORD STCOUNTER8  = 254;
  30. const DWORD STCOUNTER9  = 246;
  31. const DWORD STCOUNTERALL  = 999;
  32. const DWORD NOTCH1 = 128;
  33. const DWORD NOTCH2 = 64;
  34. const DWORD NOTCH3 = 32;
  35. const DWORD NOTCH4 = 16;
  36. const DWORD NOTCH5 = 8;
  37. const DWORD NOTCH6 = 4;
  38. const DWORD NOTCH7 = 2;
  39. const DWORD NOTCH8 = 1;
  40. //////////////////////////////////////////////////
  41. // CMemDC - memory DC
  42. //
  43. // Author: Keith Rule
  44. // Email:  keithr@europa.com
  45. // Copyright 1996-1997, Keith Rule
  46. //
  47. // You may freely use or modify this code provided this
  48. // Copyright is included in all derived versions.
  49. //
  50. // History - 10/3/97 Fixed scrolling bug.
  51. //                   Added print support.
  52. //  - 14/7/99 Added optional clip rect parameter [jgh]
  53. //
  54. // This class implements a memory Device Context
  55. class CMemDC : public CDC {
  56. private:
  57. CBitmap m_bitmap; // Offscreen bitmap
  58. CBitmap* m_oldBitmap; // bitmap originally found in CMemDC
  59. CDC* m_pDC; // Saves CDC passed in constructor
  60. CRect m_rect; // Rectangle of drawing area.
  61. BOOL m_bMemDC; // TRUE if CDC really is a Memory DC.
  62. public:
  63. CMemDC(CDC* pDC, CRect rect = CRect(0,0,0,0)) : CDC(), m_oldBitmap(NULL), m_pDC(pDC)
  64. {
  65. ASSERT(m_pDC != NULL); // If you asserted here, you passed in a NULL CDC.
  66. m_bMemDC = !pDC->IsPrinting();
  67. if (m_bMemDC){
  68. // Create a Memory DC
  69. CreateCompatibleDC(pDC);
  70. if ( rect == CRect(0,0,0,0) )
  71. pDC->GetClipBox(&m_rect);
  72. else
  73. m_rect = rect;
  74. m_bitmap.CreateCompatibleBitmap(pDC, m_rect.Width(), m_rect.Height());
  75. m_oldBitmap = SelectObject(&m_bitmap);
  76. SetWindowOrg(m_rect.left, m_rect.top);
  77. } else {
  78. // Make a copy of the relevent parts of the current DC for printing
  79. m_bPrinting = pDC->m_bPrinting;
  80. m_hDC = pDC->m_hDC;
  81. m_hAttribDC = pDC->m_hAttribDC;
  82. }
  83. }
  84. ~CMemDC()
  85. {
  86. if (m_bMemDC) {
  87. // Copy the offscreen bitmap onto the screen.
  88. m_pDC->BitBlt(m_rect.left, m_rect.top, m_rect.Width(), m_rect.Height(),
  89. this, m_rect.left, m_rect.top, SRCCOPY);
  90. //Swap back the original bitmap.
  91. SelectObject(m_oldBitmap);
  92. } else {
  93. // All we need to do is replace the DC with an illegal value,
  94. // this keeps us from accidently deleting the handles associated with
  95. // the CDC that was passed to the constructor.
  96. m_hDC = m_hAttribDC = NULL;
  97. }
  98. }
  99. // Allow usage as a pointer
  100. CMemDC* operator->() {return this;}
  101. // Allow usage as a pointer
  102. operator CMemDC*() {return this;}
  103. };
  104. class CStaticCounter : public CStatic
  105. {
  106. // Construction
  107. public:
  108. CStaticCounter();
  109. // Operations
  110. public:
  111. // Overrides
  112. // ClassWizard generated virtual function overrides
  113. //{{AFX_VIRTUAL(CStaticCounter)
  114. //}}AFX_VIRTUAL
  115. // Implementation
  116. public:
  117. void SetDrawFaded(bool bState = true);
  118. CString m_strNumber;
  119. void Display( int nNumber );
  120. void SetColorForeGround(COLORREF crColor = 0xffffffff);
  121. void SetColorBackGround(COLORREF crColor = 0xffffffff);
  122. virtual ~CStaticCounter();
  123. protected:
  124. void Draw( CMemDC* pDC, DWORD dwChar, int nCol);
  125. bool m_bDrawFadedNotches;
  126. bool m_bGotMetrics;
  127. RECT m_recClient;
  128. int m_nNotchWidth;
  129. int m_nNotchLength;
  130. int m_nMargin;
  131. COLORREF m_crColorBackground;
  132. COLORREF m_crColorForeground;
  133. COLORREF m_crColorDimForeground;
  134. CBrush m_brBackground;
  135. CBrush m_brForeground;
  136. // Generated message map functions
  137. protected:
  138. //{{AFX_MSG(CStaticCounter)
  139. afx_msg HBRUSH CtlColor(CDC* pDC, UINT nCtlColor);
  140. afx_msg void OnPaint();
  141. afx_msg BOOL OnEraseBkgnd(CDC* pDC);
  142. //}}AFX_MSG
  143. DECLARE_MESSAGE_MAP()
  144. };
  145. /////////////////////////////////////////////////////////////////////////////
  146. //{{AFX_INSERT_LOCATION}}
  147. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  148. #endif // !defined(AFX_STATICCOUNTER_H__F666A491_3847_11D3_A58E_00805FC1DE10__INCLUDED_)