2006-10-25 22:45:22 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 11:12:37 +00: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/. */
|
2006-10-25 22:45:22 +00:00
|
|
|
|
2007-01-18 06:34:07 +00:00
|
|
|
#ifndef nsDragService_h_
|
|
|
|
#define nsDragService_h_
|
2006-10-25 22:45:22 +00:00
|
|
|
|
|
|
|
#include "nsBaseDragService.h"
|
|
|
|
|
2007-03-20 12:14:52 +00:00
|
|
|
#include <Cocoa/Cocoa.h>
|
|
|
|
|
2007-05-29 05:06:12 +00:00
|
|
|
extern NSString* const kWildcardPboardType;
|
2007-09-24 22:41:10 +00:00
|
|
|
extern NSString* const kCorePboardType_url;
|
2007-09-28 01:50:09 +00:00
|
|
|
extern NSString* const kCorePboardType_urld;
|
2007-09-24 22:41:10 +00:00
|
|
|
extern NSString* const kCorePboardType_urln;
|
2007-05-29 05:06:12 +00:00
|
|
|
|
2006-10-25 22:45:22 +00:00
|
|
|
class nsDragService : public nsBaseDragService
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
nsDragService();
|
|
|
|
virtual ~nsDragService();
|
|
|
|
|
|
|
|
// nsIDragService
|
|
|
|
NS_IMETHOD InvokeDragSession(nsIDOMNode *aDOMNode, nsISupportsArray * anArrayTransferables,
|
2012-08-22 15:56:38 +00:00
|
|
|
nsIScriptableRegion * aRegion, uint32_t aActionType);
|
2011-09-29 06:19:26 +00:00
|
|
|
NS_IMETHOD EndDragSession(bool aDoneDrag);
|
2006-10-25 22:45:22 +00:00
|
|
|
|
|
|
|
// nsIDragSession
|
2012-08-22 15:56:38 +00:00
|
|
|
NS_IMETHOD GetData(nsITransferable * aTransferable, uint32_t aItemIndex);
|
2011-09-29 06:19:26 +00:00
|
|
|
NS_IMETHOD IsDataFlavorSupported(const char *aDataFlavor, bool *_retval);
|
2012-08-22 15:56:38 +00:00
|
|
|
NS_IMETHOD GetNumDropItems(uint32_t * aNumItems);
|
2006-10-25 22:45:22 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
2007-03-20 12:14:52 +00:00
|
|
|
NSImage* ConstructDragImage(nsIDOMNode* aDOMNode,
|
2009-01-15 03:27:09 +00:00
|
|
|
nsIntRect* aDragRect,
|
2007-03-20 12:14:52 +00:00
|
|
|
nsIScriptableRegion* aRegion);
|
2007-06-28 19:20:12 +00:00
|
|
|
|
|
|
|
nsCOMPtr<nsISupportsArray> mDataItems; // only valid for a drag started within gecko
|
2007-09-24 00:01:04 +00:00
|
|
|
NSView* mNativeDragView;
|
|
|
|
NSEvent* mNativeDragEvent;
|
2006-10-25 22:45:22 +00:00
|
|
|
};
|
|
|
|
|
2007-01-18 06:34:07 +00:00
|
|
|
#endif // nsDragService_h_
|