From 411acbaa4a1d217e731d3df0b189445117be3b26 Mon Sep 17 00:00:00 2001 From: Rusty Wagner Date: Tue, 19 Mar 2019 15:41:08 -0400 Subject: Add in progress UI API headers --- ui/statusbarwidget.h | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 ui/statusbarwidget.h (limited to 'ui/statusbarwidget.h') diff --git a/ui/statusbarwidget.h b/ui/statusbarwidget.h new file mode 100644 index 00000000..b41391a0 --- /dev/null +++ b/ui/statusbarwidget.h @@ -0,0 +1,23 @@ +#pragma once + +#include +#include +#include "uicontext.h" + +class BINARYNINJAUIAPI StatusBarWidget: public QWidget +{ + Q_OBJECT + +public: + StatusBarWidget(QWidget* parent); + virtual void updateStatus(); +}; + +class BINARYNINJAUIAPI DisabledOptionsStatusBarWidget: public StatusBarWidget +{ +public: + DisabledOptionsStatusBarWidget(QFrame* parent); + +private: + QLabel* m_label; +}; -- cgit v1.3.1