gecko-dev/widget/qt/nsDragService.h

37 строки
888 B
C
Исходник Обычный вид История

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