AutoCloseDlg.h
上传用户:zhuoli121
上传日期:2007-01-13
资源大小:43k
文件大小:2k
源码类别:

Shell编程

开发平台:

WINDOWS

  1. // AutoCloseDlg.h : header file
  2. //
  3. #if !defined(AFX_AUTOCLOSEDLG_H__C960B7A2_BF60_4937_9A96_10F27EE86816__INCLUDED_)
  4. #define AFX_AUTOCLOSEDLG_H__C960B7A2_BF60_4937_9A96_10F27EE86816__INCLUDED_
  5. #if _MSC_VER > 1000
  6. #pragma once
  7. #endif // _MSC_VER > 1000
  8. #define MYWM_NOTIFYICON WM_USER+1
  9. /////////////////////////////////////////////////////////////////////////////
  10. // CAutoCloseDlg dialog
  11. class CAutoCloseDlg : public CDialog
  12. {
  13. // Construction
  14. public:
  15. BOOL fResult;
  16. TOKEN_PRIVILEGES tkp;
  17. HANDLE hToken;
  18. NOTIFYICONDATA m_tnid;  //设置系统托盘
  19. CString close_min;
  20. CString close_hour;
  21. BOOL begin;  //是否按下了START按钮
  22. CAutoCloseDlg(CWnd* pParent = NULL); // standard constructor
  23. // Dialog Data
  24. //{{AFX_DATA(CAutoCloseDlg)
  25. enum { IDD = IDD_AUTOCLOSE_DIALOG };
  26. // NOTE: the ClassWizard will add data members here
  27. //}}AFX_DATA
  28. // ClassWizard generated virtual function overrides
  29. //{{AFX_VIRTUAL(CAutoCloseDlg)
  30. protected:
  31. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  32. virtual LRESULT WindowProc(UINT message, WPARAM wParam, LPARAM lParam);
  33. //}}AFX_VIRTUAL
  34. // Implementation
  35. protected:
  36. HICON m_hIcon;
  37. // Generated message map functions
  38. //{{AFX_MSG(CAutoCloseDlg)
  39. virtual BOOL OnInitDialog();
  40. afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  41. afx_msg void OnPaint();
  42. afx_msg HCURSOR OnQueryDragIcon();
  43. afx_msg void OnTimer(UINT nIDEvent);
  44. afx_msg void OnSelchangeHour();
  45. afx_msg void OnSelchangeMin();
  46. afx_msg void OnStart();
  47. afx_msg void OnDestroy();
  48. afx_msg void OnAbout();
  49. afx_msg void OnStop();
  50. afx_msg void OnDisplay();
  51. afx_msg void OnQuit();
  52. afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  53. //}}AFX_MSG
  54. DECLARE_MESSAGE_MAP()
  55. };
  56. //{{AFX_INSERT_LOCATION}}
  57. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  58. #endif // !defined(AFX_AUTOCLOSEDLG_H__C960B7A2_BF60_4937_9A96_10F27EE86816__INCLUDED_)