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.

75 lines
2.4 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 CComponent;
  27. class CComponentData;
  28. class CDelegationBase {
  29. public:
  30. CDelegationBase();
  31. virtual ~CDelegationBase();
  32. virtual const _TCHAR *GetDisplayName(int nCol = 0) = 0;
  33. virtual const GUID & getNodeType() { _ASSERT(FALSE); return IID_NULL; }
  34. virtual const LPARAM GetCookie() { return reinterpret_cast<LPARAM>(this); }
  35. virtual const int GetBitmapIndex() = 0;
  36. virtual HRESULT GetResultViewType(LPOLESTR *ppViewType, long *pViewOptions) { return S_FALSE; }
  37. public:
  38. virtual HRESULT AddImages(IImageList *pImageList, HSCOPEITEM hsi);
  39. virtual HRESULT Expand(IConsoleNameSpace *pConsoleNameSpace, IConsole *pConsole, HSCOPEITEM parent) { return S_FALSE; }
  40. virtual HRESULT Select(IConsole *pConsole, BOOL bScope, BOOL bSelect) { return S_FALSE; }
  41. virtual HRESULT Show(IConsole *pConsole, BOOL bShow, HSCOPEITEM scopeitem) { return S_FALSE; }
  42. virtual HRESULT ShowContextHelp(IConsole *pConsole, IDisplayHelp *m_ipDisplayHelp, LPOLESTR helpFile) { return S_FALSE; }
  43. virtual HRESULT InitOCX(IUnknown *pUnknown) { return S_FALSE; }
  44. public:
  45. void SetComponentData(CComponentData *pComponentData) { m_pComponentData = pComponentData; }
  46. HBITMAP m_pBMapSm;
  47. HBITMAP m_pBMapLg;
  48. protected:
  49. void LoadBitmaps() {
  50. m_pBMapSm = LoadBitmap(g_hinst, MAKEINTRESOURCE(IDR_SMICONS));
  51. m_pBMapLg = LoadBitmap(g_hinst, MAKEINTRESOURCE(IDR_LGICONS));
  52. }
  53. BOOL bExpanded;
  54. private:
  55. // {2974380B-4C4B-11d2-89D8-000021473128}
  56. static const GUID thisGuid;
  57. public:
  58. CComponentData *m_pComponentData;
  59. };
  60. #endif // _BRANCHES_H