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
|
#include "settingswidget.h"
#include "ui_settingswidget.h"
#include <QMessageBox>
#include "mainwindow.h"
extern QString defaultUserAgentStr;
SettingsWidget::SettingsWidget(QWidget *parent, QString engineCachePath, QString enginePersistentStoragePath) :
QWidget(parent),
ui(new Ui::SettingsWidget)
{
ui->setupUi(this);
this->engineCachePath = engineCachePath;
this->enginePersistentStoragePath = enginePersistentStoragePath;
ui->closeButtonActionComboBox->setCurrentIndex(settings.value("closeButtonActionCombo",0).toInt());
ui->notificationCheckBox->setChecked(settings.value("disableNotificationPopups",false).toBool());
ui->muteAudioCheckBox->setChecked(settings.value("muteAudio",false).toBool());
ui->autoPlayMediaCheckBox->setChecked(settings.value("autoPlayMedia",false).toBool());
ui->themeComboBox->setCurrentText(utils::toCamelCase(settings.value("windowTheme","light").toString()));
ui->userAgentLineEdit->setText(settings.value("useragent",defaultUserAgentStr).toString());
ui->enableSpellCheck->setChecked(settings.value("sc_enabled",true).toBool());
ui->notificationTimeOutspinBox->setValue(settings.value("notificationTimeOut",9000).toInt()/1000);
ui->notificationCombo->setCurrentIndex(settings.value("notificationCombo",1).toInt());
this->setCurrentPasswordText("Current Password: <i>"
+QByteArray::fromBase64(settings.value("asdfg").toString().toUtf8())+"</i>");
applyThemeQuirks();
ui->setUserAgent->setEnabled(false);
}
SettingsWidget::~SettingsWidget()
{
delete ui;
}
void SettingsWidget::loadDictionaries(QStringList dictionaries)
{
// set up supported spellcheck dictionaries
QStringList ui_dictionary_names;
foreach(QString dictionary_name, dictionaries) {
ui_dictionary_names.append(dictionary_name);
}
ui_dictionary_names.sort();
//add to ui
ui->dictComboBox->blockSignals(true);
foreach(QString dict_name, ui_dictionary_names) {
ui->dictComboBox->addItem(dict_name);
}
ui->dictComboBox->blockSignals(false);
// load settings for spellcheck dictionary
QString dictionary_name = settings.value("sc_dict","en-US").toString();
int pos = ui->dictComboBox->findText(dictionary_name);
if (pos == -1) {
pos = ui->dictComboBox->findText("en-US");
if (pos == -1) {
pos = 0;
}
}
ui->dictComboBox->setCurrentIndex(pos);
}
void SettingsWidget::refresh()
{
ui->cacheSize->setText(utils::refreshCacheSize(cachePath()));
ui->cookieSize->setText(utils::refreshCacheSize(persistentStoragePath()));
//update dict settings at runtime
// load settings for spellcheck dictionary
QString dictionary_name = settings.value("sc_dict","en-US").toString();
int pos = ui->dictComboBox->findText(dictionary_name);
if (pos == -1) {
pos = ui->dictComboBox->findText("en-US");
if (pos == -1) {
pos = 0;
}
}
ui->dictComboBox->setCurrentIndex(pos);
//enable disable spell check
ui->enableSpellCheck->setChecked(settings.value("sc_enabled",true).toBool());
}
void SettingsWidget::updateDefaultUAButton(const QString engineUA)
{
bool isDefault = QString::compare(engineUA,defaultUserAgentStr,Qt::CaseInsensitive) == 0;
ui->defaultUserAgentButton->setEnabled(!isDefault);
if(ui->userAgentLineEdit->text().trimmed().isEmpty()){
ui->userAgentLineEdit->setText(engineUA);
}
}
QString SettingsWidget::cachePath()
{
return engineCachePath;
}
QString SettingsWidget::persistentStoragePath()
{
return enginePersistentStoragePath;
}
void SettingsWidget::on_deleteCache_clicked()
{
QMessageBox msgBox;
msgBox.setText("This will delete app cache! Application cache makes application load faster.");
msgBox.setIconPixmap(QPixmap(":/icons/information-line.png").scaled(42,42,Qt::KeepAspectRatio,Qt::SmoothTransformation));
msgBox.setInformativeText("Delete Application cache ?");
msgBox.setStandardButtons(QMessageBox::Yes | QMessageBox::No);
msgBox.setDefaultButton(QMessageBox::No);
int ret = msgBox.exec();
switch (ret) {
case QMessageBox::Yes:{
utils::delete_cache(this->cachePath());
refresh();
break;
}
case QMessageBox::No:
break;
}
}
void SettingsWidget::on_deletePersistentData_clicked()
{
QMessageBox msgBox;
msgBox.setText("This will delete app Persistent Data ! Persistent data includes persistent cookies, HTML5 local storage, and visited links.");
msgBox.setIconPixmap(QPixmap(":/icons/information-line.png").scaled(42,42,Qt::KeepAspectRatio,Qt::SmoothTransformation));
msgBox.setInformativeText("Delete Application Cookies ?");
msgBox.setStandardButtons(QMessageBox::Yes | QMessageBox::No);
msgBox.setDefaultButton(QMessageBox::No);
int ret = msgBox.exec();
switch (ret) {
case QMessageBox::Yes:{
utils::delete_cache(this->persistentStoragePath());
refresh();
break;
}
case QMessageBox::No:
break;
}
}
void SettingsWidget::on_notificationCheckBox_toggled(bool checked)
{
settings.setValue("disableNotificationPopups",checked);
}
void SettingsWidget::on_themeComboBox_currentTextChanged(const QString &arg1)
{
applyThemeQuirks();
settings.setValue("windowTheme",QString(arg1).toLower());
emit updateWindowTheme();
emit updatePageTheme();
}
void SettingsWidget::applyThemeQuirks()
{
//little quirks
if(QString::compare(ui->themeComboBox->currentText(),"dark",Qt::CaseInsensitive)==0)
{
ui->label_7->setStyleSheet("color:#c2c5d1;padding: 0px 8px 0px 8px;background:transparent;");
}else{
ui->label_7->setStyleSheet("color:#1e1f21;padding: 0px 8px 0px 8px;background:transparent;");
}
}
void SettingsWidget::on_muteAudioCheckBox_toggled(bool checked)
{
settings.setValue("muteAudio",checked);
emit muteToggled(checked);
}
void SettingsWidget::on_autoPlayMediaCheckBox_toggled(bool checked)
{
settings.setValue("autoPlayMedia",checked);
emit autoPlayMediaToggled(checked);
}
void SettingsWidget::on_defaultUserAgentButton_clicked()
{
ui->userAgentLineEdit->setText(defaultUserAgentStr);
emit userAgentChanged(ui->userAgentLineEdit->text());
}
void SettingsWidget::on_userAgentLineEdit_textChanged(const QString &arg1)
{
bool isDefault = QString::compare(arg1.trimmed(),defaultUserAgentStr,Qt::CaseInsensitive) == 0;
bool isPrevious= QString::compare(arg1.trimmed(),settings.value("useragent",defaultUserAgentStr).toString(),Qt::CaseInsensitive) == 0;
if(isDefault == false && arg1.trimmed().isEmpty()==false)
{
ui->defaultUserAgentButton->setEnabled(false);
ui->setUserAgent->setEnabled(false);
}
if(isPrevious == false && arg1.trimmed().isEmpty() == false)
{
ui->setUserAgent->setEnabled(true);
ui->defaultUserAgentButton->setEnabled(true);
}
if(isPrevious){
ui->defaultUserAgentButton->setEnabled(true);
ui->setUserAgent->setEnabled(false);
}
}
void SettingsWidget::on_setUserAgent_clicked()
{
if(ui->userAgentLineEdit->text().trimmed().isEmpty()){
QMessageBox::information(this,QApplication::applicationName()+"| Error",
"Cannot set an empty UserAgent String.");
return;
}
emit userAgentChanged(ui->userAgentLineEdit->text());
}
void SettingsWidget::on_closeButtonActionComboBox_currentIndexChanged(int index)
{
settings.setValue("closeButtonActionCombo",index);
}
void SettingsWidget::appLockSetChecked(bool checked)
{
ui->applock_checkbox->setChecked(checked);
}
void SettingsWidget::setCurrentPasswordText(QString str)
{
ui->current_password->setText(str);
}
void SettingsWidget::on_applock_checkbox_toggled(bool checked)
{
if(settings.value("asdfg").isValid()){
settings.setValue("lockscreen",checked);
}else{
settings.setValue("lockscreen",false);
}
if(checked){
emit init_lock();
}
}
void SettingsWidget::on_dictComboBox_currentIndexChanged(const QString &arg1)
{
settings.setValue("sc_dict",arg1);
emit dictChanged(arg1);
}
void SettingsWidget::on_enableSpellCheck_toggled(bool checked)
{
settings.setValue("sc_enabled",checked);
emit spellCheckChanged(checked);
}
void SettingsWidget::on_showShortcutsButton_clicked()
{
QWidget *sheet = new QWidget(this);
sheet->setWindowTitle(QApplication::applicationName()+" | Global shortcuts");
sheet->setWindowFlags(Qt::Popup |Qt::FramelessWindowHint);
sheet->move(this->geometry().center()-sheet->geometry().center());
QVBoxLayout *layout = new QVBoxLayout(sheet);
sheet->setLayout(layout);
auto *w = qobject_cast<MainWindow*>(parent());
if(w != 0){
foreach (QAction *action, w->actions()) {
QString shortcutStr = action->shortcut().toString();
if(shortcutStr.isEmpty()==false){
QLabel *label = new QLabel(action->text().remove("&")+" | "+shortcutStr,sheet);
label->setAlignment(Qt::AlignHCenter);
layout->addWidget(label);
}
}
}
sheet->setAttribute(Qt::WA_DeleteOnClose);
sheet->show();
}
void SettingsWidget::on_showPermissionsButton_clicked()
{
PermissionDialog *permissionDialog = new PermissionDialog(this);
permissionDialog->setWindowTitle(QApplication::applicationName()+" | "+tr("Feature permissions"));
permissionDialog->setWindowFlag(Qt::Dialog);
permissionDialog->setAttribute(Qt::WA_DeleteOnClose,true);
permissionDialog->move(this->geometry().center()-permissionDialog->geometry().center());
permissionDialog->setMinimumSize(485,310);
permissionDialog->adjustSize();
permissionDialog->show();
}
void SettingsWidget::on_notificationTimeOutspinBox_valueChanged(int arg1)
{
settings.setValue("notificationTimeOut",arg1*1000);
emit notificationPopupTimeOutChanged();
}
void SettingsWidget::on_notificationCombo_currentIndexChanged(int index)
{
settings.setValue("notificationCombo",index);
}
void SettingsWidget::on_tryNotification_clicked()
{
emit notify("Test Notification");
}
|