-QT += qml quick sql
+QT += qml quick sql widgets
CONFIG += c++11
import QtQuick 2.7
-import QtQuick.Controls 2.0
+//import QtQuick.Controls 2.0
import QtQuick.Layouts 1.0
import QtQuick.Controls 1.4
+import QtQuick.Dialogs 1.2
-Popup {
+Dialog {
id: addhumanroot
+ visible: true
+ modality: Qt.ApplicationModal
signal addHuman(var name, var firstname, var birthday)
//width: 200
//height: 200
TextField {
id: firstname
- anchors.left: lblname.right
+ anchors.left: lblfirstname.right
anchors.top: name.bottom
placeholderText: qsTr("Karl-Heinz")
}
anchors.top: firstname.bottom
weekNumbersVisible: true
}
-
- Button {
- id:ok
- onClicked: {
- addHuman(name.text, firstname.text, birthday.selectedDate)
- addhumanroot.close()
- }
- text: qsTr("OK")
- anchors.bottom: parent.bottom
- anchors.right: parent.right
- visible: true
- }
-
+ onAccepted: addHuman(name.text, firstname.text, birthday.selectedDate)
}
--- /dev/null
+import QtQuick 2.7
+import QtQuick.Layouts 1.0
+import QtQuick.Controls 1.4
+import QtQuick.Dialogs 1.2
+
+Dialog {
+ id: addserviceroot
+ visible: true
+ modality: Qt.ApplicationModal
+ signal addService(var name, var url, var description)
+ onAccepted: addService(name.text, url.text, description.text)
+ Label {
+ id: lblName
+ anchors.left: parent.left
+ anchors.verticalCenter: name.verticalCenter
+ text: qsTr("Name: ")
+ }
+
+ TextField {
+ id: name
+ anchors.left: lblName.right
+ anchors.top: parent.top
+ placeholderText: qsTr("service.com")
+ }
+
+ Label {
+ id: lblUrl
+ anchors.left: parent.left
+ anchors.verticalCenter: url.verticalCenter
+ text: qsTr("URL: ")
+ }
+
+ TextField {
+ id: url
+ anchors.left: lblUrl.right
+ anchors.top: name.bottom
+ placeholderText: qsTr("http://www.service.com")
+ }
+
+ Label {
+ id: lblDescription
+ anchors.left: parent.left
+ anchors.verticalCenter: description.verticalCenter
+ text: qsTr("Description: ")
+ }
+
+ TextField {
+ id: description
+ anchors.left: lblDescription.right
+ anchors.top: url.bottom
+ placeholderText: qsTr("Description")
+ }
+}
#include "controller.h"
+#include <QDebug>
+#include <QQuickWindow>
-Controller::Controller(QQmlApplicationEngine* e, DataBase* d, QObject *parent) :
+Controller::Controller(DataBase* d, QObject *parent) :
QObject(parent),
- engine{e}, db{d}
+ db{d}
{
+ engine = new QQmlApplicationEngine();
this->engine->load(QUrl(QLatin1String("qrc:/main.qml")));
//connect qml Signals to controller
QList<QObject*> roots = engine->rootObjects();
QObject::connect(qmlRoot,SIGNAL(openAddHuman()),
this, SLOT(openAddHuman()));
+ QObject::connect(qmlRoot, SIGNAL(openAddService()),
+ this, SLOT(openAddService()));
+
}
void Controller::openAddHuman()
{
-// QQmlContext context(engine, engine->rootObjects().first());
- QQmlComponent component(engine, QUrl(QStringLiteral("qrc:/addHuman.qml")));
-// QQmlContext context = component.creationContext();
- QObject* dialog = component.create(/*&context*/);
-// dialog->setParent(engine->rootObjects().first());
-// QObject::connect(dialog, SIGNAL(addHuman(QVariant, QVariant, QVariant)),
-// db, SLOT(addHuman(QVariant, QVariant, QVariant)));
+ QQmlComponent component(engine, QUrl(QStringLiteral("qrc:/addhuman.qml")), QQmlComponent::PreferSynchronous);
+
+ if (component.isReady()) {
+ QObject* dialog = component.create();
+ QQmlEngine::setObjectOwnership(dialog, QQmlEngine::CppOwnership);
+ dialog->setParent(engine->rootObjects().first());
+ QObject::connect(dialog, SIGNAL(addHuman(QVariant, QVariant, QVariant)),
+ db, SLOT(addHuman(QVariant, QVariant, QVariant)));
+
+ } else {
+ qDebug() << "Dialog not loaded";
+ }
+}
+
+void Controller::openAddService()
+{
+ QQmlComponent component(engine, QUrl(QStringLiteral("qrc:/addservice.qml")), QQmlComponent::PreferSynchronous);
+ if (component.isReady()) {
+ QObject* dialog = component.create();
+ QQmlEngine::setObjectOwnership(dialog, QQmlEngine::CppOwnership);
+ dialog->setParent(engine->rootObjects().first());
+ QObject::connect(dialog, SIGNAL(addService(QVariant, QVariant, QVariant)),
+ db, SLOT(addService(QVariant, QVariant, QVariant)));
+ } else {
+ qDebug()<<"Dialog not loaded";
+ }
+}
+Controller::~Controller()
+{
+ delete engine;
}
{
Q_OBJECT
public:
- explicit Controller(QQmlApplicationEngine* engine, DataBase* db, QObject *parent = 0);
+ explicit Controller(DataBase* db, QObject *parent = 0);
+ virtual ~Controller();
signals:
public slots:
void openAddHuman();
+ void openAddService();
private:
QQmlApplicationEngine* engine;
}
-void DataBase::addService(const QString& name, const QUrl& url,
- const QString& description)
+void DataBase::addService(const QVariant& name, const QVariant& url,
+ const QVariant& description)
{
+ qDebug()<<"addService slot called with: "<<name<<", "<<url<<", "<< description;
QSqlQuery q;
- q.prepare(this->sqlAddService);
- q.addBindValue(name);
- q.addBindValue(url);
- q.addBindValue(description);
- q.exec();
+ if (!q.prepare(this->sqlAddService)) qDebug() << "error while preparing: " << q.lastError();
+ q.addBindValue(name.toString());
+ q.addBindValue(url.toUrl());
+ q.addBindValue(description.toString());
+ if (!q.exec())qDebug()<<"error: "<< q.lastError();
}
void DataBase::addUser(const QVariant& humanID, const QVariant& serviceID,
void addHuman(const QVariant& name, const QVariant& firstname,
const QVariant& birthday);
- void addService(const QString& name, const QUrl& url,
- const QString& description);
+ void addService(const QVariant& name, const QVariant& url,
+ const QVariant& description);
void addUser(const QVariant& humanID, const QVariant& serviceID,
const QString& username, const QString& password);
const QLatin1String sqlCreateHumanTable = QLatin1String(
"create table human("
"id integer primary key autoincrement,"
- "name varchar,"
+ "name varchar not null,"
"firstname varchar,"
"birthday date"
")");
const QLatin1String sqlCreateServiceTable = QLatin1String(
"create table service("
"id integer primary key autoincrement,"
- "name varchar,"
- "url varchar,"
- "desription varchar"
+ "name varchar not null,"
+ "url varchar not null,"
+ "description varchar"
")");
const QLatin1String sqlCreateUserTable = QLatin1String(
-#include <QGuiApplication>
+#include <QApplication>
#include <QQmlApplicationEngine>
#include "database.h"
#include "controller.h"
int main(int argc, char *argv[])
{
- QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
- QGuiApplication app(argc, argv);
+// QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
+ QApplication app(argc, argv);
- QQmlApplicationEngine engine;
DataBase db;
- Controller c(&engine, &db);
+ Controller c(&db);
return app.exec();
}
import QtQuick 2.7
-import QtQuick.Controls 2.0
+import QtQuick.Controls 1.4
import QtQuick.Layouts 1.0
ApplicationWindow {
height: 480
title: qsTr("Hello World")
signal openAddHuman()
+ signal openAddService()
Button {
id: btnaddhuman
- anchors.centerIn: parent
+ anchors.left: parent.left
+ anchors.bottom: parent.bottom
visible: true
- text: "Add Human"
- onClicked: {
- openAddHuman()
- }
+ text: qsTr("Add Human")
+ onClicked: openAddHuman()
+ }
+
+ Button {
+ id: btnaddservice
+ anchors.left: btnaddhuman.right
+ anchors.bottom: parent.bottom
+ text: qsTr("Add Service")
+ onClicked: openAddService()
}
}
<file>main.qml</file>
<file>qtquickcontrols2.conf</file>
<file>addhuman.qml</file>
+ <file>addservice.qml</file>
</qresource>
</RCC>
; http://doc.qt.io/qt-5/qtquickcontrols2-styles.html
[Controls]
-Style=Universal
+Style=Material
[Universal]
-Theme=Light
+Theme=Dark
;Accent=Steel
[Material]
-Theme=Light
+Theme=Dark
;Accent=BlueGrey
;Primary=BlueGray