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.6 KiB

  1. // AppMapPg.h : header file
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. // CAppMapPage dialog
  5. class CAppMapPage : public CPropertyPage
  6. {
  7. DECLARE_DYNCREATE(CAppMapPage)
  8. // Construction
  9. public:
  10. CAppMapPage();
  11. ~CAppMapPage();
  12. IMSAdminBase* m_pMB;
  13. // the target metabase path
  14. CString m_szMeta;
  15. CString m_szServer;
  16. // are we editing the local machine?
  17. BOOL m_fLocalMachine;
  18. // blow away the parameters
  19. void BlowAwayParameters();
  20. // Dialog Data
  21. //{{AFX_DATA(CAppMapPage)
  22. enum { IDD = IDD_APP_APPMAP };
  23. CButton m_btn_cache_isapi;
  24. BOOL m_bool_cache_isapi;
  25. CButton m_btn_remove;
  26. CButton m_btn_edit;
  27. CListSelRowCtrl m_clist_list;
  28. //}}AFX_DATA
  29. // Overrides
  30. // ClassWizard generate virtual function overrides
  31. //{{AFX_VIRTUAL(CAppMapPage)
  32. public:
  33. virtual BOOL OnSetActive();
  34. virtual BOOL OnApply();
  35. protected:
  36. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  37. //}}AFX_VIRTUAL
  38. // Implementation
  39. protected:
  40. // Generated message map functions
  41. //{{AFX_MSG(CAppMapPage)
  42. afx_msg void OnChkCacheIsapi();
  43. afx_msg void OnAdd();
  44. afx_msg void OnEdit();
  45. afx_msg void OnRemove();
  46. afx_msg void OnItemchangedList(NMHDR* pNMHDR, LRESULT* pResult);
  47. afx_msg void OnDblclkList(NMHDR* pNMHDR, LRESULT* pResult);
  48. //}}AFX_MSG
  49. DECLARE_MESSAGE_MAP()
  50. void DoHelp();
  51. void Init();
  52. void EnableItems();
  53. BOOL m_fInitialized;
  54. // cache the path parts
  55. CString m_szPartial;
  56. CString m_szAll; // RONALDM --> "ALL"
  57. };