summaryrefslogtreecommitdiffstats
path: root/src/fbsplash.cpp
blob: 7df12abbb52a4295c436d0f8fa76aa37a95db4d4 (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
#include "fbsplash.h"

fbsplash::fbsplash() :
   QMainWindow() {

   qDebug() << "fbsplash init";

   createQuitAction();
   setupTheme();

   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()));
}