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

Static控件

开发平台:

Visual C++

  1. // ClockDlg.h : header file
  2. //
  3. #if !defined(AFX_CLOCKDLG_H__36C32901_A070_42F2_80FB_FED5D772B6B5__INCLUDED_)
  4. #define AFX_CLOCKDLG_H__36C32901_A070_42F2_80FB_FED5D772B6B5__INCLUDED_
  5. #if _MSC_VER > 1000
  6. #pragma once
  7. #endif // _MSC_VER > 1000
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CClockDlg dialog
  10. class CClockDlg : public CDialog
  11. {
  12. // Construction
  13. public:
  14. CClockDlg(CWnd* pParent = NULL); // standard constructor
  15. // Dialog Data
  16. //{{AFX_DATA(CClockDlg)
  17. enum { IDD = IDD_CLOCK_DIALOG };
  18. CDynamicClock m_DyClock;
  19. //}}AFX_DATA
  20. // ClassWizard generated virtual function overrides
  21. //{{AFX_VIRTUAL(CClockDlg)
  22. public:
  23. virtual BOOL PreTranslateMessage(MSG* pMsg);
  24. protected:
  25. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  26. //}}AFX_VIRTUAL
  27. // Implementation
  28. protected:
  29. HICON m_hIcon;
  30. // Generated message map functions
  31. //{{AFX_MSG(CClockDlg)
  32. virtual BOOL OnInitDialog();
  33. afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  34. afx_msg void OnPaint();
  35. afx_msg HCURSOR OnQueryDragIcon();
  36. afx_msg void OnTimer(UINT nIDEvent);
  37. afx_msg void OnBtnSelectFont();
  38. afx_msg void OnBtnShowTime();
  39. afx_msg void OnBtnSelectColor();
  40. afx_msg void OnBtnGetRect();
  41. afx_msg void OnBtnSetTimeFormat();
  42. //}}AFX_MSG
  43. DECLARE_MESSAGE_MAP()
  44. private:
  45. void GetCurrentTime();
  46. };
  47. //{{AFX_INSERT_LOCATION}}
  48. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  49. #endif // !defined(AFX_CLOCKDLG_H__36C32901_A070_42F2_80FB_FED5D772B6B5__INCLUDED_)