rockbox/utils/themeeditor
Robert Bieber b807cb0808 Theme Editor: Fixed another conditional child-counting bug
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26610 a1c6a512-1295-4272-9138-f99709370657
2010-06-06 03:45:18 +00:00
..
resources Theme Editor: Got save/save-as functionality working and added Tango icons to the toolbar 2010-06-05 19:47:49 +00:00
editorwindow.cpp Theme Editor: Began working on open document functionality (still incomplete), fixed a nested conditional parsing bug in the parser, and fixed segfault-on-codegen-from-empty-tree bug 2010-06-06 03:35:40 +00:00
editorwindow.h Theme Editor: Began working on open document functionality (still incomplete), fixed a nested conditional parsing bug in the parser, and fixed segfault-on-codegen-from-empty-tree bug 2010-06-06 03:35:40 +00:00
editorwindow.ui Theme Editor: Added code generation with tabs 2010-06-06 02:11:04 +00:00
main.cpp Theme Editor: Enabled persistent window and panel locations 2010-06-05 07:14:03 +00:00
parsetreemodel.cpp Theme Editor: Began working on open document functionality (still incomplete), fixed a nested conditional parsing bug in the parser, and fixed segfault-on-codegen-from-empty-tree bug 2010-06-06 03:35:40 +00:00
parsetreemodel.h Changed build subdirectory 2010-06-02 20:36:30 +00:00
parsetreenode.cpp Changed build subdirectory 2010-06-02 20:36:30 +00:00
parsetreenode.h Changed build subdirectory 2010-06-02 20:36:30 +00:00
README Added a README and a missing copyright header to the theme editor files 2010-05-25 22:39:07 +00:00
resources.qrc Theme Editor: Got save/save-as functionality working and added Tango icons to the toolbar 2010-06-05 19:47:49 +00:00
skin_debug.c Theme Editor: Removed the NEWLINE parse tree element 2010-06-02 06:12:18 +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 Theme Editor: Fixed another conditional child-counting bug 2010-06-06 03:45:18 +00:00
skin_parser.h Theme Editor: Removed the NEWLINE parse tree element 2010-06-02 06:12:18 +00:00
skin_scan.c clip int scanning to 15 digits to remove an unecessary malloc(). 2010-06-02 10:35:19 +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
skindocument.cpp Theme Editor: Began working on open document functionality (still incomplete), fixed a nested conditional parsing bug in the parser, and fixed segfault-on-codegen-from-empty-tree bug 2010-06-06 03:35:40 +00:00
skindocument.h Theme Editor: Began working on open document functionality (still incomplete), fixed a nested conditional parsing bug in the parser, and fixed segfault-on-codegen-from-empty-tree bug 2010-06-06 03:35:40 +00:00
skinhighlighter.cpp Theme Editor: Added missing copyright headers 2010-06-03 20:53:42 +00:00
skinhighlighter.h Theme Editor: Added missing copyright headers 2010-06-03 20:53:42 +00:00
symbols.h Theme Editor: Added extern C declarations to header files 2010-05-31 17:39:58 +00:00
tag_table.c clip int scanning to 15 digits to remove an unecessary malloc(). 2010-06-02 10:35:19 +00:00
tag_table.h Theme Editor: Altered the way the parser handles asterisks in the tag argument specifiers 2010-06-02 05:27:37 +00:00
themeeditor.pro Theme Editor: Got save/save-as functionality working and added Tango icons to the toolbar 2010-06-05 19:47:49 +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.