mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-11 16:49:28 +02:00
[UI] Remove DolphinQt
This commit is contained in:
@ -1,65 +0,0 @@
|
||||
// Copyright 2014 Dolphin Emulator Project
|
||||
// Licensed under GPLv2+
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#include <QApplication>
|
||||
#include <QDesktopServices>
|
||||
#include <QFile>
|
||||
#include <QMessageBox>
|
||||
#include <QSysInfo>
|
||||
#include <QUrl>
|
||||
|
||||
#include "MainWindow.h"
|
||||
|
||||
#include "UICommon/UICommon.h"
|
||||
|
||||
static bool IsOsSupported()
|
||||
{
|
||||
#ifdef Q_OS_OSX
|
||||
return QSysInfo::MacintoshVersion >= QSysInfo::MV_10_9;
|
||||
#elif defined(Q_OS_WIN)
|
||||
return (QSysInfo::WindowsVersion & QSysInfo::WV_NT_based) >= QSysInfo::WV_VISTA;
|
||||
#else
|
||||
return true;
|
||||
#endif
|
||||
}
|
||||
|
||||
static QString LowestSupportedOsVersion()
|
||||
{
|
||||
#ifdef Q_OS_OSX
|
||||
return QStringLiteral("Mac OS X 10.9");
|
||||
#elif defined(Q_OS_WIN)
|
||||
return QStringLiteral("Windows Vista SP2");
|
||||
#else
|
||||
return QStringLiteral("Unknown");
|
||||
#endif
|
||||
}
|
||||
|
||||
int main(int argc, char* argv[])
|
||||
{
|
||||
QApplication app(argc, argv);
|
||||
app.setAttribute(Qt::AA_UseHighDpiPixmaps);
|
||||
// TODO: Add command line options
|
||||
|
||||
UICommon::SetUserDirectory(""); // Auto-detect user folder
|
||||
UICommon::CreateDirectories();
|
||||
UICommon::Init();
|
||||
|
||||
if (!IsOsSupported())
|
||||
{
|
||||
QMessageBox::critical(nullptr, QObject::tr("Unsupported OS"),
|
||||
QObject::tr("Dolphin requires %1 or greater.\n"
|
||||
"Please upgrade to %1 or greater to use Dolphin.")
|
||||
.arg(LowestSupportedOsVersion()));
|
||||
return 1;
|
||||
}
|
||||
|
||||
g_main_window = new DMainWindow();
|
||||
g_main_window->show();
|
||||
|
||||
int retcode = app.exec();
|
||||
delete g_main_window;
|
||||
Core::Shutdown();
|
||||
UICommon::Shutdown();
|
||||
return retcode;
|
||||
}
|
Reference in New Issue
Block a user