DynamicClock.h
上传用户:fltzhang
上传日期:2021-02-05
资源大小:1886k
文件大小:2k
源码类别:

Static控件

开发平台:

Visual C++

  1. #if !defined(AFX_DYNAMICCLOCK_H__5BEC53E1_C68E_4E15_A835_A56A81E6800C__INCLUDED_)
  2. #define AFX_DYNAMICCLOCK_H__5BEC53E1_C68E_4E15_A835_A56A81E6800C__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // DynamicClock.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CDynamicClock window
  10. class CDynamicClock : public CStatic
  11. {
  12. // Construction
  13. public:
  14. CDynamicClock();
  15. // Attributes
  16. public:
  17. // Operations
  18. public:
  19. // Overrides
  20. // ClassWizard generated virtual function overrides
  21. //{{AFX_VIRTUAL(CDynamicClock)
  22. protected:
  23. virtual void PreSubclassWindow();
  24. //}}AFX_VIRTUAL
  25. // Implementation
  26. public:
  27. void SetTimeFromat(CString timeFromat);
  28. void SetTextColor(COLORREF textColor);
  29. COLORREF GetTextColor();
  30. void SetFont(CFont *font);
  31. LOGFONT GetLogFont();
  32. virtual ~CDynamicClock();
  33. void UpdateTime();
  34. // Generated message map functions
  35. protected:
  36. //{{AFX_MSG(CDynamicClock)
  37. afx_msg void OnTimer(UINT nIDEvent);
  38. afx_msg HBRUSH CtlColor(CDC* pDC, UINT nCtlColor);
  39. //}}AFX_MSG
  40. DECLARE_MESSAGE_MAP()
  41. private:
  42. void AdaptFontRect();
  43. CString m_strTimeFormat;
  44. COLORREF m_colText;
  45. CFont m_Font;
  46. void GetCurrentTime();
  47. };
  48. /////////////////////////////////////////////////////////////////////////////
  49. //{{AFX_INSERT_LOCATION}}
  50. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  51. #endif // !defined(AFX_DYNAMICCLOCK_H__5BEC53E1_C68E_4E15_A835_A56A81E6800C__INCLUDED_)