b2c1678f064a675a012daaf53a63213e96aa669b
[buliscores] / src / mainwidget.cpp
1 #include <QVBoxLayout>
2 #include <QLabel>
3
4 #include "mainwidget.h"
5
6 MainWidget::MainWidget(QWidget *parent) :
7     QWidget(parent)
8 {
9     QVBoxLayout layout;
10     QLabel      statuslbl;
11
12     this->setAttribute(Qt::WA_TranslucentBackground);
13     statuslbl.setText("Last Update: Never");
14
15     layout.addWidget(&statuslbl);
16     layout.addWidget(&m_scoretbl);
17
18     this->setLayout(&layout);
19
20
21     this->setAutoFillBackground(true);
22 }