First commit

This commit is contained in:
giomba 2019-08-03 17:24:44 +02:00
commit 6631fd16fc
8 changed files with 402 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
*.pro.user

3
db.cpp Normal file
View File

@ -0,0 +1,3 @@
#include "db.h"
QSqlDatabase db;

10
db.h Normal file
View File

@ -0,0 +1,10 @@
#ifndef DB_H
#define DB_H
#include <QSqlDatabase>
#include <QSqlError>
#include <QSqlQuery>
extern QSqlDatabase db;
#endif

42
gestionale.pro Normal file
View File

@ -0,0 +1,42 @@
#-------------------------------------------------
#
# Project created by QtCreator 2019-08-03T15:05:59
#
#-------------------------------------------------
QT += core gui sql
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = gestionale
TEMPLATE = app
# The following define makes your compiler emit warnings if you use
# any feature of Qt which has been marked as 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
CONFIG += c++11
SOURCES += \
db.cpp \
main.cpp \
mainwindow.cpp
HEADERS += \
db.h \
mainwindow.h
FORMS += \
mainwindow.ui
# Default rules for deployment.
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target

32
main.cpp Normal file
View File

@ -0,0 +1,32 @@
#include <iostream>
#include <QApplication>
#include <QMessageBox>
#include <QSettings>
#include "db.h"
#include "mainwindow.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
/* settings are automatically retrieved from ~/.config/it.linux.golem/gestionale.conf */
QSettings settings("it.linux.golem", "gestionale");
settings.beginGroup("database");
db = QSqlDatabase::addDatabase("QMYSQL"); /* QMYSQL <-- database driver */
db.setHostName(settings.value("hostname").toString());
db.setDatabaseName(settings.value("database").toString());
db.setUserName(settings.value("username").toString());
db.setPassword(settings.value("password").toString());
if (! db.open()) {
QMessageBox msgBox;
msgBox.setText(db.lastError().text());
msgBox.exec();
}
MainWindow w;
w.show();
return a.exec();
}

26
mainwindow.cpp Normal file
View File

@ -0,0 +1,26 @@
#include "mainwindow.h"
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
populateUi();
}
bool MainWindow::populateUi(void) {
QComboBox* comboProfessione = this->findChild<QComboBox*>("comboProfessione");
QSqlQuery query("SELECT id, professione FROM professione");
while (query.next()) {
comboProfessione->addItem(query.value(1).toString().toUtf8().data(), query.value(0).toInt());
}
return true;
}
MainWindow::~MainWindow()
{
delete ui;
}

29
mainwindow.h Normal file
View File

@ -0,0 +1,29 @@
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include <iostream>
#include "db.h"
#include "mainwindow.h"
#include "ui_mainwindow.h"
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = nullptr);
~MainWindow();
private:
Ui::MainWindow *ui;
bool populateUi(void);
};
#endif // MAINWINDOW_H

259
mainwindow.ui Normal file
View File

