qt/LedOK/base/loqtreewidget.h

20 lines
355 B
C
Raw Permalink Normal View History

2022-01-04 18:11:48 +08:00
#ifndef LOQTREEWIDGET_H
#define LOQTREEWIDGET_H
2023-09-19 11:49:20 +08:00
#include "gutil/qgui.h"
2022-08-25 18:37:24 +08:00
#include <QCheckBox>
2022-01-04 18:11:48 +08:00
2023-09-19 11:49:20 +08:00
class LoQTreeWidget : public TreeWidget {
2022-01-04 18:11:48 +08:00
Q_OBJECT
public:
2023-09-19 11:49:20 +08:00
using TreeWidget::TreeWidget;
void addFd();
QCheckBox *fdCheckAll = 0;
2022-01-04 18:11:48 +08:00
signals:
2023-09-19 11:49:20 +08:00
void selChanged();
protected:
void updateGeometries() override;
2022-01-04 18:11:48 +08:00
};
#endif // LOQTREEWIDGET_H