-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathMainForm.h
More file actions
220 lines (174 loc) · 5.25 KB
/
MainForm.h
File metadata and controls
220 lines (174 loc) · 5.25 KB
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
#ifndef MAIN_FORM_H
#define MAIN_FORM_H
#include <QSettings>
#include <QFutureWatcher>
#include <QMainWindow>
#include <QToolButton>
#include <QIcon>
#include <QStringListModel>
#include "events.h"
#include "models.h"
#include "qsw.h"
#include "spellwork.h"
#include "ui_main.h"
#include "ui_scriptFilter.h"
class SpellWork;
class SpellListSortedModel;
class Enums : public QObject
{
Q_OBJECT
public:
enum LocalesDBC
{
enUS,
koKR,
frFR,
deDE,
zhCN,
zhTW,
esES,
esMX,
ruRU
};
Q_ENUMS(LocalesDBC)
};
class ScriptFilter : public QWidget, public Ui::scriptFilter
{
Q_OBJECT
public:
ScriptFilter(QWidget* parent = nullptr);
~ScriptFilter() {}
void addBookmark(QString str) {
str = str.trimmed();
if (!m_bookmarks.contains(str))
m_bookmarks << str;
m_model->setStringList(m_bookmarks);
}
void removeBookmark(int index) {
if (index < m_bookmarks.size())
m_bookmarks.removeAt(index);
m_model->setStringList(m_bookmarks);
}
void clearBookmarks() {
m_bookmarks.clear();
m_model->setStringList(m_bookmarks);
}
QStringList getBookmarks() const { return m_bookmarks; }
public slots:
void slotAdd();
void slotRemove();
void slotClear();
private:
QStringList m_bookmarks;
QStringListModel* m_model;
};
class QSWPage : public QWebEnginePage
{
Q_OBJECT
public:
QSWPage(QSW::Pages pageId, QObject* parent = nullptr)
: QWebEnginePage(parent), m_pageId(pageId), m_spellId(0) {}
QSW::Pages getPageId() const { return m_pageId; }
quint32 getSpellId() const { return m_spellId; }
QString getSourceHtml() const { return m_sourceHtml; }
bool acceptNavigationRequest(const QUrl& url, QWebEnginePage::NavigationType type, bool)
{
if (type == QWebEnginePage::NavigationTypeLinkClicked)
{
emit linkClicked(url);
return false;
}
return true;
}
void setCompareInfo(const QString &html)
{
setHtml(html, QUrl(QString("http://spellwork/%0").arg(m_spellId)));
}
void setInfo(const QString &html, quint32 spellId = 0)
{
if (spellId)
m_spellId = spellId;
m_sourceHtml = html;
setHtml(html, QUrl(QString("http://spellwork/%0").arg(m_spellId)));
}
signals:
void linkClicked(const QUrl&);
private:
quint32 m_spellId;
QSW::Pages m_pageId;
QString m_sourceHtml;
};
class MainForm : public QMainWindow, public Ui::main
{
Q_OBJECT
public:
MainForm(QWidget* parent = nullptr);
~MainForm();
void SetSearchAndShowSpell(int id);
void saveSettings(QString pluginName = QString());
void loadSettings(QString pluginName = QString());
QString getFilterText() const { return m_scriptFilter->scriptEdit->toPlainText(); }
void setFilterText(QString str) { m_scriptFilter->scriptEdit->setText(str); }
ScriptFilter* getScriptFilter() const { return m_scriptFilter; }
QWebEngineView* getBrowser(quint8 num) const
{
switch (num)
{
case 1: return webView1;
case 2: return webView2;
case 3: return webView3;
default: return webView1;
}
}
QSWPage* getPage(QSW::Pages pageId) const
{
return m_pages[pageId];
}
void loadComboBoxes(EnumHash enums);
void loadCompleter(QStringList names);
void setLocale(quint8 locale);
void createModeButton();
void createPluginButton();
void ShowSpell(int id);
SpellWork* m_sw;
public slots:
void slotAbout();
void slotSettings();
signals:
void signalSearch(quint8 type);
private slots:
void slotScriptFilter();
void slotScriptApply();
void slotFilterSearch();
void slotButtonSearch();
void slotCompareSearch();
void slotSearch(quint8 type);
void slotSearchResult();
void slotSearchFromList(const QModelIndex &index);
void slotLinkClicked(const QUrl &url);
void slotWov();
void slotModeShow();
void slotModeCompare();
void slotPrevRow();
void slotNextRow();
void slotCopyAll();
void slotChangeActivePlugin();
bool event(QEvent* ev);
private:
SpellListSortedModel* m_sortedModel;
Ui::main m_ui;
QToolButton* m_modeButton;
QToolButton* m_pluginButton;
QAction* m_actionAbout;
QAction* m_actionSettings;
QAction* m_actionWov;
QVector<QFontComboBox*> m_comboBoxes;
QVector<ComboBoxModel*> m_comboBoxModels;
typedef QFutureWatcher<EventList> SearchResultWatcher;
SearchResultWatcher* m_watcher;
QCompleter* m_completer;
QStringListModel* m_completerModel;
ScriptFilter* m_scriptFilter;
QSWPage* m_pages[QSW::PAGE_MAX];
};
#endif // MAIN_FORM_H