added intermedia code that selects the corrent icons for the Kicker
[buliscores] / src / mainwidget.cpp
1 #include <QVBoxLayout>
2
3 #include "mainwidget.h"
4
5 MainWidget::MainWidget(QWidget *parent) :
6     QWidget(parent)
7 {
8     QVBoxLayout layout;
9
10     this->setAttribute(Qt::WA_TranslucentBackground);
11
12     layout.addWidget(&m_scoretbl);
13
14     this->setLayout(&layout);
15
16
17     this->setAutoFillBackground(true);
18 }