1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
|
/*
* Copyright (c) 2011 Tobias Markmann
* Licensed under the simplified BSD license.
* See Documentation/Licenses/BSD-simplified.txt for more information.
*/
#include "QtFileTransferListWidget.h"
#include <Swift/QtUI/QtFileTransferListItemModel.h>
#include <QVBoxLayout>
#include <QHBoxLayout>
#include <QWidget>
#include <QPushButton>
namespace Swift {
QtFileTransferListWidget::QtFileTransferListWidget() : fileTransferOverview(0) {
QVBoxLayout* layout = new QVBoxLayout(this);
layout->setSpacing(0);
layout->setContentsMargins(0,0,0,0);
treeView = new QTreeView(this);
treeView->setRootIsDecorated(false);
treeView->setItemsExpandable(false);
layout->addWidget(treeView);
itemModel = new QtFileTransferListItemModel();
treeView->setModel(itemModel);
QWidget* bottom = new QWidget(this);
layout->addWidget(bottom);
bottom->setAutoFillBackground(true);
QHBoxLayout* buttonLayout = new QHBoxLayout(bottom);
buttonLayout->setContentsMargins(10,0,20,0);
buttonLayout->setSpacing(0);
QPushButton* clearFinished = new QPushButton(tr("Clear Finished Transfers"), bottom);
clearFinished->setEnabled(false);
//connect(clearButton, SIGNAL(clicked()), textEdit, SLOT(clear()));
buttonLayout->addWidget(clearFinished);
setWindowTitle(tr("File Transfer List"));
emit titleUpdated();
}
QtFileTransferListWidget::~QtFileTransferListWidget() {
delete itemModel;
}
void QtFileTransferListWidget::showEvent(QShowEvent* event) {
emit windowOpening();
emit titleUpdated(); /* This just needs to be somewhere after construction */
QWidget::showEvent(event);
}
void QtFileTransferListWidget::show() {
QWidget::show();
emit windowOpening();
}
void QtFileTransferListWidget::activate() {
emit wantsToActivate();
}
void QtFileTransferListWidget::setFileTransferOverview(FileTransferOverview *overview) {
fileTransferOverview = overview;
itemModel->setFileTransferOverview(overview);
}
void QtFileTransferListWidget::closeEvent(QCloseEvent* event) {
emit windowClosing();
event->accept();
}
}
|