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.

44 lines
1.2 KiB

  1. // RootScopeItem.h: interface for the CRootScopeItem class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_ROOTSCOPEITEM_H__1E782D91_AB0E_11D2_BD62_0000F87A3912__INCLUDED_)
  5. #define AFX_ROOTSCOPEITEM_H__1E782D91_AB0E_11D2_BD62_0000F87A3912__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "HMScopeItem.h"
  10. class CRootScopeItem : public CHMScopeItem
  11. {
  12. DECLARE_DYNCREATE(CRootScopeItem)
  13. // Construction/Destruction
  14. public:
  15. CRootScopeItem();
  16. virtual ~CRootScopeItem();
  17. // Creation Members
  18. public:
  19. virtual bool Create(CScopePane* pScopePane, CScopePaneItem* pParentItem);
  20. // Results Pane View Members
  21. public:
  22. virtual CResultsPaneView* CreateResultsPaneView();
  23. // Messaging Members
  24. public:
  25. virtual LRESULT MsgProc(UINT msg, WPARAM wparam, LPARAM lparam);
  26. // MMC Notify Handlers
  27. public:
  28. virtual HRESULT OnAddMenuItems(LPCONTEXTMENUCALLBACK piCallback,long __RPC_FAR *pInsertionAllowed);
  29. virtual HRESULT OnCommand(long lCommandID);
  30. virtual HRESULT OnCreatePropertyPages(LPPROPERTYSHEETCALLBACK lpProvider, INT_PTR handle);
  31. virtual HRESULT OnSelect(CResultsPane* pPane,BOOL bSelected);
  32. };
  33. #endif // !defined(AFX_ROOTSCOPEITEM_H__1E782D91_AB0E_11D2_BD62_0000F87A3912__INCLUDED_)