aboutsummaryrefslogtreecommitdiffstats
path: root/SampleNavigationApp/mainwindow.cpp
blob: e79aeb84332c898643035d3f660cc736cce5f711 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "mainwindow.h"
#include "ui_mainwindow.h"

MainWindow::MainWindow(QWidget *parent) :
    QMainWindow(parent),
    ui(new Ui::MainWindow)
{
    // no window decoration
    setWindowFlags(Qt::FramelessWindowHint);

    ui->setupUi(this);
}

MainWindow::~MainWindow()
{
    delete ui;
}