forked from Vector35/binaryninja-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlinearview.h
558 lines (462 loc) · 20.5 KB
/
linearview.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
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
#pragma once
#include <QtWidgets/QAbstractScrollArea>
#include <QtCore/QTimer>
#include <shared_mutex>
#include <optional>
#include <utility>
#include "binaryninjaapi.h"
#include "viewframe.h"
#include "render.h"
#include "progressindicator.h"
#include "commentdialog.h"
#include "menus.h"
#include "statusbarwidget.h"
#include "uicontext.h"
#include "instructionedit.h"
#include "ilchooser.h"
#include <assembledialog.h>
#define LINEAR_VIEW_UPDATE_CHECK_INTERVAL 200
#define MAX_STRING_TYPE_LENGTH 1048576
/*!
\defgroup linearview LinearView
\ingroup uiapi
*/
/*!
\ingroup linearview
*/
struct BINARYNINJAUIAPI LinearViewLine : public BinaryNinja::LinearDisassemblyLine
{
BinaryNinja::Ref<BinaryNinja::LinearViewCursor> cursor;
size_t cursorSize;
size_t lineIndex;
};
/*!
\ingroup linearview
*/
struct BINARYNINJAUIAPI LinearViewCursorPosition
{
FunctionRef function;
BasicBlockRef block;
uint64_t address;
size_t instrIndex;
BinaryNinja::Ref<BinaryNinja::LinearViewCursor> cursor;
size_t lineIndex;
size_t tokenIndex;
size_t characterIndex;
// Directly from QMouseEvent, not used in comparators
int cursorX;
int cursorY;
LinearViewCursorPosition();
LinearViewCursorPosition(const LinearViewCursorPosition& pos);
LinearViewCursorPosition(const LinearViewLine& line);
LinearViewCursorPosition& operator=(const LinearViewCursorPosition& pos);
bool operator==(const LinearViewCursorPosition& other) const;
bool operator!=(const LinearViewCursorPosition& other) const;
bool operator<(const LinearViewCursorPosition& other) const;
bool operator<=(const LinearViewCursorPosition& other) const;
bool operator>=(const LinearViewCursorPosition& other) const;
bool operator>(const LinearViewCursorPosition& other) const;
LinearViewCursorPosition AsLine() const;
};
/*!
\ingroup linearview
*/
class BINARYNINJAUIAPI LinearViewHistoryEntry : public HistoryEntry
{
std::vector<BinaryNinja::LinearViewObjectIdentifier> m_topPath;
size_t m_topLineIndex;
uint64_t m_topAddr;
std::vector<BinaryNinja::LinearViewObjectIdentifier> m_cursorPath;
size_t m_cursorLineIndex;
uint64_t m_cursorAddr;
PlatformRef m_platform;
uint64_t m_func;
bool m_inFunc = false;
HighlightTokenState m_highlight;
public:
const std::vector<BinaryNinja::LinearViewObjectIdentifier>& getTopPath() const { return m_topPath; }
size_t getTopLineIndex() const { return m_topLineIndex; }
uint64_t getTopAddress() const { return m_topAddr; }
const std::vector<BinaryNinja::LinearViewObjectIdentifier>& getCursorPath() const { return m_cursorPath; }
size_t getCursorLineIndex() const { return m_cursorLineIndex; }
uint64_t getCursorAddress() const { return m_cursorAddr; }
PlatformRef getPlatform() const { return m_platform; }
uint64_t getFunction() const { return m_func; }
bool inFunction() const { return m_inFunc; }
const HighlightTokenState& getHighlightTokenState() const { return m_highlight; }
void setTopPath(const std::vector<BinaryNinja::LinearViewObjectIdentifier>& path) { m_topPath = path; }
void setTopLineIndex(size_t offset) { m_topLineIndex = offset; }
void setTopAddress(uint64_t addr) { m_topAddr = addr; }
void setCursorPath(const std::vector<BinaryNinja::LinearViewObjectIdentifier>& path) { m_cursorPath = path; }
void setCursorLineIndex(size_t offset) { m_cursorLineIndex = offset; }
void setCursorAddress(uint64_t addr) { m_cursorAddr = addr; }
void setPlatform(PlatformRef platform) { m_platform = platform; }
void setFunction(uint64_t f) { m_func = f; }
void setInFunction(bool inFunc) { m_inFunc = inFunc; }
void setHighlightTokenState(const HighlightTokenState& state) { m_highlight = state; }
virtual Json::Value serialize() const override;
virtual bool deserialize(const Json::Value& value) override;
};
class LinearView;
class StickyHeader: public QWidget
{
RenderContext m_render;
BinaryViewRef m_data;
uint64_t m_gutterWidth;
uint64_t m_gutterWidthChars;
LinearViewLine m_line;
QProgressIndicator* m_updateIndicator;
public:
StickyHeader(BinaryViewRef data, LinearView* parent);
void updateLine(const LinearViewLine& line);
void updateFonts();
virtual void paintEvent(QPaintEvent* event) override;
};
/*!
\ingroup linearview
*/
class BINARYNINJAUIAPI LinearView : public QAbstractScrollArea, public View, public BinaryNinja::BinaryDataNotification
{
Q_OBJECT
class LinearViewOptionsWidget : public MenuHelper
{
public:
LinearViewOptionsWidget(LinearView* parent);
protected:
virtual void showMenu();
private:
LinearView* m_view;
};
class LinearViewOptionsIconWidget : public QWidget
{
public:
LinearViewOptionsIconWidget(LinearView* parent);
private:
LinearView* m_view;
ContextMenuManager* m_contextMenuManager;
Menu m_menu;
void showMenu();
};
class LinearViewStatusBarWidget : public StatusBarWidget
{
public:
LinearViewStatusBarWidget(LinearView* parent);
virtual void updateStatus() override;
private:
LinearView* m_view;
LinearViewOptionsWidget* m_options;
ILChooserWidget* m_chooser;
};
BinaryViewRef m_data;
ViewFrame* m_view;
uint64_t m_allocatedLength;
StickyHeader* m_header;
RenderContext m_render;
int m_cols, m_rows;
uint64_t m_scrollBarMultiplier;
int m_wheelDelta;
bool m_updatingScrollBar;
bool m_updatesRequired;
bool m_updateBounds;
LinearViewCursorPosition m_cursorPos, m_selectionStartPos;
bool m_cursorAscii;
bool m_tokenSelection = false;
HighlightTokenState m_highlight;
uint64_t m_navByRefTarget;
bool m_navByRef = false;
bool m_doubleClickLatch = false;
FunctionRef m_relatedHighlightFunction;
std::set<size_t> m_relatedIndexHighlights;
std::set<uint64_t> m_relatedInstructionHighlights;
SettingsRef m_settings;
DisassemblySettingsRef m_options;
BNFunctionGraphType m_ilViewType, m_prevILViewType = InvalidILViewType;
HexEditorHighlightState m_highlightState;
bool m_singleFunctionView = false;
InstructionEdit* m_instrEdit;
BNAddressRange m_cacheBounds;
std::vector<BNAddressRange> m_cachedRegions;
std::shared_mutex m_cacheMutex;
BinaryNinja::Ref<BinaryNinja::LinearViewCursor> m_topPosition, m_bottomPosition;
std::vector<LinearViewLine> m_lines;
size_t m_emptyPrevCursors;
size_t m_emptyNextCursors;
size_t m_topLine;
std::optional<double> m_topOrderingIndexOffset;
QTimer* m_hoverTimer;
QPointF m_previewPos;
ContextMenuManager* m_contextMenuManager;
QPointer<CommentDialog> m_commentDialog;
std::map<FunctionRef, BinaryNinja::AdvancedFunctionAnalysisDataRequestor> m_analysisRequestors;
std::string m_navigationMode = "";
ClickableIcon* m_dataButton = nullptr;
QWidget* m_dataButtonContainer = nullptr;
QHBoxLayout* m_dataButtonLayout = nullptr;
void setTopToAddress(uint64_t addr);
void setTopToOrderingIndex(uint64_t idx);
void refreshLines(size_t lineOffset = 0, bool refreshUIContext = true);
bool cachePreviousLines();
bool cacheNextLines();
void updateCache();
void updateBounds();
void refreshAtCurrentLocation(bool cursorFixup = false);
bool navigateToAddress(uint64_t addr, bool center, bool updateHighlight, bool navByRef = false);
bool navigateToLine(
FunctionRef func, uint64_t offset, size_t instrIndex, bool center, bool updateHighlight, bool navByRef = false);
bool navigateToGotoLabel(uint64_t label);
bool navigateToMatchingBrace();
bool navigateToExternalLink(uint64_t linkSourceAddr);
void setSelectionOffsetsInternal(BNAddressRange range, bool navigateToStart = true);
void viewData();
void scrollLines(int count);
void bindActions();
static void addOptionsMenuActions(Menu& menu);
void getHexDumpLineBytes(
const BinaryNinja::LinearDisassemblyLine& line, size_t& skippedBytes, size_t& totalBytes, size_t& totalCols);
void paintHexDumpLine(QPainter& p, const LinearViewLine& line, int xoffset, int y, int tagOffset);
void paintAnalysisWarningLine(QPainter& p, const LinearViewLine& line, int xoffset, int y);
void paintTokenLine(QPainter& p, const LinearViewLine& line, int xoffset, int y, QRect eventRect, int tagOffset);
void setSectionSemantics(const std::string& name, BNSectionSemantics semantics);
bool isLineValidHighlight(const BinaryNinja::LinearDisassemblyLine& line);
void ensureLineVisible(size_t line);
TypeRef createStructure(BinaryNinja::QualifiedName& name, uint64_t size);
TypeRef getInnerType(TypeRef type, uint64_t offset, uint64_t size, std::set<TypeRef>& seen);
StructureRef defineInnerType(
TypeRef type, TypeRef baseType, uint64_t offset, uint64_t size, std::set<TypeRef>& seen);
StructureRef defineInnerPointer(TypeRef type, ArchitectureRef arch, uint64_t baseAddress, uint64_t offset,
uint64_t size, std::set<TypeRef>& seen);
StructureRef defineInnerStruct(TypeRef type, uint64_t offset, uint64_t size, std::set<TypeRef>& seen);
StructureRef defineInnerArray(TypeRef type, uint64_t offset, uint64_t size, std::set<TypeRef>& seen);
StructureRef defineInnerName(TypeRef type, uint64_t offset, uint64_t size, std::set<TypeRef>& seen);
StructureRef defineInnerIntegerSize(TypeRef type, uint64_t offset, uint64_t size, std::set<TypeRef>& seen);
StructureRef defineInnerSign(TypeRef type, uint64_t offset, uint64_t size, std::set<TypeRef>& seen);
TypeRef getPointerTypeAndName(ArchitectureRef arch, uint64_t addr, std::string& name);
std::string getVariableName(uint64_t addr);
BinaryNinja::Ref<BinaryNinja::LinearViewObject> createLinearViewObject();
LinearViewCursorPosition getPositionForCursor(BinaryNinja::LinearViewCursor* cursor);
bool updateCursor(LinearViewCursorPosition& cursorToUpdate, BinaryNinja::LinearViewCursor* matched, bool fullMatch);
bool updateCursor(LinearViewCursorPosition& cursorToUpdate, BinaryNinja::LinearViewCursor* newCursor);
bool updateCursor(LinearViewCursorPosition& cursorToUpdate,
const std::vector<BinaryNinja::LinearViewObjectIdentifier>& path, BinaryNinja::LinearViewCursor* newCursor);
uint64_t getOrderingIndexForLine(const LinearViewLine& line);
void updateAnalysisRequestorsForCache();
ArchitectureRef getArchitecture(const LinearViewLine& line);
uint64_t getTokenAddress();
BNAnalysisWarningActionType getAnalysisWarningActionAtPos(const LinearViewLine& line, int x);
void getCurrentOffsetByTypeInternal(
TypeRef resType, uint64_t baseAddr, uint64_t& begin, uint64_t& end, bool singleLine, std::set<TypeRef>& seen);
BNDeadStoreElimination getCurrentVariableDeadStoreElimination();
void setDataButtonVisible(bool visible);
std::optional<std::pair<BinaryNinja::Variable, BinaryNinja::Variable>> getMergeVariablesAtCurrentLocation();
private Q_SLOTS:
void adjustSize(int width, int height);
void viewInHexEditor();
void viewInGraph();
void cycleILView(bool forward);
void copyAddressSlot();
void goToAddress();
void goToAddressAtFileOffset();
void defineNameAtAddr(uint64_t addr);
void defineName();
void undefineName();
void setUserVariableValue();
void clearUserVariableValue();
void createFunc(const UIActionContext& context);
void createFuncWithPlatform(PlatformRef platform, bool autoSelect = false);
void defineFuncName();
void editFunctionProperties();
void undefineFunc();
void reanalyze();
void comment();
void commentAccepted();
void addUserXref();
void bookmarkAddress();
void unbookmarkAddress();
void tagAddress();
void tagAddressAccepted(TagTypeRef tt);
void manageAddressTags();
void createExternalLink();
void editExternalLink();
void removeExternalLink();
void convertToNop();
void alwaysBranch();
void invertBranch();
void skipAndReturnZero();
void skipAndReturnValue();
void makeTypes(TypeRef type);
void makeInt8();
void makeInt16();
void makeInt32();
void makeInt64();
void toggleIntSize();
void toggleIntSign();
void makeFloat32();
void makeFloat64();
void toggleFloatSize();
void makePtr();
void makeString(size_t charSize = 1);
void changeType(const UIActionContext& context);
void undefineVariable();
void displayAs(const UIActionContext& context, BNIntegerDisplayType displayType) override;
void createStructOrInferStructureType();
bool autoCreateArray();
void createArray();
void createStruct();
void createNewTypes();
void mergeVariables();
void mergeVariablesAtCurrentLocation();
void splitVariable();
//! Get the length of of the string (if there is one) starting at the
//! given address. String type is assumed to be UTF-8 by default, but the
//! `charSize` parameter can be set to 2 or 4 to look for UTF-16 or
//! UTF-32 string, respectively.
//!
//! Returns the length of the string in bytes, NOT the number of characters.
size_t getStringLength(uint64_t startAddr, size_t charSize = 1);
void setInstructionHighlight(BNHighlightColor color);
void setBlockHighlight(BNHighlightColor color);
void scrollBarMoved(int value);
void scrollBarAction(int action);
void hoverTimerEvent();
void setStackAdjustment();
void setCallTypeAdjustment();
void editInstruction();
void instrEditDoneEvent();
std::optional<uint64_t> addressForCall();
void setCurrentVariableDeadStoreElimination(BNDeadStoreElimination elimination);
Q_SIGNALS:
void notifyResizeEvent(int width, int height);
public:
explicit LinearView(BinaryViewRef data, ViewFrame* view);
virtual ~LinearView();
virtual void notifyRefresh() override;
virtual bool canAssemble() override { return true; }
virtual bool canCompile() override { return true; }
virtual BinaryViewRef getData() override { return m_data; }
void getCurrentOffsetByType(TypeRef resType, uint64_t baseAddr, uint64_t& begin, uint64_t& end, bool singleLine);
virtual DisassemblySettingsRef getDisassemblySettings() override;
virtual void setDisassemblySettings(DisassemblySettingsRef settings) override;
virtual uint64_t getCurrentOffset() override;
virtual UIActionContext actionContext() override;
virtual BNAddressRange getSelectionOffsets() override;
virtual SelectionInfoForXref getSelectionForXref() override;
virtual void setSelectionOffsets(BNAddressRange range) override;
virtual FunctionRef getCurrentFunction() override;
virtual LowLevelILFunctionRef getCurrentLowLevelILFunction() override;
virtual MediumLevelILFunctionRef getCurrentMediumLevelILFunction() override;
virtual HighLevelILFunctionRef getCurrentHighLevelILFunction() override;
virtual BasicBlockRef getCurrentBasicBlock() override;
virtual ArchitectureRef getCurrentArchitecture() override;
virtual size_t getCurrentILInstructionIndex() override;
virtual size_t getSelectionStartILInstructionIndex() override;
virtual BNILIndexRange getILIndexRange() override;
virtual bool navigate(uint64_t offset) override;
virtual bool navigateToFunction(FunctionRef func, uint64_t offset) override;
virtual bool navigateToViewLocation(const ViewLocation& viewLocation, bool center = false) override;
virtual BinaryNinja::Ref<HistoryEntry> getHistoryEntry() override;
virtual void navigateToHistoryEntry(BinaryNinja::Ref<HistoryEntry> entry) override;
virtual void OnBinaryDataWritten(BinaryNinja::BinaryView* data, uint64_t offset, size_t len) override;
virtual void OnBinaryDataInserted(BinaryNinja::BinaryView* data, uint64_t offset, size_t len) override;
virtual void OnBinaryDataRemoved(BinaryNinja::BinaryView* data, uint64_t offset, uint64_t len) override;
virtual void OnAnalysisFunctionAdded(BinaryNinja::BinaryView* view, BinaryNinja::Function* func) override;
virtual void OnAnalysisFunctionRemoved(BinaryNinja::BinaryView* view, BinaryNinja::Function* func) override;
virtual void OnAnalysisFunctionUpdated(BinaryNinja::BinaryView* view, BinaryNinja::Function* func) override;
virtual void OnDataVariableAdded(BinaryNinja::BinaryView* view, const BinaryNinja::DataVariable& var) override;
virtual void OnDataVariableRemoved(BinaryNinja::BinaryView* view, const BinaryNinja::DataVariable& var) override;
virtual void OnDataVariableUpdated(BinaryNinja::BinaryView* view, const BinaryNinja::DataVariable& var) override;
virtual void OnDataMetadataUpdated(BinaryNinja::BinaryView* view, uint64_t offset) override;
virtual void OnSymbolAdded(BinaryNinja::BinaryView* view, BinaryNinja::Symbol* var) override;
virtual void OnSymbolRemoved(BinaryNinja::BinaryView* view, BinaryNinja::Symbol* var) override;
virtual void OnSymbolUpdated(BinaryNinja::BinaryView* view, BinaryNinja::Symbol* var) override;
virtual void OnTagAdded(BinaryNinja::BinaryView* view, const BinaryNinja::TagReference& tagRef) override;
virtual void OnTagUpdated(BinaryNinja::BinaryView* view, const BinaryNinja::TagReference& tagRef) override;
virtual void OnTagRemoved(BinaryNinja::BinaryView* view, const BinaryNinja::TagReference& tagRef) override;
virtual void OnTypeDefined(BinaryNinja::BinaryView* view, const BinaryNinja::QualifiedName& name, BinaryNinja::Type* type) override;
virtual void OnTypeUndefined(BinaryNinja::BinaryView* view, const BinaryNinja::QualifiedName& name, BinaryNinja::Type* type) override;
virtual void MarkUpdatesForRegion(uint64_t start, uint64_t end);
virtual void MarkUpdatesForFunction(BinaryNinja::Function* func);
virtual void MarkUpdatesForType(BinaryNinja::BinaryView* view, const BinaryNinja::QualifiedName& name, BinaryNinja::Type* type);
virtual void MarkUpdatesForDataVariable(BinaryNinja::BinaryView* view, const BinaryNinja::DataVariable& var);
virtual void updateFonts() override;
virtual StatusBarWidget* getStatusBarWidget() override;
virtual ViewPaneHeaderSubtypeWidget* getHeaderSubtypeWidget() override;
virtual QWidget* getHeaderOptionsWidget() override;
virtual void followPointer();
virtual bool canCopyWithTransform() override;
virtual void cut() override;
virtual void copy(TransformRef xform = nullptr) override;
virtual void paste(TransformRef xform = nullptr) override;
virtual void copyAddress() override;
virtual HighlightTokenState getHighlightTokenState() override { return m_highlight; }
void setHighlightTokenState(const HighlightTokenState& hts);
virtual BNFunctionGraphType getILViewType() override { return m_ilViewType; };
virtual void setILViewType(BNFunctionGraphType ilViewType) override;
void setHighlightMode(HexEditorHighlightMode mode);
void setColorMode(HexEditorColorMode mode);
void setContrast(HexEditorHighlightContrast mode);
void toggleOption(BNDisassemblyOption option);
void setAddressMode(std::optional<BNDisassemblyAddressMode> mode, std::optional<bool> hex, std::optional<bool> withName);
void setCallParamHints(BNDisassemblyCallParameterHints hints);
void setDisplayedFileName();
void setAddressBaseOffset(bool toHere);
virtual bool goToReference(FunctionRef func, uint64_t source, uint64_t target) override;
QFont getFont() override { return m_render.getFont(); }
virtual void clearRelatedHighlights() override;
virtual void setRelatedIndexHighlights(FunctionRef func, const std::set<size_t>& related) override;
virtual void setRelatedInstructionHighlights(FunctionRef func, const std::set<uint64_t>& related) override;
bool singleFunctionView() const { return m_singleFunctionView; }
void setSingleFunctionView(bool singleFunctionView);
static void registerActions();
protected:
virtual void resizeEvent(QResizeEvent* event) override;
virtual void paintEvent(QPaintEvent* event) override;
virtual void wheelEvent(QWheelEvent* event) override;
virtual void mousePressEvent(QMouseEvent* event) override;
virtual void mouseMoveEvent(QMouseEvent* event) override;
virtual void mouseDoubleClickEvent(QMouseEvent* event) override;
void up(bool selecting, size_t count = 1);
void down(bool selecting, size_t count = 1);
void left(bool selecting);
void right(bool selecting);
void leftToSymbol(bool selecting);
void rightToSymbol(bool selecting);
void moveToStartOfLine(bool selecting);
void moveToEndOfLine(bool selecting);
void moveToStartOfView();
void moveToEndOfView();
void selectNone();
void navigateToHighlightedToken();
void splitToNewTabAndNavigateFromCursorPosition();
void splitToNewWindowAndNavigateFromCursorPosition();
void splitToNewPaneAndNavigateFromCursorPosition();
void extendSelectionToStartOfBinary();
void extendSelectionToEndOfBinary();
void extendSelectionToStartOfSection();
void extendSelectionToEndOfSection();
void extendSelectionToStartOfSegment();
void extendSelectionToEndOfSegment();
void extendSelectionToStartOfDataVariable();
void extendSelectionToEndOfDataVariable();
void extendSelectionByBytes();
void extendSelectionToAddress();
void setSelectionSizeTo();
void saveSelectionTo();
bool canExtendSelectionToStartOfSection();
bool canExtendSelectionToEndOfSection();
bool canExtendSelectionToStartOfSegment();
bool canExtendSelectionToEndOfSegment();
bool canExtendSelectionToStartOfDataVariable();
bool canExtendSelectionToEndOfDataVariable();
};
/*!
\ingroup linearview
*/
class LinearViewType : public ViewType
{
static LinearViewType* m_instance;
public:
LinearViewType();
virtual int getPriority(BinaryViewRef data, const QString& filename) override;
virtual QWidget* create(BinaryViewRef data, ViewFrame* viewFrame) override;
static void init();
};