summaryrefslogtreecommitdiffstats
path: root/fswidget.h
diff options
context:
space:
mode:
authorArno <arno@disconnect.de>2018-03-30 19:20:23 +0200
committerArno <arno@disconnect.de>2018-03-30 19:20:23 +0200
commitd42c4314f7b30af0b1186fe947f2523c3d8f62b6 (patch)
tree5dfecd5f616566d20b42129ef9dd4b8ac38c1a77 /fswidget.h
parent8e685d4ab524da43bae639274e12221fc28fc847 (diff)
downloadSheMov-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.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/fswidget.h b/fswidget.h
index e77ab2d..024a965 100644
--- a/fswidget.h
+++ b/fswidget.h
@@ -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();