diff settingsdialog.h @ 176:a6ec8d0bdd34

* Add option whether to use extension or not, and show path for it in settings
author Chris Cannam
date Thu, 16 Dec 2010 18:00:12 +0000
parents 6def8bf3be44
children 1a3af8617ea4
line wrap: on
line diff
--- a/settingsdialog.h	Thu Dec 16 17:32:25 2010 +0000
+++ b/settingsdialog.h	Thu Dec 16 18:00:12 2010 +0000
@@ -22,6 +22,7 @@
 #include <QLineEdit>
 #include <QLabel>
 #include <QPushButton>
+#include <QCheckBox>
 
 class SettingsDialog : public QDialog
 {
@@ -41,6 +42,8 @@
     void mergePathBrowse();
     void editorPathChanged(const QString &);
     void editorPathBrowse();
+    void extensionPathChanged(const QString &);
+    void extensionPathBrowse();
 
     void accept();
 
@@ -52,6 +55,9 @@
     QLineEdit *m_mergePathEdit;
     QLineEdit *m_editorPathEdit;
 
+    QCheckBox *m_useExtension;
+    QLineEdit *m_extensionPathEdit;
+
     QPushButton *m_ok;
 };