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

对话框与窗口

开发平台:

Visual C++

  1. // chicdial.h : header file
  2. //
  3. // This file is a part of the XTREME TOOLKIT PRO MFC class library.
  4. // (c)1998-2008 Codejock Software, All Rights Reserved.
  5. //
  6. // THIS SOURCE FILE IS THE PROPERTY OF CODEJOCK SOFTWARE AND IS NOT TO BE
  7. // RE-DISTRIBUTED BY ANY MEANS WHATSOEVER WITHOUT THE EXPRESSED WRITTEN
  8. // CONSENT OF CODEJOCK SOFTWARE.
  9. //
  10. // THIS SOURCE CODE CAN ONLY BE USED UNDER THE TERMS AND CONDITIONS OUTLINED
  11. // IN THE XTREME TOOLKIT PRO LICENSE AGREEMENT. CODEJOCK SOFTWARE GRANTS TO
  12. // YOU (ONE SOFTWARE DEVELOPER) THE LIMITED RIGHT TO USE THIS SOFTWARE ON A
  13. // SINGLE COMPUTER.
  14. //
  15. // CONTACT INFORMATION:
  16. // support@codejock.com
  17. // http://www.codejock.com
  18. //
  19. /////////////////////////////////////////////////////////////////////////////
  20. /////////////////////////////////////////////////////////////////////////////
  21. // CCSDialog dialog
  22. class CCSDialog : public CDialog
  23. {
  24. // Construction
  25. public:
  26. CCSDialog();
  27. CCSDialog(LPCTSTR lpszTemplateName, CWnd* pParentWnd = NULL);
  28. CCSDialog(UINT nIDTemplate, CWnd* pParentWnd = NULL);
  29. // Implementation
  30. protected:
  31. virtual const DWORD* GetHelpIDs() = 0;
  32. // Generated message map functions
  33. //{{AFX_MSG(CCSDialog)
  34. virtual BOOL OnInitDialog();
  35. //}}AFX_MSG
  36. afx_msg LRESULT OnHelp(WPARAM, LPARAM lParam);
  37. afx_msg LRESULT OnHelpContextMenu(WPARAM, LPARAM lParam);
  38. DECLARE_MESSAGE_MAP()
  39. };
  40. class CCSPropertyPage : public CPropertyPage
  41. {
  42. // Construction
  43. public:
  44. CCSPropertyPage(UINT nIDTemplate, UINT nIDCaption = 0);
  45. CCSPropertyPage(LPCTSTR lpszTemplateName, UINT nIDCaption = 0);
  46. // Implementation
  47. protected:
  48. virtual const DWORD* GetHelpIDs() = 0;
  49. // Generated message map functions
  50. //{{AFX_MSG(CCSPropertyPage)
  51. //}}AFX_MSG
  52. afx_msg LRESULT OnHelp(WPARAM wParam, LPARAM lParam);
  53. afx_msg LRESULT OnHelpContextMenu(WPARAM wParam, LPARAM lParam);
  54. DECLARE_MESSAGE_MAP()
  55. };
  56. class CCSPropertySheet : public CPropertySheet
  57. {
  58. // Construction
  59. public:
  60. CCSPropertySheet(UINT nIDCaption, CWnd *pParentWnd = NULL,
  61. UINT iSelectPage = 0);
  62. CCSPropertySheet(LPCTSTR pszCaption, CWnd *pParentWnd = NULL,
  63. UINT iSelectPage = 0);
  64. // Implementation
  65. protected:
  66. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  67. // Generated message map functions
  68. //{{AFX_MSG(CCSPropertySheet)
  69. //}}AFX_MSG
  70. afx_msg LRESULT OnHelp(WPARAM wParam, LPARAM lParam);
  71. afx_msg LRESULT OnHelpContextMenu(WPARAM wParam, LPARAM lParam);
  72. DECLARE_MESSAGE_MAP()
  73. };