diff options
| author | Rusty Wagner <rusty@vector35.com> | 2019-03-19 15:41:08 -0400 |
|---|---|---|
| committer | Rusty Wagner <rusty@vector35.com> | 2019-03-20 13:00:17 -0400 |
| commit | 411acbaa4a1d217e731d3df0b189445117be3b26 (patch) | |
| tree | 49b5c5290058ffb98dd23ec9a7c1a49921254d15 /ui/statusbarwidget.h | |
| parent | ca1bc587c22928bbd7198813064c9615c3c12771 (diff) | |
Add in progress UI API headers
Diffstat (limited to 'ui/statusbarwidget.h')
| -rw-r--r-- | ui/statusbarwidget.h | 23 |
1 files changed, 23 insertions, 0 deletions
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 <QtWidgets/QFrame> +#include <QtWidgets/QLabel> +#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; +}; |
