2013-12-02 11:09:56 +01:00
|
|
|
#include "MultiMC.h"
|
|
|
|
#include "gui/MainWindow.h"
|
|
|
|
|
|
|
|
int main_gui(MultiMC &app)
|
|
|
|
{
|
|
|
|
// show main window
|
2014-05-25 03:22:17 +02:00
|
|
|
QIcon::setThemeName(MMC->settings()->get("IconTheme").toString());
|
2013-12-02 11:09:56 +01:00
|
|
|
MainWindow mainWin;
|
|
|
|
mainWin.restoreState(QByteArray::fromBase64(MMC->settings()->get("MainWindowState").toByteArray()));
|
|
|
|
mainWin.restoreGeometry(QByteArray::fromBase64(MMC->settings()->get("MainWindowGeometry").toByteArray()));
|
|
|
|
mainWin.show();
|
2014-01-01 14:56:26 +00:00
|
|
|
mainWin.checkMigrateLegacyAssets();
|
2013-12-02 11:09:56 +01:00
|
|
|
mainWin.checkSetDefaultJava();
|
2014-07-27 15:50:03 +02:00
|
|
|
mainWin.checkInstancePathForProblems();
|
2014-01-05 13:17:42 +01:00
|
|
|
return app.exec();
|
2013-12-02 11:09:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
// initialize Qt
|
|
|
|
MultiMC app(argc, argv);
|
|
|
|
|
2014-01-19 04:52:34 +01:00
|
|
|
Q_INIT_RESOURCE(instances);
|
|
|
|
Q_INIT_RESOURCE(multimc);
|
|
|
|
Q_INIT_RESOURCE(backgrounds);
|
2014-05-08 19:05:07 +02:00
|
|
|
Q_INIT_RESOURCE(versions);
|
2013-12-02 11:09:56 +01:00
|
|
|
|
2014-05-25 03:22:17 +02:00
|
|
|
Q_INIT_RESOURCE(pe_dark);
|
|
|
|
Q_INIT_RESOURCE(pe_light);
|
2014-10-26 23:44:20 +01:00
|
|
|
Q_INIT_RESOURCE(pe_blue);
|
|
|
|
Q_INIT_RESOURCE(pe_colored);
|
2014-10-27 00:15:52 +01:00
|
|
|
Q_INIT_RESOURCE(OSX);
|
|
|
|
Q_INIT_RESOURCE(iOS);
|
2014-05-09 17:33:32 -05:00
|
|
|
|
2013-12-02 11:09:56 +01:00
|
|
|
switch (app.status())
|
|
|
|
{
|
|
|
|
case MultiMC::Initialized:
|
|
|
|
return main_gui(app);
|
|
|
|
case MultiMC::Failed:
|
|
|
|
return 1;
|
|
|
|
case MultiMC::Succeeded:
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|