-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathfsettingsdialog.cpp
430 lines (337 loc) · 14 KB
/
fsettingsdialog.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
421
422
423
424
425
426
427
428
429
430
#include "fsettingsdialog.h"
#include "ui_fsettingsdialog.h"
#include <QDebug>
#include <fartmanager.h>
#include <libfusion.h>
#include <QMessageBox>
#include <QDesktopServices>
FSettingsDialog::FSettingsDialog(FDB *db, QWidget *parent) :
QDialog(parent),
ui(new Ui::FSettingsDialog)
{
ui->setupUi(this);
this->db = db;
//Hast to be the Same order as the Stacked Widget.
ui->listWidget->addItem(tr("General"));
ui->listWidget->addItem(tr("Database"));
ui->listWidget->addItem(tr("Interface"));
ui->listWidget->addItem(tr("Artwork"));
ui->listWidget->addItem(tr("Watched Folders"));
ui->listWidget->addItem(tr("Launchers"));
ui->listWidget->addItem(tr("Logfiles"));
// ui->listWidget->addItem(tr("Savegame-Sync"));
ui->listWidget->setCurrentRow(0);
ui->le_Stylesheet->setText(db->getTextPref("stylesheet"));
ui->cb_ScanLibOnStartup->setChecked(db->getBoolPref("ScanLibsOnStartup", true));
ui->cb_Artwork_UseCache->setChecked(db->getBoolPref("useArtworkCache", true));
ui->lbl_gen_Version->setText(VersionString);
#if (QT_VERSION >= QT_VERSION_CHECK(5, 0, 0))
ui->cb_int_language->addItem(tr("English"), "en"); //please keep this in alphabetical order with English on top
ui->cb_int_language->addItem(tr("German (Deutsch)"), "de");
ui->cb_int_language->addItem(tr("Norwegian (Norsk)"), "no");
ui->cb_int_language->addItem(tr("Polish (Polski)"), "pl");
ui->cb_int_language->addItem(tr("Spanish (Español)"), "es");
int idx = ui->cb_int_language->findData(db->getTextPref("currentLanguage", "en"));
ui->cb_int_language->setCurrentIndex(idx);
#endif
//=================================
//WatchedFolders
QList<FWatchedFolder> tmpList = db->getWatchedFoldersList();
ui->lw_Folder_FolderList->clear();
for(int i=0;i<tmpList.length();++i)
{
watchedFolders.insert(tmpList[i].getDirectory().absolutePath(), tmpList[i]);
ui->lw_Folder_FolderList->addItem(tmpList[i].getDirectory().absolutePath());
}
//=================================
// LAUNCHERS
loadLaunchers();
//=================================
//Savegame-Sync
ui->le_sync_path->setText(db->getTextPref("sync_target", ""));
ui->sb_sync_backups->setValue(db->getIntPref("sync_No_of_Backups", 0));
ui->cb_gen_ScanForUpdates->setChecked(db->getBoolPref("autoScanUpdates", true));
ui->cb_gen_StartWithSystem->setChecked(db->getBoolPref("StartWithSystem", true));
ui->cb_gen_useTrayIcon->setChecked(db->getBoolPref("useTrayIcon", true));
ui->sb_int_standardFontsize->setValue(db->getIntPref("standartFontSize", 11));
ui->sb_int_headerFontsize->setValue(db->getIntPref("headerFontSize", 24));
//=================================
// Log-Files
loadLogfiles();
}
void FSettingsDialog::loadLogfiles() {
ui->lw_log_logfiles->clear();
QDir logDir = LibFusion::getWorkingDir().absolutePath() + QDir::separator() + "Logs";
QStringList logfiles = logDir.entryList();
for(QString log : logfiles) {
if(log.length()>3) //do skip "." and ".." and other wrong stuff
ui->lw_log_logfiles->addItem(log);
}
}
void FSettingsDialog::on_pb_log_openFolder_clicked()
{
QDir logDir = LibFusion::getWorkingDir().absolutePath() + QDir::separator() + "Logs";
QDesktopServices::openUrl(logDir.absolutePath());
}
void FSettingsDialog::on_pb_log_clear_clicked()
{
if(QMessageBox::question(this, "Please Confirm", "Do you really want to delete all Logfiles?", QMessageBox::Yes, QMessageBox::No) == QMessageBox::No)
return;
QDir logDir = LibFusion::getWorkingDir().absolutePath() + QDir::separator() + "Logs";
QStringList logfiles = logDir.entryList();
for(QString log : logfiles) {
if(log.length()>3) //do skip "." and ".." and other wrong stuff
{
QFile::remove(logDir.absolutePath() + "/" + log); // logfile(logDir + "/" + log);
}
}
loadLogfiles();
}
FSettingsDialog::~FSettingsDialog()
{
delete ui;
}
void FSettingsDialog::loadLaunchers()
{
QList<FLauncher> tmpLnchr = db->getLaunchers();
ui->lw_launcher_launchers->clear();
ui->cb_Folder_LauncherList->clear();
ui->cb_Folder_LauncherList->blockSignals(true);
ui->lw_launcher_launchers->blockSignals(true);
for(int i = 0; i < tmpLnchr.length(); i++)
{
launchers.insert(tmpLnchr[i].getName(), tmpLnchr[i]);
ui->lw_launcher_launchers->addItem(tmpLnchr[i].getName());
//this is for the WatchedfFolders
ui->cb_Folder_LauncherList->addItem(tmpLnchr[i].getName(), QVariant(tmpLnchr[i].getDbId()));
}
ui->cb_Folder_LauncherList->blockSignals(false);
ui->lw_launcher_launchers->blockSignals(false);
selectedLauncher = NULL;
}
void FSettingsDialog::on_listWidget_currentRowChanged(int i)
{
ui->settingPages->setCurrentIndex(i);
}
void FSettingsDialog::on_lw_log_logfiles_itemDoubleClicked(QListWidgetItem *item)
{
QDir logDir = LibFusion::getWorkingDir().absolutePath() + QDir::separator() + "Logs";
QString filename = item->text();
QDesktopServices::openUrl(logDir.absolutePath() + "/" + filename);
}
void FSettingsDialog::on_pb_selectStylesheet_clicked()
{
QString stylesheetFile = QFileDialog::getOpenFileName(this, tr("Choose stylesheet"), QDir::homePath(), "*.qss");
qDebug() << "Stylesheet: " << stylesheetFile;
if(QFile::exists(stylesheetFile))
{
qDebug() << "New stylesheet added: " << stylesheetFile;
db->updateTextPref("stylesheet", stylesheetFile);
emit reloadStylesheet();
}
}
void FSettingsDialog::on_pb_ResetStylesheet_clicked()
{
db->updateTextPref("stylesheet", ":/stylesheet.qss");
emit reloadStylesheet();
}
void FSettingsDialog::on_pb_ScanNow_clicked()
{
FCrawler crawler;
crawler.scanAllFolders();
emit reloadLibrary();
}
void FSettingsDialog::on_lw_Folder_FolderList_currentItemChanged(QListWidgetItem *current, QListWidgetItem *previous)
{
if(current) {
selectedFolder = &watchedFolders[current->text()];
ui->cb_Folder_ForLauncher->setChecked(selectedFolder->forLauncher);
ui->cb_Folder_LauncherList->setEnabled(selectedFolder->forLauncher);
ui->cb_Folder_LauncherList->blockSignals(true);
if(selectedFolder->forLauncher) {
int indx = ui->cb_Folder_LauncherList->findData(selectedFolder->getLauncherID());
if(indx>=0)
ui->cb_Folder_LauncherList->setCurrentIndex(indx);
}
ui->cb_Folder_LauncherList->blockSignals(false);
}
}
void FSettingsDialog::on_cb_Folder_LauncherList_currentIndexChanged(int index)
{
if(selectedFolder) {
QVariant lID = ui->cb_Folder_LauncherList->itemData(index);
selectedFolder->setLauncherID(lID.toInt());
}
}
void FSettingsDialog::on_btn_launcher_Add_clicked()
{
FLauncher l;
if(ui->le_launcher_nameEdit->text().isEmpty())
{
QMessageBox::information(this, tr("Error"), tr("Please set a name."), QMessageBox::Ok);
return;
}
if(ui->le_launcher_pathEdit->text().isEmpty())
{
QMessageBox::information(this, tr("Error"), tr("Please set a path."), QMessageBox::Ok);
return;
}
l.setName(ui->le_launcher_nameEdit->text());
l.setPath(ui->le_launcher_pathEdit->text());
l.setArgs(ui->le_launcher_argEdit->text());
l.setFileEndings(ui->le_launcher_suffix->text());
if(launchers.contains(l.getName())) {
QMessageBox::information(this, tr("Error"), tr("This name already exists!"), QMessageBox::Ok);
return;
}
launchers.insert(l.getName(), l);
ui->lw_launcher_launchers->addItem(l.getName());
ui->le_launcher_nameEdit->setText("");
ui->le_launcher_pathEdit->setText("");
ui->le_launcher_argEdit->setText("");
ui->le_launcher_suffix->setText("");
db->updateLaunchers(launchers.values());
loadLaunchers();
}
void FSettingsDialog::on_btn_launcher_remove_clicked()
{
}
void FSettingsDialog::on_btn_launcher_browsePath_clicked()
{
QString path = QFileDialog::getOpenFileName(this, tr("Choose launcher"), ".", "*");
ui->le_launcher_pathEdit->setText(path);
}
void FSettingsDialog::on_lw_launcher_launchers_currentItemChanged(QListWidgetItem *current, QListWidgetItem *previous)
{
if(current) {
selectedLauncher = &launchers[current->text()];
ui->le_launcher_nameEdit->setText(selectedLauncher->getName());
ui->le_launcher_pathEdit->setText(selectedLauncher->getPath());
ui->le_launcher_argEdit->setText(selectedLauncher->getArgs());
ui->le_launcher_suffix->setText(selectedLauncher->getFileEndings());
}
}
void FSettingsDialog::on_le_launcher_nameEdit_editingFinished()
{ updateLauncher(); }
void FSettingsDialog::on_le_launcher_pathEdit_editingFinished()
{ updateLauncher(); }
void FSettingsDialog::on_le_launcher_argEdit_editingFinished()
{ updateLauncher(); }
void FSettingsDialog::on_le_launcher_suffix_editingFinished()
{ updateLauncher(); }
void FSettingsDialog::on_pb_sync_FolderDialog_clicked()
{
QString path = QFileDialog::getExistingDirectory(this, tr("Target-Dir"));
ui->le_sync_path->setText(path);
}
void FSettingsDialog::on_pb_gen_ScanForUpdates_clicked()
{
}
void FSettingsDialog::updateLauncher() {
if(selectedLauncher) {
selectedLauncher->setName(ui->le_launcher_nameEdit->text());
selectedLauncher->setPath(ui->le_launcher_pathEdit->text());
selectedLauncher->setArgs(ui->le_launcher_argEdit->text());
selectedLauncher->setFileEndings(ui->le_launcher_suffix->text());
}
}
void FSettingsDialog::on_btn_Artwork_DownloadAll_clicked() {
if(QMessageBox::warning(this, tr("Please confirm!"), tr("If artwork is found, existing artwork will be overwritten!"),QMessageBox::Ok, QMessageBox::Cancel) ==QMessageBox::Cancel)
return;
runningDownloads = 0;
totalDownloads = 0;
gameList = db->getGameList();
for(int i=0;i<gameList.length();++i) {
FArtManager *artmanager = new FArtManager();
connect(artmanager, SIGNAL(startedDownload()), this, SLOT(downloadStarted()));
connect(artmanager, SIGNAL(finishedDownload()), this, SLOT(downloadFinished()));
artmanager->getGameData(gameList[i], "PC");
}
}
void FSettingsDialog::on_btn_Folder_Add_clicked()
{
QDir gameDir = QFileDialog::getExistingDirectory(this, tr("Choose the library folder"), QDir::homePath());
ui->lw_Folder_FolderList->addItem(gameDir.absolutePath());
FWatchedFolder w;
w.setDirectory(gameDir);
watchedFolders.insert(w.getDirectory().absolutePath(), w);
}
void FSettingsDialog::on_btn_Folder_Remove_clicked()
{
if(watchedFolders.count() == 0 || selectedFolder == NULL)
{
return;
}
if(QMessageBox::warning(this, tr("Please confirm!"), tr("Do you really want to remove") + "\"" +selectedFolder->getDirectory().absolutePath()+ "\"?\r\n" + tr("The games inside won't be removed from your disk."),QMessageBox::Ok, QMessageBox::Cancel)==QMessageBox::Ok) {
watchedFolders.remove(selectedFolder->getDirectory().absolutePath());
ui->lw_Folder_FolderList->clear();
for(int i=0;i<watchedFolders.count();++i)
ui->lw_Folder_FolderList->addItem(watchedFolders.values()[i].getDirectory().absolutePath());
}
}
void FSettingsDialog::on_cb_Folder_ForLauncher_clicked()
{
ui->cb_Folder_LauncherList->setEnabled(ui->cb_Folder_ForLauncher->checkState());
if(selectedFolder != NULL)
selectedFolder->forLauncher = (bool)ui->cb_Folder_ForLauncher->checkState();
}
void FSettingsDialog::downloadFinished() {
--runningDownloads;
ui->la_Artwork_DownloadStatus->setText(tr("Running downloads:") + QString::number(runningDownloads));
if(runningDownloads<=0)
QMessageBox::information(this, tr("Downloads finished"), tr("Finished %n download(s)",0,totalDownloads));
}
void FSettingsDialog::downloadStarted() {
++runningDownloads;
++totalDownloads;
ui->la_Artwork_DownloadStatus->setText(tr("Running downloads:") + QString::number(runningDownloads));
}
void FSettingsDialog::on_btn_Artwork_openCache_clicked() {
QDesktopServices::openUrl(FGame::getCacheDir());
}
void FSettingsDialog::on_btn_Artwork_ClearCache_clicked() {
QDir cacheDir(FGame::getCacheDir());
#if (QT_VERSION < QT_VERSION_CHECK(5, 0, 0))
cacheDir.setNameFilters(QStringList()<<"*.*");
QStringList steamFiles = cacheDir.entryList();
for(int i=0;i<steamFiles.length();++i) {
cacheDir.remove(steamFiles[i]);
}
#else
cacheDir.removeRecursively();
#endif
}
void FSettingsDialog::on_buttonBox_accepted()
{
db->updateBoolPref("ScanLibsOnStartup", (bool)ui->cb_ScanLibOnStartup->checkState());
//Artwortk-Page
db->updateBoolPref("useArtworkCache", (bool)ui->cb_Artwork_UseCache->checkState());
//##########################
//WatchedFolders
db->updateWatchedFolders(watchedFolders.values());
//##########################
//Launchers
db->updateLaunchers(launchers.values());
//##########################
//Savegame-Sync
db->updateTextPref("sync_target", ui->le_sync_path->text());
db->updateIntPref("sync_No_of_Backups", ui->sb_sync_backups->value());
db->updateBoolPref("autoScanUpdates", (bool)ui->cb_gen_ScanForUpdates->checkState());
db->updateBoolPref("StartWithSystem", (bool)ui->cb_gen_StartWithSystem->checkState());
db->updateBoolPref("useTrayIcon", (bool)ui->cb_gen_useTrayIcon->checkState());
db->updateIntPref("standartFontSize", ui->sb_int_standardFontsize->value());
db->updateIntPref("headerFontSize", ui->sb_int_headerFontsize->value());
#if (QT_VERSION >= QT_VERSION_CHECK(5, 0, 0))
db->updateTextPref("currentLanguage", ui->cb_int_language->currentData().toString());
#endif
#ifdef _WIN32
QSettings bootUpSettings("HKEY_CURRENT_USER\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run", QSettings::NativeFormat);
QString app_path = QCoreApplication::applicationFilePath().replace("/", "\\");
if(db->getBoolPref("StartWithSystem", true)) {
bootUpSettings.setValue("FusionLauncher", app_path);
}else {
bootUpSettings.remove("FusionLauncher");
}
#elif __linux
#endif
}