-
Notifications
You must be signed in to change notification settings - Fork 0
/
scicalc.cpp
executable file
·421 lines (326 loc) · 9.4 KB
/
scicalc.cpp
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
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
#include "scicalc.h"
#include "ui_scicalc.h"
#include "variables.h"
#include "scanner.h"
#include "parser.h"
#include "scicalcblock.h"
#include <QDebug>
#include <QtGui>
#include <QFile>
#include <QFileInfo>
#include <QMessageBox>
#include <QFileDialog>
#include <QSettings>
const QString scicalc::tempFile=QDir::homePath() + "/.temp.sc";
const QString scicalc::version="0.91.3";
scicalc* scicalc::myApp=0;
/************************************************************************************************/
/* constructor */
/************************************************************************************************/
scicalc::scicalc(QMainWindow *parent) :
QMainWindow(parent),
ui(new Ui::scicalc)
{
myApp=this;
ui->setupUi(this);
QSettings set;
setWindowIcon(QIcon(":/logo.svg"));
dialogGeneralSettings=new DialogGeneralSettings(this);
ui->horizontalLayout->setStretch(0, 1);
ui->horizontalLayout->setStretch(1, 0);
ui->edit_input->setLineWrapMode(QTextEdit::NoWrap);
// connect refresh action
connect(ui->pushButton_refresh, SIGNAL(clicked()), this, SLOT(on_actionRefresh_triggered()));
connect(ui->edit_input, SIGNAL(inputChanged()), this, SLOT(inputChanged()));
connect(ui->edit_input, SIGNAL(returnPressed()), this, SLOT(on_actionRefresh_triggered()));
connect(dialogGeneralSettings, SIGNAL(accepted()), this, SLOT(settingsChanged()));
settingsChanged(); // set colors, font, number format, etc.
// load settings-checkbox states:
ui->actionLoad_recent_file_on_startup->setChecked(set.value("autoload", false).toBool());
ui->actionAuto_save_on_close->setChecked(set.value("saveonclose", false).toBool());
// load the path of the last saved/loaded file:
currentPath=set.value("recentdir", QDir::currentPath()).toString();
currentFile=set.value("recentfile", QString("")).toString();
// check if there is a filename given as parameter, open this file
if(QApplication::arguments().size()==2)
{
currentFile=QApplication::arguments().at(1);
load(currentFile);
}
else
{
// if auto-load is active try to load last file
if(ui->actionLoad_recent_file_on_startup->isChecked())
{
// if last session was in temporary-mode, load the temp-file (=history):
if(currentFile.isEmpty())
{
load(tempFile);
}
else // else load recent opened file:
{
load(currentFile);
}
}
else // else: default empty sheet
{
on_actionNew_triggered();
}
}
}
scicalc* scicalc::app()
{
return myApp;
}
/************************************************************************************************/
/* core functions for editing and refreshing */
/************************************************************************************************/
void scicalc::inputChanged()
{
setSaved(false);
}
// slot for the refresh action. this can be triggered manually or by the return-key after the input of a new line
// for convinience the whole file will be updated.
void scicalc::on_actionRefresh_triggered()
{
Variables::init();
for(int i=0; i<ui->edit_input->getBlockCount(); i++)
{
ScicalcBlock block=ui->edit_input->getBlock(i);
Scanner::init(block.input);
block.output=Parser::parse();
ui->edit_input->setBlock(i, block);
}
ui->edit_input->refreshDisplay();
}
void scicalc::settingsChanged()
{
// load color settings:
QPalette pal;
pal.setColor(QPalette::Base, dialogGeneralSettings->getBackColor());
pal.setColor(QPalette::Text, dialogGeneralSettings->getInColor());
pal.setColor(QPalette::BrightText, dialogGeneralSettings->getOutColor());
ui->edit_input->setPalette(pal);
QFont f=dialogGeneralSettings->getFont();
ui->edit_input->setFont(f);
// set tabulator-width to 4 spaces (TODO):
ui->edit_input->setTabStopWidth(QFontMetrics(f).width(" "));
on_actionRefresh_triggered();
}
/************************************************************************************************/
/* functions for file handling (open, save, new, ...) */
/************************************************************************************************/
// this is needed for getting a new empty editor in temporary-mode
void scicalc::on_actionNew_triggered()
{
askForSave();
currentFile.clear();
ui->edit_input->clear();
setSaved(true); // if there was no editing to an empty input it does not have to be saved
}
// slot for action from menu and the shortcut CTRL+S
void scicalc::on_actionSave_triggered()
{
if(currentFile.isEmpty())
{
// choose a filename first
on_actionSave_as_triggered();
}
else
{
save(currentFile);
}
}
// slot for action from menu and the shortcut CTRL+Shift+S
void scicalc::on_actionSave_as_triggered()
{
// only choose the filename
QString fileName=QFileDialog::getSaveFileName(this,
tr("save file"), currentPath, tr("scicalc scripts (*.sc)"));
if(!fileName.isNull()) // the user choosed a file
{
QFileInfo fi(fileName);
currentPath=fi.absolutePath(); // update working directory
if(fi.suffix()!="sc") // append extension if not existing
{
fileName.append(".sc");
}
currentFile=fileName;
// now do the real saving
on_actionSave_triggered();
}
}
// opens the file for writing, and saves the current edit_input
void scicalc::save(QString fileName)
{
// try to open file
QFile file(fileName);
if(!file.open(QFile::WriteOnly | QFile::Text))
{
QMessageBox::warning(0, tr("Error"), tr("File could not be opend:\n"));
return;
}
QTextStream out(&file);
out.setCodec("UTF-8");
out<<ui->edit_input->toPlainText();
setSaved(true);
file.close();
}
void scicalc::on_actionOpen_triggered()
{
// ask for saving before opening a file
askForSave();
// ask for file to be opened
QString fileName=QFileDialog::getOpenFileName(this,
tr("load file"), currentPath, tr("scicalc scripts (*.sc)"));
if(!fileName.isEmpty())
{
// if the user selected a valid file, load it
load(fileName);
}
}
// loads a file into the editor
// currentFileIsTemp-flag has to be set before calling this function.
void scicalc::load(QString fileName)
{
QFileInfo fi(fileName);
// try to open file
QFile file(fileName);
if(!file.open(QFile::ReadOnly | QFile::Text))
{
QMessageBox::warning(0, tr("Error"), tr("File could not be opend:\n"));
return;
}
QTextStream in(&file);
in.setCodec("UTF-8");
QString text=in.readAll();
ui->edit_input->setText(text);
on_actionRefresh_triggered();
if(fileName==tempFile)
{
// this file is an autoloaded temp file
currentFile.clear();
setSaved(false);
}
else
{
currentFile=fileName;
currentPath=fi.absolutePath();
setSaved(true);
}
file.close();
}
void scicalc::closeEvent(QCloseEvent* /*event*/)
{
// write all the settings to the disk, so they can be loaded on next startup.
QSettings set;
set.setValue("recentdir", currentPath);
set.setValue("recentfile", currentFile);
set.setValue("autoload", ui->actionLoad_recent_file_on_startup->isChecked());
set.setValue("saveonclose", ui->actionAuto_save_on_close->isChecked());
if(currentFile.isEmpty())
{
// save temp file to its (constant) location
save(tempFile);
}
else
{
// save existing file
if(ui->actionAuto_save_on_close->isChecked())
{
on_actionSave_triggered();
}
else
{
askForSave();
}
}
}
void scicalc::askForSave()
{
//qDebug() << "ask for save";
// if the content is not related to a file yet, don't ask for saving
if(!saved && !currentFile.isEmpty())
{
QMessageBox msgBox;
msgBox.setText("Do you want to save changes?");
msgBox.setStandardButtons(QMessageBox::Save | QMessageBox::Discard);
msgBox.setDefaultButton(QMessageBox::Save);
msgBox.button(QMessageBox::Discard)->setText("Don't save");
int ret=msgBox.exec();
if(ret==QMessageBox::Save)
{
on_actionSave_triggered();
}
}
}
void scicalc::setSaved(bool saved)
{
this->saved=saved;
QString windowtitle="scicalc " + version;
if(!currentFile.isEmpty())
{
windowtitle.append(" - ");
windowtitle.append(currentFile);
}
if(!saved)
{
windowtitle.append(" (unsaved)");
}
setWindowTitle(windowtitle);
}
scicalc::~scicalc()
{
delete ui;
}
/************************************************************************************************/
/* actions for help menu and settings */
/************************************************************************************************/
void scicalc::on_actionReadme_triggered()
{
showTextFile(":/doc/README.md");
}
void scicalc::on_actionConstants_triggered()
{
showTextFile(":/doc/constants.txt");
}
void scicalc::on_actionFunctions_triggered()
{
showTextFile(":/doc/functions.txt");
}
void scicalc::on_actionChangelog_triggered()
{
showTextFile(":/doc/CHANGELOG.md");
}
void scicalc::showTextFile(QString filename)
{
//qDebug() << "show text file:" << filename;
QFile file(filename);
if(!file.open(QFile::ReadOnly | QFile::Text))
{
return;
}
QTextEdit* text=new QTextEdit(this);
text->setFont(QFont("Courier New"));
text->setMinimumWidth(800);
text->setMinimumHeight(500);
text->setWindowFlags(Qt::Window);
text->setReadOnly(true);
text->setTabStopWidth(text->fontMetrics().width(" "));
QTextStream in(&file);
in.setCodec("UTF-8");
text->setText(in.readAll());
text->show();
file.close();
}
void scicalc::on_actionGeneral_settings_triggered()
{
if(dialogGeneralSettings->exec()==1)
{
on_actionRefresh_triggered();
}
}
void scicalc::on_actionAbout_scicalc_triggered()
{
QMessageBox::about(this, "About scicalc", "by Friedrich Feichtinger\nVersion: "+version+"\nGPL v2");
}