hivemind 1.0.0
Loading...
Searching...
No Matches
launcher.cpp
Go to the documentation of this file.
1#include "gui/launcher.h"
2
3#include <QLabel>
4
5namespace Gui
6{
7 Launcher::Launcher(QWidget* parent)
8 : QWidget(parent), m_Layout(new QVBoxLayout(this))
9 {
10 setObjectName("Launcher");
11 QLabel* title = new QLabel(this);
12 title->setText("Launcher");
13 title->setAlignment(Qt::AlignHCenter | Qt::AlignVCenter);
14 m_Layout->addWidget(title);
15 }
16
18} // namespace Gui
~Launcher()
Destructs the launcher widget.
Definition: launcher.cpp:17
QVBoxLayout * m_Layout
The layout of the launcher widget.
Definition: launcher.h:23
Launcher(QWidget *parent=nullptr)
Constructs the launcher widget.
Definition: launcher.cpp:7
Definition: action.h:6