diff options
| author | Manuel Traut <manut@linutronix.de> | 2016-01-12 12:00:25 +0100 |
|---|---|---|
| committer | Manuel Traut <manut@linutronix.de> | 2016-01-12 12:00:25 +0100 |
| commit | 498830a97001a793c12aef3d011c5374a05b4a83 (patch) | |
| tree | 2c7e64e9ddb6556e22d21393f10cddc5bd990952 /examples/yocto/meta-mini/recipes-hello/helloqt/files/helloqt-1.0 | |
| parent | c99be12a9a7b6270e9b3db4c5f96cb8e8eb0c7c1 (diff) | |
mv yocto examples into example dir
Signed-off-by: Manuel Traut <manut@linutronix.de>
Diffstat (limited to 'examples/yocto/meta-mini/recipes-hello/helloqt/files/helloqt-1.0')
5 files changed, 96 insertions, 0 deletions
diff --git a/examples/yocto/meta-mini/recipes-hello/helloqt/files/helloqt-1.0/helloqt.pro b/examples/yocto/meta-mini/recipes-hello/helloqt/files/helloqt-1.0/helloqt.pro new file mode 100644 index 0000000..c3cfcc0 --- /dev/null +++ b/examples/yocto/meta-mini/recipes-hello/helloqt/files/helloqt-1.0/helloqt.pro @@ -0,0 +1,25 @@ +#------------------------------------------------- +# +# Project created by QtCreator 2013-06-04T20:56:37 +# +#------------------------------------------------- + +QT += core gui + +greaterThan(QT_MAJOR_VERSION, 4): QT += widgets + +TARGET = helloqt +TEMPLATE = app + + +SOURCES += main.cpp\ + mainwindow.cpp + +HEADERS += mainwindow.h + +FORMS += mainwindow.ui + +target.path = /opt/helloqt +target.files = helloqt + +INSTALLS += target diff --git a/examples/yocto/meta-mini/recipes-hello/helloqt/files/helloqt-1.0/main.cpp b/examples/yocto/meta-mini/recipes-hello/helloqt/files/helloqt-1.0/main.cpp new file mode 100644 index 0000000..9e2d83c --- /dev/null +++ b/examples/yocto/meta-mini/recipes-hello/helloqt/files/helloqt-1.0/main.cpp @@ -0,0 +1,11 @@ +#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/examples/yocto/meta-mini/recipes-hello/helloqt/files/helloqt-1.0/mainwindow.cpp b/examples/yocto/meta-mini/recipes-hello/helloqt/files/helloqt-1.0/mainwindow.cpp new file mode 100644 index 0000000..49d64fc --- /dev/null +++ b/examples/yocto/meta-mini/recipes-hello/helloqt/files/helloqt-1.0/mainwindow.cpp @@ -0,0 +1,14 @@ +#include "mainwindow.h" +#include "ui_mainwindow.h" + +MainWindow::MainWindow(QWidget *parent) : + QMainWindow(parent), + ui(new Ui::MainWindow) +{ + ui->setupUi(this); +} + +MainWindow::~MainWindow() +{ + delete ui; +} diff --git a/examples/yocto/meta-mini/recipes-hello/helloqt/files/helloqt-1.0/mainwindow.h b/examples/yocto/meta-mini/recipes-hello/helloqt/files/helloqt-1.0/mainwindow.h new file mode 100644 index 0000000..112fda1 --- /dev/null +++ b/examples/yocto/meta-mini/recipes-hello/helloqt/files/helloqt-1.0/mainwindow.h @@ -0,0 +1,22 @@ +#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/examples/yocto/meta-mini/recipes-hello/helloqt/files/helloqt-1.0/mainwindow.ui b/examples/yocto/meta-mini/recipes-hello/helloqt/files/helloqt-1.0/mainwindow.ui new file mode 100644 index 0000000..6050363 --- /dev/null +++ b/examples/yocto/meta-mini/recipes-hello/helloqt/files/helloqt-1.0/mainwindow.ui @@ -0,0 +1,24 @@ +<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> + <widget class="QMenuBar" name="menuBar" /> + <widget class="QToolBar" name="mainToolBar" /> + <widget class="QWidget" name="centralWidget" /> + <widget class="QStatusBar" name="statusBar" /> + </widget> + <layoutDefault spacing="6" margin="11" /> + <pixmapfunction></pixmapfunction> + <resources/> + <connections/> +</ui> |