@ -0,0 +1,259 @@
<?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>652</width>
<height>399</height>
</rect>
</property>
<property name="windowTitle">
<string>MainWindow</string>
</property>
<widget class="QWidget" name="centralWidget">
<widget class="QLineEdit" name="lineEdit">
<property name="geometry">
<rect>
<x>100</x>
<y>10</y>
<width>161</width>
<height>32</height>
</rect>
</property>
<property name="readOnly">
<bool>true</bool>
</property>
</widget>
<widget class="QLabel" name="label">
<property name="geometry">
<rect>
<x>80</x>
<y>20</y>
<width>14</width>
<height>18</height>
</rect>
</property>
<property name="text">
<string>ID</string>
</property>
</widget>
<widget class="QLabel" name="label_2">
<property name="geometry">
<rect>
<x>60</x>
<y>60</y>
<width>38</width>
<height>18</height>
</rect>
</property>
<property name="text">
<string>Nome</string>
</property>
</widget>
<widget class="QLabel" name="label_">
<property name="geometry">
<rect>
<x>40</x>
<y>100</y>
<width>60</width>
<height>18</height>
</rect>
</property>
<property name="text">
<string>Cognome</string>
</property>
</widget>
<widget class="QLineEdit" name="lineNome">
<property name="geometry">
<rect>
<x>100</x>
<y>50</y>
<width>161</width>
<height>32</height>
</rect>
</property>
<property name="text">
<string/>
</property>
</widget>
<widget class="QLineEdit" name="lineCognome">
<property name="geometry">
<rect>
<x>100</x>
<y>90</y>
<width>161</width>
<height>32</height>
</rect>
</property>
</widget>
<widget class="QLineEdit" name="lineComuneResidenza">
<property name="geometry">
<rect>
<x>100</x>
<y>170</y>
<width>161</width>
<height>32</height>
</rect>
</property>
</widget>
<widget class="QLineEdit" name="lineEmail">
<property name="geometry">
<rect>
<x>100</x>
<y>210</y>
<width>161</width>
<height>32</height>
</rect>
</property>
</widget>
<widget class="QLabel" name="label_4">
<property name="geometry">
<rect>
<x>50</x>
<y>130</y>
<width>51</width>
<height>31</height>
</rect>
</property>
<property name="text">
<string>Data di Nascita</string>
</property>
<property name="wordWrap">
<bool>true</bool>
</property>
</widget>
<widget class="QLabel" name="label_5">
<property name="geometry">
<rect>
<x>30</x>
<y>170</y>
<width>71</width>
<height>31</height>
</rect>
</property>
<property name="text">
<string>Comune di Residenza</string>
</property>
<property name="wordWrap">
<bool>true</bool>
</property>
</widget>
<widget class="QLabel" name="label_8">
<property name="geometry">
<rect>
<x>60</x>
<y>210</y>
<width>41</width>
<height>31</height>
</rect>
</property>
<property name="text">
<string>Email</string>
</property>
<property name="wordWrap">
<bool>true</bool>
</property>
</widget>
<widget class="QLabel" name="label_9">
<property name="geometry">
<rect>
<x>20</x>
<y>250</y>
<width>71</width>
<height>31</height>
</rect>
</property>
<property name="text">
<string>Professione</string>
</property>
<property name="wordWrap">
<bool>true</bool>
</property>
</widget>
<widget class="QLabel" name="label_10">
<property name="geometry">
<rect>
<x>60</x>
<y>290</y>
<width>41</width>
<height>31</height>
</rect>
</property>
<property name="text">
<string>Fonte</string>
</property>
<property name="wordWrap">
<bool>true</bool>
</property>
</widget>
<widget class="QDateEdit" name="dateDataNascita">
<property name="geometry">
<rect>
<x>100</x>
<y>130</y>
<width>161</width>
<height>32</height>
</rect>
</property>
<property name="displayFormat">
<string>dd/MM/yyyy</string>
</property>
</widget>
<widget class="QComboBox" name="comboProfessione">
<property name="geometry">
<rect>
<x>100</x>
<y>250</y>
<width>161</width>
<height>32</height>
</rect>
</property>
</widget>
<widget class="QComboBox" name="comboFonte">
<property name="geometry">
<rect>
<x>100</x>
<y>290</y>
<width>161</width>
<height>32</height>
</rect>
</property>
</widget>
</widget>
<widget class="QMenuBar" name="menuBar">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>652</width>
<height>30</height>
</rect>
</property>
</widget>
<widget class="QToolBar" name="mainToolBar">
<attribute name="toolBarArea">
<enum>TopToolBarArea</enum>
</attribute>
<attribute name="toolBarBreak">
<bool>false</bool>
</attribute>
</widget>
<widget class="QStatusBar" name="statusBar"/>
</widget>
<layoutdefault spacing="6" margin="11"/>
<tabstops>
<tabstop>lineEdit</tabstop>
<tabstop>lineNome</tabstop>
<tabstop>lineCognome</tabstop>
<tabstop>dateDataNascita</tabstop>
<tabstop>lineComuneResidenza</tabstop>
<tabstop>lineEmail</tabstop>
<tabstop>comboProfessione</tabstop>
<tabstop>comboFonte</tabstop>
</tabstops>
<resources/>
<connections/>
</ui>