-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettingsdialog.cpp
223 lines (176 loc) · 7.4 KB
/
settingsdialog.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
#include "settingsdialog.h"
#include <QGridLayout>
#include <QVBoxLayout>
#include <QtGui>
#include <QApplication>
#include <QFileInfo>
#include <QDesktopWidget>
#include <QDebug>
#include <QMessageBox>
SettingsDialog::SettingsDialog(const QString& filename,
const QString& apiKey,
QWidget* parent)
: QDialog(parent),
APIkey(apiKey),
serializationFileName(filename)
{
QLabel* waitingLabel = new QLabel(tr("Downloading list of available languages ..."),this);
/* A signal readyToDeserialize() is emitted in createLangGroupBox() method */
connect(this, &SettingsDialog::readyToDeserialize, this, [this,waitingLabel]() {
waitingLabel->setVisible(false);
deserialize(); // the signal deserialized() is emitted here
});
createLangGroupBox();
createKeySequenceGroupBox();
createOtherSettingsGBox();
QPushButton* closeButton = new QPushButton(tr("&Close"),this);
connect(closeButton, &QPushButton::clicked, this, &QDialog::close);
QPushButton* setDefaultButton = new QPushButton(tr("&Default"),this);
connect(setDefaultButton, &QPushButton::clicked, this, [&]() {
setDefaultValues();
});
QVBoxLayout* layout = new QVBoxLayout(this);
layout->addWidget(waitingLabel);
layout->addWidget(langGBox);
layout->addWidget(keySequenceGBox);
layout->addWidget(otherSettingsGBox);
layout->addWidget(setDefaultButton);
layout->addWidget(closeButton);
layout->setSizeConstraint(QLayout::SetFixedSize);
setLayout(layout);
setWindowTitle(tr("Settings"));
QRect availableGeometry = QApplication::desktop()->availableGeometry();
resize(availableGeometry.width()/4, availableGeometry.height()/1.5);
}
void SettingsDialog::createLangGroupBox() {
langGBox = new QGroupBox("Languages",this);
QLabel* sourceLangLabel = new QLabel(tr("Source language:"),langGBox);
sourceLangBox = new QComboBox(langGBox);
sourceLangBox->setEditable(true);
QLabel* translationLangLabel = new QLabel(tr("Result language:"),langGBox);
resultLangBox = new QComboBox(langGBox);
resultLangBox->setEditable(true);
QLabel* translatorLinkLabel =
new QLabel(tr("Suggested languages are provided <br>by <a href=\"https://translate.yandex.ru/\">Yandex.Translator</a><br>"),langGBox);
translatorLinkLabel->setTextFormat(Qt::RichText);
translatorLinkLabel->setTextInteractionFlags(Qt::TextBrowserInteraction);
translatorLinkLabel->setOpenExternalLinks(true);
QGridLayout* layout = new QGridLayout(langGBox);
layout->addWidget(translatorLinkLabel,0,0,2,2);
layout->addWidget(sourceLangLabel,2,0);
layout->addWidget(sourceLangBox, 2,1);
layout->addWidget(translationLangLabel,3,0);
layout->addWidget(resultLangBox, 3,1);
langGBox->setLayout(layout);
/* Downloading list of available languages from translating service */
downloader = new TextFileDownloader;
downloader->dataRequest("https://translate.yandex.net/api/v1.5/tr.json/getLangs"
"?key=" + APIkey +
"&ui=en");
connect(downloader, &TextFileDownloader::readyToRead, this, [this]() {
document = QJsonDocument::fromJson(downloader->getData().toUtf8());
langList = document.object().value("langs").toObject();
foreach (const QString& key, langList.keys()) {
/* The first argument (text) is the full language name ("English"),
/* the second (userData) is the short one ("en") */
sourceLangBox->addItem(langList.value(key).toString(), key);
resultLangBox->addItem(langList.value(key).toString(), key);
}
emit readyToDeserialize();
});
}
void SettingsDialog::createKeySequenceGroupBox() {
keySequenceGBox = new QGroupBox("Key sequence",this);
QLabel* labelBeforeField = new QLabel(tr("Current shortcut: "), this);
keySequenceField = new QLineEdit(this);
keySequenceField->setReadOnly(true);
QPushButton* setButton = new QPushButton(tr("&Enter new shortcut"),this);
/* This label is appeared after clicking on the button */
labelAfterButton = new QLabel(tr("Press any combination of keys (Ctrl+Shift+D, Alt+5, ...)\n"
"Several combinations may not work on your operation system."),this);
labelAfterButton->setVisible(false);
connect(setButton,&QPushButton::clicked,
this, [this]() { isClicked = true; labelAfterButton->setVisible(true); }
);
QGridLayout* layout = new QGridLayout(this);
layout->addWidget(labelBeforeField,0,0);
layout->addWidget(keySequenceField,0,1);
layout->addWidget(setButton,1,1);
layout->addWidget(labelAfterButton,2,0,1,2);
keySequenceGBox->setLayout(layout);
}
void SettingsDialog::createOtherSettingsGBox() {
otherSettingsGBox = new QGroupBox("Other settings",this);
QLabel* popUpDurationLabel = new QLabel("Pop-up notification duration:",this);
popUpDuration = new QSpinBox(this);
popUpDuration->setValue(4);
popUpDuration->setMinimum(1);
QGridLayout* layout = new QGridLayout(this);
layout->addWidget(popUpDurationLabel,0,0);
layout->addWidget(popUpDuration,0,1);
otherSettingsGBox->setLayout(layout);
}
void SettingsDialog::keyPressEvent(QKeyEvent* keyEvent) {
if (!isClicked)
QDialog::keyPressEvent(keyEvent);
else {
int keyInt = keyEvent->key();
if (keyInt == Qt::Key_unknown) return;
// Only single click of modifier
if (keyInt == Qt::Key_Control || keyInt == Qt::Key_Shift ||
keyInt == Qt::Key_Alt || keyInt == Qt::Key_Meta)
return;
Qt::KeyboardModifiers modifiers = keyEvent->modifiers();
if(modifiers & Qt::ShiftModifier)
keyInt += Qt::SHIFT;
if(modifiers & Qt::ControlModifier)
keyInt += Qt::CTRL;
if(modifiers & Qt::AltModifier)
keyInt += Qt::ALT;
if(modifiers & Qt::MetaModifier)
keyInt += Qt::META;
keySequenceField->setText(QKeySequence(keyInt).toString());
isClicked = false;
labelAfterButton->setVisible(false);
}
}
void SettingsDialog::setDefaultValues()
{
sourceLangBox->setCurrentIndex(sourceLangBox->findText("English"));
resultLangBox->setCurrentIndex(resultLangBox->findText("Russian"));
keySequenceField->setText("Ctrl+1");
popUpDuration->setValue(4);
}
void SettingsDialog::serialize()
{
QFile file(serializationFileName);
file.open(QIODevice::WriteOnly);
QDataStream out(&file);
out << sourceLangBox->currentText();
out << resultLangBox->currentText();
out << keySequenceField->text();
out << qint32(popUpDuration->value());
file.close();
}
void SettingsDialog::deserialize()
{
QFileInfo fileInfo(serializationFileName);
if (!fileInfo.exists()) {
setDefaultValues();
show();
}
else {
QFile file(serializationFileName);
file.open(QIODevice::ReadOnly);
qint32 duration;
QString sourceLang, resultLang, hotkey;
QDataStream in(&file);
in >> sourceLang >> resultLang >> hotkey >> duration;
sourceLangBox->setCurrentIndex(sourceLangBox->findText(sourceLang));
resultLangBox->setCurrentIndex(resultLangBox->findText(resultLang));
keySequenceField->setText(hotkey);
popUpDuration->setValue(duration);
file.close();
}
emit deserialized();
}