summaryrefslogtreecommitdiffstats
path: root/configurationdialog.h
diff options
context:
space:
mode:
authoram <am@f440f766-f032-0410-8965-dc7d17de2ca0>2009-07-16 19:34:57 +0000
committeram <am@f440f766-f032-0410-8965-dc7d17de2ca0>2009-07-16 19:34:57 +0000
commit1b1e48aa11c4518e100004dac594540e6024fa68 (patch)
tree0a44ad1d42f463960a045c9207d0fb2188309e57 /configurationdialog.h
parent95bd97d4f5dc4d0ee91cfeeff89b88ff3d8f26df (diff)
downloadSheMov-1b1e48aa11c4518e100004dac594540e6024fa68.tar.gz
SheMov-1b1e48aa11c4518e100004dac594540e6024fa68.tar.bz2
SheMov-1b1e48aa11c4518e100004dac594540e6024fa68.zip
-Fixed extractor... Just look at the examples for QProcess :)
-Beautified extractor output for unrar -Added User interface configuration options -So, there are Usability fixes git-svn-id: file:///var/svn/repos2/shemov/trunk@388 f440f766-f032-0410-8965-dc7d17de2ca0
Diffstat (limited to 'configurationdialog.h')
-rw-r--r--configurationdialog.h11
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