Merge remote-tracking branch 'gerrit/master' into newdocs
[profile/ivi/qtbase.git] / src / gui / kernel / qdnd_p.h
1 /****************************************************************************
2 **
3 ** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
4 ** Contact: http://www.qt-project.org/legal
5 **
6 ** This file is part of the QtGui module of the Qt Toolkit.
7 **
8 ** $QT_BEGIN_LICENSE:LGPL$
9 ** Commercial License Usage
10 ** Licensees holding valid commercial Qt licenses may use this file in
11 ** accordance with the commercial license agreement provided with the
12 ** Software or, alternatively, in accordance with the terms contained in
13 ** a written agreement between you and Digia.  For licensing terms and
14 ** conditions see http://qt.digia.com/licensing.  For further information
15 ** use the contact form at http://qt.digia.com/contact-us.
16 **
17 ** GNU Lesser General Public License Usage
18 ** Alternatively, this file may be used under the terms of the GNU Lesser
19 ** General Public License version 2.1 as published by the Free Software
20 ** Foundation and appearing in the file LICENSE.LGPL included in the
21 ** packaging of this file.  Please review the following information to
22 ** ensure the GNU Lesser General Public License version 2.1 requirements
23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
24 **
25 ** In addition, as a special exception, Digia gives you certain additional
26 ** rights.  These rights are described in the Digia Qt LGPL Exception
27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
28 **
29 ** GNU General Public License Usage
30 ** Alternatively, this file may be used under the terms of the GNU
31 ** General Public License version 3.0 as published by the Free Software
32 ** Foundation and appearing in the file LICENSE.GPL included in the
33 ** packaging of this file.  Please review the following information to
34 ** ensure the GNU General Public License version 3.0 requirements will be
35 ** met: http://www.gnu.org/copyleft/gpl.html.
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41
42 #ifndef QDND_P_H
43 #define QDND_P_H
44
45 //
46 //  W A R N I N G
47 //  -------------
48 //
49 // This file is not part of the Qt API.  It exists for the convenience
50 // of other Qt classes.  This header file may change from version to
51 // version without notice, or even be removed.
52 //
53 // We mean it.
54 //
55
56 #include "QtCore/qobject.h"
57 #include "QtCore/qmap.h"
58 #include "QtCore/qmimedata.h"
59 #include "QtGui/qdrag.h"
60 #include "QtGui/qpixmap.h"
61 #include "QtGui/qcursor.h"
62 #include "QtGui/qwindow.h"
63 #include "QtCore/qpoint.h"
64 #include "private/qobject_p.h"
65 #include "QtGui/qbackingstore.h"
66 QT_BEGIN_NAMESPACE
67
68 class QEventLoop;
69 class QMouseEvent;
70 class QPlatformDrag;
71
72 #if !(defined(QT_NO_DRAGANDDROP) && defined(QT_NO_CLIPBOARD))
73
74 class Q_GUI_EXPORT QInternalMimeData : public QMimeData
75 {
76     Q_OBJECT
77 public:
78     QInternalMimeData();
79     ~QInternalMimeData();
80
81     bool hasFormat(const QString &mimeType) const;
82     QStringList formats() const;
83     static bool canReadData(const QString &mimeType);
84
85
86     static QStringList formatsHelper(const QMimeData *data);
87     static bool hasFormatHelper(const QString &mimeType, const QMimeData *data);
88     static QByteArray renderDataHelper(const QString &mimeType, const QMimeData *data);
89
90 protected:
91     QVariant retrieveData(const QString &mimeType, QVariant::Type type) const;
92
93     virtual bool hasFormat_sys(const QString &mimeType) const = 0;
94     virtual QStringList formats_sys() const = 0;
95     virtual QVariant retrieveData_sys(const QString &mimeType, QVariant::Type type) const = 0;
96 };
97
98 #endif // !(defined(QT_NO_DRAGANDDROP) && defined(QT_NO_CLIPBOARD))
99
100 #ifndef QT_NO_DRAGANDDROP
101
102 class QDragPrivate : public QObjectPrivate
103 {
104 public:
105     QDragPrivate()
106         : source(0)
107         , target(0)
108         , data(0)
109     { }
110     QObject *source;
111     QObject *target;
112     QMimeData *data;
113     QPixmap pixmap;
114     QPoint hotspot;
115     Qt::DropAction executed_action;
116     Qt::DropActions supported_actions;
117     Qt::DropAction default_action;
118     QMap<Qt::DropAction, QPixmap> customCursors;
119 };
120
121 class Q_GUI_EXPORT QDragManager : public QObject {
122     Q_OBJECT
123
124 public:
125     QDragManager();
126     ~QDragManager();
127     static QDragManager *self();
128
129     Qt::DropAction drag(QDrag *);
130
131     void setCurrentTarget(QObject *target, bool dropped = false);
132     QObject *currentTarget() const;
133
134     QDrag *object() const { return m_object; }
135     QObject *source() const;
136
137 private:
138     QMimeData *m_platformDropData;
139     QObject *m_currentDropTarget;
140     QPlatformDrag *m_platformDrag;
141     QDrag *m_object;
142
143     static QDragManager *m_instance;
144     Q_DISABLE_COPY(QDragManager)
145 };
146
147
148 #endif // !QT_NO_DRAGANDDROP
149
150
151 QT_END_NAMESPACE
152
153 #endif // QDND_P_H