2010-05-25 22:39:07 +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.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2010-06-01 21:25:02 +00:00
|
|
|
#include "editorwindow.h"
|
2010-05-25 22:24:08 +00:00
|
|
|
|
2020-09-03 16:33:12 +00:00
|
|
|
#include <QApplication>
|
2010-05-25 22:24:08 +00:00
|
|
|
|
|
|
|
int main(int argc, char* argv[])
|
|
|
|
{
|
2010-05-30 01:47:35 +00:00
|
|
|
QApplication app(argc, argv);
|
2010-05-25 22:24:08 +00:00
|
|
|
|
2010-06-07 22:35:32 +00:00
|
|
|
QCoreApplication::setApplicationName("Rockbox Theme Editor");
|
|
|
|
QCoreApplication::setApplicationVersion("Pre-Alpha");
|
|
|
|
QCoreApplication::setOrganizationName("rockbox.org");
|
2010-06-05 07:14:03 +00:00
|
|
|
|
2010-06-01 21:25:02 +00:00
|
|
|
EditorWindow mainWindow;
|
|
|
|
mainWindow.show();
|
2010-05-30 01:47:35 +00:00
|
|
|
|
|
|
|
return app.exec();
|
|
|
|
|
2010-05-25 22:24:08 +00:00
|
|
|
}
|
|
|
|
|