diff options
| author | Robert Bieber <robby@bieberphoto.com> | 2010-07-30 08:38:38 +0000 |
|---|---|---|
| committer | Robert Bieber <robby@bieberphoto.com> | 2010-07-30 08:38:38 +0000 |
| commit | ba41fa537a432210147586b1442ab67b6d400d18 (patch) | |
| tree | d65b1bb4e7d20de518b40db98fb4399f419d36be /utils/themeeditor/gui/codeeditor.h | |
| parent | f8dd370ff8ece4d32589767dc4a9b43398c1cf7e (diff) | |
| download | rockbox-ba41fa537a432210147586b1442ab67b6d400d18.zip rockbox-ba41fa537a432210147586b1442ab67b6d400d18.tar.gz rockbox-ba41fa537a432210147586b1442ab67b6d400d18.tar.bz2 rockbox-ba41fa537a432210147586b1442ab67b6d400d18.tar.xz | |
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.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/utils/themeeditor/gui/codeeditor.h b/utils/themeeditor/gui/codeeditor.h index a25c566..21f1c56 100644 --- a/utils/themeeditor/gui/codeeditor.h +++ b/utils/themeeditor/gui/codeeditor.h @@ -77,6 +77,7 @@ private slots: void updateLineNumberAreaWidth(int newBlockCount); void updateLineNumberArea(const QRect &, int); void cursorMoved(); + void insertTag(); private: QWidget *lineNumberArea; @@ -87,6 +88,7 @@ private: int tagBegin; int tagEnd; + int docLength; }; //![codeeditordefinition] |