aboutsummaryrefslogtreecommitdiffstats
path: root/SampleNavigationApp
diff options
context:
space:
mode:
Diffstat (limited to 'SampleNavigationApp')
-rw-r--r--SampleNavigationApp/SampleNavigationApp.pro10
-rw-r--r--SampleNavigationApp/main.cpp11
-rw-r--r--SampleNavigationApp/mainwindow.cpp17
-rw-r--r--SampleNavigationApp/mainwindow.h22
-rw-r--r--SampleNavigationApp/mainwindow.ui64
5 files changed, 0 insertions, 124 deletions
diff --git a/SampleNavigationApp/SampleNavigationApp.pro b/SampleNavigationApp/SampleNavigationApp.pro
deleted file mode 100644
index 2439e43..0000000
--- a/SampleNavigationApp/SampleNavigationApp.pro
+++ /dev/null
@@ -1,10 +0,0 @@
-TEMPLATE = app
-TARGET = SampleNavigationApp
-QT = widgets
-
-SOURCES += main.cpp\
- mainwindow.cpp
-
-HEADERS += mainwindow.h
-
-FORMS += mainwindow.ui
diff --git a/SampleNavigationApp/main.cpp b/SampleNavigationApp/main.cpp
deleted file mode 100644
index b48f94e..0000000
--- a/SampleNavigationApp/main.cpp
+++ /dev/null
@@ -1,11 +0,0 @@
-#include "mainwindow.h"
-#include <QApplication>
-
-int main(int argc, char *argv[])
-{
- QApplication a(argc, argv);
- MainWindow w;
- w.show();
-
- return a.exec();
-}
diff --git a/SampleNavigationApp/mainwindow.cpp b/SampleNavigationApp/mainwindow.cpp
deleted file mode 100644
index e79aeb8..0000000
--- a/SampleNavigationApp/mainwindow.cpp
+++ /dev/null
@@ -1,17 +0,0 @@
-#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;
-}
diff --git a/SampleNavigationApp/mainwindow.h b/SampleNavigationApp/mainwindow.h
deleted file mode 100644
index a3948a9..0000000
--- a/SampleNavigationApp/mainwindow.h
+++ /dev/null
@@ -1,22 +0,0 @@
-#ifndef MAINWINDOW_H
-#define MAINWINDOW_H
-
-#include <QMainWindow>
-
-namespace Ui {
-class MainWindow;
-}
-
-class MainWindow : public QMainWindow
-{
- Q_OBJECT
-
-public:
- explicit MainWindow(QWidget *parent = 0);
- ~MainWindow();
-
-private:
- Ui::MainWindow *ui;
-};
-
-#endif // MAINWINDOW_H
diff --git a/SampleNavigationApp/mainwindow.ui b/SampleNavigationApp/mainwindow.ui
deleted file mode 100644
index 8cfcd1e..0000000
--- a/SampleNavigationApp/mainwindow.ui
+++ /dev/null
@@ -1,64 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<ui version="4.0">
- <class>MainWindow</class>
- <widget class="QMainWindow" name="MainWindow">
- <property name="geometry">
- <rect>
- <x>0</x>
- <y>0</y>
- <width>400</width>
- <height>300</height>
- </rect>
- </property>
- <property name="windowTitle">
- <string>MainWindow</string>
- </property>
- <property name="styleSheet">
- <string notr="true">background-color: rgb(85, 255, 255);</string>
- </property>
- <widget class="QWidget" name="centralWidget">
- <widget class="QLabel" name="label">
- <property name="geometry">
- <rect>
- <x>20</x>
- <y>10</y>
- <width>171</width>
- <height>17</height>
- </rect>
- </property>
- <property name="text">
- <string>Sample Navigation App</string>
- </property>
- </widget>
- <widget class="QPushButton" name="pushButton">
- <property name="geometry">
- <rect>
- <x>140</x>
- <y>90</y>
- <width>100</width>
- <height>100</height>
- </rect>
- </property>
- <property name="text">
- <string>100x100px</string>
- </property>
- </widget>
- <widget class="QLabel" name="label_2">
- <property name="geometry">
- <rect>
- <x>110</x>
- <y>260</y>
- <width>161</width>
- <height>17</height>
- </rect>
- </property>
- <property name="text">
- <string>400x300px default size</string>
- </property>
- </widget>
- </widget>
- </widget>
- <layoutdefault spacing="6" margin="11"/>
- <resources/>
- <connections/>
-</ui>