mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-22 04:46:11 +00:00
25 lines
410 B
C
25 lines
410 B
C
|
#ifndef CUTTERTREEWIDGET_H
|
||
|
#define CUTTERTREEWIDGET_H
|
||
|
|
||
|
#include <QStatusBar>
|
||
|
#include <QVBoxLayout>
|
||
|
|
||
|
class MainWindow;
|
||
|
|
||
|
class CutterTreeWidget : public QObject
|
||
|
{
|
||
|
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit CutterTreeWidget(QObject *parent = nullptr);
|
||
|
~CutterTreeWidget();
|
||
|
void addStatusBar(QVBoxLayout *pos);
|
||
|
void showItemsNumber(int count);
|
||
|
|
||
|
private:
|
||
|
QStatusBar *bar;
|
||
|
|
||
|
};
|
||
|
#endif // CUTTERTREEWIDGET_H
|