2001-09-29 00:14:13 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 15:12:37 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
1999-05-27 01:10:23 +04:00
|
|
|
|
|
|
|
#ifndef _NSDATAOBJCOLLECTION_H_
|
|
|
|
#define _NSDATAOBJCOLLECTION_H_
|
|
|
|
|
2003-03-15 02:35:18 +03:00
|
|
|
#include <oleidl.h>
|
1999-05-27 01:10:23 +04:00
|
|
|
|
|
|
|
#include "nsString.h"
|
2009-02-23 04:05:24 +03:00
|
|
|
#include "nsTArray.h"
|
2009-03-11 05:26:03 +03:00
|
|
|
#include "nsAutoPtr.h"
|
2010-02-20 16:44:02 +03:00
|
|
|
#include "nsDataObj.h"
|
2012-06-14 22:28:06 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
1999-05-27 01:10:23 +04:00
|
|
|
|
|
|
|
class CEnumFormatEtc;
|
|
|
|
|
1999-06-15 18:26:23 +04:00
|
|
|
#define MULTI_MIME "Mozilla/IDataObjectCollectionFormat"
|
|
|
|
|
2010-02-27 02:54:18 +03:00
|
|
|
EXTERN_C const IID IID_IDataObjCollection;
|
2002-06-14 15:28:13 +04:00
|
|
|
|
|
|
|
// An interface to make sure we have the right kind of object for D&D
|
|
|
|
// this way we can filter out collection objects that aren't ours
|
|
|
|
class nsIDataObjCollection : public IUnknown {
|
|
|
|
public:
|
|
|
|
|
|
|
|
};
|
|
|
|
|
1999-05-27 01:10:23 +04:00
|
|
|
/*
|
|
|
|
* This ole registered class is used to facilitate drag-drop of objects which
|
|
|
|
* can be adapted by an object derived from CfDragDrop. The CfDragDrop is
|
|
|
|
* associated with instances via SetDragDrop().
|
|
|
|
*/
|
2000-02-02 01:26:21 +03:00
|
|
|
|
2012-06-14 22:28:06 +04:00
|
|
|
class nsDataObjCollection MOZ_FINAL : public nsIDataObjCollection, public nsDataObj
|
1999-05-27 01:10:23 +04:00
|
|
|
{
|
2010-02-20 16:44:02 +03:00
|
|
|
public:
|
|
|
|
nsDataObjCollection();
|
|
|
|
~nsDataObjCollection();
|
1999-05-27 01:10:23 +04:00
|
|
|
|
2010-02-20 16:44:02 +03:00
|
|
|
public: // IUnknown methods - see iunknown.h for documentation
|
|
|
|
STDMETHODIMP_(ULONG) AddRef ();
|
|
|
|
STDMETHODIMP QueryInterface(REFIID, void**);
|
|
|
|
STDMETHODIMP_(ULONG) Release ();
|
1999-05-27 01:10:23 +04:00
|
|
|
|
2010-02-20 16:44:02 +03:00
|
|
|
public: // DataGet and DataSet helper methods
|
|
|
|
virtual HRESULT GetFile(LPFORMATETC pFE, LPSTGMEDIUM pSTM);
|
|
|
|
virtual HRESULT GetText(LPFORMATETC pFE, LPSTGMEDIUM pSTM);
|
|
|
|
virtual HRESULT GetFileDescriptors(LPFORMATETC pFE, LPSTGMEDIUM pSTM);
|
|
|
|
virtual HRESULT GetFileContents(LPFORMATETC pFE, LPSTGMEDIUM pSTM);
|
|
|
|
virtual HRESULT GetFirstSupporting(LPFORMATETC pFE, LPSTGMEDIUM pSTM);
|
1999-05-27 01:10:23 +04:00
|
|
|
|
2015-02-23 14:15:53 +03:00
|
|
|
using nsDataObj::GetFile;
|
|
|
|
using nsDataObj::GetFileContents;
|
|
|
|
using nsDataObj::GetText;
|
|
|
|
|
1999-05-27 01:10:23 +04:00
|
|
|
// support for clipboard
|
2010-02-20 16:44:02 +03:00
|
|
|
void AddDataFlavor(const char * aDataFlavor, LPFORMATETC aFE);
|
2000-02-02 01:26:21 +03:00
|
|
|
|
|
|
|
// from nsPIDataObjCollection
|
1999-05-27 01:10:23 +04:00
|
|
|
void AddDataObject(IDataObject * aDataObj);
|
2012-08-22 19:56:38 +04:00
|
|
|
int32_t GetNumDataObjects() { return mDataObjects.Length(); }
|
|
|
|
nsDataObj* GetDataObjectAt(uint32_t aItem)
|
2010-02-20 16:44:02 +03:00
|
|
|
{ return mDataObjects.SafeElementAt(aItem, nsRefPtr<nsDataObj>()); }
|
|
|
|
|
|
|
|
// Return the registered OLE class ID of this object's CfDataObj.
|
|
|
|
CLSID GetClassID() const;
|
|
|
|
|
|
|
|
public:
|
|
|
|
// Store data in pSTM according to the format specified by pFE, if the
|
|
|
|
// format is supported (supported formats are specified in CfDragDrop::
|
|
|
|
// GetFormats) and return NOERROR; otherwise return DATA_E_FORMATETC. It
|
|
|
|
// is the callers responsibility to free pSTM if NOERROR is returned.
|
|
|
|
STDMETHODIMP GetData (LPFORMATETC pFE, LPSTGMEDIUM pSTM);
|
|
|
|
|
|
|
|
// Similar to GetData except that the caller allocates the structure
|
|
|
|
// referenced by pSTM.
|
|
|
|
STDMETHODIMP GetDataHere (LPFORMATETC pFE, LPSTGMEDIUM pSTM);
|
|
|
|
|
|
|
|
// Returns S_TRUE if this object supports the format specified by pSTM,
|
|
|
|
// S_FALSE otherwise.
|
|
|
|
STDMETHODIMP QueryGetData (LPFORMATETC pFE);
|
|
|
|
|
|
|
|
// Set this objects data according to the format specified by pFE and
|
|
|
|
// the storage medium specified by pSTM and return NOERROR, if the format
|
|
|
|
// is supported. If release is TRUE this object must release the storage
|
|
|
|
// associated with pSTM.
|
|
|
|
STDMETHODIMP SetData (LPFORMATETC pFE, LPSTGMEDIUM pSTM, BOOL release);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
ULONG m_cRef; // the reference count
|
1999-05-27 01:10:23 +04:00
|
|
|
|
2010-02-20 16:44:02 +03:00
|
|
|
nsTArray<nsRefPtr<nsDataObj> > mDataObjects;
|
1999-05-27 01:10:23 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif //
|