PPTtimerDlg.h
上传用户:chpname
上传日期:2018-11-08
资源大小:69k
文件大小:2k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. // PPTtimerDlg.h : header file
  2. //
  3. #if !defined(AFX_PPTTIMERDLG_H__38A010F7_2796_4000_B814_59F0A3B3E8F1__INCLUDED_)
  4. #define AFX_PPTTIMERDLG_H__38A010F7_2796_4000_B814_59F0A3B3E8F1__INCLUDED_
  5. #if _MSC_VER > 1000
  6. #pragma once
  7. #endif // _MSC_VER > 1000
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CPPTtimerDlg dialog
  10. #define PPT_FIRST_RUN     0000
  11. #define PPT_NOTFLASH      0000
  12. #define PPT_COUNTING      0012
  13. #define PPT_TIME_RESTART  0012
  14. #define PPT_FLASH         0013
  15. #define PPT_TIME_STOP     0014
  16. class CPPTtimerDlg : public CDialog
  17. {
  18. // Construction
  19. public:
  20. CPPTtimerDlg(CWnd* pParent = NULL); // standard constructor
  21. // Dialog Data
  22. //{{AFX_DATA(CPPTtimerDlg)
  23. enum { IDD = IDD_PPTTIMER_DIALOG };
  24. CString m_PrintTime;
  25. //}}AFX_DATA
  26. // ClassWizard generated virtual function overrides
  27. //{{AFX_VIRTUAL(CPPTtimerDlg)
  28. public:
  29. virtual BOOL PreTranslateMessage(MSG* pMsg);
  30. protected:
  31. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  32. //}}AFX_VIRTUAL
  33. // Implementation
  34. protected:
  35. BYTE m_FlashFlag;
  36. char m_CurrTime[9];
  37. HICON m_hIcon;
  38. // Generated message map functions
  39. //{{AFX_MSG(CPPTtimerDlg)
  40. virtual BOOL OnInitDialog();
  41. afx_msg void OnPaint();
  42. afx_msg HCURSOR OnQueryDragIcon();
  43. afx_msg void OnRButtonDown(UINT nFlags, CPoint point);
  44. afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  45. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  46. afx_msg void OnTimer(UINT nIDEvent);
  47. afx_msg HBRUSH OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor);
  48. //}}AFX_MSG
  49. afx_msg void OnSysMenuSet();
  50. afx_msg void OnSysMenuClose();
  51. afx_msg void OnSysMenuStop();
  52. afx_msg void OnSysMenuReStart();
  53. DECLARE_MESSAGE_MAP()
  54. };
  55. //{{AFX_INSERT_LOCATION}}
  56. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  57. #endif // !defined(AFX_PPTTIMERDLG_H__38A010F7_2796_4000_B814_59F0A3B3E8F1__INCLUDED_)