//==============================================================; // // This source code is only intended as a supplement to // existing Microsoft documentation. // // // // // THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY // KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE // IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR // PURPOSE. // // Copyright (C) 1999 Microsoft Corporation. All Rights Reserved. // // // //==============================================================; #ifndef _BRANCHES_H #define _BRANCHES_H #include #include #include "globals.h" #include "resource.h" #include "LocalRes.h" class CDelegationBase { public: CDelegationBase(); virtual ~CDelegationBase(); virtual const _TCHAR *GetDisplayName(int nCol = 0) = 0; virtual const GUID & getNodeType() { _ASSERT(FALSE); return IID_NULL; } virtual const LPARAM GetCookie() { return reinterpret_cast(this); } virtual const int GetBitmapIndex() = 0; virtual HRESULT GetResultViewType(LPOLESTR *ppViewType, long *pViewOptions) { return S_FALSE; } public: // virtual functions go here (for MMCN_*) virtual HRESULT OnExpand(IConsoleNameSpace *pConsoleNameSpace, IConsole *pConsole, HSCOPEITEM parent) { return S_FALSE; } virtual HRESULT OnShow(IConsole *pConsole, BOOL bShow, HSCOPEITEM scopeitem) { return S_FALSE; } virtual HRESULT OnAddImages(IImageList *pImageList, HSCOPEITEM hsi); virtual HRESULT OnRename(LPOLESTR pszNewName) { return S_FALSE; } virtual HRESULT OnSelect(IConsole *pConsole, BOOL bScope, BOOL bSelect) { return S_FALSE; } virtual HRESULT OnListpad(IConsole *pConsole, BOOL bAttaching) { return S_FALSE; } // taskpad support virtual HRESULT TaskNotify(IConsole *pConsole, VARIANT *v1, VARIANT *v2) { return S_FALSE; } virtual MMC_TASK *GetTaskList(LPOLESTR szTaskGroup, LONG *nCount) { return NULL; } virtual HRESULT GetTaskpadTitle(LPOLESTR *pszTitle) { return S_FALSE; } virtual HRESULT GetTaskpadDescription(LPOLESTR *pszDescription) { return S_FALSE; } virtual HRESULT GetTaskpadBackground(MMC_TASK_DISPLAY_OBJECT *pTDO) { return S_FALSE; } virtual HRESULT GetListpadInfo(MMC_LISTPAD_INFO *lpListPadInfo) { return S_FALSE; } public: static HBITMAP m_pBMapSm; static HBITMAP m_pBMapLg; protected: static void LoadBitmaps() { m_pBMapSm = LoadBitmap(g_hinst, MAKEINTRESOURCE(IDR_SMICONS)); m_pBMapLg = LoadBitmap(g_hinst, MAKEINTRESOURCE(IDR_LGICONS)); } BOOL bExpanded; private: // {2974380B-4C4B-11d2-89D8-000021473128} static const GUID thisGuid; }; #endif // _BRANCHES_H