summaryrefslogtreecommitdiff
path: root/ui
diff options
context:
space:
mode:
authorRusty Wagner <rusty.wagner@gmail.com>2022-04-04 22:45:42 -0400
committerRusty Wagner <rusty.wagner@gmail.com>2022-04-07 14:55:25 -0400
commit89b779d480225665b71d2675b52a8e04d1478cb7 (patch)
tree750269185107eea5a182bbb6e122c588b8eee95e /ui
parent5f32696a955fc2c80a799de4c3f74fc72e75d817 (diff)
Update to Qt 6.2.4
Diffstat (limited to 'ui')
-rw-r--r--ui/pane.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/ui/pane.h b/ui/pane.h
index 5b02862d..d26eb046 100644
--- a/ui/pane.h
+++ b/ui/pane.h
@@ -145,7 +145,9 @@ class BINARYNINJAUIAPI ViewPane : public Pane
virtual void focus() override;
virtual QString title() override;
+#ifndef BINARYNINJAUI_BINDINGS
void recreateViewFrame(std::map<SyncGroup*, ViewLocation>& locations);
+#endif
void sendViewChange();
private Q_SLOTS:
@@ -282,9 +284,11 @@ class BINARYNINJAUIAPI SplitPaneContainer : public QWidget
void open(Pane* pane, Qt::Orientation primaryDirection = Qt::Vertical);
+#ifndef BINARYNINJAUI_BINDINGS
void recreateViewFrames(std::map<SyncGroup*, ViewLocation>& locations);
+#endif
- Q_SIGNALS:
+Q_SIGNALS:
void paneClosed(Pane* pane);
void currentChanged(Pane* pane);
void layoutChanged();
@@ -353,7 +357,9 @@ class BINARYNINJAUIAPI SplitPaneWidget : public QWidget
bool closeRequest();
void closing();
+#ifndef BINARYNINJAUI_BINDINGS
void recreateViewFrames(std::map<SyncGroup*, ViewLocation>& locations);
+#endif
static void registerActions();