summaryrefslogtreecommitdiffstats
path: root/configurationdialog.h
diff options
context:
space:
mode:
authorArno <am@disconnect.de>2010-05-14 14:31:43 +0200
committerArno <am@disconnect.de>2010-05-14 14:34:35 +0200
commit8a324c06caff00947b7d9a8b0b0b977073500c80 (patch)
tree299dff03af61cf8bf275854a81177b22b2fc0bec /configurationdialog.h
parent18543d46050b66025f4dce8b9e151fea1941599d (diff)
downloadSheMov-8a324c06caff00947b7d9a8b0b0b977073500c80.tar.gz
SheMov-8a324c06caff00947b7d9a8b0b0b977073500c80.tar.bz2
SheMov-8a324c06caff00947b7d9a8b0b0b977073500c80.zip
Cleanup ConfigurationDialog
Major cleanup of ConfigurationDialog. Got rid of the expand paths madness on startup. Since we now have decent session management we don't need it any more. Also got rid of the extraction settings. Next part will be to remove the corresponding functions.
Diffstat (limited to 'configurationdialog.h')
-rw-r--r--configurationdialog.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/configurationdialog.h b/configurationdialog.h
index b3324c5..1575f41 100644
--- a/configurationdialog.h
+++ b/configurationdialog.h
@@ -27,41 +27,22 @@ class ConfigurationDialog : public QDialog {
void accept();
private slots:
- void addPath();
- void removePath();
- void addExpandPath();
- void removeExpandPath();
- void selectStartup();
private:
void readSettings();
void writeSettings();
QPushButton *mOk;
QPushButton *mCancel;
- QPushButton *mAddPath;
- QPushButton *mRemovePath;
- QPushButton *mAddExpandPath;
- QPushButton *mRemoveExpandPath;
- QPushButton *mSelect;
QTabWidget *mTab;
ProgramConfigurator *mMovieConfig;
ProgramConfigurator *mPicConfig;
- QLineEdit *mArchiver;
- QLineEdit *mArchiverArgs;
- QLineEdit *mExtractPath;
- QLineEdit *mExpandPath;
QLineEdit *mArchiveDir;
QLineEdit *mBurnDir;
QLineEdit *mDatabaseHost;
QLineEdit *mDatabaseName;
QLineEdit *mDatabaseUsername;
QLineEdit *mDatabasePassword;
- QComboBox *mArchivePaths;
- QComboBox *mExpandPaths;
QComboBox *mIconForFolder;
- QStringList mPaths;
- QStringList mEPaths;
- QString mSelectStartup;
};
#endif