diff options
author | Arno <arno@disconnect.de> | 2018-03-30 19:20:23 +0200 |
---|---|---|
committer | Arno <arno@disconnect.de> | 2018-03-30 19:20:23 +0200 |
commit | d42c4314f7b30af0b1186fe947f2523c3d8f62b6 (patch) | |
tree | 5dfecd5f616566d20b42129ef9dd4b8ac38c1a77 /fswidget.h | |
parent | 8e685d4ab524da43bae639274e12221fc28fc847 (diff) | |
download | SheMov-d42c4314f7b30af0b1186fe947f2523c3d8f62b6.tar.gz SheMov-d42c4314f7b30af0b1186fe947f2523c3d8f62b6.tar.bz2 SheMov-d42c4314f7b30af0b1186fe947f2523c3d8f62b6.zip |
Implement add and remove dir in FSWidget
Still doesn't read anything from the filesystem, but now you can add and
remove directories. Also, the settings are saved.
Diffstat (limited to 'fswidget.h')
-rw-r--r-- | fswidget.h | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -10,10 +10,15 @@ class FSWidget : public QWidget { Q_OBJECT public: explicit FSWidget(QWidget *parent = nullptr); - - signals: + ~FSWidget(); public slots: + void readSettings(); + void writeSettings(); + + private slots: + void addDir(); + void removeDir(); private: void setupWidget(); |