~ubuntu-branches/ubuntu/natty/unity-2d/natty-updates

« back to all changes in this revision

Viewing changes to libunity-2d-private/src/mimedata.h

  • Committer: Bazaar Package Importer
  • Author(s): Oliver Grawert
  • Date: 2011-02-24 13:45:27 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20110224134527-d2lk3qu3sxe9a8z0
Tags: 3.6.0-0ubuntu1
New Upstream version

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2011 Canonical, Ltd.
 
3
 *
 
4
 * Authors:
 
5
 *  Olivier Tilloy <olivier.tilloy@canonical.com>
 
6
 *
 
7
 * This program is free software; you can redistribute it and/or modify
 
8
 * it under the terms of the GNU General Public License as published by
 
9
 * the Free Software Foundation; version 3.
 
10
 *
 
11
 * This program is distributed in the hope that it will be useful,
 
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
 * GNU General Public License for more details.
 
15
 *
 
16
 * You should have received a copy of the GNU General Public License
 
17
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
18
 */
 
19
 
 
20
/* Original ideas for drag’n’drop implementation by Grégory Schlomoff
 
21
   (https://bitbucket.org/gregschlom/qml-drag-drop/). */
 
22
 
 
23
#ifndef DeclarativeMimeData_H
 
24
#define DeclarativeMimeData_H
 
25
 
 
26
#include <QtCore/QMimeData>
 
27
#include <QtCore/QStringList>
 
28
#include <QtCore/QString>
 
29
#include <QtCore/QList>
 
30
#include <QtCore/QUrl>
 
31
 
 
32
class DeclarativeMimeData : public QMimeData
 
33
{
 
34
    Q_OBJECT
 
35
 
 
36
    Q_PROPERTY(QStringList formats READ formats)
 
37
    Q_PROPERTY(QString text READ text)
 
38
    Q_PROPERTY(QString html READ html)
 
39
    Q_PROPERTY(QList<QUrl> urls READ urls)
 
40
 
 
41
public:
 
42
    DeclarativeMimeData(const QMimeData* data);
 
43
};
 
44
 
 
45
Q_DECLARE_METATYPE(DeclarativeMimeData*)
 
46
 
 
47
#endif // DeclarativeMimeData
 
48