change: change code style to Linux style except indent.

This commit is contained in:
Mike Solar
2025-08-03 03:09:40 +08:00
parent 65ab76edc8
commit 74f73ab3be
789 changed files with 77113 additions and 68888 deletions
+24 -23
View File
@@ -22,45 +22,46 @@
#include <QPushButton>
namespace olive {
TaskView::TaskView(QWidget* parent) :
QScrollArea(parent)
namespace olive
{
// Allow scroll area to resize widget to fit
setWidgetResizable(true);
// Create central widget
central_widget_ = new QWidget(this);
setWidget(central_widget_);
TaskView::TaskView(QWidget *parent)
: QScrollArea(parent)
{
// Allow scroll area to resize widget to fit
setWidgetResizable(true);
// Create layout for central widget
layout_ = new QVBoxLayout(central_widget_);
layout_->setSpacing(0);
layout_->setContentsMargins(0, 0, 0, 0);
// Create central widget
central_widget_ = new QWidget(this);
setWidget(central_widget_);
// Add a "stretch" so that TaskViewItems don't try to expand all the way to the bottom
layout_->addStretch();
// Create layout for central widget
layout_ = new QVBoxLayout(central_widget_);
layout_->setSpacing(0);
layout_->setContentsMargins(0, 0, 0, 0);
// Add a "stretch" so that TaskViewItems don't try to expand all the way to the bottom
layout_->addStretch();
}
void TaskView::AddTask(Task *t)
{
// Create TaskViewItem (UI representation of a Task) and connect it
TaskViewItem* item = new TaskViewItem(t);
connect(item, &TaskViewItem::TaskCancelled, this, &TaskView::TaskCancelled);
items_.insert(t, item);
layout_->insertWidget(layout_->count()-1, item);
// Create TaskViewItem (UI representation of a Task) and connect it
TaskViewItem *item = new TaskViewItem(t);
connect(item, &TaskViewItem::TaskCancelled, this, &TaskView::TaskCancelled);
items_.insert(t, item);
layout_->insertWidget(layout_->count() - 1, item);
}
void TaskView::TaskFailed(Task *t)
{
items_.value(t)->Failed();
items_.value(t)->Failed();
}
void TaskView::RemoveTask(Task *t)
{
items_.value(t)->deleteLater();
items_.remove(t);
items_.value(t)->deleteLater();
items_.remove(t);
}
}