summaryrefslogtreecommitdiff
path: root/ui
diff options
context:
space:
mode:
authorBrian Potchik <brian@vector35.com>2024-09-30 18:42:03 -0400
committerBrian Potchik <brian@vector35.com>2024-09-30 18:42:03 -0400
commitc8bef7267b0ec3b36167b679263bbfd4834a5b88 (patch)
tree0e65592597f8b76a5f9fa5b74e1ed3709554058f /ui
parent2e272f7efffb61eec2f54a740a9deabc4829c97d (diff)
Use title for generation of function analysis actions.
Diffstat (limited to 'ui')
-rw-r--r--ui/flowgraphwidget.h1
-rw-r--r--ui/linearview.h1
-rw-r--r--ui/tokenizedtextview.h1
3 files changed, 3 insertions, 0 deletions
diff --git a/ui/flowgraphwidget.h b/ui/flowgraphwidget.h
index ae9a6062..7c6ad26c 100644
--- a/ui/flowgraphwidget.h
+++ b/ui/flowgraphwidget.h
@@ -180,6 +180,7 @@ class BINARYNINJAUIAPI FlowGraphWidget :
virtual void contextMenuEvent(QContextMenuEvent*) override;
void bindActions();
+ void bindDynamicActions();
void navigateToAddress(uint64_t addr);
void navigateToGotoLabel(uint64_t label);
diff --git a/ui/linearview.h b/ui/linearview.h
index 08a0a01c..29021a7a 100644
--- a/ui/linearview.h
+++ b/ui/linearview.h
@@ -259,6 +259,7 @@ class BINARYNINJAUIAPI LinearView : public QAbstractScrollArea, public View, pub
void scrollLines(int count);
void bindActions();
+ void bindDynamicActions();
static void addOptionsMenuActions(Menu& menu);
void getHexDumpLineBytes(
diff --git a/ui/tokenizedtextview.h b/ui/tokenizedtextview.h
index 979908f3..cd7469bc 100644
--- a/ui/tokenizedtextview.h
+++ b/ui/tokenizedtextview.h
@@ -76,6 +76,7 @@ class BINARYNINJAUIAPI TokenizedTextView :
void scrollLines(int count);
void bindActions();
+ void bindDynamicActions();
void getHexDumpLineBytes(const BinaryNinja::LinearDisassemblyLine& line, size_t& skippedBytes, size_t& totalBytes, size_t& totalCols);
void setSectionSemantics(const std::string& name, BNSectionSemantics semantics);