gecko-dev/widget/windows/nsDragService.h

66 строки
1.9 KiB
C
Исходник Обычный вид История

/* -*- 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-03-23 18:37:34 +03:00
#ifndef nsDragService_h__
#define nsDragService_h__
#include "nsBaseDragService.h"
#include <windows.h>
#include <shlobj.h>
1999-03-23 18:37:34 +03:00
struct IDropSource;
struct IDataObject;
class nsNativeDragTarget;
class nsDataObjCollection;
class nsString;
1999-03-23 18:37:34 +03:00
/**
* Native Win32 DragService wrapper
*/
class nsDragService : public nsBaseDragService
1999-03-23 18:37:34 +03:00
{
public:
nsDragService();
virtual ~nsDragService();
1999-04-23 18:35:26 +04:00
// nsIDragService
NS_IMETHOD InvokeDragSession(nsIDOMNode *aDOMNode,
nsISupportsArray *anArrayTransferables,
nsIScriptableRegion *aRegion,
PRUint32 aActionType);
// nsIDragSession
NS_IMETHOD GetData(nsITransferable * aTransferable, PRUint32 anItem);
NS_IMETHOD GetNumDropItems(PRUint32 * aNumItems);
NS_IMETHOD IsDataFlavorSupported(const char *aDataFlavor, bool *_retval);
NS_IMETHOD EndDragSession(bool aDoneDrag);
1999-03-23 18:37:34 +03:00
1999-04-23 18:35:26 +04:00
// native impl.
NS_IMETHOD SetIDataObject(IDataObject * aDataObj);
NS_IMETHOD StartInvokingDragSession(IDataObject * aDataObj,
PRUint32 aActionType);
1999-03-23 18:37:34 +03:00
// A drop occurred within the application vs. outside of it.
void SetDroppedLocal();
1999-03-23 18:37:34 +03:00
protected:
nsDataObjCollection* GetDataObjCollection(IDataObject * aDataObj);
// determine if we have a single data object or one of our private
// collections
bool IsCollectionObject(IDataObject* inDataObj);
// Create a bitmap for drag operations
bool CreateDragImage(nsIDOMNode *aDOMNode,
nsIScriptableRegion *aRegion,
SHDRAGIMAGE *psdi);
IDataObject * mDataObject;
bool mSentLocalDropEvent;
1999-03-23 18:37:34 +03:00
};
#endif // nsDragService_h__