2014-07-12 00:05:18 +08:00
|
|
|
/*
|
2015-06-06 09:40:08 +08:00
|
|
|
Copyright © 2014-2015 by The qTox Project
|
|
|
|
|
2014-07-12 00:05:18 +08:00
|
|
|
This file is part of qTox, a Qt-based graphical interface for Tox.
|
|
|
|
|
2015-06-06 09:40:08 +08:00
|
|
|
qTox is libre software: you can redistribute it and/or modify
|
2014-07-12 00:05:18 +08:00
|
|
|
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.
|
2015-06-06 09:40:08 +08:00
|
|
|
|
|
|
|
qTox is distributed in the hope that it will be useful,
|
2014-07-12 00:05:18 +08:00
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-06-06 09:40:08 +08:00
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
2014-07-12 00:05:18 +08:00
|
|
|
|
2015-06-06 09:40:08 +08:00
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with qTox. If not, see <http://www.gnu.org/licenses/>.
|
2014-07-12 00:05:18 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "filesform.h"
|
2014-09-11 21:44:34 +08:00
|
|
|
#include "ui_mainwindow.h"
|
2015-02-20 03:14:19 +08:00
|
|
|
#include "src/widget/widget.h"
|
2015-06-06 07:44:47 +08:00
|
|
|
#include "src/widget/translator.h"
|
2014-09-11 21:44:34 +08:00
|
|
|
#include <QFileInfo>
|
|
|
|
#include <QUrl>
|
|
|
|
#include <QDebug>
|
2015-02-12 20:18:04 +08:00
|
|
|
#include <QPainter>
|
2014-07-12 00:05:18 +08:00
|
|
|
|
|
|
|
FilesForm::FilesForm()
|
|
|
|
: QObject()
|
|
|
|
{
|
|
|
|
head = new QWidget();
|
|
|
|
QFont bold;
|
|
|
|
bold.setBold(true);
|
|
|
|
headLabel.setFont(bold);
|
|
|
|
head->setLayout(&headLayout);
|
|
|
|
headLayout.addWidget(&headLabel);
|
2015-06-06 09:40:08 +08:00
|
|
|
|
2014-07-16 09:37:08 +08:00
|
|
|
recvd = new QListWidget;
|
|
|
|
sent = new QListWidget;
|
2015-06-06 09:40:08 +08:00
|
|
|
|
2015-06-06 03:37:01 +08:00
|
|
|
main.addTab(recvd, QString());
|
|
|
|
main.addTab(sent, QString());
|
2015-06-06 09:40:08 +08:00
|
|
|
|
2014-07-16 09:37:08 +08:00
|
|
|
connect(sent, SIGNAL(itemActivated(QListWidgetItem*)), this, SLOT(onFileActivated(QListWidgetItem*)));
|
|
|
|
connect(recvd, SIGNAL(itemActivated(QListWidgetItem*)), this, SLOT(onFileActivated(QListWidgetItem*)));
|
2014-07-12 00:05:18 +08:00
|
|
|
|
2015-06-06 03:37:01 +08:00
|
|
|
retranslateUi();
|
|
|
|
Translator::registerHandler(std::bind(&FilesForm::retranslateUi, this), this);
|
2014-07-12 00:05:18 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
FilesForm::~FilesForm()
|
|
|
|
{
|
2015-06-06 03:37:01 +08:00
|
|
|
Translator::unregister(this);
|
2014-10-28 06:56:21 +08:00
|
|
|
delete recvd;
|
2014-07-16 09:37:08 +08:00
|
|
|
delete sent;
|
2014-10-28 06:56:21 +08:00
|
|
|
head->deleteLater();
|
2014-07-12 00:05:18 +08:00
|
|
|
}
|
|
|
|
|
2014-08-11 16:00:08 +08:00
|
|
|
void FilesForm::show(Ui::MainWindow& ui)
|
2014-07-12 00:05:18 +08:00
|
|
|
{
|
|
|
|
ui.mainContent->layout()->addWidget(&main);
|
|
|
|
ui.mainHead->layout()->addWidget(head);
|
|
|
|
main.show();
|
|
|
|
head->show();
|
|
|
|
}
|
|
|
|
|
|
|
|
void FilesForm::onFileDownloadComplete(const QString& path)
|
|
|
|
{
|
2015-02-12 20:18:04 +08:00
|
|
|
ListWidgetItem* tmp = new ListWidgetItem(QIcon(":/ui/fileTransferWidget/fileDone.svg"), QFileInfo(path).fileName());
|
2014-07-16 09:37:08 +08:00
|
|
|
tmp->path = path;
|
|
|
|
recvd->addItem(tmp);
|
2014-07-12 00:05:18 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void FilesForm::onFileUploadComplete(const QString& path)
|
|
|
|
{
|
2015-02-12 20:18:04 +08:00
|
|
|
ListWidgetItem* tmp = new ListWidgetItem(QIcon(":/ui/fileTransferWidget/fileDone.svg"), QFileInfo(path).fileName());
|
2014-07-16 09:37:08 +08:00
|
|
|
tmp->path = path;
|
|
|
|
sent->addItem(tmp);
|
2014-07-12 00:05:18 +08:00
|
|
|
}
|
|
|
|
|
2014-07-12 06:07:00 +08:00
|
|
|
// sadly, the ToxFile struct in core only has the file name, not the file path...
|
|
|
|
// so currently, these don't work as intended (though for now, downloads might work
|
|
|
|
// whenever they're not saved anywhere custom, thanks to the hack)
|
2015-06-06 09:40:08 +08:00
|
|
|
// I could do some digging around, but for now I'm tired and others already
|
2014-07-12 06:07:00 +08:00
|
|
|
// might know it without me needing to dig, so...
|
2014-07-16 09:37:08 +08:00
|
|
|
void FilesForm::onFileActivated(QListWidgetItem* item)
|
2014-07-12 06:07:00 +08:00
|
|
|
{
|
2014-07-16 09:37:08 +08:00
|
|
|
ListWidgetItem* tmp = dynamic_cast<ListWidgetItem*> (item);
|
2015-02-20 03:14:19 +08:00
|
|
|
|
2015-02-22 20:21:42 +08:00
|
|
|
Widget::confirmExecutableOpen(QFileInfo(tmp->path));
|
2014-07-12 00:05:18 +08:00
|
|
|
}
|
2015-06-06 03:37:01 +08:00
|
|
|
|
|
|
|
void FilesForm::retranslateUi()
|
|
|
|
{
|
|
|
|
headLabel.setText(tr("Transfered Files","\"Headline\" of the window"));
|
|
|
|
main.setTabText(0, tr("Downloads"));
|
|
|
|
main.setTabText(1, tr("Uploads"));
|
|
|
|
}
|