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
|
#pragma once
#include <QtWidgets/QWidget>
#include <QtWidgets/QLabel>
#include <QtWidgets/QStackedWidget>
#include <QtWidgets/QSplitter>
#include <QtGui/QPicture>
#include <QtCore/QSettings>
#include "theme.h"
class SidebarEntry;
class MainWindow;
class ContextMenuManager;
class SplitPaneWidget;
struct SidebarIcon
{
QImage original;
QImage active;
QImage inactive;
static SidebarIcon generate(const QImage& src);
};
class BINARYNINJAUIAPI SidebarWidget : public QWidget
{
Q_OBJECT
protected:
QString m_title;
UIActionHandler m_actionHandler;
ContextMenuManager* m_contextMenuManager = nullptr;
Menu* m_menu = nullptr;
public:
SidebarWidget(const QString& title);
const QString& title() const { return m_title; }
virtual void notifyFontChanged() {}
virtual void notifyOffsetChanged(uint64_t /*offset*/) {}
virtual void notifyThemeChanged();
virtual void notifyViewChanged(ViewFrame* /*frame*/) {}
virtual void notifyViewLocationChanged(View* /*view*/, const ViewLocation& /*viewLocation*/) {}
virtual void focus();
virtual QWidget* headerWidget() { return nullptr; }
};
class BINARYNINJAUIAPI SidebarWidgetAndHeader : public QWidget
{
Q_OBJECT
SidebarWidget* m_widget;
QWidget* m_header;
ViewFrame* m_frame;
public:
SidebarWidgetAndHeader(SidebarWidget* widget, ViewFrame* frame);
SidebarWidget* widget() const { return m_widget; }
QWidget* header() const { return m_header; }
ViewFrame* viewFrame() const { return m_frame; }
void updateTheme();
void updateFonts();
};
class BINARYNINJAUIAPI SidebarHeaderTitle : public QLabel
{
Q_OBJECT
public:
SidebarHeaderTitle(const QString& name);
};
class BINARYNINJAUIAPI SidebarHeader : public QWidget
{
Q_OBJECT
public:
SidebarHeader(const QString& name, QWidget* rightSide = nullptr);
};
class BINARYNINJAUIAPI SidebarInvalidContextWidget : public SidebarWidget
{
Q_OBJECT
public:
SidebarInvalidContextWidget(const QString& title);
private Q_SLOTS:
void openFile();
};
class BINARYNINJAUIAPI SidebarWidgetType
{
SidebarIcon m_icon;
QString m_name;
public:
SidebarWidgetType(const QImage& icon, const QString& name);
virtual ~SidebarWidgetType() {}
const SidebarIcon& icon() const { return m_icon; }
const QString& name() const { return m_name; }
virtual bool isInReferenceArea() const { return false; }
virtual bool viewSensitive() const { return true; }
virtual SidebarWidget* createWidget(ViewFrame* frame, BinaryViewRef data) = 0;
virtual SidebarWidget* createInvalidContextWidget();
void updateTheme();
};
class ViewFrame;
struct SidebarWidgetContainerState
{
SidebarWidgetType* contentWidgetType;
SidebarWidgetType* referenceWidgetType;
QList<int> contentSplitterSizes;
QList<int> parentSplitterSizes;
};
class BINARYNINJAUIAPI SidebarWidgetContainer : public QWidget
{
Q_OBJECT
QSplitter* m_parentSplitter = nullptr;
QSplitter* m_contentSplitter;
QStackedWidget* m_contentStackedWidget;
QStackedWidget* m_referenceStackedWidget;
SplitPaneWidget* m_panes;
ViewFrame* m_frame;
QString m_dataType;
BinaryViewRef m_data;
SidebarWidgetType* m_contentActive = nullptr;
SidebarWidgetType* m_lastContentActive = nullptr;
SidebarWidgetType* m_referenceActive = nullptr;
SidebarWidgetType* m_pendingReferenceType = nullptr;
std::map<ViewFrame*, std::map<QString, std::map<SidebarWidgetType*, SidebarWidgetAndHeader*>>> m_widgets;
std::map<SplitPaneWidget*, std::map<QString, std::pair<SidebarWidgetType*, SidebarWidgetType*>>> m_priorWidgets;
std::map<SplitPaneWidget*, std::map<QString, QList<int>>> m_priorContentSplitterSizes;
std::map<SplitPaneWidget*, std::map<QString, QList<int>>> m_priorParentSplitterSizes;
std::optional<QList<int>> m_pendingContentSplitterSizes;
std::optional<QList<int>> m_pendingParentSplitterSizes;
std::map<ViewFrame*, std::map<QString, std::pair<View*, ViewLocation>>> m_currentViewLocation;
void activateWidgetForType(SidebarWidgetType* type);
void deactivateWidgetForType(SidebarWidgetType* type);
static QVariant sizesToVariant(const QList<int>& sizes);
static std::optional<QList<int>> variantToSizes(const QVariant& variant);
public:
SidebarWidgetContainer();
void setSplitter(QSplitter* splitter);
void setActiveContext(SplitPaneWidget* panes, ViewFrame* frame, const QString& dataType, BinaryViewRef data);
void destroyContext(ViewFrame* frame);
void destroyContext(SplitPaneWidget* panes);
bool isContentActive() const { return m_contentActive != nullptr; }
bool isActive(SidebarWidgetType* type) const { return m_contentActive == type || m_referenceActive == type; }
void activate(SidebarWidgetType* type);
void deactivate(SidebarWidgetType* type);
SidebarWidget* widget(SidebarWidgetType* type);
SidebarWidget* widget(const QString& name);
virtual QSize sizeHint() const override;
void updateTheme();
void updateFonts();
void setDefaultReferenceType(SidebarWidgetType* type);
void saveSizes(const QSettings& settings, const QString& windowStateName);
void saveState(const QSettings& settings, const QString& windowStateName);
void restoreSizes(const QSettings& settings, const QString& windowStateName);
void restoreState(const QSettings& settings, const QString& windowStateName);
void updateViewLocation(View* view, const ViewLocation& viewLocation);
void viewChanged();
void toggleSidebar();
void moveContextToContainer(
SplitPaneWidget* panes, const std::vector<ViewFrame*>& frames, SidebarWidgetContainer* target);
Q_SIGNALS:
void showContents();
void hideContents();
};
class BINARYNINJAUIAPI Sidebar : public QWidget
{
Q_OBJECT
SidebarWidgetType* m_hoverItem = nullptr;
SidebarWidgetContainer* m_currentContainer = nullptr;
static std::vector<SidebarWidgetType*> m_contentTypes;
static std::vector<SidebarWidgetType*> m_referenceTypes;
static SidebarWidgetType* m_defaultContentType;
static SidebarWidgetType* m_defaultReferenceType;
protected:
virtual void paintEvent(QPaintEvent* event) override;
virtual void mouseMoveEvent(QMouseEvent* event) override;
virtual void mousePressEvent(QMouseEvent* event) override;
virtual void leaveEvent(QEvent* event) override;
public:
Sidebar();
SidebarWidgetContainer* container() const { return m_currentContainer; }
void setContainer(SidebarWidgetContainer* container);
void setActiveContext(SplitPaneWidget* panes, ViewFrame* frame, const QString& dataType, BinaryViewRef data);
SidebarWidget* widget(SidebarWidgetType* type);
SidebarWidget* widget(const QString& name);
void activate(SidebarWidgetType* type);
void activate(const QString& name);
void deactivate(SidebarWidgetType* type);
void deactivate(const QString& name);
void updateTheme();
void updateFonts();
void toggleSidebar();
static void addSidebarWidgetType(SidebarWidgetType* type);
static SidebarWidgetType* typeFromName(const QString& name);
static const std::vector<SidebarWidgetType*>& contentTypes() { return m_contentTypes; }
static const std::vector<SidebarWidgetType*>& referenceTypes() { return m_referenceTypes; }
static SidebarWidgetType* defaultContentType() { return m_defaultContentType; }
static SidebarWidgetType* defaultReferenceType() { return m_defaultReferenceType; }
static void setDefaultContentType(SidebarWidgetType* type) { m_defaultContentType = type; }
static void setDefaultReferenceType(SidebarWidgetType* type) { m_defaultReferenceType = type; }
static Sidebar* current()
{
UIContext* context = UIContext::activeContext();
if (!context)
return nullptr;
return context->sidebar();
}
template <class T>
static T* widget(SidebarWidgetType* type)
{
Sidebar* sidebar = current();
if (!type || !sidebar || !sidebar->container() || !sidebar->container()->isActive(type))
return (T*)nullptr;
QWidget* widget = sidebar->widget(type);
if (!widget)
return (T*)nullptr;
return qobject_cast<T*>(widget);
}
template <class T>
static T* widget(const QString& name)
{
return widget<T>(Sidebar::typeFromName(name));
}
template <class T>
static T* activateWidget(SidebarWidgetType* type)
{
Sidebar* sidebar = current();
if (!type || !sidebar || !sidebar->container())
return (T*)nullptr;
sidebar->activate(type);
QWidget* widget = sidebar->widget(type);
if (!widget)
return (T*)nullptr;
T* result = qobject_cast<T*>(widget);
if (!result)
return (T*)nullptr;
return result;
}
template <class T>
static T* activateWidget(const QString& name)
{
return activateWidget<T>(Sidebar::typeFromName(name));
}
template <class T>
static UIAction globalSidebarAction(const QString& name, const std::function<void(T* obj)>& activate)
{
return globalSidebarAction<T>(
name, [=](T* obj, const UIActionContext&) { activate(obj); },
[=](T*, const UIActionContext&) { return true; });
}
template <class T>
static UIAction globalSidebarAction(
const QString& name, const std::function<void(T* obj, const UIActionContext& ctxt)>& activate)
{
return globalSidebarAction<T>(name, activate, [](T*, const UIActionContext&) { return true; });
}
template <class T>
static UIAction globalSidebarAction(
const QString& name, const std::function<void(T* obj)>& activate, const std::function<bool(T* obj)>& isValid)
{
return globalSidebarAction<T>(
name, [=](T* obj, const UIActionContext&) { activate(obj); },
[=](T* obj, const UIActionContext&) { return isValid(obj); });
}
template <class T>
static UIAction globalSidebarAction(const QString& name,
const std::function<void(T* obj, const UIActionContext& ctxt)>& activate,
const std::function<bool(T* obj, const UIActionContext& ctxt)>& isValid)
{
return globalSidebarAction<T>(Sidebar::typeFromName(name), activate, isValid);
}
template <class T>
static UIAction globalSidebarAction(SidebarWidgetType* type, const std::function<void(T* obj)>& activate)
{
return globalSidebarAction<T>(
type, [=](T* obj, const UIActionContext&) { activate(obj); },
[=](T*, const UIActionContext&) { return true; });
}
template <class T>
static UIAction globalSidebarAction(
SidebarWidgetType* type, const std::function<void(T* obj, const UIActionContext& ctxt)>& activate)
{
return globalSidebarAction<T>(type, activate, [](T*, const UIActionContext&) { return true; });
}
template <class T>
static UIAction globalSidebarAction(SidebarWidgetType* type, const std::function<void(T* obj)>& activate,
const std::function<bool(T* obj)>& isValid)
{
return globalSidebarAction<T>(
type, [=](T* obj, const UIActionContext&) { activate(obj); },
[=](T* obj, const UIActionContext&) { return isValid(obj); });
}
template <class T>
static UIAction globalSidebarAction(SidebarWidgetType* type,
const std::function<void(T* obj, const UIActionContext& ctxt)>& activate,
const std::function<bool(T* obj, const UIActionContext& ctxt)>& isValid)
{
std::function<T*(const UIActionContext& ctxt)> lookup = [=](const UIActionContext& ctxt) {
if (!type || !ctxt.context)
return (T*)nullptr;
Sidebar* sidebar = ctxt.context->sidebar();
if (!sidebar->container() || !sidebar->container()->isActive(type))
return (T*)nullptr;
QWidget* widget = sidebar->widget(type);
if (!widget)
return (T*)nullptr;
return qobject_cast<T*>(widget);
};
return UIAction(
[=](const UIActionContext& ctxt) {
T* obj = lookup(ctxt);
if (obj)
activate(obj, ctxt);
},
[=](const UIActionContext& ctxt) {
T* obj = lookup(ctxt);
if (obj)
return isValid(obj, ctxt);
return false;
});
}
template <class T>
static std::function<bool(const UIActionContext&)> globalSidebarActionChecked(
const QString& name, const std::function<bool(T* obj)>& isChecked)
{
return globalSidebarActionChecked<T>(name, [=](T* obj, const UIActionContext&) { return isChecked(obj); });
}
template <class T>
static std::function<bool(const UIActionContext&)> globalSidebarActionChecked(
const QString& name, const std::function<bool(T* obj, const UIActionContext& ctxt)>& isChecked)
{
return globalSidebarActionChecked<T>(Sidebar::typeFromName(name), isChecked);
}
template <class T>
static std::function<bool(const UIActionContext&)> globalSidebarActionChecked(
SidebarWidgetType* type, const std::function<bool(T* obj)>& isChecked)
{
return globalSidebarActionChecked<T>(type, [=](T* obj, const UIActionContext&) { return isChecked(obj); });
}
template <class T>
static std::function<bool(const UIActionContext&)> globalSidebarActionChecked(
SidebarWidgetType* type, const std::function<bool(T* obj, const UIActionContext& ctxt)>& isChecked)
{
return [=](const UIActionContext& ctxt) {
if (!type || !ctxt.context)
return false;
Sidebar* sidebar = ctxt.context->sidebar();
if (!sidebar->container() || !sidebar->container()->isActive(type))
return false;
QWidget* widget = sidebar->widget(type);
if (!widget)
return false;
T* obj = qobject_cast<T*>(widget);
if (obj)
return isChecked(obj, ctxt);
return false;
};
}
};
|