forked from Vector35/binaryninja-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettingsview.h
471 lines (377 loc) · 12.3 KB
/
settingsview.h
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
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
#pragma once
#include <QtCore/QAbstractItemModel>
#include <QtCore/QItemSelection>
#include <QtCore/QModelIndex>
#include <QtCore/QRegularExpression>
#include <QtCore/QSize>
#include <QtCore/QSortFilterProxyModel>
#include <QtCore/QTimer>
#include <QtCore/QVariant>
#include <QtGui/QMouseEvent>
#include <QtWidgets/QCheckBox>
#include <QtWidgets/QComboBox>
#include <QtWidgets/QDoubleSpinBox>
#include <QtWidgets/QLabel>
#include <QtWidgets/QLineEdit>
#include <QtWidgets/QPushButton>
#include <QtWidgets/QSpinBox>
#include <QtWidgets/QStyledItemDelegate>
#include <QtWidgets/QTableWidget>
#include <QtWidgets/QTreeView>
#include <map>
#include <optional>
#include <set>
#include <utility>
#include <vector>
#include "binaryninjaapi.h"
#include "json/json.h"
#include "render.h"
#include "menus.h"
#include "clickablelabel.h"
/*!
\defgroup settingsview SettingsView
\ingroup uiapi
*/
/*!
\ingroup settingsview
*/
struct SettingsEntry
{
SettingsEntry(int p, const QString& h, const QString& g, std::vector<void*>&& j) :
parent(p), heading(h), group(g), jsonDefs(j)
{}
int parent;
QString heading;
QString group;
std::vector<void*> jsonDefs;
std::vector<QString> subgroups;
};
/*!
\ingroup settingsview
*/
class BINARYNINJAUIAPI SettingsTreeModel : public QAbstractItemModel
{
Q_OBJECT
private:
Json::Value m_schema;
std::vector<SettingsEntry> m_store;
std::map<std::string, QString> m_filterText;
std::map<std::string, int> m_ignoreScope;
public:
SettingsTreeModel(std::string schema, QObject* parent = 0);
~SettingsTreeModel();
QVariant data(const QModelIndex& index, int role) const override;
Qt::ItemFlags flags(const QModelIndex& index) const override;
QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const override;
QModelIndex index(int row, int column, const QModelIndex& parent = QModelIndex()) const override;
QModelIndex parent(const QModelIndex& index) const override;
int rowCount(const QModelIndex& parent = QModelIndex()) const override;
int columnCount(const QModelIndex& parent = QModelIndex()) const override;
bool setData(const QModelIndex& index, const QVariant& value, int role = Qt::EditRole) override;
void updateModel();
};
/*!
\ingroup settingsview
*/
class BINARYNINJAUIAPI SettingsFilterProxyModel : public QSortFilterProxyModel
{
Q_OBJECT
int m_scopeFilter = SettingsAutoScope;
int m_scopeForSchema = SettingsAutoScope;
std::map<std::string, int> m_itemScope;
mutable QRegularExpression m_regExp;
mutable std::map<QString, std::set<QString>> m_subgroupFilterCache;
public:
SettingsFilterProxyModel(QObject* parent = 0);
int scopeFilter() { return m_scopeFilter; }
void setScopeFilter(int scope)
{
m_scopeFilter = scope;
invalidateFilter();
m_subgroupFilterCache.clear();
}
int scopeForSchema() { return m_scopeForSchema; }
void setScopeForSchema(int scope)
{
invalidateFilter();
m_subgroupFilterCache.clear();
m_scopeForSchema = scope;
}
QVariant data(const QModelIndex& index, int role = Qt::DisplayRole) const override;
protected:
bool filterAcceptsRow(int sourceRow, const QModelIndex& sourceParent) const override;
bool lessThan(const QModelIndex& left, const QModelIndex& right) const override;
public Q_SLOTS:
void updateScope(const std::string& key, int scope) { m_itemScope[key] = scope; }
};
/*!
\ingroup settingsview
*/
class BINARYNINJAUIAPI SettingsOutlineProxyModel : public QSortFilterProxyModel
{
Q_OBJECT
public:
SettingsOutlineProxyModel(QObject* parent = 0);
protected:
bool filterAcceptsRow(int sourceRow, const QModelIndex& sourceParent) const override;
};
/*!
\ingroup settingsview
*/
class BINARYNINJAUIAPI SettingsEditor : public QWidget
{
Q_OBJECT
private:
SettingsRef m_settings;
Json::Value m_setting;
std::string m_settingKey;
BinaryViewRef m_view = nullptr;
BNSettingsScope m_scope = SettingsAutoScope;
QLabel* m_title = nullptr;
ClickableLabel* m_description = nullptr;
QLabel* m_settingKeyText = nullptr;
QLabel* m_settingSep = nullptr;
QLabel* m_message = nullptr;
BNSettingsScope m_currSettingScope = SettingsDefaultScope;
QLabel* m_scopeText = nullptr;
QCheckBox* m_checkBox = nullptr;
QLineEdit* m_settingText = nullptr;
QDoubleSpinBox* m_doubleSpinBox = nullptr;
QSpinBox* m_spinBox = nullptr;
QComboBox* m_comboBox = nullptr;
QTableWidget* m_objectTable = nullptr;
std::set<QString> m_validComboSelections;
std::vector<std::pair<std::string, Json::ValueType>> m_objectTableColumns;
Json::StreamWriterBuilder m_builder;
bool m_optional = false;
bool m_readOnly = false;
bool m_requiresRestart = false;
bool m_settingModified = false;
int m_minHeight;
int m_maxAdjustedWidth;
std::pair<bool, std::vector<std::pair<std::string, Json::ValueType>>> isObjectSetting(const Json::Value& value);
QTableWidgetItem* getTableItemForValue(const Json::Value& value);
public:
SettingsEditor(QWidget* parent, SettingsRef settings, BinaryViewRef view, BNSettingsScope scope, const Json::Value* setting);
~SettingsEditor();
void setSetting(const Json::Value* value, bool updateSchema = false);
Q_SIGNALS:
void settingChanged();
void allSettingsChanged();
void showIdentifiers(bool enable);
void notifyScope(const std::string& key, int scope);
void notifySettingChanged(QString);
void notifyNeedsRestart();
private:
void notifySettingUpdate(); // TODO core notification callbacks
private Q_SLOTS:
void toggleBoolSetting();
void updateBoolSetting(bool enabled);
void updateEnumStringSetting(const QString& text);
void updateStringSetting();
void updateFormatedNumberSetting();
void updateDoubleNumberSetting(double value);
void updateIntNumberSetting(int value);
void updateObjectSetting();
void addArraySetting(const QString& text);
void resetSetting();
void resetAllSettings(BNSettingsScope scope);
void selectFont();
void selectUiFont();
void selectInterpreter();
void selectActionHandler(QString action);
public Q_SLOTS:
void updateScope(BinaryViewRef, BNSettingsScope);
void updateSize();
void notifyGeometryChanged();
void updateViewMode(bool enabled);
private:
void contextMenu();
protected:
bool eventFilter(QObject* obj, QEvent* event) override;
void mousePressEvent(QMouseEvent* event) override;
void paintEvent(QPaintEvent* event) override;
};
/*!
\ingroup settingsview
*/
class BINARYNINJAUIAPI SettingsDelegate : public QStyledItemDelegate
{
Q_OBJECT
private:
SettingsRef m_settings;
SettingsFilterProxyModel* m_filterModel;
BinaryViewRef m_view = nullptr;
BNSettingsScope m_scope = SettingsAutoScope;
QFont m_groupFont;
QFont m_subgroupFont;
QFont m_monoFont;
int m_groupHeight;
int m_subgroupHeight;
int m_monoFontHeight;
QTimer* m_updateModelTimer;
QTimer* m_resizeTimer;
QSize m_lastViewportSize;
QTreeView* m_treeView;
std::function<void(const QModelIndex& index)> m_hoverAction = nullptr;
std::function<void(const QString&, const QString&)> m_defaultSelectionAction = nullptr;
QString m_defaultGroupSelection;
QString m_defaultSubgroupSelection;
public:
SettingsDelegate(QWidget* parent, SettingsRef settings, SettingsFilterProxyModel* filterModel,
const std::function<void(const QModelIndex& index)>& hoverAction = nullptr);
~SettingsDelegate();
void setDefaultSelection(const QString& group, const QString& subgroup, const std::function<void(const QString&, const QString&)>& selectionAction);
void paint(QPainter* painter, const QStyleOptionViewItem& option, const QModelIndex& index) const override;
QSize sizeHint(const QStyleOptionViewItem& option, const QModelIndex& index) const override;
QWidget* createEditor(QWidget* parent, const QStyleOptionViewItem& option, const QModelIndex& index) const override;
void setEditorData(QWidget* editor, const QModelIndex& index) const override;
void setModelData(QWidget* editor, QAbstractItemModel* model, const QModelIndex& index) const override;
void updateEditorGeometry(QWidget* editor, const QStyleOptionViewItem& option, const QModelIndex& index) const override;
public:
Q_SIGNALS:
void refreshAllSettings() const;
void scopeChanged(BinaryViewRef, BNSettingsScope);
void sizeChanged();
void viewModeChanged(bool enabled) const;
void notifyNeedsRestart() const;
void notifySettingChanged(QString settingId) const;
void performHoverAction(QModelIndex index) const;
public Q_SLOTS:
void notifyUpdateModel();
void updateFonts();
void updateModel();
void updateScope(BinaryViewRef, BNSettingsScope);
void notifyResizeEvent();
void updateViewMode(bool enabled) const;
private Q_SLOTS:
void commitEditorData();
};
/*!
\ingroup settingsview
*/
class BINARYNINJAUIAPI SettingsTreeView : public QTreeView
{
Q_OBJECT
public:
explicit SettingsTreeView(QWidget* parent);
~SettingsTreeView();
void updateTheme();
protected:
virtual void resizeEvent(QResizeEvent* event) override;
public Q_SLOTS:
void modelChanged(const QModelIndex& topLeft, const QModelIndex& bottomRight);
};
/*!
\ingroup settingsview
*/
class BINARYNINJAUIAPI BinaryViewScopeLabel : public MenuHelper
{
Q_OBJECT
BNSettingsScope m_scope;
QString m_scopeName;
std::vector<QString> m_actionNames;
std::vector<std::pair<BinaryViewRef, QString>> m_views;
QString m_curName;
BinaryViewRef m_curView = nullptr;
UIActionHandler m_actionHandler;
public:
BinaryViewScopeLabel(QWidget* parent, const QString& name = "", BNSettingsScope scope = SettingsAutoScope);
void refresh();
void setSelection(BinaryViewRef view, BNSettingsScope scope);
const QString& currentSelection() { return m_curName; }
BinaryViewRef currentBinaryView() { return m_curView; }
Q_SIGNALS:
void itemSelected(BinaryViewRef, BNSettingsScope);
protected:
virtual void showEvent(QShowEvent* event) override;
virtual void showMenu() override;
};
/*!
\ingroup settingsview
*/
class BINARYNINJAUIAPI SettingsScopeBar : public QWidget
{
Q_OBJECT
QPushButton* m_userLabel;
BinaryViewScopeLabel* m_projectLabel;
BinaryViewScopeLabel* m_resourceLabel;
//ClickableLabel* m_openProjectLabel;
QLabel* m_desc;
unsigned long m_highlightIdx;
void setScopeHighlight(unsigned long highlightIdx);
public:
SettingsScopeBar(QWidget* parent = nullptr);
void refresh();
void setResource(BinaryViewRef view);
void setScope(BNSettingsScope scope);
void updateTheme();
Q_SIGNALS:
void scopeChanged(BinaryViewRef, BNSettingsScope);
};
/*!
\ingroup settingsview
*/
class BINARYNINJAUIAPI SearchFilter : public QLineEdit
{
Q_OBJECT
std::map<QString, int> m_filterTags;
QRegularExpression m_regexTagExtract;
QTimer* m_filterDelayTimer = nullptr;
int m_delay;
public:
SearchFilter(QWidget* parent = nullptr);
void addTag(const QString& tagName, int tag);
void setDelay(int msec = 100) { m_delay = msec; }
void setFilter();
std::pair<QString, std::vector<int>> getSearchParams();
protected:
void keyPressEvent(QKeyEvent* event) override;
Q_SIGNALS:
void delayedTextChanged();
};
/*!
\ingroup settingsview
*/
class BINARYNINJAUIAPI SettingsView : public QWidget
{
Q_OBJECT
private:
QWidget* m_owner = nullptr;
SettingsRef m_settings;
SettingsFilterProxyModel* m_proxyModel = nullptr;
SettingsOutlineProxyModel* m_outlineProxyModel = nullptr;
QTreeView* m_outlineView = nullptr;
SettingsTreeView* m_settingsTreeView = nullptr;
SettingsDelegate* m_delegate = nullptr;
SettingsScopeBar* m_scopeBar = nullptr;
QCheckBox* m_viewMode = nullptr;
SearchFilter* m_search = nullptr;
bool m_outlineNavEnabled = true;
int m_nextGroupIdx = 0;
public:
SettingsView(QWidget* parent);
SettingsView(QWidget* parent, SettingsRef settings);
~SettingsView();
SettingsRef getSettings() { return m_settings; }
void openPersistentEditors(int numToOpen = 0, bool update = true);
void init(std::string schema, bool uiScopeSelection);
void refreshAllSettings();
void refreshCurrentScope();
void setData(BinaryViewRef view, const QString& name = "");
void setScope(BNSettingsScope scope);
void setDefaultGroupSelection(const QString& group, const QString& subgroup = "");
void focusSearch();
void setSearchFilter(const QString& filter) { if (m_search) m_search->setText(filter); };
public Q_SLOTS:
void updateFonts();
void updateTheme();
private Q_SLOTS:
void outlineSelectionChanged(const QItemSelection& selected, const QItemSelection& deselected);
void updateScopeFilter(int scope);
void updateTextFilter();
Q_SIGNALS:
void fontsChanged();
void notifyNeedsRestart();
void notifySettingChanged(QString settingId) const;
};