diff options
Diffstat (limited to 'configurationdialog.h')
-rw-r--r-- | configurationdialog.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/configurationdialog.h b/configurationdialog.h index 3876fb6..3f28f5c 100644 --- a/configurationdialog.h +++ b/configurationdialog.h @@ -27,6 +27,9 @@ class ConfigurationDialog : public QDialog { private slots: void addPath(); void removePath(); + void addExpandPath(); + void removeExpandPath(); + void selectStartup(); private: void readSettings(); @@ -35,6 +38,9 @@ class ConfigurationDialog : public QDialog { QPushButton *mCancel; QPushButton *mAddPath; QPushButton *mRemovePath; + QPushButton *mAddExpandPath; + QPushButton *mRemoveExpandPath; + QPushButton *mSelect; QTabWidget *mTab; QLineEdit *mPictureViewer; QLineEdit *mPictureViewerArgs; @@ -43,8 +49,13 @@ class ConfigurationDialog : public QDialog { QLineEdit *mArchiver; QLineEdit *mArchiverArgs; QLineEdit *mExtractPath; + QLineEdit *mExpandPath; QComboBox *mArchivePaths; + QComboBox *mExpandPaths; + QComboBox *mIconForFolder; QStringList mPaths; + QStringList mEPaths; + QString mSelectStartup; }; #endif |