diff options
| author | Rusty Wagner <rusty.wagner@gmail.com> | 2021-10-07 13:23:34 -0600 |
|---|---|---|
| committer | Rusty Wagner <rusty.wagner@gmail.com> | 2021-10-07 13:23:34 -0600 |
| commit | 5f1670ce4588612b06b383aaecdb21d1c6f31ddf (patch) | |
| tree | facb88be17fae3389cc51a7adb13a2905cde9aec | |
| parent | b84383bfe8662e00d5699241097758b6a6e9d421 (diff) | |
Allow tab split options on reports
| -rw-r--r-- | ui/flowgraphwidget.h | 2 | ||||
| -rw-r--r-- | ui/reportcollectionwidget.h | 2 | ||||
| -rw-r--r-- | ui/reportwidget.h | 2 |
3 files changed, 6 insertions, 0 deletions
diff --git a/ui/flowgraphwidget.h b/ui/flowgraphwidget.h index 2064e99b..6919297f 100644 --- a/ui/flowgraphwidget.h +++ b/ui/flowgraphwidget.h @@ -300,6 +300,8 @@ public: bool getEdgeForMouseEvent(QMouseEvent* event, FlowGraphNodeRef& source, BinaryNinja::FlowGraphEdge& edge, bool& incoming); + FlowGraphWidget* duplicate(); + Q_SIGNALS: void layoutComplete(); void updateMiniGraph(); diff --git a/ui/reportcollectionwidget.h b/ui/reportcollectionwidget.h index 95dc9262..13c2d659 100644 --- a/ui/reportcollectionwidget.h +++ b/ui/reportcollectionwidget.h @@ -27,6 +27,8 @@ public: virtual View* getView() override; + ReportCollectionWidget* duplicate(); + private Q_SLOTS: void selectReport(int i); }; diff --git a/ui/reportwidget.h b/ui/reportwidget.h index 25ee7a30..51dd2d59 100644 --- a/ui/reportwidget.h +++ b/ui/reportwidget.h @@ -60,4 +60,6 @@ public: void save(); void saveAs(); + + ReportWidget* duplicate(); }; |
