diff options
| author | Robert Bieber <robby@bieberphoto.com> | 2010-06-15 06:54:58 +0000 |
|---|---|---|
| committer | Robert Bieber <robby@bieberphoto.com> | 2010-06-15 06:54:58 +0000 |
| commit | 2e320f66f4f3c831dcfd232b33da0e6ab6dd7dd0 (patch) | |
| tree | a6ef8001d797213e9dd81cd41c48f5065c33f3f0 /utils/themeeditor/themeeditor.pro | |
| parent | 1d4dc9b3b0f094a70463395138fc920e5107eabc (diff) | |
| download | rockbox-2e320f66f4f3c831dcfd232b33da0e6ab6dd7dd0.zip rockbox-2e320f66f4f3c831dcfd232b33da0e6ab6dd7dd0.tar.gz rockbox-2e320f66f4f3c831dcfd232b33da0e6ab6dd7dd0.tar.bz2 rockbox-2e320f66f4f3c831dcfd232b33da0e6ab6dd7dd0.tar.xz | |
Theme Editor: Changed color to colour in preferences. Made parse tree viewer alternate line colors and auto-scroll/expand with cursor in editor window. Implemented TabContent abstract class so that more than just skin documents can be loaded in tabs. Made SkinDocument implement TabContent. Began implementing ConfigDocument for editing configuration files.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26851 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'utils/themeeditor/themeeditor.pro')
| -rw-r--r-- | utils/themeeditor/themeeditor.pro | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/utils/themeeditor/themeeditor.pro b/utils/themeeditor/themeeditor.pro index 128f569..c336edf 100644 --- a/utils/themeeditor/themeeditor.pro +++ b/utils/themeeditor/themeeditor.pro @@ -16,7 +16,9 @@ HEADERS += tag_table.h \ skindocument.h \ preferencesdialog.h \ codeeditor.h \ - projectmodel.h + projectmodel.h \ + tabcontent.h \ + configdocument.h SOURCES += tag_table.c \ skin_parser.c \ skin_scan.c \ @@ -29,7 +31,8 @@ SOURCES += tag_table.c \ skindocument.cpp \ preferencesdialog.cpp \ codeeditor.cpp \ - projectmodel.cpp + projectmodel.cpp \ + configdocument.cpp OTHER_FILES += README \ resources/windowicon.png \ resources/appicon.xcf \ @@ -38,5 +41,6 @@ OTHER_FILES += README \ resources/document-open.png \ resources/document-new.png FORMS += editorwindow.ui \ - preferencesdialog.ui + preferencesdialog.ui \ + configdocument.ui RESOURCES += resources.qrc |