mirror of
https://github.com/rizinorg/cutter.git
synced 2025-01-22 12:28:51 +00:00
27 lines
490 B
C++
27 lines
490 B
C++
#ifndef CUTTERTREEWIDGET_H
|
|
#define CUTTERTREEWIDGET_H
|
|
|
|
#include "core/CutterCommon.h"
|
|
|
|
#include <QStatusBar>
|
|
#include <QVBoxLayout>
|
|
|
|
class MainWindow;
|
|
|
|
class CUTTER_EXPORT CutterTreeWidget : public QObject
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit CutterTreeWidget(QObject *parent = nullptr);
|
|
~CutterTreeWidget();
|
|
void addStatusBar(QVBoxLayout *pos);
|
|
void showItemsNumber(int count);
|
|
void showStatusBar(bool show);
|
|
|
|
private:
|
|
QStatusBar *bar;
|
|
};
|
|
#endif // CUTTERTREEWIDGET_H
|