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

Static控件

开发平台:

Visual C++

  1. // ClockDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "Clock.h"
  5. #include "ClockDlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CAboutDlg dialog used for App About
  13. class CAboutDlg : public CDialog
  14. {
  15. public:
  16. CAboutDlg();
  17. // Dialog Data
  18. //{{AFX_DATA(CAboutDlg)
  19. enum { IDD = IDD_ABOUTBOX };
  20. //}}AFX_DATA
  21. // ClassWizard generated virtual function overrides
  22. //{{AFX_VIRTUAL(CAboutDlg)
  23. protected:
  24. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  25. //}}AFX_VIRTUAL
  26. // Implementation
  27. protected:
  28. //{{AFX_MSG(CAboutDlg)
  29. //}}AFX_MSG
  30. DECLARE_MESSAGE_MAP()
  31. };
  32. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  33. {
  34. //{{AFX_DATA_INIT(CAboutDlg)
  35. //}}AFX_DATA_INIT
  36. }
  37. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  38. {
  39. CDialog::DoDataExchange(pDX);
  40. //{{AFX_DATA_MAP(CAboutDlg)
  41. //}}AFX_DATA_MAP
  42. }
  43. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  44. //{{AFX_MSG_MAP(CAboutDlg)
  45. // No message handlers
  46. //}}AFX_MSG_MAP
  47. END_MESSAGE_MAP()
  48. /////////////////////////////////////////////////////////////////////////////
  49. // CClockDlg dialog
  50. CClockDlg::CClockDlg(CWnd* pParent /*=NULL*/)
  51. : CDialog(CClockDlg::IDD, pParent)
  52. {
  53. //{{AFX_DATA_INIT(CClockDlg)
  54. // NOTE: the ClassWizard will add member initialization here
  55. //}}AFX_DATA_INIT
  56. // Note that LoadIcon does not require a subsequent DestroyIcon in Win32
  57. m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
  58. }
  59. void CClockDlg::DoDataExchange(CDataExchange* pDX)
  60. {
  61. CDialog::DoDataExchange(pDX);
  62. //{{AFX_DATA_MAP(CClockDlg)
  63. DDX_Control(pDX, IDC_STA_CLOCK, m_DyClock);
  64. //}}AFX_DATA_MAP
  65. }
  66. BEGIN_MESSAGE_MAP(CClockDlg, CDialog)
  67. //{{AFX_MSG_MAP(CClockDlg)
  68. ON_WM_SYSCOMMAND()
  69. ON_WM_PAINT()
  70. ON_WM_QUERYDRAGICON()
  71. ON_WM_TIMER()
  72. ON_BN_CLICKED(IDC_BTN_SELECTFONT, OnBtnSelectFont)
  73. ON_BN_CLICKED(IDC_BTN_SHOW_TIME, OnBtnShowTime)
  74. ON_BN_CLICKED(IDC_BTN_SELECT_COLOR, OnBtnSelectColor)
  75. ON_BN_CLICKED(IDC_BTN_GET_RECT, OnBtnGetRect)
  76. ON_BN_CLICKED(IDC_BTN_SET_TIME_FORMAT, OnBtnSetTimeFormat)
  77. //}}AFX_MSG_MAP
  78. END_MESSAGE_MAP()
  79. /////////////////////////////////////////////////////////////////////////////
  80. // CClockDlg message handlers
  81. BOOL CClockDlg::OnInitDialog()
  82. {
  83. CDialog::OnInitDialog();
  84. // Add "About..." menu item to system menu.
  85. // IDM_ABOUTBOX must be in the system command range.
  86. ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX);
  87. ASSERT(IDM_ABOUTBOX < 0xF000);
  88. CMenu* pSysMenu = GetSystemMenu(FALSE);
  89. if (pSysMenu != NULL)
  90. {
  91. CString strAboutMenu;
  92. strAboutMenu.LoadString(IDS_ABOUTBOX);
  93. if (!strAboutMenu.IsEmpty())
  94. {
  95. pSysMenu->AppendMenu(MF_SEPARATOR);
  96. pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);
  97. }
  98. }
  99. // Set the icon for this dialog.  The framework does this automatically
  100. //  when the application's main window is not a dialog
  101. SetIcon(m_hIcon, TRUE); // Set big icon
  102. SetIcon(m_hIcon, FALSE); // Set small icon
  103. // TODO: Add extra initialization here
  104. //  this->GetCurrentTime();
  105. //  this->SetTimer(1, 1000, NULL);
  106. /* CFont font;*/
  107.   // font.CreatePointFont(300, "微软雅黑", GetDC());
  108. //  if (!font.CreatePointFont(200, "楷体_GB2312", GetDC()))
  109. //  {
  110. //  MessageBox("Create font failed!");
  111. //  }
  112.  /* ((CDynamicClock *)GetDlgItem(IDC_STA_CLOCK))->SetFont(&font);*/
  113. return TRUE;  // return TRUE  unless you set the focus to a control
  114. }
  115. void CClockDlg::OnSysCommand(UINT nID, LPARAM lParam)
  116. {
  117. if ((nID & 0xFFF0) == IDM_ABOUTBOX)
  118. {
  119. CAboutDlg dlgAbout;
  120. dlgAbout.DoModal();
  121. }
  122. else
  123. {
  124. CDialog::OnSysCommand(nID, lParam);
  125. }
  126. }
  127. // If you add a minimize button to your dialog, you will need the code below
  128. //  to draw the icon.  For MFC applications using the document/view model,
  129. //  this is automatically done for you by the framework.
  130. void CClockDlg::OnPaint() 
  131. {
  132. if (IsIconic())
  133. {
  134. CPaintDC dc(this); // device context for painting
  135. SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);
  136. // Center icon in client rectangle
  137. int cxIcon = GetSystemMetrics(SM_CXICON);
  138. int cyIcon = GetSystemMetrics(SM_CYICON);
  139. CRect rect;
  140. GetClientRect(&rect);
  141. int x = (rect.Width() - cxIcon + 1) / 2;
  142. int y = (rect.Height() - cyIcon + 1) / 2;
  143. // Draw the icon
  144. dc.DrawIcon(x, y, m_hIcon);
  145. }
  146. else
  147. {
  148. CDialog::OnPaint();
  149. }
  150. }
  151. // The system calls this to obtain the cursor to display while the user drags
  152. //  the minimized window.
  153. HCURSOR CClockDlg::OnQueryDragIcon()
  154. {
  155. return (HCURSOR) m_hIcon;
  156. }
  157. BOOL CClockDlg::PreTranslateMessage(MSG* pMsg) 
  158. {
  159. // TODO: Add your specialized code here and/or call the base class
  160. if (pMsg->message == WM_KEYDOWN && pMsg->wParam == VK_RETURN)
  161. {
  162. return TRUE;
  163. }
  164. if (pMsg->message == WM_KEYDOWN && pMsg->wParam == VK_ESCAPE)
  165. {
  166. return TRUE;
  167. }
  168. return CDialog::PreTranslateMessage(pMsg);
  169. }
  170. void CClockDlg::OnTimer(UINT nIDEvent) 
  171. {
  172. // TODO: Add your message handler code here and/or call default
  173. // GetCurrentTime();
  174. CDialog::OnTimer(nIDEvent);
  175. }
  176. void CClockDlg::GetCurrentTime()
  177. {
  178. CTime tNow = CTime::GetCurrentTime();
  179. GetDlgItem(IDC_STA_CLOCK)->SetWindowText(tNow.Format("%Y-%m-%d %H:%M:%S"));
  180. }
  181. void CClockDlg::OnBtnSelectFont() 
  182. {
  183. // TODO: Add your control notification handler code here
  184. CFontDialog dlgFont;
  185. LOGFONT lpf;
  186. if (IDOK == dlgFont.DoModal())
  187. {
  188. dlgFont.GetCurrentFont(&lpf);
  189. CFont font;
  190. if (!font.CreateFontIndirect(&lpf))
  191. {
  192. MessageBox("Create font failed!");
  193. }
  194. ((CDynamicClock *)GetDlgItem(IDC_STA_CLOCK))->SetFont(&font);
  195. ((CDynamicClock *)GetDlgItem(IDC_STA_CLOCK))->UpdateTime();
  196. //Invalidate();
  197. // ((CStatic *)GetDlgItem(IDC_STA_FONT))->SetFont(&font);
  198. }
  199. }
  200. void CClockDlg::OnBtnShowTime() 
  201. {
  202. // TODO: Add your control notification handler code here
  203. CString strTime;
  204. GetDlgItem(IDC_STA_CLOCK)->GetWindowText(strTime);
  205. MessageBox("Current time is:n" + strTime);
  206. }
  207. void CClockDlg::OnBtnSelectColor() 
  208. {
  209. // TODO: Add your control notification handler code here
  210. CColorDialog dlgColor;
  211. if (IDOK == dlgColor.DoModal())
  212. {
  213. COLORREF clr = dlgColor.GetColor();
  214. ((CDynamicClock *)GetDlgItem(IDC_STA_CLOCK))->SetTextColor(clr);
  215. ((CDynamicClock *)GetDlgItem(IDC_STA_CLOCK))->UpdateTime();
  216. }
  217. }
  218. void CClockDlg::OnBtnGetRect() 
  219. {
  220. // TODO: Add your control notification handler code here
  221. CRect rc;
  222. ((CButton *)GetDlgItem(IDC_BTN_GET_RECT))->GetWindowRect(rc);
  223. this->ScreenToClient(rc);
  224. CString strRect;
  225. strRect.Format("left:%dt right:%dntop:%dt bottom:%d", rc.left, rc.right, rc.top, rc.bottom);
  226. MessageBox(strRect);
  227. }
  228. void CClockDlg::OnBtnSetTimeFormat() 
  229. {
  230. // TODO: Add your control notification handler code here
  231. ((CDynamicClock *)GetDlgItem(IDC_STA_CLOCK))->SetTimeFromat("%Y/%m/%d %H:%M:%S");
  232. }