iOS: add support for adding mimetypes other than text on the clipboard
A QVariant can only be converted to a QByteArray if it has user type QMetaType::QByteArray or QMetaType::QString. The way it stood, we always tried to convert the mime data to a QByteArray, and then put the result into a QVariant. This would fail if the mime data contained e.g a QPixmap. This patch will inspect what kind of data the QMimeData contains, and convert it to a QVariant using the expected API. Task-number: QTBUG-57428 Change-Id: I67054424fe8c45873bab8305e7b44de939aae0fb Reviewed-by: Tor Arne Vestbø <tor.arne.vestbo@qt.io>
This commit is contained in:
parent
7fffc04335
commit
6d3c4833c2
@ -227,7 +227,19 @@ void QIOSClipboard::setMimeData(QMimeData *mimeData, QClipboard::Mode mode)
|
||||
if (uti.isEmpty() || !converter->canConvert(mimeType, uti))
|
||||
continue;
|
||||
|
||||
QByteArray byteArray = converter->convertFromMime(mimeType, mimeData->data(mimeType), uti).first();
|
||||
QVariant mimeDataAsVariant;
|
||||
if (mimeData->hasImage()) {
|
||||
mimeDataAsVariant = mimeData->imageData();
|
||||
} else if (mimeData->hasUrls()) {
|
||||
QVariantList urlList;
|
||||
for (QUrl url : mimeData->urls())
|
||||
urlList << url;
|
||||
mimeDataAsVariant = QVariant(urlList);
|
||||
} else {
|
||||
mimeDataAsVariant = QVariant(mimeData->data(mimeType));
|
||||
}
|
||||
|
||||
QByteArray byteArray = converter->convertFromMime(mimeType, mimeDataAsVariant, uti).first();
|
||||
NSData *nsData = [NSData dataWithBytes:byteArray.constData() length:byteArray.size()];
|
||||
[pbItem setValue:nsData forKey:uti.toNSString()];
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user