vnote/vdirectorytree.h
Le Tan d8c5114c1b read/write the info about notebooks
Use QSettings to store notebooks info in INI format.

Signed-off-by: Le Tan <tamlokveer@gmail.com>
2016-10-02 13:38:05 +08:00

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