summaryrefslogtreecommitdiffstats
path: root/src/fbsplash.cpp
blob: cf42f97f8b183b92237cd6d82dacaa93d1f9e048 (plain) (blame)
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
#include <QProgressBar>
#include "fbsplash.h"

fbsplash::fbsplash() :
   QMainWindow() {

   qDebug() << "fbsplash init";

   createQuitAction();
   setupTheme();

   QProgressBar* pb;
   setCentralWidget(pb);

   setAttribute(Qt::WA_QuitOnClose, true);
   setWindowFlags(Qt::FramelessWindowHint);
   showFullScreen();
}
//-----------------------------------------------------------------------------
void fbsplash::setupTheme() {
   // TODO configurable per cmdline
   // for now, black as base background color
   QPalette pal;
   pal.setColor(QPalette::Window, Qt::black);
   setPalette(pal);
}
//-----------------------------------------------------------------------------
void fbsplash::createQuitAction() {
   _quit = new QAction(tr("&quit"), this);
   _quit->setShortcut(QKeySequence(Qt::CTRL + Qt::Key_X));
   this->addAction(_quit);
   connect(_quit, SIGNAL(triggered()), this, SLOT(close()));
}