summaryrefslogtreecommitdiff
path: root/utils/themeeditor/gui/codeeditor.h
diff options
context:
space:
mode:
authorRobert Bieber <robby@bieberphoto.com>2010-07-30 08:38:38 +0000
committerRobert Bieber <robby@bieberphoto.com>2010-07-30 08:38:38 +0000
commitba41fa537a432210147586b1442ab67b6d400d18 (patch)
treed65b1bb4e7d20de518b40db98fb4399f419d36be /utils/themeeditor/gui/codeeditor.h
parentf8dd370ff8ece4d32589767dc4a9b43398c1cf7e (diff)
downloadrockbox-ba41fa537a432210147586b1442ab67b6d400d18.tar.gz
rockbox-ba41fa537a432210147586b1442ab67b6d400d18.zip
Theme Editor: Made auto-complete functional and enabled it by default. Added a small subset of the available tags to the tagdb file, filling it out is todo
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27625 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'utils/themeeditor/gui/codeeditor.h')
-rw-r--r--utils/themeeditor/gui/codeeditor.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/utils/themeeditor/gui/codeeditor.h b/utils/themeeditor/gui/codeeditor.h
index a25c5664f0..21f1c561cf 100644
--- a/utils/themeeditor/gui/codeeditor.h
+++ b/utils/themeeditor/gui/codeeditor.h
@@ -77,6 +77,7 @@ private slots:
77 void updateLineNumberAreaWidth(int newBlockCount); 77 void updateLineNumberAreaWidth(int newBlockCount);
78 void updateLineNumberArea(const QRect &, int); 78 void updateLineNumberArea(const QRect &, int);
79 void cursorMoved(); 79 void cursorMoved();
80 void insertTag();
80 81
81private: 82private:
82 QWidget *lineNumberArea; 83 QWidget *lineNumberArea;
@@ -87,6 +88,7 @@ private:
87 88
88 int tagBegin; 89 int tagBegin;
89 int tagEnd; 90 int tagEnd;
91 int docLength;
90}; 92};
91 93
92//![codeeditordefinition] 94//![codeeditordefinition]