gecko/widget/qt/nsDragService.h

37 lines
888 B
C
Raw Normal View History

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