Leaked source code of windows server 2003
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.

33 lines
763 B

  1. // Copyright (c) 1997-1999 Microsoft Corporation
  2. #ifndef __NAMESPACEPAGE__
  3. #define __NAMESPACEPAGE__
  4. #include "UIHelpers.h"
  5. #include "CHString1.h"
  6. #include <commctrl.h>
  7. class DataSource;
  8. class CNamespacePage : public CUIHelpers
  9. {
  10. private:
  11. public:
  12. CNamespacePage(DataSource *ds, bool htmlSupport);
  13. virtual ~CNamespacePage(void);
  14. private:
  15. virtual BOOL DlgProc(HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
  16. void InitDlg(HWND hDlg);
  17. void OnApply(HWND hDlg, bool bClose);
  18. void Refresh(HWND hDlg);
  19. void OnProperties(HWND hDlg);
  20. HPROPSHEETPAGE CreateSecurityPage(struct NSNODE *node);
  21. int m_NSflag;
  22. HINSTANCE m_HWNDAlcui;
  23. bool m_connected;
  24. HTREEITEM m_hSelectedItem;
  25. };
  26. #endif __NAMESPACEPAGE__