summaryrefslogtreecommitdiff
path: root/utils/themeeditor/skindocument.cpp
diff options
context:
space:
mode:
authorRobert Bieber <robby@bieberphoto.com>2010-06-04 07:57:19 +0000
committerRobert Bieber <robby@bieberphoto.com>2010-06-04 07:57:19 +0000
commite174a8ad8dc531ff093894b7f930f0b9750c74eb (patch)
treee74063cb651c54a2fb3dee2632943b5950963c3b /utils/themeeditor/skindocument.cpp
parent9616389377d169c5c23317f0695d322b8d958b09 (diff)
downloadrockbox-e174a8ad8dc531ff093894b7f930f0b9750c74eb.tar.gz
rockbox-e174a8ad8dc531ff093894b7f930f0b9750c74eb.zip
Theme Editor: Began implementing tabbing
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26541 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'utils/themeeditor/skindocument.cpp')
-rw-r--r--utils/themeeditor/skindocument.cpp63
1 files changed, 63 insertions, 0 deletions
diff --git a/utils/themeeditor/skindocument.cpp b/utils/themeeditor/skindocument.cpp
new file mode 100644
index 0000000000..380f16fa7d
--- /dev/null
+++ b/utils/themeeditor/skindocument.cpp
@@ -0,0 +1,63 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2010 Robert Bieber
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
16 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
19 *
20 ****************************************************************************/
21
22#include "skindocument.h"
23
24SkinDocument::SkinDocument(QWidget *parent) :
25 QWidget(parent)
26{
27 setupUI();
28
29 title = "Untitled";
30}
31
32SkinDocument::~SkinDocument()
33{
34 delete highlighter;
35 delete model;
36}
37
38void SkinDocument::setupUI()
39{
40 /* Setting up the text edit */
41 layout = new QHBoxLayout;
42 editor = new QPlainTextEdit(this);
43 layout->addWidget(editor);
44
45 setLayout(layout);
46
47 /* Attaching the syntax highlighter */
48 highlighter = new SkinHighlighter(QColor(0,180,0), QColor(255,0,0),
49 QColor(0,0,255), QColor(120,120,120),
50 editor->document());
51
52 /* Setting up the model */
53 model = new ParseTreeModel("");
54
55 /* Connecting the editor's signal */
56 QObject::connect(editor, SIGNAL(textChanged()),
57 this, SLOT(codeChanged()));
58}
59
60void SkinDocument::codeChanged()
61{
62 model->changeTree(editor->document()->toPlainText().toAscii());
63}