summaryrefslogtreecommitdiff
path: root/utils/themeeditor/gui/tabcontent.h
diff options
context:
space:
mode:
Diffstat (limited to 'utils/themeeditor/gui/tabcontent.h')
-rw-r--r--utils/themeeditor/gui/tabcontent.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/utils/themeeditor/gui/tabcontent.h b/utils/themeeditor/gui/tabcontent.h
index 1b153f7df5..30d80fedf5 100644
--- a/utils/themeeditor/gui/tabcontent.h
+++ b/utils/themeeditor/gui/tabcontent.h
@@ -3,6 +3,8 @@
3 3
4#include <QWidget> 4#include <QWidget>
5 5
6class PreferencesDialog;
7
6class TabContent : public QWidget 8class TabContent : public QWidget
7{ 9{
8Q_OBJECT 10Q_OBJECT
@@ -24,11 +26,14 @@ public:
24 26
25 virtual bool requestClose() = 0; 27 virtual bool requestClose() = 0;
26 28
29 virtual void connectPrefs(PreferencesDialog* prefs) = 0;
30
27signals: 31signals:
28 void titleChanged(QString); 32 void titleChanged(QString);
29 void lineChanged(int); 33 void lineChanged(int);
30 34
31public slots: 35public slots:
36 virtual void settingsChanged() = 0;
32 37
33}; 38};
34 39