Welcome to the first commit of the first version of my very first app.
[pierogi] / pirdocumentationform.cpp
diff --git a/pirdocumentationform.cpp b/pirdocumentationform.cpp
new file mode 100644 (file)
index 0000000..99ebe98
--- /dev/null
@@ -0,0 +1,17 @@
+#include "pirdocumentationform.h"
+#include "ui_pirdocumentationform.h"
+
+PIRDocumentationForm::PIRDocumentationForm(QWidget *parent) :
+  QWidget(parent),
+  ui(new Ui::PIRDocumentationForm)
+{
+  ui->setupUi(this);
+
+  setAttribute(Qt::WA_Maemo5StackedWindow);
+  setWindowFlags(windowFlags() | Qt::Window);
+}
+
+PIRDocumentationForm::~PIRDocumentationForm()
+{
+  delete ui;
+}