forked from notepadqq/notepadqq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtopeditorcontainer.cpp
286 lines (236 loc) · 8.87 KB
/
topeditorcontainer.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
#include "include/topeditorcontainer.h"
#include <QTabBar>
TopEditorContainer::TopEditorContainer(QWidget *parent) :
QSplitter(parent), m_currentTabWidget(0)
{
setOrientation(Qt::Horizontal);
//Always add a first tabWidget to the container.
//This ensures m_currentTagWidget is never null
m_currentTabWidget = addTabWidget();
}
EditorTabWidget *TopEditorContainer::addTabWidget()
{
EditorTabWidget *tabWidget = new EditorTabWidget(this);
addWidget(tabWidget);
// Detect tab switches
connect(tabWidget, &EditorTabWidget::currentChanged, this, &TopEditorContainer::on_currentTabChanged);
connect(tabWidget, &EditorTabWidget::gotFocus, this, &TopEditorContainer::on_currentTabWidgetChanged);
connect(tabWidget, &EditorTabWidget::tabBarClicked, this, &TopEditorContainer::on_currentTabWidgetChanged);
connect(tabWidget, &EditorTabWidget::customContextMenuRequested, this, &TopEditorContainer::on_customContextMenuRequested);
connect(tabWidget, &EditorTabWidget::tabCloseRequested, this, &TopEditorContainer::on_tabCloseRequested);
connect(tabWidget, &EditorTabWidget::editorAdded, this, &TopEditorContainer::on_editorAdded);
connect(tabWidget, &EditorTabWidget::editorMouseWheel, this, [=](int tab, QWheelEvent *ev) {
emit editorMouseWheel(tabWidget, tab, ev);
});
connect(tabWidget, &EditorTabWidget::tabBarDoubleClicked, this, [=](int index) {
emit tabBarDoubleClicked(tabWidget, index);
});
//Resize all panes to be equally big.
const int currentViewCount = count();
const int tabSize = contentsRect().width() / currentViewCount;
QList<int> sizes;
for(int i=0; i<currentViewCount; ++i)
sizes << tabSize;
setSizes( sizes );
return tabWidget;
}
EditorTabWidget *TopEditorContainer::tabWidget(int index)
{
return dynamic_cast<EditorTabWidget *>(widget(index));
}
EditorTabWidget *TopEditorContainer::currentTabWidget()
{
return m_currentTabWidget;
}
EditorTabWidget *TopEditorContainer::inactiveTabWidget(bool createIfNotExists)
{
const int currentViewCount = count();
if(currentViewCount >= 2) {
//Two view panes are open. Pick the one not currently active.
int viewId = widget(1)==currentTabWidget() ? 0 : 1;
return tabWidget(viewId);
}
//Only one view pane is open.
if(createIfNotExists)
return addTabWidget();
else
return nullptr;
}
EditorTabWidget *TopEditorContainer::tabWidgetFromEditor(QSharedPointer<Editor> editor)
{
return tabWidgetFromEditor(editor.data());
}
EditorTabWidget *TopEditorContainer::tabWidgetFromEditor(Editor* editor)
{
for (int i = 0; i < count(); i++) {
if (tabWidget(i)->indexOf(editor) > -1)
return tabWidget(i);
}
return 0;
}
void TopEditorContainer::on_currentTabChanged(int index)
{
EditorTabWidget *tabWidget = dynamic_cast<EditorTabWidget *>(sender());
if (!tabWidget)
return;
m_currentTabWidget = tabWidget;
emit currentTabChanged(tabWidget, index);
emit currentEditorChanged(tabWidget, index);
}
void TopEditorContainer::on_currentTabWidgetChanged()
{
EditorTabWidget *tabWidget = dynamic_cast<EditorTabWidget *>(sender());
if (!tabWidget)
return;
if(m_currentTabWidget != tabWidget) {
m_currentTabWidget = tabWidget;
emit currentTabWidgetChanged(tabWidget);
emit currentEditorChanged(tabWidget, tabWidget->currentIndex());
}
}
void TopEditorContainer::on_customContextMenuRequested(QPoint point)
{
EditorTabWidget *tabWidget = dynamic_cast<EditorTabWidget *>(sender());
if (!tabWidget)
return;
int index = tabWidget->tabBar()->tabAt(point);
if(index != -1)
{
tabWidget->setFocus();
tabWidget->setCurrentIndex(index);
emit customTabContextMenuRequested(
tabWidget->mapToGlobal(point),
tabWidget,
index);
}
}
void TopEditorContainer::on_tabCloseRequested(int index)
{
EditorTabWidget *tabWidget = dynamic_cast<EditorTabWidget *>(sender());
if (!tabWidget)
return;
m_currentTabWidget = tabWidget;
emit tabCloseRequested(tabWidget, index);
}
void TopEditorContainer::on_editorAdded(int tab)
{
EditorTabWidget *tabWidget = dynamic_cast<EditorTabWidget *>(sender());
if (!tabWidget)
return;
emit editorAdded(tabWidget, tab);
}
void TopEditorContainer::forEachEditor(std::function<bool (const int, const int, EditorTabWidget *, QSharedPointer<Editor>)> callback)
{
forEachEditor(false, callback);
}
std::vector<QSharedPointer<Editor>> TopEditorContainer::getOpenEditors()
{
std::vector<QSharedPointer<Editor>> editors;
for (int i = 0; i < count(); i++) {
EditorTabWidget *tabW = tabWidget(i);
for (int j = 0; j < tabW->count(); j++) {
editors.push_back(tabW->editor(j));
}
}
return editors;
}
int TopEditorContainer::getNumEditors()
{
int total = 0;
for(int i = 0; i < count(); ++i)
total += tabWidget(i)->count();
return total;
}
void TopEditorContainer::disconnectAllTabWidgets()
{
for (int i = 0; i < count(); ++i) {
tabWidget(i)->disconnect();
}
}
void TopEditorContainer::forEachEditor(bool backwardIndexes,
std::function<bool (const int tabWidgetId, const int editorId, EditorTabWidget *tabWidget, QSharedPointer<Editor> editor)> callback)
{
if (backwardIndexes) {
for (int i = count() - 1; i >= 0; i--) {
EditorTabWidget *tabW = tabWidget(i);
for (int j = tabW->count() - 1; j >= 0; j--) {
bool ret = callback(i, j, tabW, tabW->editor(j));
if (ret == false) return;
}
}
} else {
for (int i = 0; i < count(); i++) {
EditorTabWidget *tabW = tabWidget(i);
for (int j = 0; j < tabW->count(); j++) {
bool ret = callback(i, j, tabW, tabW->editor(j));
if (ret == false) return;
}
}
}
}
QPromise<void> TopEditorContainer::forEachEditorAsync(bool backwardIndices,
std::function<void (const int tabWidgetId, const int editorId, EditorTabWidget *tabWidget, QSharedPointer<Editor> editor, std::function<void()> goOn, std::function<void()> stop)> callback)
{
return QPromise<void>([=](const auto& resolve, const auto&) {
if (backwardIndices) {
std::function<std::function<void()>(int,int)> iteration = [=](int i, int j) {
return [=]() {
if (i < 0) {
resolve();
return;
}
if (j < 0) {
if (i-1 >= 0) {
iteration(i-1, this->tabWidget(i-1)->count() - 1);
}
return;
}
EditorTabWidget *tabW = this->tabWidget(i);
callback(i, j, tabW, tabW->editor(j), iteration(i, j-1), [resolve](){ resolve(); });
};
};
iteration(this->count() - 1, this->tabWidget(0)->count() - 1)();
} else {
std::function<std::function<void()>(int,int)> iteration = [=](int i, int j) {
return [=]() {
if (i >= this->count()) {
resolve();
return;
}
if (j >= this->tabWidget(i)->count()) {
iteration(i+1, 0);
return;
}
EditorTabWidget *tabW = this->tabWidget(i);
callback(i, j, tabW, tabW->editor(j), iteration(i, j+1), [resolve](){ resolve(); });
};
};
iteration(0, 0)();
}
});
}
QPromise<void> TopEditorContainer::forEachEditorConcurrent(std::function<void (const int tabWidgetId, const int editorId, EditorTabWidget *tabWidget, QSharedPointer<Editor> editor, std::function<void()> done)> callback)
{
return QPromise<void>([=](const auto& resolve, const auto&) {
// Collect all the indices we're going to use
std::vector<std::pair<int,int>> indices;
for (int i = 0; i < this->count(); i++) {
EditorTabWidget *tabW = this->tabWidget(i);
for (int j = 0; j < tabW->count(); j++) {
indices.push_back(std::make_pair(i, j));
}
}
// Counts the number of iterations
std::shared_ptr<int> cnt = std::make_shared<int>(indices.size());
for (const auto& idx : indices) {
int i = idx.first;
int j = idx.second;
callback(i, j, this->tabWidget(i), this->tabWidget(i)->editor(j), [cnt, resolve](){
(*cnt)--;
if (*cnt == 0) {
resolve();
}
});
}
});
}