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.tar.gz
rockbox-4051b34039e079c0969904887fdcabd68bcad681.zip
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 e15dd613fd..37f1443ece 100644
--- a/utils/themeeditor/skindocument.h
+++ b/utils/themeeditor/skindocument.h
@@ -42,6 +42,11 @@ public:
42 bool requestClose(); 42 bool requestClose();
43 43
44signals: 44signals:
45 void titleChanged(QString);
46
47public slots:
48 void save();
49 void saveAs();
45 50
46private slots: 51private slots:
47 void codeChanged(); 52 void codeChanged();
@@ -50,6 +55,8 @@ private:
50 void setupUI(); 55 void setupUI();
51 56
52 QString title; 57 QString title;
58 QString fileName;
59 bool saved;
53 60
54 QLayout* layout; 61 QLayout* layout;
55 QPlainTextEdit* editor; 62 QPlainTextEdit* editor;