From a3dd54389f7b28431fc9853cd57af231bd6a3c9c Mon Sep 17 00:00:00 2001 From: am Date: Sun, 12 Jul 2009 16:04:04 +0000 Subject: -implemented cover rename and templates -started on configurationdialog git-svn-id: file:///var/svn/repos2/shemov/trunk@385 f440f766-f032-0410-8965-dc7d17de2ca0 --- configurationdialog.h | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 configurationdialog.h (limited to 'configurationdialog.h') diff --git a/configurationdialog.h b/configurationdialog.h new file mode 100644 index 0000000..fa91667 --- /dev/null +++ b/configurationdialog.h @@ -0,0 +1,44 @@ +/* + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU General Public License + as published by the Free Software Foundation; either version + 2 of the License, or (at your option) any later version. +*/ + +#ifndef CONFIGURATIONDIALOG_H +#define CONFIGURATIONDIALOG_H + +#include + +class QPushButton; +class QTabWidget; +class QLineEdit; +class QComboBox; + +class ConfigurationDialog : public QDialog { + Q_OBJECT + public: + ConfigurationDialog(QWidget *parent = 0, Qt::WindowFlags f = 0); + ~ConfigurationDialog() {}; + + private: + void readSettings(); + void writeSettings(); + QPushButton *mOk; + QPushButton *mCancel; + QPushButton *mAddPath; + QPushButton *mRemovePath; + QTabWidget *mTab; + QLineEdit *mPictureViewer; + QLineEdit *mPictureViewerArgs; + QLineEdit *mMovieViewer; + QLineEdit *mMovieViewerArgs; + QLineEdit *mArchiver; + QLineEdit *mArchiverArgs; + QLineEdit *mExtractPath; + QComboBox *mArchivePaths; + QStringList mPaths; +}; + +#endif + -- cgit v1.2.3-70-g09d2