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 1b153f7..30d80fe 100644
--- a/utils/themeeditor/gui/tabcontent.h
+++ b/utils/themeeditor/gui/tabcontent.h
@@ -3,6 +3,8 @@
#include <QWidget>
+class PreferencesDialog;
+
class TabContent : public QWidget
{
Q_OBJECT
@@ -24,11 +26,14 @@ public:
virtual bool requestClose() = 0;
+ virtual void connectPrefs(PreferencesDialog* prefs) = 0;
+
signals:
void titleChanged(QString);
void lineChanged(int);
public slots:
+ virtual void settingsChanged() = 0;
};