mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-03 07:35:48 +08:00
69 lines
2.0 KiB
C++
69 lines
2.0 KiB
C++
/* Copyright (C) 2017
|
|
* swift project Community / Contributors
|
|
*
|
|
* This file is part of swift Project. It is subject to the license terms in the LICENSE file found in the top-level
|
|
* directory of this distribution and at http://www.swift-project.org/license.html. No part of swift project,
|
|
* including this file, may be copied, modified, propagated, or distributed except according to the terms
|
|
* contained in the LICENSE file.
|
|
*/
|
|
|
|
#include "downloaddialog.h"
|
|
#include "ui_downloaddialog.h"
|
|
#include <QTimer>
|
|
|
|
using namespace BlackMisc::Network;
|
|
|
|
namespace BlackGui
|
|
{
|
|
namespace Components
|
|
{
|
|
CDownloadDialog::CDownloadDialog(QWidget *parent) :
|
|
QDialog(parent),
|
|
ui(new Ui::CDownloadDialog)
|
|
{
|
|
ui->setupUi(this);
|
|
this->setWindowFlags(this->windowFlags() & ~Qt::WindowContextHelpButtonHint);
|
|
}
|
|
|
|
CDownloadDialog::~CDownloadDialog()
|
|
{ }
|
|
|
|
void CDownloadDialog::setDownloadFile(const CRemoteFile &remoteFile)
|
|
{
|
|
ui->comp_Download->setDownloadFile(remoteFile);
|
|
}
|
|
|
|
void CDownloadDialog::setDownloadFiles(const CRemoteFileList &remoteFiles)
|
|
{
|
|
ui->comp_Download->setDownloadFiles(remoteFiles);
|
|
}
|
|
|
|
void CDownloadDialog::triggerDownloadingOfFiles(int delayMs)
|
|
{
|
|
ui->comp_Download->triggerDownloadingOfFiles(delayMs);
|
|
}
|
|
|
|
void CDownloadDialog::setMode(CDownloadComponent::Mode mode)
|
|
{
|
|
ui->comp_Download->setMode(mode);
|
|
}
|
|
|
|
void CDownloadDialog::showAndStartDownloading()
|
|
{
|
|
QTimer::singleShot(0, this, [ = ] { ui->comp_Download->triggerDownloadingOfFiles(2500); });
|
|
this->show();
|
|
}
|
|
|
|
void CDownloadDialog::accept()
|
|
{
|
|
ui->comp_Download->triggerDownloadingOfFiles();
|
|
}
|
|
|
|
void CDownloadDialog::reject()
|
|
{
|
|
ui->comp_Download->cancelOngoingDownloads();
|
|
this->done(CDownloadDialog::Rejected);
|
|
}
|
|
} // ns
|
|
} // ns
|