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