зеркало из https://github.com/mozilla/gecko-dev.git
60 строки
2.5 KiB
C++
60 строки
2.5 KiB
C++
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
*
|
|
* The contents of this file are subject to the Netscape Public
|
|
* License Version 1.1 (the "License"); you may not use this file
|
|
* except in compliance with the License. You may obtain a copy of
|
|
* the License at http://www.mozilla.org/NPL/
|
|
*
|
|
* Software distributed under the License is distributed on an "AS
|
|
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
* implied. See the License for the specific language governing
|
|
* rights and limitations under the License.
|
|
*
|
|
* The Original Code is mozilla.org code.
|
|
*
|
|
* The Initial Developer of the Original Code is Netscape
|
|
* Communications Corporation. Portions created by Netscape are
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All
|
|
* Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
*/
|
|
|
|
#ifndef ITEMCONTAINER_H
|
|
#define ITEMCONTAINER_H
|
|
|
|
// Class for managing a list of named objects.
|
|
|
|
class CItemContainer : public CComObjectRootEx<CComSingleThreadModel>,
|
|
public IOleItemContainer
|
|
{
|
|
// List of all named objects managed by the container
|
|
CNamedObjectList m_cObjectList;
|
|
public:
|
|
|
|
CItemContainer();
|
|
virtual ~CItemContainer();
|
|
|
|
BEGIN_COM_MAP(CItemContainer)
|
|
COM_INTERFACE_ENTRY_IID(IID_IParseDisplayName, IOleItemContainer)
|
|
COM_INTERFACE_ENTRY_IID(IID_IOleContainer, IOleItemContainer)
|
|
COM_INTERFACE_ENTRY_IID(IID_IOleItemContainer, IOleItemContainer)
|
|
END_COM_MAP()
|
|
|
|
// IParseDisplayName implementation
|
|
virtual HRESULT STDMETHODCALLTYPE ParseDisplayName(/* [unique][in] */ IBindCtx __RPC_FAR *pbc, /* [in] */ LPOLESTR pszDisplayName, /* [out] */ ULONG __RPC_FAR *pchEaten, /* [out] */ IMoniker __RPC_FAR *__RPC_FAR *ppmkOut);
|
|
|
|
// IOleContainer implementation
|
|
virtual HRESULT STDMETHODCALLTYPE EnumObjects(/* [in] */ DWORD grfFlags, /* [out] */ IEnumUnknown __RPC_FAR *__RPC_FAR *ppenum);
|
|
virtual HRESULT STDMETHODCALLTYPE LockContainer(/* [in] */ BOOL fLock);
|
|
|
|
// IOleItemContainer implementation
|
|
virtual /* [local] */ HRESULT STDMETHODCALLTYPE GetObject(/* [in] */ LPOLESTR pszItem, /* [in] */ DWORD dwSpeedNeeded, /* [unique][in] */ IBindCtx __RPC_FAR *pbc, /* [in] */ REFIID riid, /* [iid_is][out] */ void __RPC_FAR *__RPC_FAR *ppvObject);
|
|
virtual /* [local] */ HRESULT STDMETHODCALLTYPE GetObjectStorage(/* [in] */ LPOLESTR pszItem, /* [unique][in] */ IBindCtx __RPC_FAR *pbc, /* [in] */ REFIID riid, /* [iid_is][out] */ void __RPC_FAR *__RPC_FAR *ppvStorage);
|
|
virtual HRESULT STDMETHODCALLTYPE IsRunning(/* [in] */ LPOLESTR pszItem);
|
|
};
|
|
|
|
typedef CComObject<CItemContainer> CItemContainerInstance;
|
|
|
|
|
|
#endif |