2019-02-13 06:38:47 +00:00
|
|
|
#ifndef SDBWIDGET_H
|
|
|
|
#define SDBWIDGET_H
|
2017-03-29 10:18:37 +00:00
|
|
|
|
2017-10-02 09:41:28 +00:00
|
|
|
#include <memory>
|
2017-03-29 10:18:37 +00:00
|
|
|
|
2018-03-16 21:46:57 +00:00
|
|
|
#include "CutterDockWidget.h"
|
2017-11-19 12:56:10 +00:00
|
|
|
|
2017-03-29 10:18:37 +00:00
|
|
|
class MainWindow;
|
2017-04-13 15:14:02 +00:00
|
|
|
class QTreeWidgetItem;
|
2017-03-29 10:18:37 +00:00
|
|
|
|
2018-03-21 20:32:32 +00:00
|
|
|
namespace Ui {
|
2019-02-13 06:38:47 +00:00
|
|
|
class SdbWidget;
|
2017-03-29 10:18:37 +00:00
|
|
|
}
|
|
|
|
|
2019-02-13 06:38:47 +00:00
|
|
|
class SdbWidget : public CutterDockWidget
|
2017-03-29 10:18:37 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2019-02-13 06:38:47 +00:00
|
|
|
explicit SdbWidget(MainWindow *main, QAction *action = nullptr);
|
|
|
|
~SdbWidget();
|
2017-03-29 10:18:37 +00:00
|
|
|
|
|
|
|
private slots:
|
|
|
|
void on_treeWidget_itemDoubleClicked(QTreeWidgetItem *item, int column);
|
|
|
|
void on_lockButton_clicked();
|
|
|
|
void on_treeWidget_itemChanged(QTreeWidgetItem *item, int column);
|
|
|
|
|
2019-07-29 04:56:23 +00:00
|
|
|
void reload(QString _path = QString());
|
2017-11-19 12:56:10 +00:00
|
|
|
|
2017-03-29 10:18:37 +00:00
|
|
|
private:
|
2019-02-13 06:38:47 +00:00
|
|
|
std::unique_ptr<Ui::SdbWidget> ui;
|
2017-03-29 10:18:37 +00:00
|
|
|
QString path;
|
2017-04-13 15:14:02 +00:00
|
|
|
|
2017-03-29 10:18:37 +00:00
|
|
|
};
|
|
|
|
|
2019-02-13 06:38:47 +00:00
|
|
|
#endif // SDBWIDGET_H
|