2022-05-10 10:06:48 +00:00
|
|
|
// Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2011-05-07 20:57:49 +00:00
|
|
|
#include <QtWidgets>
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
#include "droparea.h"
|
|
|
|
#include "dropsitewindow.h"
|
|
|
|
|
|
|
|
//! [constructor part1]
|
|
|
|
DropSiteWindow::DropSiteWindow()
|
|
|
|
{
|
|
|
|
abstractLabel = new QLabel(tr("This example accepts drags from other "
|
|
|
|
"applications and displays the MIME types "
|
|
|
|
"provided by the drag object."));
|
|
|
|
abstractLabel->setWordWrap(true);
|
|
|
|
abstractLabel->adjustSize();
|
|
|
|
//! [constructor part1]
|
|
|
|
|
|
|
|
//! [constructor part2]
|
|
|
|
dropArea = new DropArea;
|
2015-10-07 10:03:05 +00:00
|
|
|
connect(dropArea, &DropArea::changed,
|
|
|
|
this, &DropSiteWindow::updateFormatsTable);
|
2011-04-27 10:05:43 +00:00
|
|
|
//! [constructor part2]
|
|
|
|
|
|
|
|
//! [constructor part3]
|
|
|
|
QStringList labels;
|
|
|
|
labels << tr("Format") << tr("Content");
|
|
|
|
|
|
|
|
formatsTable = new QTableWidget;
|
|
|
|
formatsTable->setColumnCount(2);
|
|
|
|
formatsTable->setEditTriggers(QAbstractItemView::NoEditTriggers);
|
|
|
|
formatsTable->setHorizontalHeaderLabels(labels);
|
|
|
|
formatsTable->horizontalHeader()->setStretchLastSection(true);
|
|
|
|
//! [constructor part3]
|
|
|
|
|
|
|
|
//! [constructor part4]
|
|
|
|
clearButton = new QPushButton(tr("Clear"));
|
2018-01-02 07:51:31 +00:00
|
|
|
copyButton = new QPushButton(tr("Copy"));
|
2011-04-27 10:05:43 +00:00
|
|
|
quitButton = new QPushButton(tr("Quit"));
|
|
|
|
|
|
|
|
buttonBox = new QDialogButtonBox;
|
|
|
|
buttonBox->addButton(clearButton, QDialogButtonBox::ActionRole);
|
2018-01-02 07:51:31 +00:00
|
|
|
buttonBox->addButton(copyButton, QDialogButtonBox::ActionRole);
|
|
|
|
#if !QT_CONFIG(clipboard)
|
|
|
|
copyButton->setVisible(false);
|
|
|
|
#endif
|
|
|
|
|
2011-04-27 10:05:43 +00:00
|
|
|
buttonBox->addButton(quitButton, QDialogButtonBox::RejectRole);
|
|
|
|
|
2017-08-24 09:19:21 +00:00
|
|
|
connect(quitButton, &QAbstractButton::clicked, this, &QWidget::close);
|
|
|
|
connect(clearButton, &QAbstractButton::clicked, dropArea, &DropArea::clear);
|
2018-01-02 07:51:31 +00:00
|
|
|
connect(copyButton, &QAbstractButton::clicked, this, &DropSiteWindow::copy);
|
2011-04-27 10:05:43 +00:00
|
|
|
//! [constructor part4]
|
|
|
|
|
|
|
|
//! [constructor part5]
|
2015-10-07 10:03:05 +00:00
|
|
|
QVBoxLayout *mainLayout = new QVBoxLayout(this);
|
2011-04-27 10:05:43 +00:00
|
|
|
mainLayout->addWidget(abstractLabel);
|
|
|
|
mainLayout->addWidget(dropArea);
|
|
|
|
mainLayout->addWidget(formatsTable);
|
|
|
|
mainLayout->addWidget(buttonBox);
|
|
|
|
|
|
|
|
setWindowTitle(tr("Drop Site"));
|
|
|
|
setMinimumSize(350, 500);
|
|
|
|
}
|
|
|
|
//! [constructor part5]
|
|
|
|
|
|
|
|
//! [updateFormatsTable() part1]
|
|
|
|
void DropSiteWindow::updateFormatsTable(const QMimeData *mimeData)
|
|
|
|
{
|
|
|
|
formatsTable->setRowCount(0);
|
2018-01-02 07:51:31 +00:00
|
|
|
copyButton->setEnabled(false);
|
2011-04-27 10:05:43 +00:00
|
|
|
if (!mimeData)
|
|
|
|
return;
|
|
|
|
//! [updateFormatsTable() part1]
|
|
|
|
|
2013-03-14 23:42:15 +00:00
|
|
|
//! [updateFormatsTable() part2]
|
2018-12-04 16:44:20 +00:00
|
|
|
const QStringList formats = mimeData->formats();
|
|
|
|
for (const QString &format : formats) {
|
2011-04-27 10:05:43 +00:00
|
|
|
QTableWidgetItem *formatItem = new QTableWidgetItem(format);
|
|
|
|
formatItem->setFlags(Qt::ItemIsEnabled);
|
|
|
|
formatItem->setTextAlignment(Qt::AlignTop | Qt::AlignLeft);
|
|
|
|
//! [updateFormatsTable() part2]
|
|
|
|
|
|
|
|
//! [updateFormatsTable() part3]
|
|
|
|
QString text;
|
2015-10-07 10:03:05 +00:00
|
|
|
if (format == QLatin1String("text/plain")) {
|
2011-04-27 10:05:43 +00:00
|
|
|
text = mimeData->text().simplified();
|
2020-11-01 15:51:10 +00:00
|
|
|
} else if (format == QLatin1String("text/markdown")) {
|
|
|
|
text = QString::fromUtf8(mimeData->data(QLatin1String("text/markdown")));
|
2015-10-07 10:03:05 +00:00
|
|
|
} else if (format == QLatin1String("text/html")) {
|
2011-04-27 10:05:43 +00:00
|
|
|
text = mimeData->html().simplified();
|
2015-10-07 10:03:05 +00:00
|
|
|
} else if (format == QLatin1String("text/uri-list")) {
|
2011-04-27 10:05:43 +00:00
|
|
|
QList<QUrl> urlList = mimeData->urls();
|
|
|
|
for (int i = 0; i < urlList.size() && i < 32; ++i)
|
2015-10-07 10:03:05 +00:00
|
|
|
text.append(urlList.at(i).toString() + QLatin1Char(' '));
|
2011-04-27 10:05:43 +00:00
|
|
|
} else {
|
|
|
|
QByteArray data = mimeData->data(format);
|
2015-10-07 10:03:05 +00:00
|
|
|
for (int i = 0; i < data.size() && i < 32; ++i)
|
|
|
|
text.append(QStringLiteral("%1 ").arg(uchar(data[i]), 2, 16, QLatin1Char('0')).toUpper());
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
2013-03-14 23:42:15 +00:00
|
|
|
//! [updateFormatsTable() part3]
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
//! [updateFormatsTable() part4]
|
|
|
|
int row = formatsTable->rowCount();
|
|
|
|
formatsTable->insertRow(row);
|
|
|
|
formatsTable->setItem(row, 0, new QTableWidgetItem(format));
|
|
|
|
formatsTable->setItem(row, 1, new QTableWidgetItem(text));
|
|
|
|
}
|
2013-03-14 23:42:15 +00:00
|
|
|
|
2011-04-27 10:05:43 +00:00
|
|
|
formatsTable->resizeColumnToContents(0);
|
2018-01-02 07:51:31 +00:00
|
|
|
#if QT_CONFIG(clipboard)
|
|
|
|
copyButton->setEnabled(formatsTable->rowCount() > 0);
|
|
|
|
#endif
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
2013-03-14 23:42:15 +00:00
|
|
|
//! [updateFormatsTable() part4]
|
2018-01-02 07:51:31 +00:00
|
|
|
|
|
|
|
void DropSiteWindow::copy()
|
|
|
|
{
|
|
|
|
#if QT_CONFIG(clipboard)
|
|
|
|
QString text;
|
|
|
|
for (int row = 0, rowCount = formatsTable->rowCount(); row < rowCount; ++row)
|
|
|
|
text += formatsTable->item(row, 0)->text() + ": " + formatsTable->item(row, 1)->text() + '\n';
|
|
|
|
QGuiApplication::clipboard()->setText(text);
|
|
|
|
#endif
|
|
|
|
}
|