-
Notifications
You must be signed in to change notification settings - Fork 0
/
mainwindow.cpp
314 lines (251 loc) · 9.57 KB
/
mainwindow.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
#include "mainwindow.h"
#include "ui_mainwindow.h"
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
thread = NULL;
actionExit = actionScan = NULL;
font.setFamily("Tahoma");
font.setPointSize(14);
ui->textEditQuestion->setFont(font);
ui->plainTextEditText->setFont(font);
ui->lineEditWord->setFont(font);
ui->comboBoxVocabulary->setFont(font);
// ui->pushButtonNext->setFont(font);
// ui->pushButtonPrevious->setFont(font);
// ui->pushButtonStart->setFont(font);
// ui->pushButtonStop->setFont(font);
db = QSqlDatabase::addDatabase("QMYSQL");
db.setHostName("localhost");
db.setDatabaseName("slovopedia");
db.setUserName("taras");
db.setPassword("su112per");
if ( !db.open() )
{
qDebug() << db.lastError().text();
QMessageBox msgBox;
msgBox.setText(tr("Database open error!"));
msgBox.exec();
exit(1);
}
// File menu
// actionExit = new QAction(QIcon(":/icons/x16.png"), QString(tr("Exit")), this);
// connect(actionExit, SIGNAL(triggered()), this, SLOT(close()));
//
// actionScan = new QAction(QIcon(":/icons/search16.png"), QString(tr("Scan")), this);
// connect(actionScan, SIGNAL(triggered()), this, SLOT(scanVocabulary()));
// ui->mainToolBar->addAction(actionScan);
//
// QMenu *menuFile = new QMenu(tr("File"), this);
// ui->menuBar->addMenu(menuFile);
// menuFile->addAction(actionScan);
// menuFile->addAction(actionExit);
ui->mainToolBar->setVisible(false);
vocabulary[29] = "УСЕ (Універсальний словник-енциклопедія)";
vocabulary[35] = "Орфографічний словник української мови";
vocabulary[49] = "Фразеологічний словник української мови";
vocabulary[31] = "Словник синонімів Полюги";
vocabulary[41] = "Словник синонімів Караванського";
vocabulary[36] = "Словник іншомовних слів";
vocabulary[42] = "Словник іншомовних слів Мельничука";
vocabulary[46] = "Словник англіцизмів";
vocabulary[38] = "Eкономічна енциклопедія";
vocabulary[27] = "Словник мови Стуса";
vocabulary[39] = "Словник іншомовних соціокультурних термінів";
vocabulary[40] = "Енциклопедія політичної думки";
vocabulary[43] = "Словник церковно-обрядової термінології";
vocabulary[44] = "Архітектура і монументальне мистецтво";
vocabulary[45] = "Словник-антисуржик";
vocabulary[48] = "Словник термінів, уживаних у чинному Законодавстві України";
vocabulary[50] = "Словник бюджетної термінології";
vocabulary[51] = "Термінологічний словник з економіки праці";
vocabulary[52] = "Глосарій термінів Фондового ринку";
vocabulary[53] = "Моделювання економіки";
vocabulary[54] = "Власні імена людей";
vocabulary[57] = "Словар українського сленгу";
vocabulary[58] = "Музичні терміни";
vocabulary[59] = "Тлумачний словник з інформатики та інформаційних систем для економістів";
vocabulary[61] = "Управління якістю";
int idx = 0;
QMap<int, QString>::iterator i;
for (i = vocabulary.begin(); i != vocabulary.end(); ++i)
{
ui->comboBoxVocabulary->insertItem(idx, i.value(), QVariant(i.key()));
idx++;
}
mapper = NULL;
mapper = new QDataWidgetMapper(this);
if (mapper)
{
model = NULL;
model = new QSqlQueryModel(this);
if (model)
setupModel();
mapper->addMapping(ui->lineEditWord, 0);
mapper->addMapping(ui->textEditQuestion, 1);
mapper->addMapping(ui->plainTextEditText, 2);
mapper->setSubmitPolicy(QDataWidgetMapper::ManualSubmit);
// mapper->setSubmitPolicy(QDataWidgetMapper::AutoSubmit);
connect(ui->pushButtonPrevious, SIGNAL(clicked()), mapper, SLOT(toPrevious()));
connect(ui->pushButtonNext, SIGNAL(clicked()), mapper, SLOT(toNext()));
// connect(ui->pushButtonSubmit, SIGNAL(clicked()), mapper, SLOT(submit()));
connect(ui->pushButtonSubmit, SIGNAL(clicked()), this, SLOT(submitButton()));
connect(mapper, SIGNAL(currentIndexChanged(int)), this, SLOT(updateButtons(int)));
mapper->toFirst();
}
connect(ui->comboBoxVocabulary, SIGNAL(currentIndexChanged(int)), this, SLOT(setupModel()));
ui->pushButtonStop->setDisabled(true);
connect(ui->pushButtonStart, SIGNAL(toggled(bool)), this, SLOT(scanVocabulary(bool)));
connect(ui->pushButtonStop, SIGNAL(toggled(bool)), this, SLOT(stopScan(bool)));
connect(ui->pushButtonExport, SIGNAL(clicked()), this, SLOT(exportVocabulary()));
}
MainWindow::~MainWindow()
{
delete ui;
db.close();
}
void MainWindow::changeEvent(QEvent *e)
{
QMainWindow::changeEvent(e);
switch (e->type()) {
case QEvent::LanguageChange:
ui->retranslateUi(this);
break;
default:
break;
}
}
bool MainWindow::event(QEvent *e)
{
switch (e->type()) {
case QEvent::Close:
stopScan(true);
break;
default:
break;
}
return QMainWindow::event(e);
}
void MainWindow::scanVocabulary(bool toggled)
{
if (toggled)
{
thread = new ScanThread(this);
if (thread)
{
connect(thread, SIGNAL(parsedFile(QString)), this, SLOT(updateStatusBar(QString)));
connect(thread, SIGNAL(finished()), this, SLOT(scanFinished()));
selectVocabulary(ui->comboBoxVocabulary->currentIndex());
thread->setDB(&db);
thread->startScanning();
thread->start(QThread::NormalPriority);
ui->comboBoxVocabulary->setDisabled(true);
ui->pushButtonStart->setDisabled(true);
ui->pushButtonStop->setDisabled(false);
}
}
}
void MainWindow::setupModel(void)
{
QString q("SELECT _word, _question, _text FROM slovopedia.works WHERE _vocabulary = %1;");
int index = ui->comboBoxVocabulary->currentIndex();
q = q.arg(ui->comboBoxVocabulary->itemData(index, Qt::UserRole).toInt());
model->setQuery(q);
mapper->setModel(model);
mapper->toFirst();
vocabularyId = ui->comboBoxVocabulary->itemData(index, Qt::UserRole).toInt();
}
void MainWindow::updateButtons(int row)
{
ui->pushButtonPrevious->setEnabled(row > 0);
ui->pushButtonNext->setEnabled(row < model->rowCount() - 1);
}
void MainWindow::stopScan(bool toggled)
{
if (toggled)
{
if (thread)
{
updateStatusBar("");
ui->pushButtonStop->setDisabled(true);
thread->stopScanning();
if (thread->wait())
{
ui->comboBoxVocabulary->setDisabled(false);
ui->pushButtonStart->setDisabled(false);
ui->pushButtonStart->setChecked(false);
ui->pushButtonStop->setChecked(false);
thread->disconnect();
delete thread;
thread = NULL;
}
}
}
}
void MainWindow::scanFinished(void)
{
updateStatusBar("");
ui->pushButtonStop->setDisabled(true);
if (thread)
thread->stopScanning();
ui->comboBoxVocabulary->setDisabled(false);
ui->pushButtonStart->setDisabled(false);
ui->pushButtonStart->setChecked(false);
mapper->toFirst();
}
void MainWindow::selectVocabulary(int index)
{
QString path("/home/taras/Projects/slovopedia.org.ua/%1/");
path = path.arg(ui->comboBoxVocabulary->itemData(index, Qt::UserRole).toString());
if (thread)
thread->setPath(path, vocabularyId);
}
void MainWindow::updateStatusBar(QString str)
{
ui->statusBar->showMessage(str);
}
void MainWindow::submitButton(void)
{
bool ok = mapper->submit();
if ( !ok )
qDebug() << "submitButton: " << model->lastError().text();
}
void MainWindow::exportVocabulary(void)
{
QSqlQuery query;
QString fn = "/home/taras/Projects/vocabulary_%1.txt";
int countRecord;
fn = fn.arg(vocabularyId);
QFile out(fn);
QString q("SELECT _word, _question FROM slovopedia.works WHERE _vocabulary = %1;");
q = q.arg(vocabularyId);
query.exec(q);
QSqlError le = query.lastError();
if (le.type() == QSqlError::NoError)
{
if (query.isActive() && query.isSelect())
countRecord = query.size();
else
countRecord = -1;
if (countRecord > 0)
{
out.open(QIODevice::WriteOnly);
int wordNo = query.record().indexOf("_word");
int questionNo = query.record().indexOf("_question");
while (query.next())
{
out.write("<word>");
out.write(query.value(wordNo).toByteArray());
out.write("</word>\n");
out.write("<question>\n");
out.write(query.value(questionNo).toByteArray());
out.write("\n</question>\n\n");
}
out.close();
}
}
else
qDebug() << "exportVocabulary: " << le.text();
}