blob: 78df1878f66b0f07fefd7c9d5951914df3012b9e [file] [log] [blame]
Robert Biebera089fcc2010-05-25 22:39:07 +00001/***************************************************************************
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
Robert Bieber0769fc52010-05-25 22:24:08 +000022#include "skin_parser.h"
23#include "skin_debug.h"
Robert Biebera9848ce2010-06-01 21:25:02 +000024#include "editorwindow.h"
Robert Bieber0769fc52010-05-25 22:24:08 +000025
26#include <cstdlib>
27#include <cstdio>
Robert Bieber6980c1e2010-05-29 00:04:04 +000028#include <iostream>
Robert Bieber0769fc52010-05-25 22:24:08 +000029
30#include <QtGui/QApplication>
Robert Bieber0769fc52010-05-25 22:24:08 +000031
Robert Bieber565cd002010-05-26 21:13:14 +000032#include "parsetreemodel.h"
33
Robert Bieber0769fc52010-05-25 22:24:08 +000034int main(int argc, char* argv[])
35{
Robert Bieber9f2e1b12010-05-30 01:47:35 +000036 QApplication app(argc, argv);
Robert Bieber0769fc52010-05-25 22:24:08 +000037
Robert Bieber24647ba2010-06-07 22:35:32 +000038 QCoreApplication::setApplicationName("Rockbox Theme Editor");
39 QCoreApplication::setApplicationVersion("Pre-Alpha");
40 QCoreApplication::setOrganizationName("rockbox.org");
Robert Bieber0af88602010-06-05 07:14:03 +000041
Robert Biebera9848ce2010-06-01 21:25:02 +000042 EditorWindow mainWindow;
43 mainWindow.show();
Robert Bieber9f2e1b12010-05-30 01:47:35 +000044
45 return app.exec();
46
Robert Bieber0769fc52010-05-25 22:24:08 +000047}
48