2011-03-03 18:29:20 +01:00
|
|
|
/* ============================================================
|
2017-01-26 19:13:47 +01:00
|
|
|
* QupZilla - Qt web browser
|
|
|
|
* Copyright (C) 2010-2017 David Rosca <nowrep@gmail.com>
|
2011-03-03 18:29:20 +01:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
* ============================================================ */
|
2011-03-02 16:57:41 +01:00
|
|
|
#include "downloadoptionsdialog.h"
|
|
|
|
#include "ui_downloadoptionsdialog.h"
|
2017-01-26 19:13:47 +01:00
|
|
|
#include "iconprovider.h"
|
2011-03-02 16:57:41 +01:00
|
|
|
|
2013-10-17 17:20:01 +02:00
|
|
|
#include <QClipboard>
|
2017-01-26 19:13:47 +01:00
|
|
|
#include <QMimeDatabase>
|
|
|
|
#include <QWebEngineDownloadItem>
|
2012-02-29 18:33:50 +01:00
|
|
|
|
2017-01-26 19:13:47 +01:00
|
|
|
DownloadOptionsDialog::DownloadOptionsDialog(const QString &fileName, QWebEngineDownloadItem *downloadItem, QWidget *parent)
|
2011-03-24 22:31:38 +01:00
|
|
|
: QDialog(parent)
|
2011-05-08 12:54:49 +02:00
|
|
|
, ui(new Ui::DownloadOptionsDialog)
|
2017-01-26 19:13:47 +01:00
|
|
|
, m_downloadItem(downloadItem)
|
2012-02-04 18:45:59 +01:00
|
|
|
, m_signalEmited(false)
|
2011-03-02 16:57:41 +01:00
|
|
|
{
|
|
|
|
ui->setupUi(this);
|
2012-02-11 14:37:19 +01:00
|
|
|
|
2011-11-06 17:01:23 +01:00
|
|
|
ui->fileName->setText("<b>" + fileName + "</b>");
|
2017-01-26 19:13:47 +01:00
|
|
|
ui->fromServer->setText(m_downloadItem->url().host());
|
|
|
|
|
|
|
|
const QIcon fileIcon = IconProvider::instance()->standardIcon(QStyle::SP_FileIcon);
|
|
|
|
|
|
|
|
QMimeDatabase db;
|
|
|
|
const QMimeType mime = db.mimeTypeForName(downloadItem->mimeType());
|
|
|
|
if (mime.isValid() && !mime.isDefault()) {
|
|
|
|
ui->mimeName->setText(mime.comment());
|
|
|
|
ui->iconLabel->setPixmap(QIcon::fromTheme(mime.iconName(), fileIcon).pixmap(22));
|
|
|
|
} else {
|
|
|
|
ui->mimeFrame->hide();
|
|
|
|
ui->iconLabel->setPixmap(fileIcon.pixmap(22));
|
|
|
|
}
|
2011-05-08 12:54:49 +02:00
|
|
|
|
2017-01-26 19:13:47 +01:00
|
|
|
setWindowTitle(tr("Opening %1").arg(fileName));
|
2011-09-24 10:19:11 +02:00
|
|
|
|
2011-12-06 19:18:06 +01:00
|
|
|
ui->buttonBox->setFocus();
|
|
|
|
|
2013-10-17 17:20:01 +02:00
|
|
|
connect(ui->copyDownloadLink, SIGNAL(clicked(QPoint)), this, SLOT(copyDownloadLink()));
|
2011-05-08 12:54:49 +02:00
|
|
|
connect(this, SIGNAL(finished(int)), this, SLOT(emitDialogFinished(int)));
|
2011-03-24 22:31:38 +01:00
|
|
|
}
|
|
|
|
|
2012-08-14 11:52:06 +02:00
|
|
|
void DownloadOptionsDialog::showExternalManagerOption(bool show)
|
|
|
|
{
|
|
|
|
ui->radioExternal->setVisible(show);
|
|
|
|
}
|
|
|
|
|
2012-08-23 16:17:56 +02:00
|
|
|
void DownloadOptionsDialog::showFromLine(bool show)
|
|
|
|
{
|
|
|
|
ui->fromFrame->setVisible(show);
|
|
|
|
}
|
|
|
|
|
2011-12-06 19:18:06 +01:00
|
|
|
void DownloadOptionsDialog::setLastDownloadOption(const DownloadManager::DownloadOption &option)
|
|
|
|
{
|
|
|
|
switch (option) {
|
2012-08-14 11:52:06 +02:00
|
|
|
case DownloadManager::ExternalManager:
|
|
|
|
if (!ui->radioExternal->isHidden()) {
|
|
|
|
ui->radioExternal->setChecked(true);
|
|
|
|
break;
|
|
|
|
}
|
2017-06-06 17:51:06 +02:00
|
|
|
// fallthrough
|
2012-08-14 11:52:06 +02:00
|
|
|
|
2011-12-06 19:18:06 +01:00
|
|
|
case DownloadManager::OpenFile:
|
|
|
|
ui->radioOpen->setChecked(true);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case DownloadManager::SaveFile:
|
|
|
|
ui->radioSave->setChecked(true);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-23 16:17:56 +02:00
|
|
|
int DownloadOptionsDialog::exec()
|
|
|
|
{
|
|
|
|
int status = QDialog::exec();
|
|
|
|
|
|
|
|
if (status != 0) {
|
|
|
|
if (ui->radioOpen->isChecked()) {
|
|
|
|
status = 1;
|
|
|
|
}
|
|
|
|
else if (ui->radioSave->isChecked()) {
|
|
|
|
status = 2;
|
|
|
|
}
|
|
|
|
else if (ui->radioExternal->isChecked()) {
|
|
|
|
status = 3;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
2013-10-17 17:20:01 +02:00
|
|
|
void DownloadOptionsDialog::copyDownloadLink()
|
|
|
|
{
|
2017-01-26 19:13:47 +01:00
|
|
|
QApplication::clipboard()->setText(m_downloadItem->url().toString());
|
2013-10-17 17:20:01 +02:00
|
|
|
ui->copyDownloadLink->setText(tr("Download link copied."));
|
|
|
|
}
|
|
|
|
|
2011-05-08 12:54:49 +02:00
|
|
|
void DownloadOptionsDialog::emitDialogFinished(int status)
|
2011-03-24 22:31:38 +01:00
|
|
|
{
|
2011-05-08 12:54:49 +02:00
|
|
|
if (status != 0) {
|
2011-11-06 17:01:23 +01:00
|
|
|
if (ui->radioOpen->isChecked()) {
|
2011-05-08 12:54:49 +02:00
|
|
|
status = 1;
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
|
|
|
else if (ui->radioSave->isChecked()) {
|
2011-05-08 12:54:49 +02:00
|
|
|
status = 2;
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
2012-08-14 11:52:06 +02:00
|
|
|
else if (ui->radioExternal->isChecked()) {
|
|
|
|
status = 3;
|
|
|
|
}
|
2011-05-08 12:54:49 +02:00
|
|
|
}
|
2012-02-04 18:45:59 +01:00
|
|
|
|
|
|
|
m_signalEmited = true;
|
2011-05-08 12:54:49 +02:00
|
|
|
emit dialogFinished(status);
|
2011-03-02 16:57:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
DownloadOptionsDialog::~DownloadOptionsDialog()
|
|
|
|
{
|
2012-02-04 18:45:59 +01:00
|
|
|
if (!m_signalEmited) {
|
|
|
|
emit dialogFinished(-1);
|
|
|
|
}
|
|
|
|
|
2011-03-02 16:57:41 +01:00
|
|
|
delete ui;
|
|
|
|
}
|