Implement selection offers from compositor to clients.
[profile/ivi/qtwayland.git] / src / plugins / platforms / wayland / qwaylanddatasource.cpp
1 /****************************************************************************
2 **
3 ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
4 ** All rights reserved.
5 ** Contact: Nokia Corporation (qt-info@nokia.com)
6 **
7 ** This file is part of the plugins of the Qt Toolkit.
8 **
9 ** $QT_BEGIN_LICENSE:LGPL$
10 ** GNU Lesser General Public License Usage
11 ** This file may be used under the terms of the GNU Lesser General Public
12 ** License version 2.1 as published by the Free Software Foundation and
13 ** appearing in the file LICENSE.LGPL included in the packaging of this
14 ** file. Please review the following information to ensure the GNU Lesser
15 ** General Public License version 2.1 requirements will be met:
16 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
17 **
18 ** In addition, as a special exception, Nokia gives you certain additional
19 ** rights. These rights are described in the Nokia Qt LGPL Exception
20 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
21 **
22 ** GNU General Public License Usage
23 ** Alternatively, this file may be used under the terms of the GNU General
24 ** Public License version 3.0 as published by the Free Software Foundation
25 ** and appearing in the file LICENSE.GPL included in the packaging of this
26 ** file. Please review the following information to ensure the GNU General
27 ** Public License version 3.0 requirements will be met:
28 ** http://www.gnu.org/copyleft/gpl.html.
29 **
30 ** Other Usage
31 ** Alternatively, this file may be used in accordance with the terms and
32 ** conditions contained in a signed written agreement between you and Nokia.
33 **
34 **
35 **
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41
42 #include "qwaylanddatasource.h"
43 #include "qwaylanddataoffer.h"
44 #include "qwaylandinputdevice.h"
45 #include "qwaylandmimehelper.h"
46
47 #include <QtCore/QFile>
48
49 #include <QtCore/QDebug>
50
51 void QWaylandDataSource::data_source_target(void *data,
52                struct wl_data_source *wl_data_source,
53                const char *mime_type)
54 {
55     Q_UNUSED(data);
56     Q_UNUSED(wl_data_source);
57     Q_UNUSED(mime_type);
58 }
59
60 void QWaylandDataSource::data_source_send(void *data,
61              struct wl_data_source *wl_data_source,
62              const char *mime_type,
63              int32_t fd)
64 {
65     QWaylandDataSource *self = static_cast<QWaylandDataSource *>(data);
66     QString mimeType = QString::fromLatin1(mime_type);
67     QByteArray content = QWaylandMimeHelper::getByteArray(self->m_mime_data, mimeType);
68     if (!content.isEmpty()) {
69         QFile f;
70         if (f.open(fd, QIODevice::WriteOnly))
71             f.write(content);
72     }
73     close(fd);
74 }
75
76 void QWaylandDataSource::data_source_cancelled(void *data,
77                struct wl_data_source *wl_data_source)
78 {
79     Q_UNUSED(data);
80     Q_UNUSED(wl_data_source);
81 }
82
83 const struct wl_data_source_listener QWaylandDataSource::data_source_listener = {
84     data_source_target,
85     data_source_send,
86     data_source_cancelled
87 };
88
89 QWaylandDataSource::QWaylandDataSource(QWaylandDataDeviceManager *dndSelectionHandler, QMimeData *mimeData)
90     : m_mime_data(mimeData)
91 {
92     m_data_source = wl_data_device_manager_create_data_source(dndSelectionHandler->handle());
93     wl_data_source_add_listener(m_data_source,&data_source_listener,this);
94     QStringList formats = mimeData->formats();
95     for (int i = 0; i < formats.size(); i++) {
96         const char *offer = qPrintable(formats.at(i));
97         wl_data_source_offer(m_data_source,offer);
98     }
99 }
100
101 QWaylandDataSource::~QWaylandDataSource()
102 {
103     wl_data_source_destroy(m_data_source);
104 }
105
106 QMimeData * QWaylandDataSource::mimeData() const
107 {
108     return m_mime_data;
109 }
110
111 struct wl_data_source *QWaylandDataSource::handle() const
112 {
113     return m_data_source;
114 }