diff options
Diffstat (limited to 'ui')
| -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(); }; |
