Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

73 lines
1.5 KiB

  1. /*++
  2. Copyright (C) 1997-2001 Microsoft Corporation
  3. Module Name:
  4. Abstract:
  5. History:
  6. --*/
  7. #if !defined(AFX_CLASSPG_H__D02204D3_6F1E_11D3_BD3F_0080C8E60955__INCLUDED_)
  8. #define AFX_CLASSPG_H__D02204D3_6F1E_11D3_BD3F_0080C8E60955__INCLUDED_
  9. #if _MSC_VER > 1000
  10. #pragma once
  11. #endif // _MSC_VER > 1000
  12. // ClassPg.h : header file
  13. //
  14. #include "QuerySheet.h"
  15. /////////////////////////////////////////////////////////////////////////////
  16. // CClassPg dialog
  17. class CClassPg : public CPropertyPage
  18. {
  19. DECLARE_DYNCREATE(CClassPg)
  20. // Construction
  21. public:
  22. CClassPg();
  23. ~CClassPg();
  24. // Dialog Data
  25. //{{AFX_DATA(CClassPg)
  26. enum { IDD = IDD_PG_CLASS };
  27. CListBox m_ctlClasses;
  28. //}}AFX_DATA
  29. CQuerySheet *m_pSheet;
  30. CString m_strSuperClass;
  31. // Overrides
  32. // ClassWizard generate virtual function overrides
  33. //{{AFX_VIRTUAL(CClassPg)
  34. public:
  35. virtual BOOL OnWizardFinish();
  36. virtual LRESULT OnWizardNext();
  37. virtual BOOL OnSetActive();
  38. protected:
  39. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  40. //}}AFX_VIRTUAL
  41. // Implementation
  42. protected:
  43. void LoadList();
  44. // Generated message map functions
  45. //{{AFX_MSG(CClassPg)
  46. afx_msg void OnSelchangeClasses();
  47. afx_msg void OnDblclkClasses();
  48. virtual BOOL OnInitDialog();
  49. //}}AFX_MSG
  50. DECLARE_MESSAGE_MAP()
  51. };
  52. //{{AFX_INSERT_LOCATION}}
  53. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  54. #endif // !defined(AFX_CLASSPG_H__D02204D3_6F1E_11D3_BD3F_0080C8E60955__INCLUDED_)