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.

47 lines
1.4 KiB

  1. // SystemScopeItem.h: interface for the CSystemScopeItem class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_SYSTEMSCOPEITEM_H__C3F44E69_BA00_11D2_BD76_0000F87A3912__INCLUDED_)
  5. #define AFX_SYSTEMSCOPEITEM_H__C3F44E69_BA00_11D2_BD76_0000F87A3912__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "HMScopeItem.h"
  10. #pragma warning( disable:4100 )
  11. class CSystemScopeItem : public CHMScopeItem
  12. {
  13. DECLARE_DYNCREATE(CSystemScopeItem)
  14. // Construction/Destruction
  15. public:
  16. CSystemScopeItem();
  17. virtual ~CSystemScopeItem();
  18. // Creation Members
  19. public:
  20. virtual bool Create(CScopePane* pScopePane, CScopePaneItem* pParentItem);
  21. // Results Pane View Members
  22. public:
  23. virtual CResultsPaneView* CreateResultsPaneView();
  24. // MMC Notify Handlers
  25. public:
  26. virtual HRESULT OnAddMenuItems(LPCONTEXTMENUCALLBACK piCallback,long __RPC_FAR *pInsertionAllowed);
  27. virtual HRESULT OnCommand(long lCommandID);
  28. virtual HRESULT OnCreatePropertyPages(LPPROPERTYSHEETCALLBACK lpProvider, INT_PTR handle);
  29. virtual HRESULT OnDelete(BOOL bConfirm=TRUE); // v-marfin 62903
  30. virtual HRESULT OnExpand(BOOL bExpand);
  31. virtual HRESULT OnRename(const CString& sNewName){ return S_OK; }
  32. virtual HRESULT OnSelect(CResultsPane* pPane,BOOL bSelected);
  33. };
  34. #pragma warning( default:4100 )
  35. #endif // !defined(AFX_SYSTEMSCOPEITEM_H__C3F44E69_BA00_11D2_BD76_0000F87A3912__INCLUDED_)