TimersDlg.cpp
上传用户:z_mail1980
上传日期:2007-06-01
资源大小:647k
文件大小:6k
源码类别:

SNMP编程

开发平台:

Visual C++

  1. // TimersDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "Timers.h"
  5. #include "TimersDlg.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. // CTimersDlg dialog
  50. CTimersDlg::CTimersDlg(CWnd* pParent /*=NULL*/)
  51. : CDialog(CTimersDlg::IDD, pParent)
  52. {
  53. //{{AFX_DATA_INIT(CTimersDlg)
  54. m_sTime = _T("");
  55. m_sCount = _T("");
  56. m_iInterval = 0;
  57. //}}AFX_DATA_INIT
  58. // Note that LoadIcon does not require a subsequent DestroyIcon in Win32
  59. m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
  60. }
  61. void CTimersDlg::DoDataExchange(CDataExchange* pDX)
  62. {
  63. CDialog::DoDataExchange(pDX);
  64. //{{AFX_DATA_MAP(CTimersDlg)
  65. DDX_Control(pDX, IDC_STOPTIMER, m_cStopTime);
  66. DDX_Control(pDX, IDC_STARTTIME, m_cStartTime);
  67. DDX_Text(pDX, IDC_STATICTIME, m_sTime);
  68. DDX_Text(pDX, IDC_STATICCOUNT, m_sCount);
  69. DDX_Text(pDX, IDC_INTERVAL, m_iInterval);
  70. DDV_MinMaxInt(pDX, m_iInterval, 1, 100000);
  71. //}}AFX_DATA_MAP
  72. }
  73. BEGIN_MESSAGE_MAP(CTimersDlg, CDialog)
  74. //{{AFX_MSG_MAP(CTimersDlg)
  75. ON_WM_SYSCOMMAND()
  76. ON_WM_PAINT()
  77. ON_WM_QUERYDRAGICON()
  78. ON_BN_CLICKED(IDC_EXIT, OnExit)
  79. ON_WM_TIMER()
  80. ON_EN_CHANGE(IDC_INTERVAL, OnChangeInterval)
  81. ON_BN_CLICKED(IDC_STARTTIME, OnStarttime)
  82. ON_BN_CLICKED(IDC_STOPTIMER, OnStoptimer)
  83. //}}AFX_MSG_MAP
  84. END_MESSAGE_MAP()
  85. /////////////////////////////////////////////////////////////////////////////
  86. // CTimersDlg message handlers
  87. BOOL CTimersDlg::OnInitDialog()
  88. {
  89. CDialog::OnInitDialog();
  90. // Add "About..." menu item to system menu.
  91. // IDM_ABOUTBOX must be in the system command range.
  92. ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX);
  93. ASSERT(IDM_ABOUTBOX < 0xF000);
  94. CMenu* pSysMenu = GetSystemMenu(FALSE);
  95. if (pSysMenu != NULL)
  96. {
  97. CString strAboutMenu;
  98. strAboutMenu.LoadString(IDS_ABOUTBOX);
  99. if (!strAboutMenu.IsEmpty())
  100. {
  101. pSysMenu->AppendMenu(MF_SEPARATOR);
  102. pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);
  103. }
  104. }
  105. // Set the icon for this dialog.  The framework does this automatically
  106. //  when the application's main window is not a dialog
  107. SetIcon(m_hIcon, TRUE); // Set big icon
  108. SetIcon(m_hIcon, FALSE); // Set small icon
  109. // TODO: Add extra initialization here
  110. m_iInterval=100;
  111. UpdateData(FALSE);
  112. SetTimer(ID_CLOCK_TIMER,1000,NULL);
  113. return TRUE;  // return TRUE  unless you set the focus to a control
  114. }
  115. void CTimersDlg::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 CTimersDlg::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 CTimersDlg::OnQueryDragIcon()
  154. {
  155. return (HCURSOR) m_hIcon;
  156. }
  157. void CTimersDlg::OnExit() 
  158. {
  159. // TODO: Add your control notification handler code here
  160. OnOK();
  161. }
  162. void CTimersDlg::OnTimer(UINT nIDEvent) 
  163. {
  164. // TODO: Add your message handler code here and/or call default
  165. CTime curRime=CTime::GetCurrentTime();
  166. switch(nIDEvent)
  167. {
  168. case ID_CLOCK_TIMER:
  169. m_sTime.Format("%d:%d:%d",curRime.GetHour(),
  170. curRime.GetMinute(),
  171. curRime.GetSecond());
  172. break;
  173. case ID_COUNT_TIMER:
  174. m_iCount++;
  175. m_sCount.Format("%d",m_iCount);
  176. break;
  177. }
  178. UpdateData(FALSE);
  179. CDialog::OnTimer(nIDEvent);
  180. }
  181. void CTimersDlg::OnChangeInterval() 
  182. {
  183. // TODO: If this is a RICHEDIT control, the control will not
  184. // send this notification unless you override the CDialog::OnInitDialog()
  185. // function and call CRichEditCtrl().SetEventMask()
  186. // with the ENM_CHANGE flag ORed into the mask.
  187. // TODO: Add your control notification handler code here
  188. UpdateData(TRUE);
  189. }
  190. void CTimersDlg::OnStarttime() 
  191. {
  192. // TODO: Add your control notification handler code here
  193. UpdateData(TRUE);
  194. m_iCount=0;
  195. m_sCount.Format("%d",m_iCount);
  196. UpdateData(FALSE);
  197. SetTimer(ID_COUNT_TIMER,m_iInterval,NULL);
  198. m_cStopTime.EnableWindow(TRUE);
  199. m_cStartTime.EnableWindow(FALSE);
  200. }
  201. void CTimersDlg::OnStoptimer() 
  202. {
  203. // TODO: Add your control notification handler code here
  204. KillTimer(ID_COUNT_TIMER);
  205. m_cStopTime.EnableWindow(FALSE);
  206. m_cStartTime.EnableWindow(TRUE);
  207. }