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.

71 lines
2.5 KiB

  1. //==============================================================;
  2. //
  3. // This source code is only intended as a supplement to
  4. // existing Microsoft documentation.
  5. //
  6. //
  7. //
  8. //
  9. // THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
  10. // KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  11. // IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR
  12. // PURPOSE.
  13. //
  14. // Copyright (C) 1999 Microsoft Corporation. All Rights Reserved.
  15. //
  16. //
  17. //
  18. //==============================================================;
  19. #ifndef _BRANCHES_H
  20. #define _BRANCHES_H
  21. #include <mmc.h>
  22. #include <crtdbg.h>
  23. #include "globals.h"
  24. #include "resource.h"
  25. #include "LocalRes.h"
  26. class CDelegationBase {
  27. public:
  28. CDelegationBase();
  29. virtual ~CDelegationBase();
  30. virtual const _TCHAR *GetDisplayName(int nCol = 0) = 0;
  31. virtual const GUID & getNodeType() { _ASSERT(FALSE); return IID_NULL; }
  32. virtual const LPARAM GetCookie() { return reinterpret_cast<LPARAM>(this); }
  33. virtual const int GetBitmapIndex() = 0;
  34. virtual HRESULT GetResultViewType(LPOLESTR *ppViewType, long *pViewOptions) { return S_FALSE; }
  35. public:
  36. // virtual functions go here (for MMCN_*)
  37. virtual HRESULT OnAddImages(IImageList *pImageList, HSCOPEITEM hsi);
  38. virtual HRESULT OnExpand(IConsoleNameSpace *pConsoleNameSpace, IConsole *pConsole, HSCOPEITEM parent) { return S_FALSE; }
  39. virtual HRESULT OnSelect(IConsole *pConsole, BOOL bScope, BOOL bSelect) { return S_FALSE; }
  40. virtual HRESULT OnShow(IConsole *pConsole, BOOL bShow, HSCOPEITEM scopeitem) { return S_FALSE; }
  41. virtual HRESULT OnShowContextHelp(IDisplayHelp *m_ipDisplayHelp, LPOLESTR helpFile);
  42. virtual HRESULT OnMenuButtonCommand(IConsole *pConsole, int nMenuId, long lCommandID) { return S_FALSE; }
  43. virtual HRESULT SetMenuState(IControlbar *pControlbar, IMenuButton *pMenuButton,
  44. BOOL bScope, BOOL bSelect) { return S_FALSE; }
  45. virtual HRESULT OnSetMenuButton(IConsole *pConsole, MENUBUTTONDATA *pmbd) { return S_FALSE; }
  46. public:
  47. static HBITMAP m_pBMapSm;
  48. static HBITMAP m_pBMapLg;
  49. protected:
  50. static void LoadBitmaps() {
  51. m_pBMapSm = LoadBitmap(g_hinst, MAKEINTRESOURCE(IDR_SMICONS));
  52. m_pBMapLg = LoadBitmap(g_hinst, MAKEINTRESOURCE(IDR_LGICONS));
  53. }
  54. BOOL bExpanded;
  55. private:
  56. // {2974380B-4C4B-11d2-89D8-000021473128}
  57. static const GUID thisGuid;
  58. };
  59. #endif // _BRANCHES_H