summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--utils/themeeditor/README27
-rw-r--r--utils/themeeditor/main.cpp21
-rw-r--r--utils/themeeditor/themeeditor.pro2
3 files changed, 49 insertions, 1 deletions
diff --git a/utils/themeeditor/README b/utils/themeeditor/README
new file mode 100644
index 0000000000..0b4bffe9f7
--- /dev/null
+++ b/utils/themeeditor/README
@@ -0,0 +1,27 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2010 Robert Bieber
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
16 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
19 *
20 ****************************************************************************/
21
22To build the theme editor, you will need a Qt development environment with the
23Qt core and GUI libraries and qmake, along with standard C and C++ compilers
24and libraries. To compile, cd to the source directory and run the "qmake"
25command followed by "make". This will produce the binary "themeeditor". At the
26moment, this simply prints a text debug tree. Soon, it will launch a GUI
27application.
diff --git a/utils/themeeditor/main.cpp b/utils/themeeditor/main.cpp
index 3d7a01e7f2..45ea662944 100644
--- a/utils/themeeditor/main.cpp
+++ b/utils/themeeditor/main.cpp
@@ -1,3 +1,24 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2010 Robert Bieber
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
16 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
19 *
20 ****************************************************************************/
21
1namespace wps 22namespace wps
2{ 23{
3 extern "C" 24 extern "C"
diff --git a/utils/themeeditor/themeeditor.pro b/utils/themeeditor/themeeditor.pro
index f3ce7f6810..ad6b41858e 100644
--- a/utils/themeeditor/themeeditor.pro
+++ b/utils/themeeditor/themeeditor.pro
@@ -1,4 +1,3 @@
1CONFIG += qt
2HEADERS += tag_table.h \ 1HEADERS += tag_table.h \
3 symbols.h \ 2 symbols.h \
4 skin_parser.h \ 3 skin_parser.h \
@@ -9,3 +8,4 @@ SOURCES += tag_table.c \
9 skin_scan.c \ 8 skin_scan.c \
10 skin_debug.c \ 9 skin_debug.c \
11 main.cpp 10 main.cpp
11OTHER_FILES += README