rockbox/utils/themeeditor
Robert Bieber 0a054b288b Committing FS#11345 by JdGordon. Theme editor parser now includes full tag information in the skin_element struct
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26448 a1c6a512-1295-4272-9138-f99709370657
2010-06-01 16:44:52 +00:00
..
main.cpp Theme Editor: Made Viewport the top level parse tree element, along with a bugfix to the tag parsing function 2010-06-01 07:11:23 +00:00
parsetreemodel.cpp Theme Editor: Got a barely functional treeview in place 2010-05-30 01:47:35 +00:00
parsetreemodel.h Theme Editor: Added extern C declarations to header files 2010-05-31 17:39:58 +00:00
parsetreenode.cpp Committing FS#11345 by JdGordon. Theme editor parser now includes full tag information in the skin_element struct 2010-06-01 16:44:52 +00:00
parsetreenode.h Theme Editor: Added extern C declarations to header files 2010-05-31 17:39:58 +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 Committing FS#11345 by JdGordon. Theme editor parser now includes full tag information in the skin_element struct 2010-06-01 16:44:52 +00:00
skin_debug.h Theme Editor: Added extern C declarations to header files 2010-05-31 17:39:58 +00:00
skin_parser.c Committing FS#11345 by JdGordon. Theme editor parser now includes full tag information in the skin_element struct 2010-06-01 16:44:52 +00:00
skin_parser.h Committing FS#11345 by JdGordon. Theme editor parser now includes full tag information in the skin_element struct 2010-06-01 16:44:52 +00:00
skin_scan.c Theme Editor: Made Viewport the top level parse tree element, along with a bugfix to the tag parsing function 2010-06-01 07:11:23 +00:00
skin_scan.h Theme Editor: Made Viewport the top level parse tree element, along with a bugfix to the tag parsing function 2010-06-01 07:11:23 +00:00
symbols.h Theme Editor: Added extern C declarations to header files 2010-05-31 17:39:58 +00:00
tag_table.c Committing FS#11345 by JdGordon. Theme editor parser now includes full tag information in the skin_element struct 2010-06-01 16:44:52 +00:00
tag_table.h Committing FS#11345 by JdGordon. Theme editor parser now includes full tag information in the skin_element struct 2010-06-01 16:44:52 +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.