TaskPageIcons.h
上传用户:szled88
上传日期:2015-04-09
资源大小:43957k
文件大小:1k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. // TaskPageIcons.h : header file
  2. //
  3. #if !defined(__TASKPAGEICONS_H__)
  4. #define __TASKPAGEICONS_H__
  5. #if _MSC_VER > 1000
  6. #pragma once
  7. #endif // _MSC_VER > 1000
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CTaskPageIcons dialog
  10. class CTaskSheetProperties;
  11. class CTaskPageIcons : public CPropertyPage
  12. {
  13. DECLARE_DYNCREATE(CTaskPageIcons)
  14. // Construction
  15. public:
  16. CTaskPageIcons();
  17. ~CTaskPageIcons();
  18. //{{AFX_DATA(CTaskPageIcons)
  19. enum { IDD = IDD_TASKDIALOG_ICONS };
  20. CComboBox m_comboMainIcon;
  21. CComboBox m_comboFootIcon;
  22. int m_nFootIcon;
  23. int m_nMainIcon;
  24. CString m_strFootPath;
  25. CString m_strMainPath;
  26. BOOL m_bSysIcons;
  27. CButton m_chkSysIcon;
  28. //}}AFX_DATA
  29. HICON m_hFootIcon;
  30. HICON m_hMainIcon;
  31. //{{AFX_VIRTUAL(CTaskPageIcons)
  32. protected:
  33. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  34. virtual BOOL OnSetActive();
  35. //}}AFX_VIRTUAL
  36. protected:
  37. CTaskSheetProperties* m_pDlgParent;
  38. //{{AFX_MSG(CTaskPageIcons)
  39. afx_msg void OnSelEndOkMainIcon();
  40. afx_msg void OnEditChangeMainPath();
  41. afx_msg void OnSelEndOkFootIcon();
  42. afx_msg void OnEditChangeFootPath();
  43. afx_msg void OnBtnMainPath();
  44. afx_msg void OnBtnFootPath();
  45. virtual BOOL OnInitDialog();
  46. afx_msg void OnChkSysIcon();
  47. //}}AFX_MSG
  48. DECLARE_MESSAGE_MAP()
  49. };
  50. //{{AFX_INSERT_LOCATION}}
  51. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  52. #endif // !defined(__TASKPAGEICONS_H__)