MimeData QML Type

This is a wrapper class around QMimeData with a few extensions to provide better support for in-qml drag & drops. More...

Import Statement: import org.kde.draganddrop

Properties

Methods

Detailed Description

Property Documentation

color : color

A color if the data stored in the object represents a color (MIME type application/x-color); otherwise QColor().


formats : list<string>


hasUrls : bool


html : string

A string if the data stored in the object is HTML (MIME type text/html); otherwise returns an empty string.


source : Item

The graphical item on the scene that started the drag event. It may be null.

Setting source to any existing qml item will enable the receiver of the drag and drop operation to know in which item the operation originated.

In the case of inter-application drag and drop operations, the source will not be available, and will be 0. Be sure to test it in your QML code, before using it, or it will generate errors in the console.


text : string

A plain text (MIME type text/plain) representation of the data.


url : url

The first URL from the urls property of QMimeData.


urls : QJsonArray

A list of URLs contained within the MIME data object. URLs correspond to the MIME type text/uri-list.


Method Documentation

getDataAsByteArray(string format)


hasColor()


setData(string mimeType, variant data)