rockbox/utils/themeeditor
Robert Bieber 6980c1e998 Theme Editor: Got code generation tentatively working along with a solid C++ tree structure for WPS parse trees
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26367 a1c6a512-1295-4272-9138-f99709370657
2010-05-29 00:04:04 +00:00
..
main.cpp Theme Editor: Got code generation tentatively working along with a solid C++ tree structure for WPS parse trees 2010-05-29 00:04:04 +00:00
parsetreemodel.cpp Theme Editor: Got code generation tentatively working along with a solid C++ tree structure for WPS parse trees 2010-05-29 00:04:04 +00:00
parsetreemodel.h Theme Editor: Got code generation tentatively working along with a solid C++ tree structure for WPS parse trees 2010-05-29 00:04:04 +00:00
parsetreenode.cpp Theme Editor: Got code generation tentatively working along with a solid C++ tree structure for WPS parse trees 2010-05-29 00:04:04 +00:00
parsetreenode.h Theme Editor: Got code generation tentatively working along with a solid C++ tree structure for WPS parse trees 2010-05-29 00:04:04 +00:00
README Added a README and a missing copyright header to the theme editor files 2010-05-25 22:39:07 +00:00
skin_debug.c Theme Editor: Fixed a bug in the subline parser, added a LINE element to contain logical lines, working on data model 2010-05-27 19:57:15 +00:00
skin_debug.h Fixed some memory leaks in the theme editor 2010-05-25 22:24:08 +00:00
skin_parser.c Theme Editor: Got code generation tentatively working along with a solid C++ tree structure for WPS parse trees 2010-05-29 00:04:04 +00:00
skin_parser.h Theme Editor: Got code generation tentatively working along with a solid C++ tree structure for WPS parse trees 2010-05-29 00:04:04 +00:00
skin_scan.c Fixed some bugs in the theme editor, added the tags with parameters to the tag table 2010-05-25 17:22:39 +00:00
skin_scan.h Fixed some memory leaks in the theme editor 2010-05-25 22:24:08 +00:00
symbols.h Fixed some bugs in the theme editor, added the tags with parameters to the tag table 2010-05-25 17:22:39 +00:00
tag_table.c %aX should have been %ax.. 2010-05-28 02:30:27 +00:00
tag_table.h Fixed some memory leaks in the theme editor 2010-05-25 22:24:08 +00:00
themeeditor.pro Trying to implement QAbstractItemModel for parse trees, haven't got it working yet (current state will spawn an empty treeview window) 2010-05-26 21:13:14 +00:00

/***************************************************************************
 *             __________               __   ___.
 *   Open      \______   \ ____   ____ |  | _\_ |__   _______  ___
 *   Source     |       _//  _ \_/ ___\|  |/ /| __ \ /  _ \  \/  /
 *   Jukebox    |    |   (  <_> )  \___|    < | \_\ (  <_> > <  <
 *   Firmware   |____|_  /\____/ \___  >__|_ \|___  /\____/__/\_ \
 *                     \/            \/     \/    \/            \/
 * $Id$
 *
 * Copyright (C) 2010 Robert Bieber
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
 * KIND, either express or implied.
 *
 ****************************************************************************/

To build the theme editor, you will need a Qt development environment with the
Qt core and GUI libraries and qmake, along with standard C and C++ compilers
and libraries.  To compile, cd to the source directory and run the "qmake"
command followed by "make".  This will produce the binary "themeeditor".  At the
moment, this simply prints a text debug tree.  Soon, it will launch a GUI
application.