CHICDIAL.H
上传用户:aakk678
上传日期:2022-07-09
资源大小:406k
文件大小:2k
源码类别:

界面编程

开发平台:

Visual C++

  1. // chicdial.h : header file
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1997 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CCSDialog dialog
  14. class CCSDialog : public CDialog
  15. {
  16. // Construction
  17. public:
  18. CCSDialog();
  19. CCSDialog(LPCTSTR lpszTemplateName, CWnd* pParentWnd = NULL);
  20. CCSDialog(UINT nIDTemplate, CWnd* pParentWnd = NULL);
  21. // Implementation
  22. protected:
  23. virtual const DWORD* GetHelpIDs() = 0;
  24. // Generated message map functions
  25. //{{AFX_MSG(CCSDialog)
  26. virtual BOOL OnInitDialog();
  27. //}}AFX_MSG
  28. afx_msg LONG OnHelp(UINT wParam, LONG lParam);
  29. afx_msg LONG OnHelpContextMenu(UINT wParam, LONG lParam);
  30. DECLARE_MESSAGE_MAP()
  31. };
  32. class CCSPropertyPage : public CPropertyPage
  33. {
  34. // Construction
  35. public:
  36. CCSPropertyPage(UINT nIDTemplate, UINT nIDCaption = 0);
  37. CCSPropertyPage(LPCTSTR lpszTemplateName, UINT nIDCaption = 0);
  38. // Implementation
  39. protected:
  40. virtual const DWORD* GetHelpIDs() = 0;
  41. // Generated message map functions
  42. //{{AFX_MSG(CCSPropertyPage)
  43. //}}AFX_MSG
  44. afx_msg LONG OnHelp(UINT wParam, LONG lParam);
  45. afx_msg LONG OnHelpContextMenu(UINT wParam, LONG lParam);
  46. DECLARE_MESSAGE_MAP()
  47. };
  48. class CCSPropertySheet : public CPropertySheet
  49. {
  50. // Construction
  51. public:
  52. CCSPropertySheet(UINT nIDCaption, CWnd *pParentWnd = NULL, 
  53. UINT iSelectPage = 0);
  54. CCSPropertySheet(LPCTSTR pszCaption, CWnd *pParentWnd = NULL, 
  55. UINT iSelectPage = 0);
  56. // Implementation
  57. protected:
  58. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  59. // Generated message map functions
  60. //{{AFX_MSG(CCSPropertySheet)
  61. //}}AFX_MSG
  62. afx_msg LONG OnHelp(UINT wParam, LONG lParam);
  63. afx_msg LONG OnHelpContextMenu(UINT wParam, LONG lParam);
  64. DECLARE_MESSAGE_MAP()
  65. };