blob: 5dc52a0b8822744eeed71413d9b7c4486c252194 [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 Biebera9848ce2010-06-01 21:25:02 +000022#include "editorwindow.h"
Robert Bieber0769fc52010-05-25 22:24:08 +000023
Robert Bieber0769fc52010-05-25 22:24:08 +000024#include <QtGui/QApplication>
Robert Bieber0769fc52010-05-25 22:24:08 +000025
26int main(int argc, char* argv[])
27{
Robert Bieber9f2e1b12010-05-30 01:47:35 +000028 QApplication app(argc, argv);
Robert Bieber0769fc52010-05-25 22:24:08 +000029
Robert Bieber24647ba2010-06-07 22:35:32 +000030 QCoreApplication::setApplicationName("Rockbox Theme Editor");
31 QCoreApplication::setApplicationVersion("Pre-Alpha");
32 QCoreApplication::setOrganizationName("rockbox.org");
Robert Bieber0af88602010-06-05 07:14:03 +000033
Robert Biebera9848ce2010-06-01 21:25:02 +000034 EditorWindow mainWindow;
35 mainWindow.show();
Robert Bieber9f2e1b12010-05-30 01:47:35 +000036
37 return app.exec();
38
Robert Bieber0769fc52010-05-25 22:24:08 +000039}
40