-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontroller.cpp
More file actions
366 lines (318 loc) · 11.8 KB
/
controller.cpp
File metadata and controls
366 lines (318 loc) · 11.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
#include "controller.h"
Controller::Controller(QObject *parent) : QObject{parent}
{
}
Controller::~Controller()
{
}
/*
======PRIVATE METHODS======
*/
bool Controller::anyCellSelected(bool row)
{
if(!TextBox::somethingWasSelected){
QMessageBox msgBox;
row ? msgBox.setText("No row selected") : msgBox.setText("No column selected");
msgBox.exec();
return false;
}
return true;
}
bool Controller::dataIsEmpty()
{
TextBox::somethingWasSelected = false;
if(getDataMatrixWidth() < 1){
QMessageBox msgBox;
msgBox.setText("There's no data to select from");
msgBox.exec();
return true;
}
return false;
}
/*
======PUBLIC METHODS======
*/
void Controller::setModel(Model *m) {model = m;}
void Controller::setView(View *v) { view = v;}
unsigned int Controller::getDataMatrixWidth() const {return model->getDataMatrixWidth();}
unsigned int Controller::getDataMatrixHeigth() const {return model->getDataMatrixHeigth();}
Matrix *Controller::getDataMatrix() const {return model->getMatrix();}
void Controller::updateValue(QString text, unsigned int x, unsigned int y){model->updateDataMatrixValue(text, x, y);}
void Controller::updateTitle(QString text, unsigned int x){model->updateTitle(text, x);}
void Controller::loadDataFromFile()
{
TextBox::somethingWasSelected = false;
try {
QString fileName = view->showLoadFile();
QFile file(fileName);
if (!file.open(QIODevice::ReadOnly | QIODevice::Text)) {
throw std::runtime_error("Impossibile aprire il file.");
}
QJsonDocument sessionDocument = QJsonDocument::fromJson(file.readAll());
file.close();
view->clean();
model->clean();
model->loadData(sessionDocument.array());
view->loadData(model->getMatrix());
}catch (std::runtime_error& e) {
e.what();
}
}
bool Controller::saveToFile() const
{
TextBox::somethingWasSelected = false;
try {
QString fileName = view->showSaveFile();
model->writeFile(fileName);
return true;
} catch (std::runtime_error& e) {
e.what();
return false;
}
}
void Controller::clearData()
{
TextBox::somethingWasSelected = false;
if(getDataMatrixHeigth() > 0){
int ret = view->showConfirmClear();
switch (ret) {
case QMessageBox::Save:
if(saveToFile())
break;
else clearData();
case QMessageBox::Discard:
break;
case QMessageBox::Cancel:
return;
break;
default:
break;
}
view->clean();
model->clean();
}
}
void Controller::newFile(){clearData();}
bool Controller::isNumeric(unsigned int col) const{return model->isNumeric(col);}
/*
======SLOTS======
*/
void Controller::addRow()
{
int width = getDataMatrixWidth();
bool isNumeric = false;
if(width == 0){
QString selection = view->showSelectNewColumnType();
if (selection.isEmpty())return;
else if(selection == "Numeric") isNumeric = true;
model->addColumnData(isNumeric); //this way it handles the Numeric or Text choice without adding a new function
}
else
model->addRowData();
view->addRow();
}
void Controller::deleteRow()
{
if(TextBox::getLastSelectedTextBoxCoordinates().second == -1) TextBox::somethingWasSelected = false; //if the last selected TextBox is a title it will prevent it from deleting all the titles
if(!anyCellSelected(true)) return; //true = row - for message box text
TextBox::somethingWasSelected = false;
unsigned int size = getDataMatrixHeigth();
if (size > 0){
unsigned int row = TextBox::getLastSelectedTextBoxCoordinates().second;
view->clean(); //cleans the view
model->deleteRowData(row); //deletes the column in the Matrix
view->loadData(getDataMatrix()); //the view is reloaded with the updated Matrix - it was done this way because QGrid doesn't have a simple way of moving columns around with deletion
}
}
void Controller::addColumn()
{
TextBox::somethingWasSelected = false;
bool isNumeric = false;
QString selection = view->showSelectNewColumnType();
if (selection.isEmpty())
return;
if(selection == "Numeric") isNumeric = true;
model->addColumnData(isNumeric);
view->addColumn(isNumeric);
}
void Controller::deleteColumn()
{
if(!anyCellSelected(false)) return; //false = column - for message box text
TextBox::somethingWasSelected = false;
unsigned int size = getDataMatrixWidth();
if (size > 0){
unsigned int col = TextBox::getLastSelectedTextBoxCoordinates().first;
view->clean(); //cleans the view
model->deleteColumnData(col); //deletes the column in the Matrix
view->loadData(getDataMatrix()); //the view is reloaded with the updated Matrix - it was done this way because QGrid doesn't have a simple way of moving columns around with deletion
}
}
void Controller::lineChart()
{
dataIsEmpty();
if(model->getNumberOfNumerics() < 1){
QMessageBox msgBox;
msgBox.setText("Insert at least one numeric column first");
msgBox.exec();
}
else{
QString title;
try{
title = view->showChartTitleSelector();
}
catch(bool){ //the dialog for title selection was closed, interrupts the creation process
return;
}
QVector<int> chosenNumericIndexes;
QVector<int>* numericDataIndexesLeft = model->getNumericDataIndexes(); //gets the indexes of all numeric columns
bool choose = true;
while(choose){ //loops until cancel is pressed in the input dialog or until all columns are selected
if(numericDataIndexesLeft->size() > 0){
int numericIndex = -1;
try{
numericIndex = view->showColumnSelectionDialogNumeric(numericDataIndexesLeft);
}
catch(bool){ //cancel was pressed, if it was the first selection the creation process is stopped, else it will continue
if(chosenNumericIndexes.isEmpty())
return;
}
if(numericIndex >= 0){
chosenNumericIndexes.append(numericIndex);
numericDataIndexesLeft->erase(numericDataIndexesLeft->begin() + numericDataIndexesLeft->indexOf(numericIndex));
}
else choose = false;
}
else choose = false;
}
delete numericDataIndexesLeft;
if(chosenNumericIndexes.size() < 1){ //need to select at least one numeric column
QMessageBox msgBox;
msgBox.setText("No data was selected, try again");
msgBox.exec();
}
else{ //at least one numeric column was selected, creates the chart
view->drawChart((model->createLineChart(title, chosenNumericIndexes))->draw());
}
}
}
void Controller::barChart()
{
dataIsEmpty();
if(model->getNumberOfNumerics() < 1){
QMessageBox msgBox;
msgBox.setText("Insert at least one numeric column first");
msgBox.exec();
}
else{
QString title;
try{
title = view->showChartTitleSelector();
}
catch(bool){ //the dialog for title selection was closed, interrupts the creation process
return;
}
int chosenTextIndex = -1;
QVector<int> chosenNumericIndexes;
if(model->getNumberOfTexts() > 0){
QVector<int>* textDataIndexes = model->getTextDataIndexes(); //gets the indexes of all text columns
try{
chosenTextIndex = view->showColumnSelectionDialogOptionalSingleText(textDataIndexes, tr("Select an OPTIONAL text data column"));
}
catch(bool){ //cancel selected, nothing happens beacause the text column is optional in this chart
}
delete textDataIndexes;
}
QVector<int>* numericDataIndexesLeft = model->getNumericDataIndexes(); //gets the indexes of all numeric columns
bool choose = true;
while(choose){ //loops until cancel is pressed in the input dialog or until all columns are selected
if(numericDataIndexesLeft->size() > 0){
int numericIndex = -1;
try{
numericIndex = view->showColumnSelectionDialogNumeric(numericDataIndexesLeft);
}
catch(bool){ //cancel was pressed, if it was the first selection the creation process is stopped, else it will continue
if(chosenNumericIndexes.isEmpty())
return;
}
if(numericIndex >= 0){
chosenNumericIndexes.append(numericIndex);
numericDataIndexesLeft->erase(numericDataIndexesLeft->begin() + numericDataIndexesLeft->indexOf(numericIndex));
}
else choose = false;
}
else choose = false;
}
delete numericDataIndexesLeft;
if(chosenNumericIndexes.size() < 1){ //need to select at least one numeric column
QMessageBox msgBox;
msgBox.setText("No data was selected, try again");
msgBox.exec();
}
else{ //at least one numeric column was selected, creates the chart
view->drawChart((model->createBarChart(title, chosenNumericIndexes, chosenTextIndex))->draw());
}
}
}
void Controller::pieChart()
{
if(dataIsEmpty()){
QMessageBox msgBox;
msgBox.setText("Insert at least one column of any type first");
msgBox.exec();
}
else{
QString title;
try{
title = view->showChartTitleSelector();
}
catch(bool){ //the dialog for title selection was closed, interrupts the creation process
return;
}
int chosenTextIndex = -1;
if(model->getNumberOfTexts() > 0){
QVector<int>* textDataIndexes = model->getTextDataIndexes(); //gets the indexes of all text columns
try{
chosenTextIndex = view->showColumnSelectionDialogOptionalSingleText(textDataIndexes, tr("Select an OPTIONAL text column"));
}
catch(bool){
}
delete textDataIndexes;
}
int numericIndex = -1;
if(model->getNumberOfNumerics() > 0){
try{ //input dialog with the indexes of all numeric columns
numericIndex = view->showColumnSelectionDialogNumeric(model->getNumericDataIndexes());
}
catch(bool){ //nothing is done here, because if a text column was selected the process should still work, checks will be done later
}
}
if(numericIndex >= 0 || chosenTextIndex >= 0) //at least one numeric column OR one text column was selected, creates the right chart
view->drawChart((model->createPieChart(title, numericIndex, chosenTextIndex))->draw());
else{ //need to select at least one column of any type
QMessageBox msgBox;
msgBox.setText("No data was selected, try again");
msgBox.exec();
}
}
}
void Controller::deleteChart()
{
view->closeChartView();
model->deleteChart();
}
bool Controller::openRepositoryLink()
{
try{
bool ok = QDesktopServices::openUrl(QUrl("https://github.com/Davide-Milan/Chartpp", QUrl::TolerantMode));
if(!ok)
throw bool(false);
else
return true;
}
catch(bool){
QMessageBox msgBox;
msgBox.setText("Something went wrong, we couldn't open the GitHub repository on a browser");
msgBox.exec();
return false;
}
}