annotate src/main.cpp @ 246:43a5e09bb832

Split some utility functions to util.{h,cpp}
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 08 May 2018 13:14:29 +0300
parents 3d3ba5759cac
children 4f947840c806
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1 //
140
783417da6da3 Change the program description to english etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 139
diff changeset
2 // Syntilista - debt list/management database program
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
3 // Programmed and designed by Matti Hämäläinen <ccr@tnsp.org>
217
58af72da7f60 Update copyrights.
Matti Hamalainen <ccr@tnsp.org>
parents: 216
diff changeset
4 // (C) Copyright 2017-2018 Tecnic Software productions (TNSP)
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
5 //
57
893f69fcf050 Add license.
Matti Hamalainen <ccr@tnsp.org>
parents: 47
diff changeset
6 // Distributed under 3-clause BSD style license, refer to
893f69fcf050 Add license.
Matti Hamalainen <ccr@tnsp.org>
parents: 47
diff changeset
7 // included file "COPYING" for exact terms.
893f69fcf050 Add license.
Matti Hamalainen <ccr@tnsp.org>
parents: 47
diff changeset
8 //
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
9 #include <QApplication>
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
10 #include <QMessageBox>
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
11 #include <QSettings>
129
f6685c2eb75d Store SQLite database and log file in application data directory instead of
Matti Hamalainen <ccr@tnsp.org>
parents: 128
diff changeset
12 #include <QStandardPaths>
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
13 #include "main.h"
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
14 #include "ui_mainwindow.h"
90
efab68769c75 Implement new separate About dialog/help window.
Matti Hamalainen <ccr@tnsp.org>
parents: 89
diff changeset
15 #include "ui_aboutwindow.h"
228
37d5f4329449 Implement single running instance check to prevent problems with the SQLite database.
Matti Hamalainen <ccr@tnsp.org>
parents: 226
diff changeset
16 #include "runguard.h"
246
43a5e09bb832 Split some utility functions to util.{h,cpp}
Matti Hamalainen <ccr@tnsp.org>
parents: 242
diff changeset
17 #include "util.h"
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
18
240
14c6a4d40232 Move settings struct definition to main.h
Matti Hamalainen <ccr@tnsp.org>
parents: 239
diff changeset
19
135
45e17cdde93a Move application global settings to a struct.
Matti Hamalainen <ccr@tnsp.org>
parents: 134
diff changeset
20 //
240
14c6a4d40232 Move settings struct definition to main.h
Matti Hamalainen <ccr@tnsp.org>
parents: 239
diff changeset
21 // Global struct for settings
14c6a4d40232 Move settings struct definition to main.h
Matti Hamalainen <ccr@tnsp.org>
parents: 239
diff changeset
22 //
14c6a4d40232 Move settings struct definition to main.h
Matti Hamalainen <ccr@tnsp.org>
parents: 239
diff changeset
23 SLAppSettings settings;
135
45e17cdde93a Move application global settings to a struct.
Matti Hamalainen <ccr@tnsp.org>
parents: 134
diff changeset
24
34
87f098892804 Make the UI scale with undocumented hotkeys.
Matti Hamalainen <ccr@tnsp.org>
parents: 32
diff changeset
25
239
9626307f3eeb Streamline SQL table creation.
Matti Hamalainen <ccr@tnsp.org>
parents: 237
diff changeset
26 //
9626307f3eeb Streamline SQL table creation.
Matti Hamalainen <ccr@tnsp.org>
parents: 237
diff changeset
27 // SQL schema / table definitions
9626307f3eeb Streamline SQL table creation.
Matti Hamalainen <ccr@tnsp.org>
parents: 237
diff changeset
28 //
9626307f3eeb Streamline SQL table creation.
Matti Hamalainen <ccr@tnsp.org>
parents: 237
diff changeset
29 static const SLSQLSchemaDef slSQLSchemaData[] =
9626307f3eeb Streamline SQL table creation.
Matti Hamalainen <ccr@tnsp.org>
parents: 237
diff changeset
30 {
9626307f3eeb Streamline SQL table creation.
Matti Hamalainen <ccr@tnsp.org>
parents: 237
diff changeset
31 {
9626307f3eeb Streamline SQL table creation.
Matti Hamalainen <ccr@tnsp.org>
parents: 237
diff changeset
32 QStringLiteral("people"),
9626307f3eeb Streamline SQL table creation.
Matti Hamalainen <ccr@tnsp.org>
parents: 237
diff changeset
33 QStringLiteral(
9626307f3eeb Streamline SQL table creation.
Matti Hamalainen <ccr@tnsp.org>
parents: 237
diff changeset
34 "id INTEGER PRIMARY KEY,"
9626307f3eeb Streamline SQL table creation.
Matti Hamalainen <ccr@tnsp.org>
parents: 237
diff changeset
35
9626307f3eeb Streamline SQL table creation.
Matti Hamalainen <ccr@tnsp.org>
parents: 237
diff changeset
36 "first_name VARCHAR(" SL_STR(SQL_LEN_FIRST_NAME) ") NOT NULL,"
9626307f3eeb Streamline SQL table creation.
Matti Hamalainen <ccr@tnsp.org>
parents: 237
diff changeset
37 "last_name VARCHAR(" SL_STR(SQL_LEN_LAST_NAME) ") NOT NULL,"
9626307f3eeb Streamline SQL table creation.
Matti Hamalainen <ccr@tnsp.org>
parents: 237
diff changeset
38 "extra_info VARCHAR(" SL_STR(SQL_LEN_EXTRA_INFO) "),"
9626307f3eeb Streamline SQL table creation.
Matti Hamalainen <ccr@tnsp.org>
parents: 237
diff changeset
39
9626307f3eeb Streamline SQL table creation.
Matti Hamalainen <ccr@tnsp.org>
parents: 237
diff changeset
40 "added DATETIME NOT NULL,"
9626307f3eeb Streamline SQL table creation.
Matti Hamalainen <ccr@tnsp.org>
parents: 237
diff changeset
41 "updated DATETIME NOT NULL"
9626307f3eeb Streamline SQL table creation.
Matti Hamalainen <ccr@tnsp.org>
parents: 237
diff changeset
42 )
9626307f3eeb Streamline SQL table creation.
Matti Hamalainen <ccr@tnsp.org>
parents: 237
diff changeset
43 },
9626307f3eeb Streamline SQL table creation.
Matti Hamalainen <ccr@tnsp.org>
parents: 237
diff changeset
44 {
9626307f3eeb Streamline SQL table creation.
Matti Hamalainen <ccr@tnsp.org>
parents: 237
diff changeset
45 QStringLiteral("transactions"),
9626307f3eeb Streamline SQL table creation.
Matti Hamalainen <ccr@tnsp.org>
parents: 237
diff changeset
46 QStringLiteral(
9626307f3eeb Streamline SQL table creation.
Matti Hamalainen <ccr@tnsp.org>
parents: 237
diff changeset
47 "id INTEGER PRIMARY KEY, "
9626307f3eeb Streamline SQL table creation.
Matti Hamalainen <ccr@tnsp.org>
parents: 237
diff changeset
48 "person INT NOT NULL, "
9626307f3eeb Streamline SQL table creation.
Matti Hamalainen <ccr@tnsp.org>
parents: 237
diff changeset
49 "value REAL, "
9626307f3eeb Streamline SQL table creation.
Matti Hamalainen <ccr@tnsp.org>
parents: 237
diff changeset
50 "added DATETIME NOT NULL"
9626307f3eeb Streamline SQL table creation.
Matti Hamalainen <ccr@tnsp.org>
parents: 237
diff changeset
51 )
9626307f3eeb Streamline SQL table creation.
Matti Hamalainen <ccr@tnsp.org>
parents: 237
diff changeset
52 },
9626307f3eeb Streamline SQL table creation.
Matti Hamalainen <ccr@tnsp.org>
parents: 237
diff changeset
53 };
9626307f3eeb Streamline SQL table creation.
Matti Hamalainen <ccr@tnsp.org>
parents: 237
diff changeset
54
9626307f3eeb Streamline SQL table creation.
Matti Hamalainen <ccr@tnsp.org>
parents: 237
diff changeset
55 static const int nslSQLSchemaData = sizeof(slSQLSchemaData) / sizeof(slSQLSchemaData[0]);
9626307f3eeb Streamline SQL table creation.
Matti Hamalainen <ccr@tnsp.org>
parents: 237
diff changeset
56
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
57
83
83044206479e Add some comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 80
diff changeset
58 //
83044206479e Add some comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 80
diff changeset
59 // Check if an SQL error has occured (for given QSqlError) and
83044206479e Add some comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 80
diff changeset
60 // report it to stdout if so. Return "false" if error has occured,
83044206479e Add some comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 80
diff changeset
61 // true otherwise.
83044206479e Add some comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 80
diff changeset
62 //
157
325e7590f93e Move most of the printing related code to printing.cpp
Matti Hamalainen <ccr@tnsp.org>
parents: 156
diff changeset
63 bool slCheckAndReportSQLError(const QString where, const QSqlError &err, bool report)
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
64 {
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
65 if (err.isValid())
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
66 {
156
afadc1380fb1 Add few misc. comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 155
diff changeset
67 // If an error has occured, log it
133
df03ab8b6413 Improve logging.
Matti Hamalainen <ccr@tnsp.org>
parents: 132
diff changeset
68 slLog("ERROR",
df03ab8b6413 Improve logging.
Matti Hamalainen <ccr@tnsp.org>
parents: 132
diff changeset
69 QStringLiteral("SQL %1: %2").
126
b51cee929416 Add program debug logging.
Matti Hamalainen <ccr@tnsp.org>
parents: 125
diff changeset
70 arg(where).arg(err.text()));
4
f2404a9987dc Cleaning up the code.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
71 return false;
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
72 }
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
73 else
126
b51cee929416 Add program debug logging.
Matti Hamalainen <ccr@tnsp.org>
parents: 125
diff changeset
74 {
156
afadc1380fb1 Add few misc. comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 155
diff changeset
75 // If no error, but event reporting requested, log it
126
b51cee929416 Add program debug logging.
Matti Hamalainen <ccr@tnsp.org>
parents: 125
diff changeset
76 if (report)
133
df03ab8b6413 Improve logging.
Matti Hamalainen <ccr@tnsp.org>
parents: 132
diff changeset
77 {
df03ab8b6413 Improve logging.
Matti Hamalainen <ccr@tnsp.org>
parents: 132
diff changeset
78 slLog("NOTE",
df03ab8b6413 Improve logging.
Matti Hamalainen <ccr@tnsp.org>
parents: 132
diff changeset
79 QStringLiteral("SQL OK %1").arg(where));
df03ab8b6413 Improve logging.
Matti Hamalainen <ccr@tnsp.org>
parents: 132
diff changeset
80 }
4
f2404a9987dc Cleaning up the code.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
81 return true;
126
b51cee929416 Add program debug logging.
Matti Hamalainen <ccr@tnsp.org>
parents: 125
diff changeset
82 }
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
83 }
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
84
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
85
174
636a24c76232 Rename some classes to add a SL prefix to their names.
Matti Hamalainen <ccr@tnsp.org>
parents: 170
diff changeset
86 void SLPersonInfo::dump()
5
a5a3baee3043 More cleanups and fixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 4
diff changeset
87 {
126
b51cee929416 Add program debug logging.
Matti Hamalainen <ccr@tnsp.org>
parents: 125
diff changeset
88 printf(
174
636a24c76232 Rename some classes to add a SL prefix to their names.
Matti Hamalainen <ccr@tnsp.org>
parents: 170
diff changeset
89 "SLPersonInfo() #%lld '%s %s' (added=%s, updated=%s, balance %1.2f)\n#%s#\n",
5
a5a3baee3043 More cleanups and fixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 4
diff changeset
90 id,
a5a3baee3043 More cleanups and fixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 4
diff changeset
91 firstName.toUtf8().constData(),
a5a3baee3043 More cleanups and fixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 4
diff changeset
92 lastName.toUtf8().constData(),
99
7b8755801111 Rename some utility functions.
Matti Hamalainen <ccr@tnsp.org>
parents: 98
diff changeset
93 slDateTimeToStr(added).toUtf8().constData(),
7b8755801111 Rename some utility functions.
Matti Hamalainen <ccr@tnsp.org>
parents: 98
diff changeset
94 slDateTimeToStr(updated).toUtf8().constData(),
5
a5a3baee3043 More cleanups and fixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 4
diff changeset
95 balance,
a5a3baee3043 More cleanups and fixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 4
diff changeset
96 extraInfo.toUtf8().constData());
a5a3baee3043 More cleanups and fixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 4
diff changeset
97 }
a5a3baee3043 More cleanups and fixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 4
diff changeset
98
a5a3baee3043 More cleanups and fixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 4
diff changeset
99
a5a3baee3043 More cleanups and fixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 4
diff changeset
100 //
174
636a24c76232 Rename some classes to add a SL prefix to their names.
Matti Hamalainen <ccr@tnsp.org>
parents: 170
diff changeset
101 // Get SLPersonInfo record from SQL query object
101
2477f46282c8 Split getPersonInfo() to getPersonInfoRec().
Matti Hamalainen <ccr@tnsp.org>
parents: 99
diff changeset
102 //
174
636a24c76232 Rename some classes to add a SL prefix to their names.
Matti Hamalainen <ccr@tnsp.org>
parents: 170
diff changeset
103 void slGetPersonInfoRec(QSqlQuery &query, SLPersonInfo &info)
101
2477f46282c8 Split getPersonInfo() to getPersonInfoRec().
Matti Hamalainen <ccr@tnsp.org>
parents: 99
diff changeset
104 {
2477f46282c8 Split getPersonInfo() to getPersonInfoRec().
Matti Hamalainen <ccr@tnsp.org>
parents: 99
diff changeset
105 info.id = query.value(0).toInt();
2477f46282c8 Split getPersonInfo() to getPersonInfoRec().
Matti Hamalainen <ccr@tnsp.org>
parents: 99
diff changeset
106 info.firstName = query.value(1).toString();
2477f46282c8 Split getPersonInfo() to getPersonInfoRec().
Matti Hamalainen <ccr@tnsp.org>
parents: 99
diff changeset
107 info.lastName = query.value(2).toString();
2477f46282c8 Split getPersonInfo() to getPersonInfoRec().
Matti Hamalainen <ccr@tnsp.org>
parents: 99
diff changeset
108 info.extraInfo = query.value(3).toString();
2477f46282c8 Split getPersonInfo() to getPersonInfoRec().
Matti Hamalainen <ccr@tnsp.org>
parents: 99
diff changeset
109 info.added = query.value(4).toDateTime();
2477f46282c8 Split getPersonInfo() to getPersonInfoRec().
Matti Hamalainen <ccr@tnsp.org>
parents: 99
diff changeset
110 info.updated = query.value(5).toDateTime();
2477f46282c8 Split getPersonInfo() to getPersonInfoRec().
Matti Hamalainen <ccr@tnsp.org>
parents: 99
diff changeset
111 info.balance = query.value(6).toDouble();
2477f46282c8 Split getPersonInfo() to getPersonInfoRec().
Matti Hamalainen <ccr@tnsp.org>
parents: 99
diff changeset
112 }
2477f46282c8 Split getPersonInfo() to getPersonInfoRec().
Matti Hamalainen <ccr@tnsp.org>
parents: 99
diff changeset
113
2477f46282c8 Split getPersonInfo() to getPersonInfoRec().
Matti Hamalainen <ccr@tnsp.org>
parents: 99
diff changeset
114
2477f46282c8 Split getPersonInfo() to getPersonInfoRec().
Matti Hamalainen <ccr@tnsp.org>
parents: 99
diff changeset
115 //
174
636a24c76232 Rename some classes to add a SL prefix to their names.
Matti Hamalainen <ccr@tnsp.org>
parents: 170
diff changeset
116 // Get SLPersonInfo record from SQL database for specified person ID #
5
a5a3baee3043 More cleanups and fixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 4
diff changeset
117 //
174
636a24c76232 Rename some classes to add a SL prefix to their names.
Matti Hamalainen <ccr@tnsp.org>
parents: 170
diff changeset
118 bool slGetPersonInfo(qint64 id, SLPersonInfo &info)
5
a5a3baee3043 More cleanups and fixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 4
diff changeset
119 {
101
2477f46282c8 Split getPersonInfo() to getPersonInfoRec().
Matti Hamalainen <ccr@tnsp.org>
parents: 99
diff changeset
120 QSqlQuery query;
202
4e25db3327a7 Use QStringLiteral() some more.
Matti Hamalainen <ccr@tnsp.org>
parents: 201
diff changeset
121 query.prepare(QStringLiteral(
5
a5a3baee3043 More cleanups and fixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 4
diff changeset
122 "SELECT id,first_name,last_name,extra_info,added,updated, "
107
8ceaafde9b52 Use total() instead of sum() in the SQL queries for better accuracy.
Matti Hamalainen <ccr@tnsp.org>
parents: 104
diff changeset
123 "(SELECT TOTAL(value) FROM transactions WHERE transactions.person=people.id) AS balance "
202
4e25db3327a7 Use QStringLiteral() some more.
Matti Hamalainen <ccr@tnsp.org>
parents: 201
diff changeset
124 "FROM people WHERE id=?"));
5
a5a3baee3043 More cleanups and fixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 4
diff changeset
125
101
2477f46282c8 Split getPersonInfo() to getPersonInfoRec().
Matti Hamalainen <ccr@tnsp.org>
parents: 99
diff changeset
126 query.addBindValue(id);
2477f46282c8 Split getPersonInfo() to getPersonInfoRec().
Matti Hamalainen <ccr@tnsp.org>
parents: 99
diff changeset
127 query.exec();
2477f46282c8 Split getPersonInfo() to getPersonInfoRec().
Matti Hamalainen <ccr@tnsp.org>
parents: 99
diff changeset
128 if (!query.next())
5
a5a3baee3043 More cleanups and fixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 4
diff changeset
129 return false;
a5a3baee3043 More cleanups and fixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 4
diff changeset
130
102
064138b6d34e Rename getPersonInfo*() to slGetPersonInfo*().
Matti Hamalainen <ccr@tnsp.org>
parents: 101
diff changeset
131 slGetPersonInfoRec(query, info);
101
2477f46282c8 Split getPersonInfo() to getPersonInfoRec().
Matti Hamalainen <ccr@tnsp.org>
parents: 99
diff changeset
132 query.finish();
5
a5a3baee3043 More cleanups and fixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 4
diff changeset
133 return true;
a5a3baee3043 More cleanups and fixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 4
diff changeset
134 }
a5a3baee3043 More cleanups and fixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 4
diff changeset
135
a5a3baee3043 More cleanups and fixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 4
diff changeset
136
156
afadc1380fb1 Add few misc. comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 155
diff changeset
137 //
afadc1380fb1 Add few misc. comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 155
diff changeset
138 // Set stylesheet for given QWidget, and scale fonts etc.
afadc1380fb1 Add few misc. comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 155
diff changeset
139 // for some elements based on current UI scale factor.
afadc1380fb1 Add few misc. comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 155
diff changeset
140 //
132
dc9fe580da42 Rename setCommonStyleSheet() to slSetCommonStyleSheet().
Matti Hamalainen <ccr@tnsp.org>
parents: 130
diff changeset
141 void slSetCommonStyleSheet(QWidget *widget)
32
7fd15537b12d Commonize stylesheet code.
Matti Hamalainen <ccr@tnsp.org>
parents: 31
diff changeset
142 {
40
d565867f2b0b UI visual improvements.
Matti Hamalainen <ccr@tnsp.org>
parents: 39
diff changeset
143 // Clamp scale value
135
45e17cdde93a Move application global settings to a struct.
Matti Hamalainen <ccr@tnsp.org>
parents: 134
diff changeset
144 if (settings.uiScale < 0.5f)
45e17cdde93a Move application global settings to a struct.
Matti Hamalainen <ccr@tnsp.org>
parents: 134
diff changeset
145 settings.uiScale = 0.5f;
103
ce86ea4b08aa Comment.
Matti Hamalainen <ccr@tnsp.org>
parents: 102
diff changeset
146
135
45e17cdde93a Move application global settings to a struct.
Matti Hamalainen <ccr@tnsp.org>
parents: 134
diff changeset
147 if (settings.uiScale > 3.0f)
45e17cdde93a Move application global settings to a struct.
Matti Hamalainen <ccr@tnsp.org>
parents: 134
diff changeset
148 settings.uiScale = 3.0f;
34
87f098892804 Make the UI scale with undocumented hotkeys.
Matti Hamalainen <ccr@tnsp.org>
parents: 32
diff changeset
149
40
d565867f2b0b UI visual improvements.
Matti Hamalainen <ccr@tnsp.org>
parents: 39
diff changeset
150 // Set the stylesheet
32
7fd15537b12d Commonize stylesheet code.
Matti Hamalainen <ccr@tnsp.org>
parents: 31
diff changeset
151 widget->setStyleSheet(
7fd15537b12d Commonize stylesheet code.
Matti Hamalainen <ccr@tnsp.org>
parents: 31
diff changeset
152 QStringLiteral(
7fd15537b12d Commonize stylesheet code.
Matti Hamalainen <ccr@tnsp.org>
parents: 31
diff changeset
153 "* { font-size: %1pt; }"
7fd15537b12d Commonize stylesheet code.
Matti Hamalainen <ccr@tnsp.org>
parents: 31
diff changeset
154 "QPushButton { font-size: %2pt; padding: 0.25em; }"
40
d565867f2b0b UI visual improvements.
Matti Hamalainen <ccr@tnsp.org>
parents: 39
diff changeset
155 "#button_AddDebt[enabled='true'] { font-size: %3pt; background-color: #900; color: white; }"
d565867f2b0b UI visual improvements.
Matti Hamalainen <ccr@tnsp.org>
parents: 39
diff changeset
156 "#button_PayDebt[enabled='true'] { font-size: %3pt; background-color: #090; color: white; }"
d565867f2b0b UI visual improvements.
Matti Hamalainen <ccr@tnsp.org>
parents: 39
diff changeset
157 "#button_PayFullDebt[enabled='true'] { background-color: #060; color: white; }"
d565867f2b0b UI visual improvements.
Matti Hamalainen <ccr@tnsp.org>
parents: 39
diff changeset
158
d565867f2b0b UI visual improvements.
Matti Hamalainen <ccr@tnsp.org>
parents: 39
diff changeset
159 "#button_AddDebt[enabled='false'] { font-size: %3pt; background-color: #622; color: black; }"
d565867f2b0b UI visual improvements.
Matti Hamalainen <ccr@tnsp.org>
parents: 39
diff changeset
160 "#button_PayDebt[enabled='false'] { font-size: %3pt; background-color: #262; color: black; }"
d565867f2b0b UI visual improvements.
Matti Hamalainen <ccr@tnsp.org>
parents: 39
diff changeset
161 "#button_PayFullDebt[enabled='false'] { background-color: #131; color: black; }"
d565867f2b0b UI visual improvements.
Matti Hamalainen <ccr@tnsp.org>
parents: 39
diff changeset
162
32
7fd15537b12d Commonize stylesheet code.
Matti Hamalainen <ccr@tnsp.org>
parents: 31
diff changeset
163 "#label_PersonName { font-size: %5pt; font-weight: bold; }"
7fd15537b12d Commonize stylesheet code.
Matti Hamalainen <ccr@tnsp.org>
parents: 31
diff changeset
164 "#label_BalanceValue { font-size: %4pt; font-weight: bold; }"
7fd15537b12d Commonize stylesheet code.
Matti Hamalainen <ccr@tnsp.org>
parents: 31
diff changeset
165 "#label_EUR { font-size: %4pt; font-weight: bold; }"
7fd15537b12d Commonize stylesheet code.
Matti Hamalainen <ccr@tnsp.org>
parents: 31
diff changeset
166 "#edit_Amount { font-size: %4pt; margin: 0.5em; padding: 0.5em; }"
145
9f3c0a99bcb1 Add display for total number of people on the database.
Matti Hamalainen <ccr@tnsp.org>
parents: 144
diff changeset
167 "#label_NumPeopleValue { color: green; }"
32
7fd15537b12d Commonize stylesheet code.
Matti Hamalainen <ccr@tnsp.org>
parents: 31
diff changeset
168 ).
135
45e17cdde93a Move application global settings to a struct.
Matti Hamalainen <ccr@tnsp.org>
parents: 134
diff changeset
169 arg(12 * settings.uiScale).
45e17cdde93a Move application global settings to a struct.
Matti Hamalainen <ccr@tnsp.org>
parents: 134
diff changeset
170 arg(14 * settings.uiScale).
45e17cdde93a Move application global settings to a struct.
Matti Hamalainen <ccr@tnsp.org>
parents: 134
diff changeset
171 arg(16 * settings.uiScale).
45e17cdde93a Move application global settings to a struct.
Matti Hamalainen <ccr@tnsp.org>
parents: 134
diff changeset
172 arg(18 * settings.uiScale).
45e17cdde93a Move application global settings to a struct.
Matti Hamalainen <ccr@tnsp.org>
parents: 134
diff changeset
173 arg(20 * settings.uiScale)
32
7fd15537b12d Commonize stylesheet code.
Matti Hamalainen <ccr@tnsp.org>
parents: 31
diff changeset
174 );
7fd15537b12d Commonize stylesheet code.
Matti Hamalainen <ccr@tnsp.org>
parents: 31
diff changeset
175 }
7fd15537b12d Commonize stylesheet code.
Matti Hamalainen <ccr@tnsp.org>
parents: 31
diff changeset
176
7fd15537b12d Commonize stylesheet code.
Matti Hamalainen <ccr@tnsp.org>
parents: 31
diff changeset
177
156
afadc1380fb1 Add few misc. comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 155
diff changeset
178 //
afadc1380fb1 Add few misc. comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 155
diff changeset
179 // Main program begins
afadc1380fb1 Add few misc. comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 155
diff changeset
180 //
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
181 int main(int argc, char *argv[])
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
182 {
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
183 QApplication sapp(argc, argv);
139
d5d1549e47fb Change how settings are restored and saved.
Matti Hamalainen <ccr@tnsp.org>
parents: 138
diff changeset
184 QSettings tmpst(APP_VENDOR, APP_ID);
d5d1549e47fb Change how settings are restored and saved.
Matti Hamalainen <ccr@tnsp.org>
parents: 138
diff changeset
185
228
37d5f4329449 Implement single running instance check to prevent problems with the SQLite database.
Matti Hamalainen <ccr@tnsp.org>
parents: 226
diff changeset
186 // Check for multiple instances
37d5f4329449 Implement single running instance check to prevent problems with the SQLite database.
Matti Hamalainen <ccr@tnsp.org>
parents: 226
diff changeset
187 RunGuard guard(QStringLiteral(APP_VENDOR) + QStringLiteral(APP_ID));
37d5f4329449 Implement single running instance check to prevent problems with the SQLite database.
Matti Hamalainen <ccr@tnsp.org>
parents: 226
diff changeset
188 if (!guard.tryToRun())
37d5f4329449 Implement single running instance check to prevent problems with the SQLite database.
Matti Hamalainen <ccr@tnsp.org>
parents: 226
diff changeset
189 {
37d5f4329449 Implement single running instance check to prevent problems with the SQLite database.
Matti Hamalainen <ccr@tnsp.org>
parents: 226
diff changeset
190 slErrorMsg(
37d5f4329449 Implement single running instance check to prevent problems with the SQLite database.
Matti Hamalainen <ccr@tnsp.org>
parents: 226
diff changeset
191 QObject::tr("Virhe!"),
37d5f4329449 Implement single running instance check to prevent problems with the SQLite database.
Matti Hamalainen <ccr@tnsp.org>
parents: 226
diff changeset
192 QObject::tr(
37d5f4329449 Implement single running instance check to prevent problems with the SQLite database.
Matti Hamalainen <ccr@tnsp.org>
parents: 226
diff changeset
193 "Syntilista-sovellus on jo käynnissä. Sulje tämä ikkuna ja "
37d5f4329449 Implement single running instance check to prevent problems with the SQLite database.
Matti Hamalainen <ccr@tnsp.org>
parents: 226
diff changeset
194 "etsi ajossa oleva Syntilista-sovellus tehtäväpalkista."
37d5f4329449 Implement single running instance check to prevent problems with the SQLite database.
Matti Hamalainen <ccr@tnsp.org>
parents: 226
diff changeset
195 )
37d5f4329449 Implement single running instance check to prevent problems with the SQLite database.
Matti Hamalainen <ccr@tnsp.org>
parents: 226
diff changeset
196 );
37d5f4329449 Implement single running instance check to prevent problems with the SQLite database.
Matti Hamalainen <ccr@tnsp.org>
parents: 226
diff changeset
197 return 1;
37d5f4329449 Implement single running instance check to prevent problems with the SQLite database.
Matti Hamalainen <ccr@tnsp.org>
parents: 226
diff changeset
198 }
37d5f4329449 Implement single running instance check to prevent problems with the SQLite database.
Matti Hamalainen <ccr@tnsp.org>
parents: 226
diff changeset
199
139
d5d1549e47fb Change how settings are restored and saved.
Matti Hamalainen <ccr@tnsp.org>
parents: 138
diff changeset
200 // Read configuration settings
d5d1549e47fb Change how settings are restored and saved.
Matti Hamalainen <ccr@tnsp.org>
parents: 138
diff changeset
201 settings.uiPos = tmpst.value("pos", QPoint(100, 100)).toPoint();
d5d1549e47fb Change how settings are restored and saved.
Matti Hamalainen <ccr@tnsp.org>
parents: 138
diff changeset
202 settings.uiSize = tmpst.value("size", QSize(1000, 600)).toSize();
d5d1549e47fb Change how settings are restored and saved.
Matti Hamalainen <ccr@tnsp.org>
parents: 138
diff changeset
203 settings.uiScale = tmpst.value("scale", 1.0f).toDouble();
151
753ae3569cb7 Actually save the backup mode setting to configuration, and add some error checks.
Matti Hamalainen <ccr@tnsp.org>
parents: 150
diff changeset
204 settings.dbBackupMode = tmpst.value("dbBackupMode", BACKUP_NONE).toInt();
142
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
205 settings.dbBackupURL = tmpst.value("dbBackupURL", QString()).toString();
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
206 settings.dbBackupSecret = tmpst.value("dbBackupSecret", QString()).toString();
190
76afbf6508c8 Add check for last successful database backup, and show a warning dialog at
Matti Hamalainen <ccr@tnsp.org>
parents: 187
diff changeset
207 settings.dbLastBackup = tmpst.value("dbLastBackup", QDateTime::fromSecsSinceEpoch(0)).toDateTime();
142
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
208
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
209 // Check commandline arguments for configuring backup settings
169
d9b9be9c4788 Make 'config' commandline option's backup location and secret settings
Matti Hamalainen <ccr@tnsp.org>
parents: 157
diff changeset
210 if (argc >= 2 && strcmp(argv[1], "config") == 0)
142
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
211 {
150
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
212 settings.dbBackupMode = QString(argv[2]).toInt();
169
d9b9be9c4788 Make 'config' commandline option's backup location and secret settings
Matti Hamalainen <ccr@tnsp.org>
parents: 157
diff changeset
213 if (argc >= 5)
d9b9be9c4788 Make 'config' commandline option's backup location and secret settings
Matti Hamalainen <ccr@tnsp.org>
parents: 157
diff changeset
214 {
d9b9be9c4788 Make 'config' commandline option's backup location and secret settings
Matti Hamalainen <ccr@tnsp.org>
parents: 157
diff changeset
215 settings.dbBackupURL = QString(argv[3]);
d9b9be9c4788 Make 'config' commandline option's backup location and secret settings
Matti Hamalainen <ccr@tnsp.org>
parents: 157
diff changeset
216 settings.dbBackupSecret = QString(argv[4]);
d9b9be9c4788 Make 'config' commandline option's backup location and secret settings
Matti Hamalainen <ccr@tnsp.org>
parents: 157
diff changeset
217 }
142
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
218 }
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
219
148
665421937ec8 Add another commandline option "reset" for reseting the UI position, size and scale to default values.
Matti Hamalainen <ccr@tnsp.org>
parents: 147
diff changeset
220 // Also possibility of resetting the UI settings
665421937ec8 Add another commandline option "reset" for reseting the UI position, size and scale to default values.
Matti Hamalainen <ccr@tnsp.org>
parents: 147
diff changeset
221 if (argc >= 2 && strcmp(argv[1], "reset") == 0)
665421937ec8 Add another commandline option "reset" for reseting the UI position, size and scale to default values.
Matti Hamalainen <ccr@tnsp.org>
parents: 147
diff changeset
222 {
665421937ec8 Add another commandline option "reset" for reseting the UI position, size and scale to default values.
Matti Hamalainen <ccr@tnsp.org>
parents: 147
diff changeset
223 settings.uiPos = QPoint(100, 100);
665421937ec8 Add another commandline option "reset" for reseting the UI position, size and scale to default values.
Matti Hamalainen <ccr@tnsp.org>
parents: 147
diff changeset
224 settings.uiSize = QSize(1000, 600);
665421937ec8 Add another commandline option "reset" for reseting the UI position, size and scale to default values.
Matti Hamalainen <ccr@tnsp.org>
parents: 147
diff changeset
225 settings.uiScale = 1.0f;
665421937ec8 Add another commandline option "reset" for reseting the UI position, size and scale to default values.
Matti Hamalainen <ccr@tnsp.org>
parents: 147
diff changeset
226 }
665421937ec8 Add another commandline option "reset" for reseting the UI position, size and scale to default values.
Matti Hamalainen <ccr@tnsp.org>
parents: 147
diff changeset
227
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
228 //
170
7edbfb2c0089 Add error message dialogs for cases when SQL tables could not be created,
Matti Hamalainen <ccr@tnsp.org>
parents: 169
diff changeset
229 // Create logfile and data directory if they do not already exist
129
f6685c2eb75d Store SQLite database and log file in application data directory instead of
Matti Hamalainen <ccr@tnsp.org>
parents: 128
diff changeset
230 //
135
45e17cdde93a Move application global settings to a struct.
Matti Hamalainen <ccr@tnsp.org>
parents: 134
diff changeset
231 settings.dataPath = QStandardPaths::writableLocation(QStandardPaths::AppDataLocation);
45e17cdde93a Move application global settings to a struct.
Matti Hamalainen <ccr@tnsp.org>
parents: 134
diff changeset
232 QDir path(settings.dataPath);
45e17cdde93a Move application global settings to a struct.
Matti Hamalainen <ccr@tnsp.org>
parents: 134
diff changeset
233 if (!path.exists(settings.dataPath))
45e17cdde93a Move application global settings to a struct.
Matti Hamalainen <ccr@tnsp.org>
parents: 134
diff changeset
234 path.mkpath(settings.dataPath);
129
f6685c2eb75d Store SQLite database and log file in application data directory instead of
Matti Hamalainen <ccr@tnsp.org>
parents: 128
diff changeset
235
f6685c2eb75d Store SQLite database and log file in application data directory instead of
Matti Hamalainen <ccr@tnsp.org>
parents: 128
diff changeset
236 //
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
237 // Initialize / open SQL database connection
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
238 //
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
239 QSqlDatabase db = QSqlDatabase::addDatabase("QSQLITE");
135
45e17cdde93a Move application global settings to a struct.
Matti Hamalainen <ccr@tnsp.org>
parents: 134
diff changeset
240 db.setDatabaseName(settings.dataPath + QDir::separator() + APP_SQLITE_FILE);
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
241
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
242 if (!db.open())
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
243 {
99
7b8755801111 Rename some utility functions.
Matti Hamalainen <ccr@tnsp.org>
parents: 98
diff changeset
244 slErrorMsg(
9
1f442052d332 Oops, 10L.
Matti Hamalainen <ccr@tnsp.org>
parents: 8
diff changeset
245 QObject::tr("Tietokantaa ei voitu avata"),
18
8282142605e0 Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 17
diff changeset
246 QObject::tr("Yhteyttä SQL-tietokantaan ei saatu.<br><br>Virhe: %1<br><br>").
8
466d89a2a629 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
247 arg(db.lastError().text())
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
248 );
8
466d89a2a629 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
249 return 1;
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
250 }
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
251
239
9626307f3eeb Streamline SQL table creation.
Matti Hamalainen <ccr@tnsp.org>
parents: 237
diff changeset
252 //
9626307f3eeb Streamline SQL table creation.
Matti Hamalainen <ccr@tnsp.org>
parents: 237
diff changeset
253 // Create tables
9626307f3eeb Streamline SQL table creation.
Matti Hamalainen <ccr@tnsp.org>
parents: 237
diff changeset
254 //
9626307f3eeb Streamline SQL table creation.
Matti Hamalainen <ccr@tnsp.org>
parents: 237
diff changeset
255 for (int ntable = 0; ntable < nslSQLSchemaData; ntable++)
44
8fb2230fe860 Do not attempt to create the SQL tables if they already exist.
Matti Hamalainen <ccr@tnsp.org>
parents: 42
diff changeset
256 {
239
9626307f3eeb Streamline SQL table creation.
Matti Hamalainen <ccr@tnsp.org>
parents: 237
diff changeset
257 const SLSQLSchemaDef &table = slSQLSchemaData[ntable];
9626307f3eeb Streamline SQL table creation.
Matti Hamalainen <ccr@tnsp.org>
parents: 237
diff changeset
258 if (!db.tables().contains(table.name))
9626307f3eeb Streamline SQL table creation.
Matti Hamalainen <ccr@tnsp.org>
parents: 237
diff changeset
259 {
9626307f3eeb Streamline SQL table creation.
Matti Hamalainen <ccr@tnsp.org>
parents: 237
diff changeset
260 QSqlQuery query;
9626307f3eeb Streamline SQL table creation.
Matti Hamalainen <ccr@tnsp.org>
parents: 237
diff changeset
261 QString sql =
9626307f3eeb Streamline SQL table creation.
Matti Hamalainen <ccr@tnsp.org>
parents: 237
diff changeset
262 QStringLiteral("CREATE TABLE %1 (%2)").
9626307f3eeb Streamline SQL table creation.
Matti Hamalainen <ccr@tnsp.org>
parents: 237
diff changeset
263 arg(table.name).
9626307f3eeb Streamline SQL table creation.
Matti Hamalainen <ccr@tnsp.org>
parents: 237
diff changeset
264 arg(table.schema);
9626307f3eeb Streamline SQL table creation.
Matti Hamalainen <ccr@tnsp.org>
parents: 237
diff changeset
265
9626307f3eeb Streamline SQL table creation.
Matti Hamalainen <ccr@tnsp.org>
parents: 237
diff changeset
266 query.exec(sql);
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
267
239
9626307f3eeb Streamline SQL table creation.
Matti Hamalainen <ccr@tnsp.org>
parents: 237
diff changeset
268 if (!slCheckAndReportSQLError(
9626307f3eeb Streamline SQL table creation.
Matti Hamalainen <ccr@tnsp.org>
parents: 237
diff changeset
269 QStringLiteral("CREATE TABLE %1").arg(table.name),
9626307f3eeb Streamline SQL table creation.
Matti Hamalainen <ccr@tnsp.org>
parents: 237
diff changeset
270 query.lastError(), true))
9626307f3eeb Streamline SQL table creation.
Matti Hamalainen <ccr@tnsp.org>
parents: 237
diff changeset
271 {
9626307f3eeb Streamline SQL table creation.
Matti Hamalainen <ccr@tnsp.org>
parents: 237
diff changeset
272 slErrorMsg(
9626307f3eeb Streamline SQL table creation.
Matti Hamalainen <ccr@tnsp.org>
parents: 237
diff changeset
273 QObject::tr("Tietokantataulua ei voitu luoda"),
9626307f3eeb Streamline SQL table creation.
Matti Hamalainen <ccr@tnsp.org>
parents: 237
diff changeset
274 QObject::tr("Virhe: %1<br><br>").
9626307f3eeb Streamline SQL table creation.
Matti Hamalainen <ccr@tnsp.org>
parents: 237
diff changeset
275 arg(db.lastError().text())
9626307f3eeb Streamline SQL table creation.
Matti Hamalainen <ccr@tnsp.org>
parents: 237
diff changeset
276 );
9626307f3eeb Streamline SQL table creation.
Matti Hamalainen <ccr@tnsp.org>
parents: 237
diff changeset
277 return 1;
9626307f3eeb Streamline SQL table creation.
Matti Hamalainen <ccr@tnsp.org>
parents: 237
diff changeset
278 }
9626307f3eeb Streamline SQL table creation.
Matti Hamalainen <ccr@tnsp.org>
parents: 237
diff changeset
279
9626307f3eeb Streamline SQL table creation.
Matti Hamalainen <ccr@tnsp.org>
parents: 237
diff changeset
280 query.finish();
170
7edbfb2c0089 Add error message dialogs for cases when SQL tables could not be created,
Matti Hamalainen <ccr@tnsp.org>
parents: 169
diff changeset
281 }
44
8fb2230fe860 Do not attempt to create the SQL tables if they already exist.
Matti Hamalainen <ccr@tnsp.org>
parents: 42
diff changeset
282 }
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
283
239
9626307f3eeb Streamline SQL table creation.
Matti Hamalainen <ccr@tnsp.org>
parents: 237
diff changeset
284 //
9626307f3eeb Streamline SQL table creation.
Matti Hamalainen <ccr@tnsp.org>
parents: 237
diff changeset
285 // Execute main app
9626307f3eeb Streamline SQL table creation.
Matti Hamalainen <ccr@tnsp.org>
parents: 237
diff changeset
286 //
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
287 SyntilistaMainWindow swin;
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
288 swin.show();
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
289 return sapp.exec();
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
290 }
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
291
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
292
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
293 //
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
294 // Main application window code
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
295 //
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
296 SyntilistaMainWindow::SyntilistaMainWindow(QWidget *parent) :
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
297 QMainWindow(parent),
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
298 ui(new Ui::SyntilistaMainWindow)
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
299 {
10
0b291bd77de5 Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 9
diff changeset
300 // Setup UI
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
301 ui->setupUi(this);
47
08c0d5116e82 More work.
Matti Hamalainen <ccr@tnsp.org>
parents: 46
diff changeset
302
139
d5d1549e47fb Change how settings are restored and saved.
Matti Hamalainen <ccr@tnsp.org>
parents: 138
diff changeset
303 // Restore window size and position
d5d1549e47fb Change how settings are restored and saved.
Matti Hamalainen <ccr@tnsp.org>
parents: 138
diff changeset
304 move(settings.uiPos);
d5d1549e47fb Change how settings are restored and saved.
Matti Hamalainen <ccr@tnsp.org>
parents: 138
diff changeset
305 resize(settings.uiSize);
47
08c0d5116e82 More work.
Matti Hamalainen <ccr@tnsp.org>
parents: 46
diff changeset
306
122
f0db8267911b Add comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 121
diff changeset
307 // Setup application icon and window title
203
5c3e3967bdf3 Use Qt resource aliases.
Matti Hamalainen <ccr@tnsp.org>
parents: 202
diff changeset
308 setWindowIcon(QIcon(QPixmap(":/icon")));
64
73fd86778014 Version number display etc. changes.
Matti Hamalainen <ccr@tnsp.org>
parents: 63
diff changeset
309 setWindowTitle(tr("%1 versio %3").
39
2cc7c89ab649 Version information, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 35
diff changeset
310 arg(tr(APP_NAME)).
204
fd115ca75ce8 Do not use tr() for APP_VERSION.
Matti Hamalainen <ccr@tnsp.org>
parents: 203
diff changeset
311 arg(APP_VERSION));
10
0b291bd77de5 Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 9
diff changeset
312
122
f0db8267911b Add comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 121
diff changeset
313 // Setup large logo in the main window
203
5c3e3967bdf3 Use Qt resource aliases.
Matti Hamalainen <ccr@tnsp.org>
parents: 202
diff changeset
314 QPixmap logoImage(":/logo");
60
d7a2a48ebe24 Add a separate "About" button, don't use the logo as one. Change logo widget
Matti Hamalainen <ccr@tnsp.org>
parents: 58
diff changeset
315 ui->button_LogoImage->setPixmap(logoImage);
d7a2a48ebe24 Add a separate "About" button, don't use the logo as one. Change logo widget
Matti Hamalainen <ccr@tnsp.org>
parents: 58
diff changeset
316 ui->button_LogoImage->setAlignment(Qt::AlignCenter);
10
0b291bd77de5 Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 9
diff changeset
317
132
dc9fe580da42 Rename setCommonStyleSheet() to slSetCommonStyleSheet().
Matti Hamalainen <ccr@tnsp.org>
parents: 130
diff changeset
318 slSetCommonStyleSheet(this);
22
c23241a3e160 UI polishing.
Matti Hamalainen <ccr@tnsp.org>
parents: 19
diff changeset
319
68
597bf29c5898 Use a better validator (regexp) for the amount input field.
Matti Hamalainen <ccr@tnsp.org>
parents: 65
diff changeset
320 // Validator for amount input
597bf29c5898 Use a better validator (regexp) for the amount input field.
Matti Hamalainen <ccr@tnsp.org>
parents: 65
diff changeset
321 QRegExp vregex("\\d{0,4}[,.]\\d{0,2}|\\d{0,4}");
597bf29c5898 Use a better validator (regexp) for the amount input field.
Matti Hamalainen <ccr@tnsp.org>
parents: 65
diff changeset
322 ui->edit_Amount->setValidator(new QRegExpValidator(vregex, this));
597bf29c5898 Use a better validator (regexp) for the amount input field.
Matti Hamalainen <ccr@tnsp.org>
parents: 65
diff changeset
323
10
0b291bd77de5 Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 9
diff changeset
324 // Setup person list filtering and sorting
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
325 peopleSortIndex = 1;
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
326 peopleSortOrder = Qt::AscendingOrder;
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
327 peopleFilter = "";
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
328
174
636a24c76232 Rename some classes to add a SL prefix to their names.
Matti Hamalainen <ccr@tnsp.org>
parents: 170
diff changeset
329 model_People = new SLPersonSQLModel();
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
330 updatePersonList();
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
331
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
332 ui->tableview_People->setModel(model_People);
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
333 ui->tableview_People->setColumnHidden(0, true);
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
334 ui->tableview_People->setItemDelegate(new QSqlRelationalDelegate(ui->tableview_People));
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
335 ui->tableview_People->verticalHeader()->setVisible(false);
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
336 ui->tableview_People->horizontalHeader()->setSectionResizeMode(QHeaderView::Stretch);
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
337 ui->tableview_People->setSortingEnabled(true);
25
a7e746642599 Fix initial sorting.
Matti Hamalainen <ccr@tnsp.org>
parents: 24
diff changeset
338 ui->tableview_People->sortByColumn(peopleSortIndex, peopleSortOrder);
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
339
10
0b291bd77de5 Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 9
diff changeset
340 connect(
0b291bd77de5 Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 9
diff changeset
341 ui->tableview_People->selectionModel(),
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
342 SIGNAL(currentChanged(const QModelIndex &, const QModelIndex &)),
10
0b291bd77de5 Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 9
diff changeset
343 this,
0b291bd77de5 Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 9
diff changeset
344 SLOT(selectedPersonChanged(const QModelIndex &, const QModelIndex &)));
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
345
10
0b291bd77de5 Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 9
diff changeset
346 connect(
0b291bd77de5 Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 9
diff changeset
347 ui->tableview_People->horizontalHeader(),
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
348 SIGNAL(sortIndicatorChanged(int, Qt::SortOrder)),
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
349 this,
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
350 SLOT(updateSortOrder(int, Qt::SortOrder)));
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
351
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
352 ui->tableview_People->horizontalHeader()->setSortIndicator(1, Qt::AscendingOrder);
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
353
174
636a24c76232 Rename some classes to add a SL prefix to their names.
Matti Hamalainen <ccr@tnsp.org>
parents: 170
diff changeset
354 model_Latest = new SLTransactionSQLModel();
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
355 ui->tableview_Latest->setModel(model_Latest);
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
356 ui->tableview_Latest->setItemDelegate(new QSqlRelationalDelegate(ui->tableview_Latest));
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
357 ui->tableview_Latest->verticalHeader()->setVisible(false);
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
358 ui->tableview_Latest->horizontalHeader()->setSectionResizeMode(QHeaderView::Stretch);
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
359
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
360 setActivePerson(-1);
17
d40345d63733 Implement some keyboard shortcuts.
Matti Hamalainen <ccr@tnsp.org>
parents: 16
diff changeset
361
d40345d63733 Implement some keyboard shortcuts.
Matti Hamalainen <ccr@tnsp.org>
parents: 16
diff changeset
362 // Keyboard shortcuts
63
fc633e7c83a9 Improve keyboard shortcuts.
Matti Hamalainen <ccr@tnsp.org>
parents: 60
diff changeset
363 new QShortcut(QKeySequence(Qt::CTRL + Qt::Key_Q), this, SLOT(on_button_Quit_clicked()));
178
2155e05bf61c Use QShortcuts() instead of setShortcut().
Matti Hamalainen <ccr@tnsp.org>
parents: 174
diff changeset
364 new QShortcut(QKeySequence(Qt::Key_F10), this, SLOT(on_button_Quit_clicked()));
63
fc633e7c83a9 Improve keyboard shortcuts.
Matti Hamalainen <ccr@tnsp.org>
parents: 60
diff changeset
365
178
2155e05bf61c Use QShortcuts() instead of setShortcut().
Matti Hamalainen <ccr@tnsp.org>
parents: 174
diff changeset
366 new QShortcut(QKeySequence(Qt::Key_F5), this, SLOT(on_button_AddPerson_clicked()));
2155e05bf61c Use QShortcuts() instead of setShortcut().
Matti Hamalainen <ccr@tnsp.org>
parents: 174
diff changeset
367 new QShortcut(QKeySequence(Qt::Key_F6), this, SLOT(on_button_EditPerson_clicked()));
2155e05bf61c Use QShortcuts() instead of setShortcut().
Matti Hamalainen <ccr@tnsp.org>
parents: 174
diff changeset
368 new QShortcut(QKeySequence(Qt::Key_F8), this, SLOT(on_button_DeletePerson_clicked()));
2155e05bf61c Use QShortcuts() instead of setShortcut().
Matti Hamalainen <ccr@tnsp.org>
parents: 174
diff changeset
369 new QShortcut(QKeySequence(Qt::Key_F1), this, SLOT(on_button_About_clicked()));
2155e05bf61c Use QShortcuts() instead of setShortcut().
Matti Hamalainen <ccr@tnsp.org>
parents: 174
diff changeset
370 new QShortcut(QKeySequence(Qt::Key_Escape), this, SLOT(on_button_ClearFilter_clicked()));
63
fc633e7c83a9 Improve keyboard shortcuts.
Matti Hamalainen <ccr@tnsp.org>
parents: 60
diff changeset
371
46
372c1be58996 Improve shortcuts functionality a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 44
diff changeset
372 new QShortcut(QKeySequence(QKeySequence::ZoomIn), this, SLOT(changeUIZoomIn()));
372c1be58996 Improve shortcuts functionality a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 44
diff changeset
373 new QShortcut(QKeySequence(QKeySequence::ZoomOut), this, SLOT(changeUIZoomOut()));
191
79da81b9e184 Move a line cosmetic.
Matti Hamalainen <ccr@tnsp.org>
parents: 190
diff changeset
374 new QShortcut(QKeySequence(Qt::CTRL + Qt::Key_0), this, SLOT(changeUIZoomReset()));
46
372c1be58996 Improve shortcuts functionality a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 44
diff changeset
375 new QShortcut(QKeySequence(Qt::CTRL + Qt::KeypadModifier + Qt::Key_Plus), this, SLOT(changeUIZoomIn()));
372c1be58996 Improve shortcuts functionality a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 44
diff changeset
376 new QShortcut(QKeySequence(Qt::CTRL + Qt::KeypadModifier + Qt::Key_Minus), this, SLOT(changeUIZoomOut()));
372c1be58996 Improve shortcuts functionality a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 44
diff changeset
377 new QShortcut(QKeySequence(Qt::CTRL + Qt::KeypadModifier + Qt::Key_0), this, SLOT(changeUIZoomReset()));
65
f9a1d33ed4a8 Add more keyboard controls.
Matti Hamalainen <ccr@tnsp.org>
parents: 64
diff changeset
378
f9a1d33ed4a8 Add more keyboard controls.
Matti Hamalainen <ccr@tnsp.org>
parents: 64
diff changeset
379 new QShortcut(QKeySequence(Qt::Key_PageUp), this, SLOT(selectRowPrev()));
f9a1d33ed4a8 Add more keyboard controls.
Matti Hamalainen <ccr@tnsp.org>
parents: 64
diff changeset
380 new QShortcut(QKeySequence(Qt::Key_PageDown), this, SLOT(selectRowNext()));
f9a1d33ed4a8 Add more keyboard controls.
Matti Hamalainen <ccr@tnsp.org>
parents: 64
diff changeset
381
f9a1d33ed4a8 Add more keyboard controls.
Matti Hamalainen <ccr@tnsp.org>
parents: 64
diff changeset
382 new QShortcut(QKeySequence(Qt::CTRL + Qt::Key_Return), this, SLOT(focusDebtEdit()));
114
a5c8741b8662 Initial prototype support for printing list of users + print preview dialog.
Matti Hamalainen <ccr@tnsp.org>
parents: 113
diff changeset
383
a5c8741b8662 Initial prototype support for printing list of users + print preview dialog.
Matti Hamalainen <ccr@tnsp.org>
parents: 113
diff changeset
384 new QShortcut(QKeySequence(Qt::CTRL + Qt::Key_P), this, SLOT(on_button_Print_clicked()));
222
5406b8664f00 Add keyboard shortcut ctrl+t for opening the transactions list.
Matti Hamalainen <ccr@tnsp.org>
parents: 218
diff changeset
385 new QShortcut(QKeySequence(Qt::CTRL + Qt::Key_T), this, SLOT(on_button_ViewTransactions_clicked()));
190
76afbf6508c8 Add check for last successful database backup, and show a warning dialog at
Matti Hamalainen <ccr@tnsp.org>
parents: 187
diff changeset
386
194
ff25f4855afc Better comment.
Matti Hamalainen <ccr@tnsp.org>
parents: 191
diff changeset
387 // Check for latest successful backup time
190
76afbf6508c8 Add check for last successful database backup, and show a warning dialog at
Matti Hamalainen <ccr@tnsp.org>
parents: 187
diff changeset
388 qint64 threshold = 7;
76afbf6508c8 Add check for last successful database backup, and show a warning dialog at
Matti Hamalainen <ccr@tnsp.org>
parents: 187
diff changeset
389 qint64 delta = settings.dbLastBackup.msecsTo(QDateTime::currentDateTimeUtc());
76afbf6508c8 Add check for last successful database backup, and show a warning dialog at
Matti Hamalainen <ccr@tnsp.org>
parents: 187
diff changeset
390 if (settings.dbBackupMode != BACKUP_NONE &&
76afbf6508c8 Add check for last successful database backup, and show a warning dialog at
Matti Hamalainen <ccr@tnsp.org>
parents: 187
diff changeset
391 QDateTime::fromSecsSinceEpoch(0).msecsTo(settings.dbLastBackup) > 0 &&
76afbf6508c8 Add check for last successful database backup, and show a warning dialog at
Matti Hamalainen <ccr@tnsp.org>
parents: 187
diff changeset
392 delta > (1000 * 60 * 60 * 24) * threshold)
76afbf6508c8 Add check for last successful database backup, and show a warning dialog at
Matti Hamalainen <ccr@tnsp.org>
parents: 187
diff changeset
393 {
76afbf6508c8 Add check for last successful database backup, and show a warning dialog at
Matti Hamalainen <ccr@tnsp.org>
parents: 187
diff changeset
394 slErrorMsg(
195
930191210416 Improve the notice/warning message about last backup having been too long ago.
Matti Hamalainen <ccr@tnsp.org>
parents: 194
diff changeset
395 tr("<h1>Huomio!</h1>"),
930191210416 Improve the notice/warning message about last backup having been too long ago.
Matti Hamalainen <ccr@tnsp.org>
parents: 194
diff changeset
396 tr(
930191210416 Improve the notice/warning message about last backup having been too long ago.
Matti Hamalainen <ccr@tnsp.org>
parents: 194
diff changeset
397 "<p>Edellisestä onnistuneesta tietokannan varmuuskopioinnista on kulunut <b>%1</b> päivää.</p>"
930191210416 Improve the notice/warning message about last backup having been too long ago.
Matti Hamalainen <ccr@tnsp.org>
parents: 194
diff changeset
398 "<p>On suositeltavaa että kytket laitteen Kampuksen kiinteään verkkoon, että "
930191210416 Improve the notice/warning message about last backup having been too long ago.
Matti Hamalainen <ccr@tnsp.org>
parents: 194
diff changeset
399 "varmuuskopiointi voidaan suorittaa. Varmuuskopiointia ei voida tehdä langattoman verkon kautta.</p>"
930191210416 Improve the notice/warning message about last backup having been too long ago.
Matti Hamalainen <ccr@tnsp.org>
parents: 194
diff changeset
400 ).
190
76afbf6508c8 Add check for last successful database backup, and show a warning dialog at
Matti Hamalainen <ccr@tnsp.org>
parents: 187
diff changeset
401 arg(delta / (1000 * 60 * 60 * 24)));
76afbf6508c8 Add check for last successful database backup, and show a warning dialog at
Matti Hamalainen <ccr@tnsp.org>
parents: 187
diff changeset
402 }
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
403 }
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
404
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
405
98
3baea5b17dc9 Add some comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 97
diff changeset
406 //
3baea5b17dc9 Add some comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 97
diff changeset
407 // Application main window destructor
3baea5b17dc9 Add some comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 97
diff changeset
408 //
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
409 SyntilistaMainWindow::~SyntilistaMainWindow()
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
410 {
139
d5d1549e47fb Change how settings are restored and saved.
Matti Hamalainen <ccr@tnsp.org>
parents: 138
diff changeset
411 QSettings tmpst(APP_VENDOR, APP_ID);
d5d1549e47fb Change how settings are restored and saved.
Matti Hamalainen <ccr@tnsp.org>
parents: 138
diff changeset
412
d5d1549e47fb Change how settings are restored and saved.
Matti Hamalainen <ccr@tnsp.org>
parents: 138
diff changeset
413 // Save window size and position
d5d1549e47fb Change how settings are restored and saved.
Matti Hamalainen <ccr@tnsp.org>
parents: 138
diff changeset
414 tmpst.setValue("pos", pos());
d5d1549e47fb Change how settings are restored and saved.
Matti Hamalainen <ccr@tnsp.org>
parents: 138
diff changeset
415 tmpst.setValue("size", size());
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
416
139
d5d1549e47fb Change how settings are restored and saved.
Matti Hamalainen <ccr@tnsp.org>
parents: 138
diff changeset
417 // Other settings
d5d1549e47fb Change how settings are restored and saved.
Matti Hamalainen <ccr@tnsp.org>
parents: 138
diff changeset
418 tmpst.setValue("scale", settings.uiScale);
151
753ae3569cb7 Actually save the backup mode setting to configuration, and add some error checks.
Matti Hamalainen <ccr@tnsp.org>
parents: 150
diff changeset
419 tmpst.setValue("dbBackupMode", settings.dbBackupMode);
139
d5d1549e47fb Change how settings are restored and saved.
Matti Hamalainen <ccr@tnsp.org>
parents: 138
diff changeset
420 tmpst.setValue("dbBackupURL", settings.dbBackupURL);
d5d1549e47fb Change how settings are restored and saved.
Matti Hamalainen <ccr@tnsp.org>
parents: 138
diff changeset
421 tmpst.setValue("dbBackupSecret", settings.dbBackupSecret);
d5d1549e47fb Change how settings are restored and saved.
Matti Hamalainen <ccr@tnsp.org>
parents: 138
diff changeset
422
d5d1549e47fb Change how settings are restored and saved.
Matti Hamalainen <ccr@tnsp.org>
parents: 138
diff changeset
423 // Free resources
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
424 delete ui;
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
425 delete model_People;
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
426 delete model_Latest;
134
478ce4c94f6b Commit and close() the database at exit, just in case.
Matti Hamalainen <ccr@tnsp.org>
parents: 133
diff changeset
427
478ce4c94f6b Commit and close() the database at exit, just in case.
Matti Hamalainen <ccr@tnsp.org>
parents: 133
diff changeset
428 // Commit and close database
478ce4c94f6b Commit and close() the database at exit, just in case.
Matti Hamalainen <ccr@tnsp.org>
parents: 133
diff changeset
429 QSqlDatabase::database().commit();
478ce4c94f6b Commit and close() the database at exit, just in case.
Matti Hamalainen <ccr@tnsp.org>
parents: 133
diff changeset
430 QSqlDatabase::database().close();
142
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
431
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
432 // Back up the database
150
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
433 if (settings.dbBackupMode != BACKUP_NONE)
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
434 backupDatabase();
151
753ae3569cb7 Actually save the backup mode setting to configuration, and add some error checks.
Matti Hamalainen <ccr@tnsp.org>
parents: 150
diff changeset
435 else
201
ea0247fab5a4 Cosmetics/indentation.
Matti Hamalainen <ccr@tnsp.org>
parents: 200
diff changeset
436 {
ea0247fab5a4 Cosmetics/indentation.
Matti Hamalainen <ccr@tnsp.org>
parents: 200
diff changeset
437 slLog("INFO",
ea0247fab5a4 Cosmetics/indentation.
Matti Hamalainen <ccr@tnsp.org>
parents: 200
diff changeset
438 QStringLiteral("Database backup mode is NONE, not performing backup."));
ea0247fab5a4 Cosmetics/indentation.
Matti Hamalainen <ccr@tnsp.org>
parents: 200
diff changeset
439 }
142
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
440 }
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
441
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
442
190
76afbf6508c8 Add check for last successful database backup, and show a warning dialog at
Matti Hamalainen <ccr@tnsp.org>
parents: 187
diff changeset
443 void SyntilistaMainWindow::backupSuccess()
76afbf6508c8 Add check for last successful database backup, and show a warning dialog at
Matti Hamalainen <ccr@tnsp.org>
parents: 187
diff changeset
444 {
76afbf6508c8 Add check for last successful database backup, and show a warning dialog at
Matti Hamalainen <ccr@tnsp.org>
parents: 187
diff changeset
445 QSettings tmpst(APP_VENDOR, APP_ID);
202
4e25db3327a7 Use QStringLiteral() some more.
Matti Hamalainen <ccr@tnsp.org>
parents: 201
diff changeset
446 slLog("INFO", QStringLiteral("Backup successful."));
190
76afbf6508c8 Add check for last successful database backup, and show a warning dialog at
Matti Hamalainen <ccr@tnsp.org>
parents: 187
diff changeset
447
76afbf6508c8 Add check for last successful database backup, and show a warning dialog at
Matti Hamalainen <ccr@tnsp.org>
parents: 187
diff changeset
448 tmpst.setValue("dbLastBackup", QDateTime::currentDateTimeUtc());
76afbf6508c8 Add check for last successful database backup, and show a warning dialog at
Matti Hamalainen <ccr@tnsp.org>
parents: 187
diff changeset
449 }
76afbf6508c8 Add check for last successful database backup, and show a warning dialog at
Matti Hamalainen <ccr@tnsp.org>
parents: 187
diff changeset
450
76afbf6508c8 Add check for last successful database backup, and show a warning dialog at
Matti Hamalainen <ccr@tnsp.org>
parents: 187
diff changeset
451
142
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
452 void SyntilistaMainWindow::backupDatabase()
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
453 {
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
454 QString dbFilename = settings.dataPath + QDir::separator() + APP_SQLITE_FILE;
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
455 QString backupFilename = APP_SQLITE_FILE;
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
456 backupDialog = NULL;
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
457
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
458 if (settings.dbBackupURL == QString() || settings.dbBackupURL == "")
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
459 {
201
ea0247fab5a4 Cosmetics/indentation.
Matti Hamalainen <ccr@tnsp.org>
parents: 200
diff changeset
460 slLog("ERROR",
ea0247fab5a4 Cosmetics/indentation.
Matti Hamalainen <ccr@tnsp.org>
parents: 200
diff changeset
461 QStringLiteral("Database backup URL not set in configuration."));
142
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
462 return;
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
463 }
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
464
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
465 if (settings.dbBackupSecret == QString() || settings.dbBackupSecret == "")
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
466 {
201
ea0247fab5a4 Cosmetics/indentation.
Matti Hamalainen <ccr@tnsp.org>
parents: 200
diff changeset
467 slLog("ERROR",
ea0247fab5a4 Cosmetics/indentation.
Matti Hamalainen <ccr@tnsp.org>
parents: 200
diff changeset
468 QStringLiteral("Database backup secret key not set in configuration."));
142
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
469 return;
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
470 }
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
471
150
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
472 if (settings.dbBackupMode == BACKUP_HTTP)
142
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
473 {
150
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
474 #ifdef USE_QTHTTP
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
475 // Check for network access
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
476 httpBackupReply = NULL;
142
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
477
150
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
478 QNetworkAccessManager *manager = new QNetworkAccessManager();
154
ef4edd798a45 Disable network availability check for now, it seems to return false values in some cases.
Matti Hamalainen <ccr@tnsp.org>
parents: 153
diff changeset
479 /*
155
6187c36de250 Add a comment.
Matti Hamalainen <ccr@tnsp.org>
parents: 154
diff changeset
480 // NOTE XXX! For some reason the manager returns not accessible under Wine
6187c36de250 Add a comment.
Matti Hamalainen <ccr@tnsp.org>
parents: 154
diff changeset
481 // and possibly some version(s) of Windows .. not sure why, thus commented
6187c36de250 Add a comment.
Matti Hamalainen <ccr@tnsp.org>
parents: 154
diff changeset
482 // out for now.
150
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
483 if (manager->networkAccessible() != QNetworkAccessManager::Accessible)
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
484 {
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
485 slLog("ERROR", QStringLiteral("Network not available, cannot backup the database."));
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
486 return;
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
487 }
154
ef4edd798a45 Disable network availability check for now, it seems to return false values in some cases.
Matti Hamalainen <ccr@tnsp.org>
parents: 153
diff changeset
488 */
150
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
489
199
597a75429818 Stray whitespace.
Matti Hamalainen <ccr@tnsp.org>
parents: 197
diff changeset
490 // Attempt to open the database file
150
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
491 QFile *file = new QFile(dbFilename);
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
492 if (!file->open(QIODevice::ReadOnly))
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
493 {
201
ea0247fab5a4 Cosmetics/indentation.
Matti Hamalainen <ccr@tnsp.org>
parents: 200
diff changeset
494 slLog("ERROR",
ea0247fab5a4 Cosmetics/indentation.
Matti Hamalainen <ccr@tnsp.org>
parents: 200
diff changeset
495 QStringLiteral("Failed to open database file '%1' for backup.").
ea0247fab5a4 Cosmetics/indentation.
Matti Hamalainen <ccr@tnsp.org>
parents: 200
diff changeset
496 arg(dbFilename));
150
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
497 return;
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
498 }
142
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
499
150
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
500 // Okay, we seem to be "go" ..
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
501 slLog("INFO",
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
502 QStringLiteral("Attempting database backup from '%1' to '%2'.").
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
503 arg(dbFilename).arg(settings.dbBackupURL));
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
504
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
505 // Create the HTTP POST request
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
506 QHttpMultiPart *multiPart = new QHttpMultiPart(QHttpMultiPart::FormDataType);
142
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
507
150
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
508 // The "secret" key as POST parameter
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
509 QHttpPart postPart;
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
510 postPart.setHeader(QNetworkRequest::ContentDispositionHeader,
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
511 QVariant("form-data; name=\"secret\";"));
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
512 postPart.setBody(QByteArray(settings.dbBackupSecret.toUtf8()));
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
513
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
514 // Actual data as binary octet-stream
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
515 QHttpPart dataPart;
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
516 dataPart.setHeader(QNetworkRequest::ContentTypeHeader,
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
517 QVariant("binary/octet-stream"));
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
518
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
519 dataPart.setHeader(QNetworkRequest::ContentDispositionHeader,
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
520 QVariant("form-data; name=\"file\"; filename=\""+ backupFilename +"\""));
142
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
521
150
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
522 dataPart.setBodyDevice(file);
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
523 file->setParent(multiPart); // we cannot delete the QFile object now, so delete it with the multiPart
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
524
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
525 multiPart->append(postPart);
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
526 multiPart->append(dataPart);
142
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
527
150
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
528 // Attempt to POST the whole thing
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
529 QUrl url(settings.dbBackupURL);
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
530 QNetworkRequest request(url);
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
531 httpBackupReply = manager->post(request, multiPart);
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
532 multiPart->setParent(httpBackupReply);
142
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
533
153
794a2387e92a Add some comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 152
diff changeset
534 // Connect signals
150
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
535 connect(
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
536 httpBackupReply,
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
537 SIGNAL(finished()),
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
538 this,
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
539 SLOT(httpBackupFinished()));
142
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
540
150
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
541 connect(
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
542 httpBackupReply,
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
543 SIGNAL(uploadProgress(qint64, qint64)),
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
544 this,
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
545 SLOT(httpBackupProgress(qint64, qint64)));
142
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
546
150
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
547 connect(
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
548 httpBackupReply,
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
549 SIGNAL(error(QNetworkReply::NetworkError)),
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
550 this,
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
551 SLOT(httpBackupError(QNetworkReply::NetworkError)));
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
552 #else
153
794a2387e92a Add some comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 152
diff changeset
553 // Disabled
150
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
554 slLog("ERROR", QStringLiteral("Backup method is HTTP/HTTPS, but support is not compiled in!"));
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
555 return;
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
556 #endif
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
557 }
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
558 else
151
753ae3569cb7 Actually save the backup mode setting to configuration, and add some error checks.
Matti Hamalainen <ccr@tnsp.org>
parents: 150
diff changeset
559 {
753ae3569cb7 Actually save the backup mode setting to configuration, and add some error checks.
Matti Hamalainen <ccr@tnsp.org>
parents: 150
diff changeset
560 slLog("ERROR", QStringLiteral("Database backup mode is INVALID! Not performing backup!"));
753ae3569cb7 Actually save the backup mode setting to configuration, and add some error checks.
Matti Hamalainen <ccr@tnsp.org>
parents: 150
diff changeset
561 return;
753ae3569cb7 Actually save the backup mode setting to configuration, and add some error checks.
Matti Hamalainen <ccr@tnsp.org>
parents: 150
diff changeset
562 }
144
75a4faa219a9 Improve backup process error handling.
Matti Hamalainen <ccr@tnsp.org>
parents: 142
diff changeset
563
142
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
564 // Create progress dialog
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
565 backupDialog = new QProgressDialog(
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
566 tr("Varmuuskopioidaan tietokantaa ..."),
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
567 QString(),
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
568 0,
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
569 100,
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
570 this);
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
571
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
572 backupDialog->setAttribute(Qt::WA_DeleteOnClose);
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
573 backupDialog->setAutoClose(false);
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
574 backupDialog->setWindowModality(Qt::ApplicationModal);
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
575 backupDialog->exec();
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
576 }
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
577
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
578
150
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
579 #ifdef USE_QTHTTP
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
580 void SyntilistaMainWindow::httpBackupProgress(qint64 bytesSent, qint64 bytesTotal)
142
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
581 {
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
582 if (bytesTotal > 0)
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
583 {
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
584 slLog("INFO",
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
585 QStringLiteral("Backup sent %1 / %2 bytes.").
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
586 arg(bytesSent).
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
587 arg(bytesTotal));
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
588
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
589 backupDialog->setValue((bytesSent * 100) / bytesTotal);
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
590 }
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
591 }
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
592
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
593
150
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
594 void SyntilistaMainWindow::httpBackupError(QNetworkReply::NetworkError code)
142
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
595 {
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
596 slLog("ERROR",
147
c722cb0b6662 Remove useless linefeed in an error log message.
Matti Hamalainen <ccr@tnsp.org>
parents: 145
diff changeset
597 QStringLiteral("Backup failed with network error %1.").
142
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
598 arg(code)
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
599 );
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
600 }
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
601
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
602
150
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
603 void SyntilistaMainWindow::httpBackupFinished()
142
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
604 {
150
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
605 if (httpBackupReply)
142
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
606 {
150
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
607 QVariant status = httpBackupReply->attribute(QNetworkRequest::HttpStatusCodeAttribute);
144
75a4faa219a9 Improve backup process error handling.
Matti Hamalainen <ccr@tnsp.org>
parents: 142
diff changeset
608 if (status.isValid())
75a4faa219a9 Improve backup process error handling.
Matti Hamalainen <ccr@tnsp.org>
parents: 142
diff changeset
609 {
75a4faa219a9 Improve backup process error handling.
Matti Hamalainen <ccr@tnsp.org>
parents: 142
diff changeset
610 int code = status.toInt();
75a4faa219a9 Improve backup process error handling.
Matti Hamalainen <ccr@tnsp.org>
parents: 142
diff changeset
611 switch (code)
75a4faa219a9 Improve backup process error handling.
Matti Hamalainen <ccr@tnsp.org>
parents: 142
diff changeset
612 {
75a4faa219a9 Improve backup process error handling.
Matti Hamalainen <ccr@tnsp.org>
parents: 142
diff changeset
613 case 200:
190
76afbf6508c8 Add check for last successful database backup, and show a warning dialog at
Matti Hamalainen <ccr@tnsp.org>
parents: 187
diff changeset
614 backupSuccess();
144
75a4faa219a9 Improve backup process error handling.
Matti Hamalainen <ccr@tnsp.org>
parents: 142
diff changeset
615 break;
75a4faa219a9 Improve backup process error handling.
Matti Hamalainen <ccr@tnsp.org>
parents: 142
diff changeset
616
75a4faa219a9 Improve backup process error handling.
Matti Hamalainen <ccr@tnsp.org>
parents: 142
diff changeset
617 case 403:
202
4e25db3327a7 Use QStringLiteral() some more.
Matti Hamalainen <ccr@tnsp.org>
parents: 201
diff changeset
618 slLog("ERROR",
4e25db3327a7 Use QStringLiteral() some more.
Matti Hamalainen <ccr@tnsp.org>
parents: 201
diff changeset
619 QStringLiteral("Backup server authentication failed. Wrong secret or other invalid settings."));
144
75a4faa219a9 Improve backup process error handling.
Matti Hamalainen <ccr@tnsp.org>
parents: 142
diff changeset
620 break;
75a4faa219a9 Improve backup process error handling.
Matti Hamalainen <ccr@tnsp.org>
parents: 142
diff changeset
621
75a4faa219a9 Improve backup process error handling.
Matti Hamalainen <ccr@tnsp.org>
parents: 142
diff changeset
622 default:
75a4faa219a9 Improve backup process error handling.
Matti Hamalainen <ccr@tnsp.org>
parents: 142
diff changeset
623 slLog("ERROR",
75a4faa219a9 Improve backup process error handling.
Matti Hamalainen <ccr@tnsp.org>
parents: 142
diff changeset
624 QStringLiteral("Backup server responded with error:\n")+
150
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
625 QString::fromUtf8(httpBackupReply->readAll()));
144
75a4faa219a9 Improve backup process error handling.
Matti Hamalainen <ccr@tnsp.org>
parents: 142
diff changeset
626 break;
75a4faa219a9 Improve backup process error handling.
Matti Hamalainen <ccr@tnsp.org>
parents: 142
diff changeset
627 }
75a4faa219a9 Improve backup process error handling.
Matti Hamalainen <ccr@tnsp.org>
parents: 142
diff changeset
628 }
142
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
629 }
144
75a4faa219a9 Improve backup process error handling.
Matti Hamalainen <ccr@tnsp.org>
parents: 142
diff changeset
630 else
75a4faa219a9 Improve backup process error handling.
Matti Hamalainen <ccr@tnsp.org>
parents: 142
diff changeset
631 {
202
4e25db3327a7 Use QStringLiteral() some more.
Matti Hamalainen <ccr@tnsp.org>
parents: 201
diff changeset
632 slLog("WARNING",
4e25db3327a7 Use QStringLiteral() some more.
Matti Hamalainen <ccr@tnsp.org>
parents: 201
diff changeset
633 QStringLiteral("Backup finished prematurely (failed)."));
144
75a4faa219a9 Improve backup process error handling.
Matti Hamalainen <ccr@tnsp.org>
parents: 142
diff changeset
634 }
75a4faa219a9 Improve backup process error handling.
Matti Hamalainen <ccr@tnsp.org>
parents: 142
diff changeset
635
142
36c9cb759326 Implement simple SQLite database backup at program exit using Qt HTTP/HTTPS
Matti Hamalainen <ccr@tnsp.org>
parents: 140
diff changeset
636 backupDialog->close();
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
637 }
150
2a8c97753381 Make the backup stuff compile-time optional.
Matti Hamalainen <ccr@tnsp.org>
parents: 148
diff changeset
638 #endif
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
639
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
640
98
3baea5b17dc9 Add some comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 97
diff changeset
641 //
3baea5b17dc9 Add some comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 97
diff changeset
642 // Helper function for showing messages in the statusbar/line
3baea5b17dc9 Add some comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 97
diff changeset
643 //
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
644 void SyntilistaMainWindow::statusMsg(const QString &msg)
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
645 {
133
df03ab8b6413 Improve logging.
Matti Hamalainen <ccr@tnsp.org>
parents: 132
diff changeset
646 slLog("STATUS", msg);
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
647 ui->statusbar->showMessage(msg);
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
648 }
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
649
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
650
122
f0db8267911b Add comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 121
diff changeset
651 //
98
3baea5b17dc9 Add some comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 97
diff changeset
652 // Window scale / zoom changing
3baea5b17dc9 Add some comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 97
diff changeset
653 //
46
372c1be58996 Improve shortcuts functionality a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 44
diff changeset
654 void SyntilistaMainWindow::changeUIZoomIn()
34
87f098892804 Make the UI scale with undocumented hotkeys.
Matti Hamalainen <ccr@tnsp.org>
parents: 32
diff changeset
655 {
135
45e17cdde93a Move application global settings to a struct.
Matti Hamalainen <ccr@tnsp.org>
parents: 134
diff changeset
656 settings.uiScale += 0.1f;
132
dc9fe580da42 Rename setCommonStyleSheet() to slSetCommonStyleSheet().
Matti Hamalainen <ccr@tnsp.org>
parents: 130
diff changeset
657 slSetCommonStyleSheet(this);
34
87f098892804 Make the UI scale with undocumented hotkeys.
Matti Hamalainen <ccr@tnsp.org>
parents: 32
diff changeset
658 }
87f098892804 Make the UI scale with undocumented hotkeys.
Matti Hamalainen <ccr@tnsp.org>
parents: 32
diff changeset
659
87f098892804 Make the UI scale with undocumented hotkeys.
Matti Hamalainen <ccr@tnsp.org>
parents: 32
diff changeset
660
46
372c1be58996 Improve shortcuts functionality a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 44
diff changeset
661 void SyntilistaMainWindow::changeUIZoomOut()
34
87f098892804 Make the UI scale with undocumented hotkeys.
Matti Hamalainen <ccr@tnsp.org>
parents: 32
diff changeset
662 {
135
45e17cdde93a Move application global settings to a struct.
Matti Hamalainen <ccr@tnsp.org>
parents: 134
diff changeset
663 settings.uiScale -= 0.1f;
132
dc9fe580da42 Rename setCommonStyleSheet() to slSetCommonStyleSheet().
Matti Hamalainen <ccr@tnsp.org>
parents: 130
diff changeset
664 slSetCommonStyleSheet(this);
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
665 }
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
666
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
667
46
372c1be58996 Improve shortcuts functionality a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 44
diff changeset
668 void SyntilistaMainWindow::changeUIZoomReset()
372c1be58996 Improve shortcuts functionality a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 44
diff changeset
669 {
135
45e17cdde93a Move application global settings to a struct.
Matti Hamalainen <ccr@tnsp.org>
parents: 134
diff changeset
670 settings.uiScale = 1.0f;
132
dc9fe580da42 Rename setCommonStyleSheet() to slSetCommonStyleSheet().
Matti Hamalainen <ccr@tnsp.org>
parents: 130
diff changeset
671 slSetCommonStyleSheet(this);
46
372c1be58996 Improve shortcuts functionality a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 44
diff changeset
672 }
372c1be58996 Improve shortcuts functionality a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 44
diff changeset
673
372c1be58996 Improve shortcuts functionality a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 44
diff changeset
674
98
3baea5b17dc9 Add some comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 97
diff changeset
675 //
3baea5b17dc9 Add some comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 97
diff changeset
676 // Slot for changed selection of person entry
3baea5b17dc9 Add some comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 97
diff changeset
677 //
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
678 void SyntilistaMainWindow::selectedPersonChanged(const QModelIndex &curr, const QModelIndex &prev)
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
679 {
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
680 (void) prev;
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
681 int row = curr.row();
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
682 if (row >= 0)
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
683 {
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
684 const QAbstractItemModel *model = curr.model();
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
685 setActivePerson(model->data(model->index(row, 0)).toInt());
89
8ec1eb6b00b6 Automatically set focus to debt value edit field after selecting a person.
Matti Hamalainen <ccr@tnsp.org>
parents: 84
diff changeset
686 focusDebtEdit();
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
687 }
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
688 else
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
689 setActivePerson(-1);
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
690 }
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
691
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
692
122
f0db8267911b Add comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 121
diff changeset
693 //
f0db8267911b Add comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 121
diff changeset
694 // Set currently active person to given SQL id
f0db8267911b Add comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 121
diff changeset
695 //
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
696 void SyntilistaMainWindow::setActivePerson(qint64 id)
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
697 {
5
a5a3baee3043 More cleanups and fixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 4
diff changeset
698 currPerson.id = id;
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
699
1
db8f47446713 Disable the edit person push button when no person is selected.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
700 ui->button_EditPerson->setEnabled(id >= 0);
db8f47446713 Disable the edit person push button when no person is selected.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
701
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
702 if (id >= 0)
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
703 {
102
064138b6d34e Rename getPersonInfo*() to slGetPersonInfo*().
Matti Hamalainen <ccr@tnsp.org>
parents: 101
diff changeset
704 if (!slGetPersonInfo(id, currPerson))
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
705 {
5
a5a3baee3043 More cleanups and fixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 4
diff changeset
706 statusMsg(tr("Virhe! Ei henkilöä ID:llä #%1").arg(id));
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
707 }
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
708 else
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
709 {
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
710 ui->personGB->setEnabled(true);
5
a5a3baee3043 More cleanups and fixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 4
diff changeset
711 ui->label_PersonName->setText(currPerson.lastName +", "+ currPerson.firstName);
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
712
99
7b8755801111 Rename some utility functions.
Matti Hamalainen <ccr@tnsp.org>
parents: 98
diff changeset
713 ui->label_BalanceValue->setText(slMoneyValueToStr(currPerson.balance));
5
a5a3baee3043 More cleanups and fixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 4
diff changeset
714 ui->label_BalanceValue->setStyleSheet(currPerson.balance < 0 ? "color: red;" : "color: green;");
a5a3baee3043 More cleanups and fixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 4
diff changeset
715 ui->button_PayFullDebt->setEnabled(currPerson.balance < 0);
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
716
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
717 QSqlQuery query;
202
4e25db3327a7 Use QStringLiteral() some more.
Matti Hamalainen <ccr@tnsp.org>
parents: 201
diff changeset
718 query.prepare(QStringLiteral("SELECT id,value,added FROM transactions WHERE person=? ORDER BY added DESC LIMIT 5"));
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
719 query.addBindValue(id);
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
720 query.exec();
99
7b8755801111 Rename some utility functions.
Matti Hamalainen <ccr@tnsp.org>
parents: 98
diff changeset
721 slCheckAndReportSQLError("SELECT transactions for tableview_Latest", query.lastError());
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
722
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
723 model_Latest->setQuery(query);
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
724
5
a5a3baee3043 More cleanups and fixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 4
diff changeset
725 model_Latest->setHeaderData(0, Qt::Horizontal, tr("ID"));
a5a3baee3043 More cleanups and fixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 4
diff changeset
726 model_Latest->setHeaderData(1, Qt::Horizontal, tr("Summa"));
a5a3baee3043 More cleanups and fixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 4
diff changeset
727 model_Latest->setHeaderData(2, Qt::Horizontal, tr("Aika"));
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
728
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
729 ui->tableview_Latest->setModel(model_Latest);
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
730 ui->tableview_Latest->setColumnHidden(0, true);
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
731 ui->tableview_Latest->verticalHeader()->setVisible(false);
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
732 ui->tableview_Latest->horizontalHeader()->setSectionResizeMode(QHeaderView::Stretch);
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
733
132
dc9fe580da42 Rename setCommonStyleSheet() to slSetCommonStyleSheet().
Matti Hamalainen <ccr@tnsp.org>
parents: 130
diff changeset
734 slSetCommonStyleSheet(this);
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
735 return; // Ugly
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
736 }
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
737 }
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
738
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
739 // In case of id < 0 or errors ..
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
740 ui->personGB->setEnabled(false);
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
741 ui->edit_Amount->clear();
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
742 ui->label_BalanceValue->setText("--");
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
743 ui->label_BalanceValue->setStyleSheet(NULL);
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
744 ui->label_PersonName->setText("???");
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
745 ui->tableview_Latest->setModel(NULL);
132
dc9fe580da42 Rename setCommonStyleSheet() to slSetCommonStyleSheet().
Matti Hamalainen <ccr@tnsp.org>
parents: 130
diff changeset
746 slSetCommonStyleSheet(this);
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
747 }
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
748
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
749
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
750 //
98
3baea5b17dc9 Add some comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 97
diff changeset
751 // Slot for changing person list sort order
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
752 //
98
3baea5b17dc9 Add some comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 97
diff changeset
753 void SyntilistaMainWindow::updateSortOrder(int index, Qt::SortOrder order)
3baea5b17dc9 Add some comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 97
diff changeset
754 {
3baea5b17dc9 Add some comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 97
diff changeset
755 peopleSortIndex = index;
3baea5b17dc9 Add some comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 97
diff changeset
756 peopleSortOrder = order;
3baea5b17dc9 Add some comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 97
diff changeset
757 updatePersonList();
3baea5b17dc9 Add some comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 97
diff changeset
758 }
3baea5b17dc9 Add some comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 97
diff changeset
759
3baea5b17dc9 Add some comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 97
diff changeset
760
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
761 void SyntilistaMainWindow::on_button_Quit_clicked()
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
762 {
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
763 close();
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
764 }
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
765
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
766
60
d7a2a48ebe24 Add a separate "About" button, don't use the logo as one. Change logo widget
Matti Hamalainen <ccr@tnsp.org>
parents: 58
diff changeset
767 void SyntilistaMainWindow::on_button_About_clicked()
47
08c0d5116e82 More work.
Matti Hamalainen <ccr@tnsp.org>
parents: 46
diff changeset
768 {
90
efab68769c75 Implement new separate About dialog/help window.
Matti Hamalainen <ccr@tnsp.org>
parents: 89
diff changeset
769 new AboutWindow(this);
74
cc8fbf9a61b2 Add a help dialog.
Matti Hamalainen <ccr@tnsp.org>
parents: 71
diff changeset
770 }
cc8fbf9a61b2 Add a help dialog.
Matti Hamalainen <ccr@tnsp.org>
parents: 71
diff changeset
771
cc8fbf9a61b2 Add a help dialog.
Matti Hamalainen <ccr@tnsp.org>
parents: 71
diff changeset
772
218
c3f47d489097 Implement global transactions viewer dialog.
Matti Hamalainen <ccr@tnsp.org>
parents: 217
diff changeset
773 void SyntilistaMainWindow::on_button_ViewTransactions_clicked()
c3f47d489097 Implement global transactions viewer dialog.
Matti Hamalainen <ccr@tnsp.org>
parents: 217
diff changeset
774 {
c3f47d489097 Implement global transactions viewer dialog.
Matti Hamalainen <ccr@tnsp.org>
parents: 217
diff changeset
775 new ViewTransactions(this);
c3f47d489097 Implement global transactions viewer dialog.
Matti Hamalainen <ccr@tnsp.org>
parents: 217
diff changeset
776 }
c3f47d489097 Implement global transactions viewer dialog.
Matti Hamalainen <ccr@tnsp.org>
parents: 217
diff changeset
777
c3f47d489097 Implement global transactions viewer dialog.
Matti Hamalainen <ccr@tnsp.org>
parents: 217
diff changeset
778
6
0315a3b9f560 Implement person and transaction history deletion.
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
779 void SyntilistaMainWindow::on_button_DeletePerson_clicked()
0315a3b9f560 Implement person and transaction history deletion.
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
780 {
0315a3b9f560 Implement person and transaction history deletion.
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
781 if (currPerson.id <= 0)
0315a3b9f560 Implement person and transaction history deletion.
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
782 {
0315a3b9f560 Implement person and transaction history deletion.
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
783 statusMsg(tr("Ei valittua henkilöä!"));
0315a3b9f560 Implement person and transaction history deletion.
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
784 return;
0315a3b9f560 Implement person and transaction history deletion.
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
785 }
19
2ee61a6b78f8 Remove trailing whitespace.
Matti Hamalainen <ccr@tnsp.org>
parents: 18
diff changeset
786
196
416868143486 Add some comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 195
diff changeset
787 // Internal sanity check
174
636a24c76232 Rename some classes to add a SL prefix to their names.
Matti Hamalainen <ccr@tnsp.org>
parents: 170
diff changeset
788 SLPersonInfo info;
102
064138b6d34e Rename getPersonInfo*() to slGetPersonInfo*().
Matti Hamalainen <ccr@tnsp.org>
parents: 101
diff changeset
789 if (!slGetPersonInfo(currPerson.id, info))
6
0315a3b9f560 Implement person and transaction history deletion.
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
790 {
0315a3b9f560 Implement person and transaction history deletion.
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
791 statusMsg(tr("Virhe! Ei henkilöä ID:llä #%1").arg(currPerson.id));
0315a3b9f560 Implement person and transaction history deletion.
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
792 return;
0315a3b9f560 Implement person and transaction history deletion.
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
793 }
0315a3b9f560 Implement person and transaction history deletion.
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
794
196
416868143486 Add some comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 195
diff changeset
795 // Ask for confirmation
18
8282142605e0 Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 17
diff changeset
796 QMessageBox dlg;
132
dc9fe580da42 Rename setCommonStyleSheet() to slSetCommonStyleSheet().
Matti Hamalainen <ccr@tnsp.org>
parents: 130
diff changeset
797 slSetCommonStyleSheet(&dlg);
18
8282142605e0 Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 17
diff changeset
798 dlg.setText(tr("Varmistus"));
201
ea0247fab5a4 Cosmetics/indentation.
Matti Hamalainen <ccr@tnsp.org>
parents: 200
diff changeset
799 dlg.setInformativeText(tr(
ea0247fab5a4 Cosmetics/indentation.
Matti Hamalainen <ccr@tnsp.org>
parents: 200
diff changeset
800 "<h3>Haluatko varmasti poistaa henkilön:</h3>"
18
8282142605e0 Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 17
diff changeset
801 "<br>"
8282142605e0 Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 17
diff changeset
802 "<b>'%1, %2'</b> <i>(ID #%3)</i>?<br>"
8282142605e0 Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 17
diff changeset
803 "<br>"
186
cc3d7745e798 Cosmetic adjustments to the delete person confirmation dialog.
Matti Hamalainen <ccr@tnsp.org>
parents: 180
diff changeset
804 "<span style='color:#f00;'>Tämä poistaa sekä henkilön ja hänen koko tapahtumahistoriansa PYSYVÄSTI!</span>"
cc3d7745e798 Cosmetic adjustments to the delete person confirmation dialog.
Matti Hamalainen <ccr@tnsp.org>
parents: 180
diff changeset
805 "<br>").
18
8282142605e0 Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 17
diff changeset
806 arg(info.lastName).arg(info.firstName).arg(info.id));
6
0315a3b9f560 Implement person and transaction history deletion.
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
807
18
8282142605e0 Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 17
diff changeset
808 dlg.setTextFormat(Qt::RichText);
8282142605e0 Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 17
diff changeset
809 dlg.setIcon(QMessageBox::Question);
8282142605e0 Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 17
diff changeset
810 dlg.setStandardButtons(QMessageBox::Yes | QMessageBox::No);
71
2d12c12a7b89 More UI improvements.
Matti Hamalainen <ccr@tnsp.org>
parents: 68
diff changeset
811 dlg.setButtonText(QMessageBox::Yes, tr("Kyllä"));
2d12c12a7b89 More UI improvements.
Matti Hamalainen <ccr@tnsp.org>
parents: 68
diff changeset
812 dlg.setButtonText(QMessageBox::No, tr("Ei / peruuta"));
18
8282142605e0 Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 17
diff changeset
813 dlg.setDefaultButton(QMessageBox::No);
8282142605e0 Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 17
diff changeset
814
8282142605e0 Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 17
diff changeset
815 if (dlg.exec() == QMessageBox::Yes)
6
0315a3b9f560 Implement person and transaction history deletion.
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
816 {
13
ca5ce74c0563 Refactoring.
Matti Hamalainen <ccr@tnsp.org>
parents: 12
diff changeset
817 int rv = model_People->deletePerson(info.id);
14
Matti Hamalainen <ccr@tnsp.org>
parents: 13
diff changeset
818 updatePersonList();
24
0e0948aec438 De-select active person when deleting.
Matti Hamalainen <ccr@tnsp.org>
parents: 23
diff changeset
819 setActivePerson(-1);
6
0315a3b9f560 Implement person and transaction history deletion.
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
820 if (rv != 0)
0315a3b9f560 Implement person and transaction history deletion.
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
821 {
99
7b8755801111 Rename some utility functions.
Matti Hamalainen <ccr@tnsp.org>
parents: 98
diff changeset
822 slErrorMsg(tr("SQL-tietokantavirhe"),
6
0315a3b9f560 Implement person and transaction history deletion.
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
823 tr("Henkilön tietoja poistettaessa tapahtui virhe #%1.").
0315a3b9f560 Implement person and transaction history deletion.
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
824 arg(rv));
0315a3b9f560 Implement person and transaction history deletion.
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
825 }
0315a3b9f560 Implement person and transaction history deletion.
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
826 else
0315a3b9f560 Implement person and transaction history deletion.
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
827 {
0315a3b9f560 Implement person and transaction history deletion.
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
828 statusMsg(tr("Henkilö '%1 %2' (ID #%3) poistettu.").
0315a3b9f560 Implement person and transaction history deletion.
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
829 arg(info.firstName).arg(info.lastName).
0315a3b9f560 Implement person and transaction history deletion.
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
830 arg(info.id));
0315a3b9f560 Implement person and transaction history deletion.
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
831 }
0315a3b9f560 Implement person and transaction history deletion.
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
832 }
0315a3b9f560 Implement person and transaction history deletion.
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
833 }
0315a3b9f560 Implement person and transaction history deletion.
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
834
0315a3b9f560 Implement person and transaction history deletion.
Matti Hamalainen <ccr@tnsp.org>
parents: 5
diff changeset
835
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
836 void SyntilistaMainWindow::on_button_AddPerson_clicked()
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
837 {
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
838 EditPerson *person = new EditPerson(this);
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
839 person->setPerson(-1);
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
840 }
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
841
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
842
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
843 void SyntilistaMainWindow::on_button_EditPerson_clicked()
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
844 {
5
a5a3baee3043 More cleanups and fixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 4
diff changeset
845 if (currPerson.id >= 0)
1
db8f47446713 Disable the edit person push button when no person is selected.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
846 {
db8f47446713 Disable the edit person push button when no person is selected.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
847 EditPerson *person = new EditPerson(this);
5
a5a3baee3043 More cleanups and fixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 4
diff changeset
848 person->setPerson(currPerson.id);
1
db8f47446713 Disable the edit person push button when no person is selected.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
849 }
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
850 }
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
851
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
852
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
853 void SyntilistaMainWindow::on_tableview_People_doubleClicked(const QModelIndex &curr)
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
854 {
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
855 int row = curr.row();
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
856 if (row >= 0)
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
857 {
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
858 const QAbstractItemModel *model = curr.model();
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
859 setActivePerson(model->data(model->index(row, 0)).toInt());
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
860
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
861 EditPerson *person = new EditPerson(this);
5
a5a3baee3043 More cleanups and fixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 4
diff changeset
862 person->setPerson(currPerson.id);
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
863 }
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
864 else
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
865 setActivePerson(-1);
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
866 }
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
867
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
868
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
869 void SyntilistaMainWindow::on_button_ClearFilter_clicked()
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
870 {
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
871 ui->edit_PersonFilter->clear();
65
f9a1d33ed4a8 Add more keyboard controls.
Matti Hamalainen <ccr@tnsp.org>
parents: 64
diff changeset
872 ui->edit_PersonFilter->setFocus(Qt::ShortcutFocusReason);
f9a1d33ed4a8 Add more keyboard controls.
Matti Hamalainen <ccr@tnsp.org>
parents: 64
diff changeset
873 }
f9a1d33ed4a8 Add more keyboard controls.
Matti Hamalainen <ccr@tnsp.org>
parents: 64
diff changeset
874
f9a1d33ed4a8 Add more keyboard controls.
Matti Hamalainen <ccr@tnsp.org>
parents: 64
diff changeset
875
f9a1d33ed4a8 Add more keyboard controls.
Matti Hamalainen <ccr@tnsp.org>
parents: 64
diff changeset
876 void SyntilistaMainWindow::focusDebtEdit()
f9a1d33ed4a8 Add more keyboard controls.
Matti Hamalainen <ccr@tnsp.org>
parents: 64
diff changeset
877 {
f9a1d33ed4a8 Add more keyboard controls.
Matti Hamalainen <ccr@tnsp.org>
parents: 64
diff changeset
878 if (currPerson.id >= 0)
f9a1d33ed4a8 Add more keyboard controls.
Matti Hamalainen <ccr@tnsp.org>
parents: 64
diff changeset
879 ui->edit_Amount->setFocus(Qt::ShortcutFocusReason);
f9a1d33ed4a8 Add more keyboard controls.
Matti Hamalainen <ccr@tnsp.org>
parents: 64
diff changeset
880 }
f9a1d33ed4a8 Add more keyboard controls.
Matti Hamalainen <ccr@tnsp.org>
parents: 64
diff changeset
881
f9a1d33ed4a8 Add more keyboard controls.
Matti Hamalainen <ccr@tnsp.org>
parents: 64
diff changeset
882
211
6585cac42b75 Rename selectRowDelta() to clearer void changeSelectedRow().
Matti Hamalainen <ccr@tnsp.org>
parents: 210
diff changeset
883 void SyntilistaMainWindow::changeSelectedRow(const int delta)
65
f9a1d33ed4a8 Add more keyboard controls.
Matti Hamalainen <ccr@tnsp.org>
parents: 64
diff changeset
884 {
f9a1d33ed4a8 Add more keyboard controls.
Matti Hamalainen <ccr@tnsp.org>
parents: 64
diff changeset
885 QItemSelectionModel *sel = ui->tableview_People->selectionModel();
209
6f404158ce8c Get rid of tiny bit of code duplication.
Matti Hamalainen <ccr@tnsp.org>
parents: 207
diff changeset
886 int prow = sel->currentIndex().row();
6f404158ce8c Get rid of tiny bit of code duplication.
Matti Hamalainen <ccr@tnsp.org>
parents: 207
diff changeset
887 int nrow = prow + delta;
6f404158ce8c Get rid of tiny bit of code duplication.
Matti Hamalainen <ccr@tnsp.org>
parents: 207
diff changeset
888 if (nrow < 0)
6f404158ce8c Get rid of tiny bit of code duplication.
Matti Hamalainen <ccr@tnsp.org>
parents: 207
diff changeset
889 nrow = 0;
6f404158ce8c Get rid of tiny bit of code duplication.
Matti Hamalainen <ccr@tnsp.org>
parents: 207
diff changeset
890 else
6f404158ce8c Get rid of tiny bit of code duplication.
Matti Hamalainen <ccr@tnsp.org>
parents: 207
diff changeset
891 if (nrow >= model_People->rowCount())
6f404158ce8c Get rid of tiny bit of code duplication.
Matti Hamalainen <ccr@tnsp.org>
parents: 207
diff changeset
892 nrow = model_People->rowCount() - 1;
65
f9a1d33ed4a8 Add more keyboard controls.
Matti Hamalainen <ccr@tnsp.org>
parents: 64
diff changeset
893
209
6f404158ce8c Get rid of tiny bit of code duplication.
Matti Hamalainen <ccr@tnsp.org>
parents: 207
diff changeset
894 if (nrow != prow)
6f404158ce8c Get rid of tiny bit of code duplication.
Matti Hamalainen <ccr@tnsp.org>
parents: 207
diff changeset
895 {
212
70317bb39f05 Add comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 211
diff changeset
896 // If row changed, set current index
209
6f404158ce8c Get rid of tiny bit of code duplication.
Matti Hamalainen <ccr@tnsp.org>
parents: 207
diff changeset
897 sel->setCurrentIndex(model_People->index(nrow, 0),
6f404158ce8c Get rid of tiny bit of code duplication.
Matti Hamalainen <ccr@tnsp.org>
parents: 207
diff changeset
898 QItemSelectionModel::ClearAndSelect|QItemSelectionModel::Rows);
210
02aae61e807e Scroll along with the currently selected person in the person list,
Matti Hamalainen <ccr@tnsp.org>
parents: 209
diff changeset
899
212
70317bb39f05 Add comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 211
diff changeset
900 // The column must be a visible one (not set "hidden", as the ID field is)
70317bb39f05 Add comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 211
diff changeset
901 // thus we use column index of 1 here for the QModelIndex()
210
02aae61e807e Scroll along with the currently selected person in the person list,
Matti Hamalainen <ccr@tnsp.org>
parents: 209
diff changeset
902 ui->tableview_People->scrollTo(model_People->index(nrow, 1));
209
6f404158ce8c Get rid of tiny bit of code duplication.
Matti Hamalainen <ccr@tnsp.org>
parents: 207
diff changeset
903 }
6f404158ce8c Get rid of tiny bit of code duplication.
Matti Hamalainen <ccr@tnsp.org>
parents: 207
diff changeset
904 }
6f404158ce8c Get rid of tiny bit of code duplication.
Matti Hamalainen <ccr@tnsp.org>
parents: 207
diff changeset
905
6f404158ce8c Get rid of tiny bit of code duplication.
Matti Hamalainen <ccr@tnsp.org>
parents: 207
diff changeset
906
6f404158ce8c Get rid of tiny bit of code duplication.
Matti Hamalainen <ccr@tnsp.org>
parents: 207
diff changeset
907 void SyntilistaMainWindow::selectRowPrev()
6f404158ce8c Get rid of tiny bit of code duplication.
Matti Hamalainen <ccr@tnsp.org>
parents: 207
diff changeset
908 {
211
6585cac42b75 Rename selectRowDelta() to clearer void changeSelectedRow().
Matti Hamalainen <ccr@tnsp.org>
parents: 210
diff changeset
909 changeSelectedRow(-1);
65
f9a1d33ed4a8 Add more keyboard controls.
Matti Hamalainen <ccr@tnsp.org>
parents: 64
diff changeset
910 }
f9a1d33ed4a8 Add more keyboard controls.
Matti Hamalainen <ccr@tnsp.org>
parents: 64
diff changeset
911
f9a1d33ed4a8 Add more keyboard controls.
Matti Hamalainen <ccr@tnsp.org>
parents: 64
diff changeset
912
f9a1d33ed4a8 Add more keyboard controls.
Matti Hamalainen <ccr@tnsp.org>
parents: 64
diff changeset
913 void SyntilistaMainWindow::selectRowNext()
f9a1d33ed4a8 Add more keyboard controls.
Matti Hamalainen <ccr@tnsp.org>
parents: 64
diff changeset
914 {
211
6585cac42b75 Rename selectRowDelta() to clearer void changeSelectedRow().
Matti Hamalainen <ccr@tnsp.org>
parents: 210
diff changeset
915 changeSelectedRow(1);
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
916 }
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
917
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
918
4
f2404a9987dc Cleaning up the code.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
919 //
f2404a9987dc Cleaning up the code.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
920 // Update visible person list/query based on the current
f2404a9987dc Cleaning up the code.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
921 // filtering and sorting settings.
f2404a9987dc Cleaning up the code.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
922 //
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
923 void SyntilistaMainWindow::updatePersonList()
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
924 {
130
10c6bd84eb32 Add "total balance" information in the UI, which displays the total sum balance of all people.
Matti Hamalainen <ccr@tnsp.org>
parents: 129
diff changeset
925 static const QString queryBase =
202
4e25db3327a7 Use QStringLiteral() some more.
Matti Hamalainen <ccr@tnsp.org>
parents: 201
diff changeset
926 QStringLiteral("SELECT id,last_name,first_name,"
107
8ceaafde9b52 Use total() instead of sum() in the SQL queries for better accuracy.
Matti Hamalainen <ccr@tnsp.org>
parents: 104
diff changeset
927 "(SELECT TOTAL(value) FROM transactions WHERE transactions.person=people.id) AS balance,"
202
4e25db3327a7 Use QStringLiteral() some more.
Matti Hamalainen <ccr@tnsp.org>
parents: 201
diff changeset
928 "updated FROM people");
16
8765397e45f4 Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 15
diff changeset
929
4
f2404a9987dc Cleaning up the code.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
930 QString queryOrderDir, queryOrderBy;
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
931
4
f2404a9987dc Cleaning up the code.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
932 // Sort order
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
933 if (peopleSortOrder == Qt::AscendingOrder)
4
f2404a9987dc Cleaning up the code.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
934 queryOrderDir = QStringLiteral("ASC");
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
935 else
4
f2404a9987dc Cleaning up the code.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
936 queryOrderDir = QStringLiteral("DESC");
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
937
4
f2404a9987dc Cleaning up the code.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
938 // Sort by which column
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
939 switch (peopleSortIndex)
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
940 {
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
941 case 1:
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
942 case 2:
196
416868143486 Add some comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 195
diff changeset
943 queryOrderBy =
416868143486 Add some comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 195
diff changeset
944 QStringLiteral(" ORDER BY last_name ") + queryOrderDir +
416868143486 Add some comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 195
diff changeset
945 QStringLiteral(",first_name ") + queryOrderDir;
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
946 break;
19
2ee61a6b78f8 Remove trailing whitespace.
Matti Hamalainen <ccr@tnsp.org>
parents: 18
diff changeset
947
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
948 case 3:
196
416868143486 Add some comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 195
diff changeset
949 queryOrderBy =
416868143486 Add some comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 195
diff changeset
950 QStringLiteral(" ORDER BY balance ") + queryOrderDir;
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
951 break;
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
952
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
953 case 4:
196
416868143486 Add some comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 195
diff changeset
954 queryOrderBy =
416868143486 Add some comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 195
diff changeset
955 QStringLiteral(" ORDER BY updated ") + queryOrderDir;
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
956 break;
19
2ee61a6b78f8 Remove trailing whitespace.
Matti Hamalainen <ccr@tnsp.org>
parents: 18
diff changeset
957
4
f2404a9987dc Cleaning up the code.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
958 default:
f2404a9987dc Cleaning up the code.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
959 queryOrderBy = "";
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
960 }
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
961
4
f2404a9987dc Cleaning up the code.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
962 // Are we filtering or not?
126
b51cee929416 Add program debug logging.
Matti Hamalainen <ccr@tnsp.org>
parents: 125
diff changeset
963 QSqlQuery query;
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
964 if (peopleFilter != "")
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
965 {
4
f2404a9987dc Cleaning up the code.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
966 // Filter by name(s)
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
967 QString tmp = "%"+ peopleFilter +"%";
202
4e25db3327a7 Use QStringLiteral() some more.
Matti Hamalainen <ccr@tnsp.org>
parents: 201
diff changeset
968 query.prepare(queryBase + QStringLiteral(" WHERE first_name LIKE ? OR last_name LIKE ?") + queryOrderBy);
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
969
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
970 query.addBindValue(tmp);
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
971 query.addBindValue(tmp);
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
972 }
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
973 else
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
974 {
4
f2404a9987dc Cleaning up the code.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
975 // No filter
16
8765397e45f4 Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 15
diff changeset
976 query.prepare(queryBase + queryOrderBy);
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
977 }
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
978
4
f2404a9987dc Cleaning up the code.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
979 // Execute the query and update model
99
7b8755801111 Rename some utility functions.
Matti Hamalainen <ccr@tnsp.org>
parents: 98
diff changeset
980 slCheckAndReportSQLError("updatePersonList() before exec", query.lastError());
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
981 query.exec();
99
7b8755801111 Rename some utility functions.
Matti Hamalainen <ccr@tnsp.org>
parents: 98
diff changeset
982 slCheckAndReportSQLError("updatePersonList() after exec", query.lastError());
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
983
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
984 model_People->setQuery(query);
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
985
5
a5a3baee3043 More cleanups and fixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 4
diff changeset
986 model_People->setHeaderData(0, Qt::Horizontal, tr("ID"));
a5a3baee3043 More cleanups and fixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 4
diff changeset
987 model_People->setHeaderData(1, Qt::Horizontal, tr("Sukunimi"));
a5a3baee3043 More cleanups and fixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 4
diff changeset
988 model_People->setHeaderData(2, Qt::Horizontal, tr("Etunimi"));
a5a3baee3043 More cleanups and fixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 4
diff changeset
989 model_People->setHeaderData(3, Qt::Horizontal, tr("Tase"));
a5a3baee3043 More cleanups and fixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 4
diff changeset
990 model_People->setHeaderData(4, Qt::Horizontal, tr("Muutettu"));
130
10c6bd84eb32 Add "total balance" information in the UI, which displays the total sum balance of all people.
Matti Hamalainen <ccr@tnsp.org>
parents: 129
diff changeset
991
145
9f3c0a99bcb1 Add display for total number of people on the database.
Matti Hamalainen <ccr@tnsp.org>
parents: 144
diff changeset
992 updateMiscValues();
130
10c6bd84eb32 Add "total balance" information in the UI, which displays the total sum balance of all people.
Matti Hamalainen <ccr@tnsp.org>
parents: 129
diff changeset
993 }
10c6bd84eb32 Add "total balance" information in the UI, which displays the total sum balance of all people.
Matti Hamalainen <ccr@tnsp.org>
parents: 129
diff changeset
994
10c6bd84eb32 Add "total balance" information in the UI, which displays the total sum balance of all people.
Matti Hamalainen <ccr@tnsp.org>
parents: 129
diff changeset
995
10c6bd84eb32 Add "total balance" information in the UI, which displays the total sum balance of all people.
Matti Hamalainen <ccr@tnsp.org>
parents: 129
diff changeset
996 //
145
9f3c0a99bcb1 Add display for total number of people on the database.
Matti Hamalainen <ccr@tnsp.org>
parents: 144
diff changeset
997 // Update some values in the UI
130
10c6bd84eb32 Add "total balance" information in the UI, which displays the total sum balance of all people.
Matti Hamalainen <ccr@tnsp.org>
parents: 129
diff changeset
998 //
145
9f3c0a99bcb1 Add display for total number of people on the database.
Matti Hamalainen <ccr@tnsp.org>
parents: 144
diff changeset
999 void SyntilistaMainWindow::updateMiscValues()
130
10c6bd84eb32 Add "total balance" information in the UI, which displays the total sum balance of all people.
Matti Hamalainen <ccr@tnsp.org>
parents: 129
diff changeset
1000 {
10c6bd84eb32 Add "total balance" information in the UI, which displays the total sum balance of all people.
Matti Hamalainen <ccr@tnsp.org>
parents: 129
diff changeset
1001 // Update total balance value
10c6bd84eb32 Add "total balance" information in the UI, which displays the total sum balance of all people.
Matti Hamalainen <ccr@tnsp.org>
parents: 129
diff changeset
1002 QSqlQuery query;
10c6bd84eb32 Add "total balance" information in the UI, which displays the total sum balance of all people.
Matti Hamalainen <ccr@tnsp.org>
parents: 129
diff changeset
1003 query.prepare(QStringLiteral("SELECT TOTAL(value) FROM transactions AS balance"));
10c6bd84eb32 Add "total balance" information in the UI, which displays the total sum balance of all people.
Matti Hamalainen <ccr@tnsp.org>
parents: 129
diff changeset
1004 query.exec();
145
9f3c0a99bcb1 Add display for total number of people on the database.
Matti Hamalainen <ccr@tnsp.org>
parents: 144
diff changeset
1005 if (slCheckAndReportSQLError("updateMiscValues() get total balance query", query.lastError()) &&
9f3c0a99bcb1 Add display for total number of people on the database.
Matti Hamalainen <ccr@tnsp.org>
parents: 144
diff changeset
1006 query.next())
130
10c6bd84eb32 Add "total balance" information in the UI, which displays the total sum balance of all people.
Matti Hamalainen <ccr@tnsp.org>
parents: 129
diff changeset
1007 {
174
636a24c76232 Rename some classes to add a SL prefix to their names.
Matti Hamalainen <ccr@tnsp.org>
parents: 170
diff changeset
1008 totalBalance = query.value(0).toDouble();;
636a24c76232 Rename some classes to add a SL prefix to their names.
Matti Hamalainen <ccr@tnsp.org>
parents: 170
diff changeset
1009 ui->label_TotalBalanceValue->setText(slMoneyValueToStr(totalBalance));
636a24c76232 Rename some classes to add a SL prefix to their names.
Matti Hamalainen <ccr@tnsp.org>
parents: 170
diff changeset
1010 ui->label_TotalBalanceValue->setStyleSheet(totalBalance < 0 ? "color: red;" : "color: green;");
145
9f3c0a99bcb1 Add display for total number of people on the database.
Matti Hamalainen <ccr@tnsp.org>
parents: 144
diff changeset
1011 }
130
10c6bd84eb32 Add "total balance" information in the UI, which displays the total sum balance of all people.
Matti Hamalainen <ccr@tnsp.org>
parents: 129
diff changeset
1012
145
9f3c0a99bcb1 Add display for total number of people on the database.
Matti Hamalainen <ccr@tnsp.org>
parents: 144
diff changeset
1013 // Update number of people
9f3c0a99bcb1 Add display for total number of people on the database.
Matti Hamalainen <ccr@tnsp.org>
parents: 144
diff changeset
1014 query.finish();
9f3c0a99bcb1 Add display for total number of people on the database.
Matti Hamalainen <ccr@tnsp.org>
parents: 144
diff changeset
1015 query.prepare(QStringLiteral("SELECT COUNT(*) FROM people"));
9f3c0a99bcb1 Add display for total number of people on the database.
Matti Hamalainen <ccr@tnsp.org>
parents: 144
diff changeset
1016 query.exec();
9f3c0a99bcb1 Add display for total number of people on the database.
Matti Hamalainen <ccr@tnsp.org>
parents: 144
diff changeset
1017 if (slCheckAndReportSQLError("updateMiscValues() get people count", query.lastError()) &&
9f3c0a99bcb1 Add display for total number of people on the database.
Matti Hamalainen <ccr@tnsp.org>
parents: 144
diff changeset
1018 query.next())
9f3c0a99bcb1 Add display for total number of people on the database.
Matti Hamalainen <ccr@tnsp.org>
parents: 144
diff changeset
1019 {
174
636a24c76232 Rename some classes to add a SL prefix to their names.
Matti Hamalainen <ccr@tnsp.org>
parents: 170
diff changeset
1020 totalPeople = query.value(0).toInt();
145
9f3c0a99bcb1 Add display for total number of people on the database.
Matti Hamalainen <ccr@tnsp.org>
parents: 144
diff changeset
1021 ui->label_NumPeopleValue->setText(query.value(0).toString());
130
10c6bd84eb32 Add "total balance" information in the UI, which displays the total sum balance of all people.
Matti Hamalainen <ccr@tnsp.org>
parents: 129
diff changeset
1022 }
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1023 }
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1024
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1025
4
f2404a9987dc Cleaning up the code.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
1026 //
f2404a9987dc Cleaning up the code.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
1027 // Update the list of people when filter parameter changes
f2404a9987dc Cleaning up the code.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
1028 //
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1029 void SyntilistaMainWindow::on_edit_PersonFilter_textChanged(const QString &str)
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1030 {
99
7b8755801111 Rename some utility functions.
Matti Hamalainen <ccr@tnsp.org>
parents: 98
diff changeset
1031 peopleFilter = slCleanupStr(str);
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1032 updatePersonList();
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1033 }
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1034
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1035
4
f2404a9987dc Cleaning up the code.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
1036 //
f2404a9987dc Cleaning up the code.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
1037 // Add one transaction to given person id
f2404a9987dc Cleaning up the code.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
1038 //
174
636a24c76232 Rename some classes to add a SL prefix to their names.
Matti Hamalainen <ccr@tnsp.org>
parents: 170
diff changeset
1039 int SyntilistaMainWindow::addTransaction(qint64 id, double value, SLPersonInfo &info)
4
f2404a9987dc Cleaning up the code.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
1040 {
179
a2f11e6665d6 Add some comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 178
diff changeset
1041 // Sanity check: Check if the given person ID exists
102
064138b6d34e Rename getPersonInfo*() to slGetPersonInfo*().
Matti Hamalainen <ccr@tnsp.org>
parents: 101
diff changeset
1042 if (!slGetPersonInfo(id, info))
4
f2404a9987dc Cleaning up the code.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
1043 return -1;
f2404a9987dc Cleaning up the code.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
1044
f2404a9987dc Cleaning up the code.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
1045 QSqlDatabase::database().transaction();
f2404a9987dc Cleaning up the code.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
1046
179
a2f11e6665d6 Add some comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 178
diff changeset
1047 // Add transaction entry
4
f2404a9987dc Cleaning up the code.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
1048 QSqlQuery query;
202
4e25db3327a7 Use QStringLiteral() some more.
Matti Hamalainen <ccr@tnsp.org>
parents: 201
diff changeset
1049 query.prepare(QStringLiteral("INSERT INTO transactions (person,value,added) VALUES (?,?,?)"));
4
f2404a9987dc Cleaning up the code.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
1050 query.addBindValue(id);
f2404a9987dc Cleaning up the code.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
1051 query.addBindValue(value);
f2404a9987dc Cleaning up the code.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
1052 query.addBindValue(QDateTime::currentDateTimeUtc());
f2404a9987dc Cleaning up the code.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
1053 query.exec();
126
b51cee929416 Add program debug logging.
Matti Hamalainen <ccr@tnsp.org>
parents: 125
diff changeset
1054 if (!slCheckAndReportSQLError(QStringLiteral("addTransaction(%1, %2)").arg(id).arg(value), query.lastError(), true))
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1055 {
4
f2404a9987dc Cleaning up the code.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
1056 QSqlDatabase::database().rollback();
f2404a9987dc Cleaning up the code.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
1057 return -2;
f2404a9987dc Cleaning up the code.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
1058 }
f2404a9987dc Cleaning up the code.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
1059
179
a2f11e6665d6 Add some comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 178
diff changeset
1060 // Update person record timestamp
202
4e25db3327a7 Use QStringLiteral() some more.
Matti Hamalainen <ccr@tnsp.org>
parents: 201
diff changeset
1061 query.prepare(QStringLiteral("UPDATE people SET updated=? WHERE id=?"));
4
f2404a9987dc Cleaning up the code.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
1062 query.addBindValue(QDateTime::currentDateTimeUtc());
f2404a9987dc Cleaning up the code.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
1063 query.addBindValue(id);
f2404a9987dc Cleaning up the code.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
1064 query.exec();
126
b51cee929416 Add program debug logging.
Matti Hamalainen <ccr@tnsp.org>
parents: 125
diff changeset
1065 if (!slCheckAndReportSQLError("addTransaction update timestamp", query.lastError(), true))
4
f2404a9987dc Cleaning up the code.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
1066 {
f2404a9987dc Cleaning up the code.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
1067 QSqlDatabase::database().rollback();
f2404a9987dc Cleaning up the code.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
1068 return -3;
f2404a9987dc Cleaning up the code.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
1069 }
f2404a9987dc Cleaning up the code.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
1070
f2404a9987dc Cleaning up the code.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
1071 QSqlDatabase::database().commit();
f2404a9987dc Cleaning up the code.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
1072
145
9f3c0a99bcb1 Add display for total number of people on the database.
Matti Hamalainen <ccr@tnsp.org>
parents: 144
diff changeset
1073 updateMiscValues();
130
10c6bd84eb32 Add "total balance" information in the UI, which displays the total sum balance of all people.
Matti Hamalainen <ccr@tnsp.org>
parents: 129
diff changeset
1074
4
f2404a9987dc Cleaning up the code.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
1075 return 0;
f2404a9987dc Cleaning up the code.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
1076 }
f2404a9987dc Cleaning up the code.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
1077
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1078
4
f2404a9987dc Cleaning up the code.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
1079 int SyntilistaMainWindow::addTransactionGUI(qint64 id, bool debt, double value)
f2404a9987dc Cleaning up the code.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
1080 {
174
636a24c76232 Rename some classes to add a SL prefix to their names.
Matti Hamalainen <ccr@tnsp.org>
parents: 170
diff changeset
1081 SLPersonInfo info;
4
f2404a9987dc Cleaning up the code.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
1082
8
466d89a2a629 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
1083 // Check if person is selected
4
f2404a9987dc Cleaning up the code.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
1084 if (id <= 0)
f2404a9987dc Cleaning up the code.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
1085 return -1;
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1086
8
466d89a2a629 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
1087 // Check value
4
f2404a9987dc Cleaning up the code.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
1088 if (value == 0)
f2404a9987dc Cleaning up the code.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
1089 {
202
4e25db3327a7 Use QStringLiteral() some more.
Matti Hamalainen <ccr@tnsp.org>
parents: 201
diff changeset
1090 QString tmp = debt ? tr("lisätty") : tr("vähennetty");
4e25db3327a7 Use QStringLiteral() some more.
Matti Hamalainen <ccr@tnsp.org>
parents: 201
diff changeset
1091 statusMsg(tr("Velkaa ei %1 koska summaa ei määritetty.").arg(tmp));
4
f2404a9987dc Cleaning up the code.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
1092 return 1;
f2404a9987dc Cleaning up the code.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
1093 }
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1094
8
466d89a2a629 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
1095 // Perform transaction insert
4
f2404a9987dc Cleaning up the code.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
1096 int ret = addTransaction(id, debt ? -value : value, info);
f2404a9987dc Cleaning up the code.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
1097 if (ret == 0)
f2404a9987dc Cleaning up the code.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
1098 {
8
466d89a2a629 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
1099 // All ok, clear amount entry and update person data
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1100 ui->edit_Amount->clear();
12
07db1a0bbdc7 More cleanups, fixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
1101 if (info.id == currPerson.id)
07db1a0bbdc7 More cleanups, fixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
1102 setActivePerson(info.id);
19
2ee61a6b78f8 Remove trailing whitespace.
Matti Hamalainen <ccr@tnsp.org>
parents: 18
diff changeset
1103
12
07db1a0bbdc7 More cleanups, fixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
1104 model_People->updateModel();
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1105
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1106 if (debt)
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1107 {
196
416868143486 Add some comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 195
diff changeset
1108 // Debt was added
216
8b9d55fb8988 Remove one temporary variable.
Matti Hamalainen <ccr@tnsp.org>
parents: 213
diff changeset
1109 statusMsg(
8b9d55fb8988 Remove one temporary variable.
Matti Hamalainen <ccr@tnsp.org>
parents: 213
diff changeset
1110 tr("Lisättiin velkaa %1 EUR henkilölle '%2 %3' (#%4).").
99
7b8755801111 Rename some utility functions.
Matti Hamalainen <ccr@tnsp.org>
parents: 98
diff changeset
1111 arg(slMoneyValueToStr(value)).
4
f2404a9987dc Cleaning up the code.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
1112 arg(info.firstName).
f2404a9987dc Cleaning up the code.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
1113 arg(info.lastName).
216
8b9d55fb8988 Remove one temporary variable.
Matti Hamalainen <ccr@tnsp.org>
parents: 213
diff changeset
1114 arg(info.id));
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1115 }
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1116 else
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1117 {
196
416868143486 Add some comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 195
diff changeset
1118 // Debt was reduced
216
8b9d55fb8988 Remove one temporary variable.
Matti Hamalainen <ccr@tnsp.org>
parents: 213
diff changeset
1119 statusMsg(
8b9d55fb8988 Remove one temporary variable.
Matti Hamalainen <ccr@tnsp.org>
parents: 213
diff changeset
1120 tr("Vähennettiin velkaa %1 EUR henkilöltä '%2 %3' (#%4).").
99
7b8755801111 Rename some utility functions.
Matti Hamalainen <ccr@tnsp.org>
parents: 98
diff changeset
1121 arg(slMoneyValueToStr(value)).
4
f2404a9987dc Cleaning up the code.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
1122 arg(info.firstName).
f2404a9987dc Cleaning up the code.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
1123 arg(info.lastName).
216
8b9d55fb8988 Remove one temporary variable.
Matti Hamalainen <ccr@tnsp.org>
parents: 213
diff changeset
1124 arg(info.id));
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1125 }
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1126 }
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1127 else
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1128 {
99
7b8755801111 Rename some utility functions.
Matti Hamalainen <ccr@tnsp.org>
parents: 98
diff changeset
1129 slErrorMsg(
8
466d89a2a629 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
1130 tr("SQL-tietokantavirhe"),
466d89a2a629 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
1131 tr("Tietokantaan tapahtumaa lisättäessa tapahtui virhe #%1.").
466d89a2a629 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
1132 arg(ret));
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1133 }
4
f2404a9987dc Cleaning up the code.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
1134
f2404a9987dc Cleaning up the code.
Matti Hamalainen <ccr@tnsp.org>
parents: 2
diff changeset
1135 return ret;
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1136 }
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1137
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1138
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1139 void SyntilistaMainWindow::on_button_AddDebt_clicked()
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1140 {
99
7b8755801111 Rename some utility functions.
Matti Hamalainen <ccr@tnsp.org>
parents: 98
diff changeset
1141 addTransactionGUI(currPerson.id, true, slMoneyStrToValue(ui->edit_Amount->text()));
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1142 }
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1143
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1144
2
edc1e8cf6e2c Implement "pay debt in full" button.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
1145 void SyntilistaMainWindow::on_button_PayDebt_clicked()
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1146 {
99
7b8755801111 Rename some utility functions.
Matti Hamalainen <ccr@tnsp.org>
parents: 98
diff changeset
1147 addTransactionGUI(currPerson.id, false, slMoneyStrToValue(ui->edit_Amount->text()));
0
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1148 }
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1149
fec4d0c461f2 Initial import of the post-prototyping phase code.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1150
2
edc1e8cf6e2c Implement "pay debt in full" button.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
1151 void SyntilistaMainWindow::on_button_PayFullDebt_clicked()
edc1e8cf6e2c Implement "pay debt in full" button.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
1152 {
196
416868143486 Add some comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 195
diff changeset
1153 // Sanity check that there is a selected person
187
7f0a4d5010d1 Add confirmation dialog to "pay full debt".
Matti Hamalainen <ccr@tnsp.org>
parents: 186
diff changeset
1154 if (currPerson.id <= 0)
7f0a4d5010d1 Add confirmation dialog to "pay full debt".
Matti Hamalainen <ccr@tnsp.org>
parents: 186
diff changeset
1155 {
7f0a4d5010d1 Add confirmation dialog to "pay full debt".
Matti Hamalainen <ccr@tnsp.org>
parents: 186
diff changeset
1156 statusMsg(tr("Ei valittua henkilöä!"));
7f0a4d5010d1 Add confirmation dialog to "pay full debt".
Matti Hamalainen <ccr@tnsp.org>
parents: 186
diff changeset
1157 return;
7f0a4d5010d1 Add confirmation dialog to "pay full debt".
Matti Hamalainen <ccr@tnsp.org>
parents: 186
diff changeset
1158 }
7f0a4d5010d1 Add confirmation dialog to "pay full debt".
Matti Hamalainen <ccr@tnsp.org>
parents: 186
diff changeset
1159
196
416868143486 Add some comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 195
diff changeset
1160 // Check the balance ..
5
a5a3baee3043 More cleanups and fixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 4
diff changeset
1161 if (currPerson.balance < 0)
187
7f0a4d5010d1 Add confirmation dialog to "pay full debt".
Matti Hamalainen <ccr@tnsp.org>
parents: 186
diff changeset
1162 {
196
416868143486 Add some comments.
Matti Hamalainen <ccr@tnsp.org>
parents: 195
diff changeset
1163 // And ask confirmation that user really wants to clear the full debt
187
7f0a4d5010d1 Add confirmation dialog to "pay full debt".
Matti Hamalainen <ccr@tnsp.org>
parents: 186
diff changeset
1164 QMessageBox dlg;
7f0a4d5010d1 Add confirmation dialog to "pay full debt".
Matti Hamalainen <ccr@tnsp.org>
parents: 186
diff changeset
1165 slSetCommonStyleSheet(&dlg);
7f0a4d5010d1 Add confirmation dialog to "pay full debt".
Matti Hamalainen <ccr@tnsp.org>
parents: 186
diff changeset
1166 dlg.setText(tr("Varmistus"));
201
ea0247fab5a4 Cosmetics/indentation.
Matti Hamalainen <ccr@tnsp.org>
parents: 200
diff changeset
1167 dlg.setInformativeText(tr(
ea0247fab5a4 Cosmetics/indentation.
Matti Hamalainen <ccr@tnsp.org>
parents: 200
diff changeset
1168 "<h3>Haluatko maksaa henkilön koko velan?</h3>"
187
7f0a4d5010d1 Add confirmation dialog to "pay full debt".
Matti Hamalainen <ccr@tnsp.org>
parents: 186
diff changeset
1169 "<br>"
7f0a4d5010d1 Add confirmation dialog to "pay full debt".
Matti Hamalainen <ccr@tnsp.org>
parents: 186
diff changeset
1170 "<b>'%1, %2'</b>, velka <span style='color:#f00;'><b>%4 EUR</b></span>"
7f0a4d5010d1 Add confirmation dialog to "pay full debt".
Matti Hamalainen <ccr@tnsp.org>
parents: 186
diff changeset
1171 "<br>").
7f0a4d5010d1 Add confirmation dialog to "pay full debt".
Matti Hamalainen <ccr@tnsp.org>
parents: 186
diff changeset
1172 arg(currPerson.lastName).arg(currPerson.firstName).
7f0a4d5010d1 Add confirmation dialog to "pay full debt".
Matti Hamalainen <ccr@tnsp.org>
parents: 186
diff changeset
1173 arg(slMoneyValueToStr(currPerson.balance)));
7f0a4d5010d1 Add confirmation dialog to "pay full debt".
Matti Hamalainen <ccr@tnsp.org>
parents: 186
diff changeset
1174
7f0a4d5010d1 Add confirmation dialog to "pay full debt".
Matti Hamalainen <ccr@tnsp.org>
parents: 186
diff changeset
1175 dlg.setTextFormat(Qt::RichText);
7f0a4d5010d1 Add confirmation dialog to "pay full debt".
Matti Hamalainen <ccr@tnsp.org>
parents: 186
diff changeset
1176 dlg.setIcon(QMessageBox::Question);
7f0a4d5010d1 Add confirmation dialog to "pay full debt".
Matti Hamalainen <ccr@tnsp.org>
parents: 186
diff changeset
1177 dlg.setStandardButtons(QMessageBox::Yes | QMessageBox::No);
7f0a4d5010d1 Add confirmation dialog to "pay full debt".
Matti Hamalainen <ccr@tnsp.org>
parents: 186
diff changeset
1178 dlg.setButtonText(QMessageBox::Yes, tr("Kyllä"));
7f0a4d5010d1 Add confirmation dialog to "pay full debt".
Matti Hamalainen <ccr@tnsp.org>
parents: 186
diff changeset
1179 dlg.setButtonText(QMessageBox::No, tr("Ei / peruuta"));
7f0a4d5010d1 Add confirmation dialog to "pay full debt".
Matti Hamalainen <ccr@tnsp.org>
parents: 186
diff changeset
1180 dlg.setDefaultButton(QMessageBox::No);
7f0a4d5010d1 Add confirmation dialog to "pay full debt".
Matti Hamalainen <ccr@tnsp.org>
parents: 186
diff changeset
1181
7f0a4d5010d1 Add confirmation dialog to "pay full debt".
Matti Hamalainen <ccr@tnsp.org>
parents: 186
diff changeset
1182 if (dlg.exec() == QMessageBox::Yes)
7f0a4d5010d1 Add confirmation dialog to "pay full debt".
Matti Hamalainen <ccr@tnsp.org>
parents: 186
diff changeset
1183 {
7f0a4d5010d1 Add confirmation dialog to "pay full debt".
Matti Hamalainen <ccr@tnsp.org>
parents: 186
diff changeset
1184 addTransactionGUI(currPerson.id, false, -currPerson.balance);
7f0a4d5010d1 Add confirmation dialog to "pay full debt".
Matti Hamalainen <ccr@tnsp.org>
parents: 186
diff changeset
1185 }
7f0a4d5010d1 Add confirmation dialog to "pay full debt".
Matti Hamalainen <ccr@tnsp.org>
parents: 186
diff changeset
1186 }
2
edc1e8cf6e2c Implement "pay debt in full" button.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
1187 else
8
466d89a2a629 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
1188 {
466d89a2a629 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
1189 statusMsg(
466d89a2a629 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
1190 tr("Valitulla henkilöllä '%1, %2' ei ole velkaa.").
466d89a2a629 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
1191 arg(currPerson.lastName).
466d89a2a629 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
1192 arg(currPerson.firstName));
466d89a2a629 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 6
diff changeset
1193 }
2
edc1e8cf6e2c Implement "pay debt in full" button.
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
1194 }