comparison settingsdialog.h @ 230:e67bd8abc3e3

* Add settings for text verboseness and toolbar labels
author Chris Cannam
date Thu, 06 Jan 2011 15:15:02 +0000
parents ff0d76dcb3b8
children 661f5808aa0a
comparison
equal deleted inserted replaced
229:a1f4b5359051 230:e67bd8abc3e3
28 { 28 {
29 Q_OBJECT 29 Q_OBJECT
30 30
31 public: 31 public:
32 SettingsDialog(QWidget *parent = 0); 32 SettingsDialog(QWidget *parent = 0);
33
34 bool presentationChanged() {
35 return m_presentationChanged;
36 }
33 37
34 private slots: 38 private slots:
35 void hgPathBrowse(); 39 void hgPathBrowse();
36 void diffPathBrowse(); 40 void diffPathBrowse();
37 void mergePathBrowse(); 41 void mergePathBrowse();
49 QLineEdit *m_editPathLabel; 53 QLineEdit *m_editPathLabel;
50 54
51 QCheckBox *m_useExtension; 55 QCheckBox *m_useExtension;
52 QLineEdit *m_extensionPathLabel; 56 QLineEdit *m_extensionPathLabel;
53 57
58 QCheckBox *m_showIconLabels;
59 QCheckBox *m_showExtraText;
60
54 QPushButton *m_ok; 61 QPushButton *m_ok;
62
63 bool m_presentationChanged;
55 64
56 void browseFor(QString, QLineEdit *); 65 void browseFor(QString, QLineEdit *);
57 }; 66 };
58 67
59 #endif 68 #endif