summaryrefslogtreecommitdiff
path: root/ui/statusbarwidget.h
blob: b7ab2537627f2f1f4485cb0e3f02d47e2a2cc90f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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;
};