aboutsummaryrefslogtreecommitdiffstats
path: root/src/ui/WaitingDialog.cpp
blob: 8281385a2407082899af35d4748c1f3411329821 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "ui/WaitingDialog.h"

WaitingDialog::WaitingDialog(QWidget *parent) : QDialog(parent) {
    auto *pb = new QProgressBar();
    pb->setRange(0, 0);

    auto *layout = new QVBoxLayout();
    layout->addWidget(pb);
    this->setLayout(layout);

    this->setModal(true);
    this->setWindowTitle(tr("Processing"));
    this->setFixedSize(240, 42);
    this->show();
}