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.

80 lines
1.7 KiB

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