diff options
Diffstat (limited to 'utils/themeeditor/skindocument.h')
| -rw-r--r-- | utils/themeeditor/skindocument.h | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/utils/themeeditor/skindocument.h b/utils/themeeditor/skindocument.h index 37f1443..d00c81f 100644 --- a/utils/themeeditor/skindocument.h +++ b/utils/themeeditor/skindocument.h @@ -33,21 +33,23 @@ class SkinDocument : public QWidget { Q_OBJECT public: + const QString fileFilter; + + SkinDocument(QWidget *parent = 0); virtual ~SkinDocument(); ParseTreeModel* getModel(){ return model; } QString getTitle(){ return title; } + void save(); + void saveAs(); + bool requestClose(); signals: void titleChanged(QString); -public slots: - void save(); - void saveAs(); - private slots: void codeChanged(); @@ -56,7 +58,7 @@ private: QString title; QString fileName; - bool saved; + QString saved; QLayout* layout; QPlainTextEdit* editor; |