From 5cb738dce453e24184137206b9701c8e4f06cb92 Mon Sep 17 00:00:00 2001 From: giomba Date: Wed, 7 Aug 2019 14:55:07 +0200 Subject: [PATCH] socio and presidente interface separation --- .gitignore | 1 + README | 23 +++++++++++++++++++++++ EditWindow.cpp => argento/EditWindow.cpp | 0 EditWindow.h => argento/EditWindow.h | 0 EditWindow.ui => argento/EditWindow.ui | 0 MainWindow.cpp => argento/MainWindow.cpp | 0 MainWindow.h => argento/MainWindow.h | 0 MainWindow.ui => argento/MainWindow.ui | 0 SociModel.cpp => argento/SociModel.cpp | 0 SociModel.h => argento/SociModel.h | 0 gestionale.pro => argento/argento.pro | 5 ++--- db.cpp => argento/db.cpp | 0 db.h => argento/db.h | 0 fullQuery.cpp => argento/fullQuery.cpp | 0 fullQuery.h => argento/fullQuery.h | 0 main.cpp => argento/main.cpp | 0 status.cpp => argento/status.cpp | 0 status.h => argento/status.h | 0 18 files changed, 26 insertions(+), 3 deletions(-) create mode 100644 README rename EditWindow.cpp => argento/EditWindow.cpp (100%) rename EditWindow.h => argento/EditWindow.h (100%) rename EditWindow.ui => argento/EditWindow.ui (100%) rename MainWindow.cpp => argento/MainWindow.cpp (100%) rename MainWindow.h => argento/MainWindow.h (100%) rename MainWindow.ui => argento/MainWindow.ui (100%) rename SociModel.cpp => argento/SociModel.cpp (100%) rename SociModel.h => argento/SociModel.h (100%) rename gestionale.pro => argento/argento.pro (97%) rename db.cpp => argento/db.cpp (100%) rename db.h => argento/db.h (100%) rename fullQuery.cpp => argento/fullQuery.cpp (100%) rename fullQuery.h => argento/fullQuery.h (100%) rename main.cpp => argento/main.cpp (100%) rename status.cpp => argento/status.cpp (100%) rename status.h => argento/status.h (100%) diff --git a/.gitignore b/.gitignore index 75c107b..6fdeb0e 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ *.pro.user +build-* diff --git a/README b/README new file mode 100644 index 0000000..785fa74 --- /dev/null +++ b/README @@ -0,0 +1,23 @@ + Argento +=============== +A management software for GOLEM - Gruppo Operativo Linux Empoli. + +== Components == +argento: + president's interface to run on Sala-Corsi + +nicolodi: + socio's interface to run on Limortouch + +== Dependencies == +On Debian/Ubuntu/Mint: + qt5-default + ... TODO ... + +== Build == + $ cd $REPOSITORY + $ mkdir build-component + $ cd build-component + $ qmake ../component + $ make -j$(nproc) + diff --git a/EditWindow.cpp b/argento/EditWindow.cpp similarity index 100% rename from EditWindow.cpp rename to argento/EditWindow.cpp diff --git a/EditWindow.h b/argento/EditWindow.h similarity index 100% rename from EditWindow.h rename to argento/EditWindow.h diff --git a/EditWindow.ui b/argento/EditWindow.ui similarity index 100% rename from EditWindow.ui rename to argento/EditWindow.ui diff --git a/MainWindow.cpp b/argento/MainWindow.cpp similarity index 100% rename from MainWindow.cpp rename to argento/MainWindow.cpp diff --git a/MainWindow.h b/argento/MainWindow.h similarity index 100% rename from MainWindow.h rename to argento/MainWindow.h diff --git a/MainWindow.ui b/argento/MainWindow.ui similarity index 100% rename from MainWindow.ui rename to argento/MainWindow.ui diff --git a/SociModel.cpp b/argento/SociModel.cpp similarity index 100% rename from SociModel.cpp rename to argento/SociModel.cpp diff --git a/SociModel.h b/argento/SociModel.h similarity index 100% rename from SociModel.h rename to argento/SociModel.h diff --git a/gestionale.pro b/argento/argento.pro similarity index 97% rename from gestionale.pro rename to argento/argento.pro index 92eba72..56a4761 100644 --- a/gestionale.pro +++ b/argento/argento.pro @@ -1,14 +1,13 @@ #------------------------------------------------- -# # Project created by QtCreator 2019-08-03T15:05:59 -# +# adapted by giomba #------------------------------------------------- QT += core gui sql greaterThan(QT_MAJOR_VERSION, 4): QT += widgets -TARGET = gestionale +TARGET = argento TEMPLATE = app # The following define makes your compiler emit warnings if you use diff --git a/db.cpp b/argento/db.cpp similarity index 100% rename from db.cpp rename to argento/db.cpp diff --git a/db.h b/argento/db.h similarity index 100% rename from db.h rename to argento/db.h diff --git a/fullQuery.cpp b/argento/fullQuery.cpp similarity index 100% rename from fullQuery.cpp rename to argento/fullQuery.cpp diff --git a/fullQuery.h b/argento/fullQuery.h similarity index 100% rename from fullQuery.h rename to argento/fullQuery.h diff --git a/main.cpp b/argento/main.cpp similarity index 100% rename from main.cpp rename to argento/main.cpp diff --git a/status.cpp b/argento/status.cpp similarity index 100% rename from status.cpp rename to argento/status.cpp diff --git a/status.h b/argento/status.h similarity index 100% rename from status.h rename to argento/status.h