mirror of
https://gitee.com/vnotex/vnote.git
synced 2025-07-05 05:49:53 +08:00

Use QSettings to store notebooks info in INI format. Signed-off-by: Le Tan <tamlokveer@gmail.com>
23 lines
364 B
C++
23 lines
364 B
C++
#ifndef VDIRECTORYTREE_H
|
|
#define VDIRECTORYTREE_H
|
|
|
|
#include <QTreeWidget>
|
|
|
|
class VDirectoryTree : public QTreeWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit VDirectoryTree(QWidget *parent = 0);
|
|
|
|
signals:
|
|
|
|
public slots:
|
|
void setTreePath(const QString& path);
|
|
|
|
private:
|
|
// The path of the directory tree root
|
|
QString treePath;
|
|
};
|
|
|
|
#endif // VDIRECTORYTREE_H
|