--- /dev/null
+# This file is used to ignore files which are generated
+# ----------------------------------------------------------------------------
+
+*~
+*.autosave
+*.a
+*.core
+*.moc
+*.o
+*.obj
+*.orig
+*.rej
+*.so
+*.so.*
+*_pch.h.cpp
+*_resource.rc
+*.qm
+.#*
+*.*#
+core
+!core/
+tags
+.DS_Store
+.directory
+*.debug
+Makefile*
+*.prl
+*.app
+moc_*.cpp
+ui_*.h
+qrc_*.cpp
+Thumbs.db
+*.res
+*.rc
+/.qmake.cache
+/.qmake.stash
+
+# qtcreator generated files
+*.pro.user*
+
+# xemacs temporary files
+*.flc
+
+# Vim temporary files
+.*.swp
+
+# Visual Studio generated files
+*.ib_pdb_index
+*.idb
+*.ilk
+*.pdb
+*.sln
+*.suo
+*.vcproj
+*vcproj.*.*.user
+*.ncb
+*.sdf
+*.opensdf
+*.vcxproj
+*vcxproj.*
+
+# MinGW generated files
+*.Debug
+*.Release
+
+# Python byte code
+*.pyc
+
+# Binaries
+# --------
+*.dll
+*.exe
+
--- /dev/null
+TEMPLATE = app
+
+QT += qml quick sql testlib
+CONFIG += c++11 testcase
+
+SOURCES += main.cpp \
+ dbconn.cpp \
+ logging.cpp \
+ Tests/tests.cpp
+
+RESOURCES += qml.qrc
+
+# Additional import path used to resolve QML modules in Qt Creator's code model
+QML_IMPORT_PATH =
+
+# Additional import path used to resolve QML modules just for Qt Quick Designer
+QML_DESIGNER_IMPORT_PATH =
+
+# The following define makes your compiler emit warnings if you use
+# any feature of Qt which as been marked deprecated (the exact warnings
+# depend on your compiler). Please consult the documentation of the
+# deprecated API in order to know how to port your code away from it.
+DEFINES += QT_DEPRECATED_WARNINGS
+
+# You can also make your code fail to compile if you use deprecated APIs.
+# In order to do so, uncomment the following line.
+# You can also select to disable deprecated APIs only up to a certain version of Qt.
+#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
+
+# Default rules for deployment.
+qnx: target.path = /tmp/$${TARGET}/bin
+else: unix:!android: target.path = /opt/$${TARGET}/bin
+!isEmpty(target.path): INSTALLS += target
+
+HEADERS += \
+ dbconn.h \
+ logging.h \
+ Tests/tests.h
+
+DISTFILES += \
+ style.astylerc
--- /dev/null
+import QtQuick 2.7
+
+Rectangle {
+ property alias mouseArea: mouseArea
+ property alias textEdit: textEdit
+
+ width: 360
+ height: 360
+
+ MouseArea {
+ id: mouseArea
+ anchors.fill: parent
+ }
+
+ TextEdit {
+ id: textEdit
+ text: qsTr("Enter some text...")
+ verticalAlignment: Text.AlignVCenter
+ anchors.top: parent.top
+ anchors.horizontalCenter: parent.horizontalCenter
+ anchors.topMargin: 20
+ Rectangle {
+ anchors.fill: parent
+ anchors.margins: -10
+ color: "transparent"
+ border.width: 1
+ }
+ }
+}
--- /dev/null
+#include "tests.h"
+
+Tests::Tests(QObject *parent) : QObject(parent)
+{
+
+}
--- /dev/null
+#ifndef TESTS_H
+#define TESTS_H
+
+#include <QObject>
+
+class Tests : public QObject
+{
+ Q_OBJECT
+public:
+ explicit Tests(QObject *parent = nullptr);
+
+signals:
+
+public slots:
+};
+
+#endif // TESTS_H
\ No newline at end of file
--- /dev/null
+#include "dbconn.h"
+#include "logging.h"
+#include <QtSql/QSqlQuery>
+#include <QStringList>
+
+DbConn::DbConn (QObject* parent) : QObject (parent)
+{
+ db = QSqlDatabase::addDatabase ("QSQLITE");
+ db.setDatabaseName ("cleaners.db");
+ if (!db.open() ) {
+ qCCritical (dbase) << "Openeing database failed";
+ }
+ qCDebug (dbase) << initDB();
+}
+
+QSqlError DbConn::initDB() const
+{
+ QStringList tables = db.tables();
+ QSqlQuery q;
+ if (!tables.contains (this->tabNameCustomers, Qt::CaseSensitivity::CaseInsensitive) ) {
+ if (!q.exec (this->sqlCreateCustomerTable) ) return q.lastError();
+ }
+ if (!tables.contains (this->tabNameServices, Qt::CaseSensitivity::CaseInsensitive) ) {
+ if (!q.exec (this->sqlCreateServicesTable) ) return q.lastError();
+ }
+ if (!tables.contains (this->tabNameOrders, Qt::CaseSensitivity::CaseInsensitive) ) {
+ if (!q.exec (this->sqlCreateOrdersTable) ) return q.lastError();
+ }
+ if (!tables.contains (this->tabNameOrderitems, Qt::CaseSensitivity::CaseInsensitive) ) {
+ if (!q.exec (this->sqlCreateOrderItemsTable) ) return q.lastError();
+ }
+ if (!tables.contains (this->tabNameInvoices, Qt::CaseSensitivity::CaseInsensitive) ) {
+ if (!q.exec (this->sqlCreateInvoiceTable) ) return q.lastError();
+ }
+
+ return QSqlError();
+}
+
+void DbConn::addService (const QVariant& name, const QVariant& cost) const
+{
+
+}
+void DbConn::addCustomer (const QVariant& name, const QVariant& street, const QVariant& number,
+ const QVariant& city, const QVariant& zip) const
+{
+
+}
+void DbConn::addOrder (const QVariant& customerID, QVariant& date, QVariant& items) const
+{
+
+}
+void DbConn::addInvoice (const QVariant& date, QVariant& OrderID) const
+{
+
+}
--- /dev/null
+#ifndef DBCONN_H
+#define DBCONN_H
+
+#include <QObject>
+#include <QVariant>
+#include <QtSql/QSqlDatabase>
+#include <QtSql/QSqlError>
+
+class DbConn : public QObject
+{
+ Q_OBJECT
+ QSqlDatabase db;
+ QSqlError initDB() const;
+ const QLatin1String tabNameCustomers {"customers"};
+ const QLatin1String tabNameOrders {"orders"};
+ const QLatin1String tabNameOrderitems {"orderitems"};
+ const QLatin1String tabNameInvoices{"invoices"};
+ const QLatin1String tabNameServices{"services"};
+ const QLatin1String sqlCreateCustomerTable {
+ "create table customers("
+ "id integer primary key autoincrement,"
+ "name text not null,"
+ "street text,"
+ "number text"
+ "city text,"
+ "zip integer"
+ ")"
+ };
+ const QLatin1String sqlCreateServicesTable {
+ "create table services("
+ "id integer primary key autoincrement,"
+ "name text,"
+ "costs integer"
+ ")"
+ };
+ const QLatin1String sqlCreateOrdersTable {
+ "create table orders("
+ "id integer primary key autoincrement,"
+ "customerid integer not null,"
+ "date text"
+ "foreign key(customerid) references customers(id)"
+ ")"
+ };
+ const QLatin1String sqlCreateOrderItemsTable {
+ "create table orderitems("
+ "id integer primary key autoincrement,"
+ "orderid integer,"
+ "serviceid integer,"
+ "foreign key(orderid) references orders(id),"
+ "foreign key(serviceid) references services(id)"
+ ")"
+ };
+ const QLatin1String sqlCreateInvoiceTable {
+ "create table invoices("
+ "id integer primary key autoincrement,"
+ "orderid integer,"
+ "date text,"
+ "foreign key(orderid) references orders(id)"
+ ")"
+ };
+public:
+ explicit DbConn (QObject* parent = nullptr);
+
+signals:
+
+public slots:
+ void addService (const QVariant& name, const QVariant& cost) const;
+ void addCustomer (const QVariant& name, const QVariant& street, const QVariant& number,
+ const QVariant& city, const QVariant& zip) const;
+ void addOrder (const QVariant& customerID, QVariant& date, QVariant& items) const;
+ void addInvoice (const QVariant& date, QVariant& OrderID) const;
+};
+
+#endif // DBCONN_H
--- /dev/null
+#include "logging.h"
+
+
+Q_LOGGING_CATEGORY (dbase, "database")
--- /dev/null
+#ifndef LOGGING_H
+#define LOGGING_H
+#include <QLoggingCategory>
+#include <QDebug>
+
+const QtMsgType loglevel = QtMsgType::QtWarningMsg;
+Q_DECLARE_LOGGING_CATEGORY (dbase)
+
+
+
+#endif // LOGGING_H
--- /dev/null
+#include <QGuiApplication>
+#include <QQmlApplicationEngine>
+
+int main(int argc, char *argv[])
+{
+ QGuiApplication app(argc, argv);
+
+ QQmlApplicationEngine engine;
+ engine.load(QUrl(QStringLiteral("qrc:/main.qml")));
+ if (engine.rootObjects().isEmpty())
+ return -1;
+
+ return app.exec();
+}
--- /dev/null
+import QtQuick 2.7
+import QtQuick.Window 2.2
+
+Window {
+ visible: true
+ width: 640
+ height: 480
+ title: qsTr("Hello World")
+
+ MainForm {
+ anchors.fill: parent
+ mouseArea.onClicked: {
+ console.log(qsTr('Clicked on background. Text: "' + textEdit.text + '"'))
+ }
+ }
+}
--- /dev/null
+<RCC>
+ <qresource prefix="/">
+ <file>main.qml</file>
+ <file>MainForm.ui.qml</file>
+ </qresource>
+</RCC>
--- /dev/null
+--style=kr #mozilla
+#-s2 -p -d -H -k1 -c -xy -xC120 -xL
+indent=spaces=2
+pad-oper
+pad-paren-out
+pad-header
+align-pointer=type
+convert-tabs
+#close-templates
+max-code-length=120
+#indent-continuation=2
+#pad-comma