summaryrefslogtreecommitdiff
path: root/utils/themeeditor/skindocument.h
diff options
context:
space:
mode:
authorRobert Bieber <robby@bieberphoto.com>2010-06-05 08:22:30 +0000
committerRobert Bieber <robby@bieberphoto.com>2010-06-05 08:22:30 +0000
commit4051b34039e079c0969904887fdcabd68bcad681 (patch)
tree3f3ff866ec2d284aafb7b9c5a51006438cc8cb6d /utils/themeeditor/skindocument.h
parentd41a6810533f5508a18ce7e02cb34b8c37e371cc (diff)
downloadrockbox-4051b34039e079c0969904887fdcabd68bcad681.zip
rockbox-4051b34039e079c0969904887fdcabd68bcad681.tar.gz
rockbox-4051b34039e079c0969904887fdcabd68bcad681.tar.bz2
rockbox-4051b34039e079c0969904887fdcabd68bcad681.tar.xz
Theme Editor: Got document title change signal working, beginning work on save function
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26567 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'utils/themeeditor/skindocument.h')
-rw-r--r--utils/themeeditor/skindocument.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/utils/themeeditor/skindocument.h b/utils/themeeditor/skindocument.h
index e15dd61..37f1443 100644
--- a/utils/themeeditor/skindocument.h
+++ b/utils/themeeditor/skindocument.h
@@ -42,6 +42,11 @@ public:
bool requestClose();
signals:
+ void titleChanged(QString);
+
+public slots:
+ void save();
+ void saveAs();
private slots:
void codeChanged();
@@ -50,6 +55,8 @@ private:
void setupUI();
QString title;
+ QString fileName;
+ bool saved;
QLayout* layout;
QPlainTextEdit* editor;