2008-04-19 15:41:02 +00:00
|
|
|
/* -*- Mode: c++; tab-width: 2; indent-tabs-mode: nil; -*- */
|
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/. */
|
2008-04-19 15:41:02 +00:00
|
|
|
|
|
|
|
#ifndef nsDragService_h__
|
|
|
|
#define nsDragService_h__
|
|
|
|
|
|
|
|
#include <qdrag.h>
|
|
|
|
|
2010-03-04 21:51:42 +00:00
|
|
|
#include "nsBaseDragService.h"
|
|
|
|
|
2008-04-19 15:41:02 +00:00
|
|
|
/* Header file */
|
2008-04-19 15:43:32 +00:00
|
|
|
class nsDragService : public nsBaseDragService
|
2008-04-19 15:41:02 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSIDRAGSERVICE
|
|
|
|
|
|
|
|
nsDragService();
|
|
|
|
|
|
|
|
private:
|
|
|
|
~nsDragService();
|
|
|
|
|
|
|
|
protected:
|
2008-04-19 15:43:32 +00:00
|
|
|
/* additional members */
|
2012-08-22 15:56:38 +00:00
|
|
|
NS_IMETHODIMP SetupDragSession(nsISupportsArray *aTransferables, uint32_t aActionType);
|
|
|
|
NS_IMETHODIMP SetDropActionType(uint32_t aActionType);
|
2008-04-19 15:43:32 +00:00
|
|
|
NS_IMETHODIMP ExecuteDrag();
|
|
|
|
|
|
|
|
QDrag *mDrag;
|
|
|
|
Qt::DropActions mDropAction;
|
|
|
|
QWidget *mHiddenWidget;
|
2008-04-19 15:41:02 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // nsDragService_h__
|