107 lines
3.4 KiB
C++
107 lines
3.4 KiB
C++
/*
|
|
Copyright (C) 2010 by BetterInbox <contact@betterinbox.com>
|
|
Original author: Gregory Schlomoff <greg@betterinbox.com>
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
in the Software without restriction, including without limitation the rights
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
all copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
THE SOFTWARE.
|
|
*/
|
|
|
|
#ifndef DECLARATIVEMIMEDATA_H
|
|
#define DECLARATIVEMIMEDATA_H
|
|
|
|
#include <QMimeData>
|
|
#include <QColor>
|
|
#include <QUrl>
|
|
#include <QDeclarativeItem>
|
|
|
|
class DeclarativeMimeData : public QMimeData
|
|
{
|
|
Q_OBJECT
|
|
|
|
/**
|
|
* A plain text (MIME type text/plain) representation of the data.
|
|
*/
|
|
Q_PROPERTY(QString text READ text WRITE setText NOTIFY textChanged)
|
|
|
|
/**
|
|
* A string if the data stored in the object is HTML (MIME type text/html); otherwise returns an empty string.
|
|
*/
|
|
Q_PROPERTY(QString html READ html WRITE setHtml NOTIFY htmlChanged)
|
|
|
|
/**
|
|
* Url contained in the mimedata
|
|
*/
|
|
Q_PROPERTY(QUrl url READ url WRITE setUrl NOTIFY urlChanged)
|
|
|
|
/**
|
|
* A list of URLs contained within the MIME data object.
|
|
* URLs correspond to the MIME type text/uri-list.
|
|
*/
|
|
Q_PROPERTY(QVariantList urls READ urls WRITE setUrls NOTIFY urlsChanged)
|
|
|
|
/**
|
|
* A color if the data stored in the object represents a color (MIME type application/x-color); otherwise QColor().
|
|
*/
|
|
Q_PROPERTY(QColor color READ color WRITE setColor NOTIFY colorChanged)
|
|
|
|
/**
|
|
* The graphical item on the scene that started the drag event. It may be null.
|
|
*/
|
|
Q_PROPERTY(QDeclarativeItem* source READ source WRITE setSource NOTIFY sourceChanged)
|
|
//TODO: Image property
|
|
|
|
public:
|
|
DeclarativeMimeData() : QMimeData() {}
|
|
DeclarativeMimeData(const QMimeData* copy);
|
|
|
|
QUrl url() const;
|
|
void setUrl(const QUrl &url);
|
|
|
|
QVariantList urls() const;
|
|
void setUrls(const QVariantList &urls);
|
|
|
|
QColor color() const;
|
|
void setColor(const QColor &color);
|
|
|
|
Q_INVOKABLE void setData(const QString &mimeType, const QString &data);
|
|
|
|
QDeclarativeItem* source() const;
|
|
void setSource(QDeclarativeItem* source);
|
|
|
|
|
|
/*
|
|
QString text() const; //TODO: Reimplement this to issue the onChanged signals
|
|
void setText(const QString &text);
|
|
QString html() const;
|
|
void setHtml(const QString &html);
|
|
*/
|
|
|
|
signals:
|
|
void textChanged(); //FIXME not being used
|
|
void htmlChanged(); //FIXME not being used
|
|
void urlChanged();
|
|
void urlsChanged();
|
|
void colorChanged();
|
|
void sourceChanged();
|
|
|
|
private:
|
|
QDeclarativeItem* m_source;
|
|
};
|
|
|
|
#endif // DECLARATIVEMIMEDATA_H
|