rockbox/utils/themeeditor
Robert Bieber e174a8ad8d Theme Editor: Began implementing tabbing
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26541 a1c6a512-1295-4272-9138-f99709370657
2010-06-04 07:57:19 +00:00
..
resources Theme Editor: Added a window icon and made menus alt-navigable 2010-06-03 20:51:17 +00:00
editorwindow.cpp Theme Editor: Began implementing tabbing 2010-06-04 07:57:19 +00:00
editorwindow.h Theme Editor: Began implementing tabbing 2010-06-04 07:57:19 +00:00
editorwindow.ui Theme Editor: Began implementing tabbing 2010-06-04 07:57:19 +00:00
main.cpp Theme Editor: Began implementing tabbing 2010-06-04 07:57:19 +00:00
parsetreemodel.cpp Theme Editor: Mocked up most of the UI, added View menu items for all dockable widgets 2010-06-03 20:05:55 +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: Added a window icon and made menus alt-navigable 2010-06-03 20:51:17 +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 parsing and code generation for nested conditionals 2010-06-02 07:48:48 +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 implementing tabbing 2010-06-04 07:57:19 +00:00
skindocument.h Theme Editor: Began implementing tabbing 2010-06-04 07:57:19 +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: Began implementing tabbing 2010-06-04 07:57:19 +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.