From 7f6e54fdc8ff4a06fdcd3c510a37add337f04bac Mon Sep 17 00:00:00 2001 From: Rusty Wagner Date: Thu, 18 Nov 2021 13:52:25 -0500 Subject: Refactor main area to use pane system --- ui/viewlist.h | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 ui/viewlist.h (limited to 'ui/viewlist.h') diff --git a/ui/viewlist.h b/ui/viewlist.h new file mode 100644 index 00000000..c1926106 --- /dev/null +++ b/ui/viewlist.h @@ -0,0 +1,31 @@ +#pragma once + +#include +#include +#include "viewframe.h" +#include "menus.h" +#include "action.h" + +class BINARYNINJAUIAPI ViewList: public MenuHelper +{ + Q_OBJECT + + FileContext* m_context = nullptr; + QString m_currentType; + std::string m_currentDataType; + + UIActionHandler* m_handler; + +public: + ViewList(QWidget* parent); + + void bindActions(UIActionHandler* handler); + void addMenuActions(Menu* menu, const QString& group); + void setCurrentViewType(ViewFrame* view, const QString& type); + +protected: + virtual void showMenu(); + +Q_SIGNALS: + void viewChanged(QString type); +}; -- cgit v1.3.1