mirror of https://github.com/procxx/kepka.git
Add a cheat code to enable freetype on Windows and macOS
This commit is contained in:
parent
c9553c2d4c
commit
7409d615a3
|
@ -518,6 +518,21 @@ void Application::switchTestMode() {
|
||||||
App::restart();
|
App::restart();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void Application::switchFreeType() {
|
||||||
|
if (cUseFreeType()) {
|
||||||
|
QFile(cWorkingDir() + qsl("tdata/withfreetype")).remove();
|
||||||
|
cSetUseFreeType(false);
|
||||||
|
} else {
|
||||||
|
QFile f(cWorkingDir() + qsl("tdata/withfreetype"));
|
||||||
|
if (f.open(QIODevice::WriteOnly)) {
|
||||||
|
f.write("1");
|
||||||
|
f.close();
|
||||||
|
}
|
||||||
|
cSetUseFreeType(true);
|
||||||
|
}
|
||||||
|
App::restart();
|
||||||
|
}
|
||||||
|
|
||||||
void Application::writeInstallBetaVersionsSetting() {
|
void Application::writeInstallBetaVersionsSetting() {
|
||||||
_launcher->writeInstallBetaVersionsSetting();
|
_launcher->writeInstallBetaVersionsSetting();
|
||||||
}
|
}
|
||||||
|
|
|
@ -215,6 +215,7 @@ public:
|
||||||
|
|
||||||
void switchDebugMode();
|
void switchDebugMode();
|
||||||
void switchTestMode();
|
void switchTestMode();
|
||||||
|
void switchFreeType();
|
||||||
void writeInstallBetaVersionsSetting();
|
void writeInstallBetaVersionsSetting();
|
||||||
|
|
||||||
void call_handleUnreadCounterUpdate();
|
void call_handleUnreadCounterUpdate();
|
||||||
|
|
|
@ -34,26 +34,47 @@ private:
|
||||||
static constexpr auto kForwardArgumentCount = 1;
|
static constexpr auto kForwardArgumentCount = 1;
|
||||||
|
|
||||||
int _count = 0;
|
int _count = 0;
|
||||||
char *_arguments[kForwardArgumentCount + 1] = { nullptr };
|
std::vector<QByteArray> _owned;
|
||||||
|
std::vector<char*> _arguments;
|
||||||
|
|
||||||
|
void pushArgument(const char *text);
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
FilteredCommandLineArguments::FilteredCommandLineArguments(
|
FilteredCommandLineArguments::FilteredCommandLineArguments(
|
||||||
int argc,
|
int argc,
|
||||||
char **argv)
|
char **argv) {
|
||||||
: _count(std::clamp(argc, 0, kForwardArgumentCount)) {
|
|
||||||
// For now just pass only the first argument, the executable path.
|
// For now just pass only the first argument, the executable path.
|
||||||
for (auto i = 0; i != _count; ++i) {
|
for (auto i = 0; i != kForwardArgumentCount; ++i) {
|
||||||
_arguments[i] = argv[i];
|
pushArgument(argv[i]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if defined Q_OS_WIN || defined Q_OS_MAC
|
||||||
|
if (cUseFreeType()) {
|
||||||
|
pushArgument("-platform");
|
||||||
|
#ifdef Q_OS_WIN
|
||||||
|
pushArgument("windows:fontengine=freetype");
|
||||||
|
#else // Q_OS_WIN
|
||||||
|
pushArgument("cocoa:fontengine=freetype");
|
||||||
|
#endif // !Q_OS_WIN
|
||||||
|
}
|
||||||
|
#endif // Q_OS_WIN || Q_OS_MAC
|
||||||
|
|
||||||
|
pushArgument(nullptr);
|
||||||
}
|
}
|
||||||
|
|
||||||
int &FilteredCommandLineArguments::count() {
|
int &FilteredCommandLineArguments::count() {
|
||||||
|
_count = _arguments.size() - 1;
|
||||||
return _count;
|
return _count;
|
||||||
}
|
}
|
||||||
|
|
||||||
char **FilteredCommandLineArguments::values() {
|
char **FilteredCommandLineArguments::values() {
|
||||||
return _arguments;
|
return _arguments.data();
|
||||||
|
}
|
||||||
|
|
||||||
|
void FilteredCommandLineArguments::pushArgument(const char *text) {
|
||||||
|
_owned.emplace_back(text);
|
||||||
|
_arguments.push_back(_owned.back().data());
|
||||||
}
|
}
|
||||||
|
|
||||||
QString DebugModeSettingPath() {
|
QString DebugModeSettingPath() {
|
||||||
|
@ -82,6 +103,12 @@ void ComputeTestMode() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void ComputeFreeType() {
|
||||||
|
if (QFile(cWorkingDir() + qsl("tdata/withfreetype")).exists()) {
|
||||||
|
cSetUseFreeType(true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
QString InstallBetaVersionsSettingPath() {
|
QString InstallBetaVersionsSettingPath() {
|
||||||
return cWorkingDir() + qsl("tdata/devversion");
|
return cWorkingDir() + qsl("tdata/devversion");
|
||||||
}
|
}
|
||||||
|
@ -301,6 +328,7 @@ void Launcher::workingFolderReady() {
|
||||||
|
|
||||||
ComputeTestMode();
|
ComputeTestMode();
|
||||||
ComputeDebugMode();
|
ComputeDebugMode();
|
||||||
|
ComputeFreeType();
|
||||||
ComputeInstallBetaVersions();
|
ComputeInstallBetaVersions();
|
||||||
ComputeInstallationTag();
|
ComputeInstallationTag();
|
||||||
}
|
}
|
||||||
|
@ -382,6 +410,7 @@ void Launcher::processArguments() {
|
||||||
auto parseMap = std::map<QByteArray, KeyFormat> {
|
auto parseMap = std::map<QByteArray, KeyFormat> {
|
||||||
{ "-testmode" , KeyFormat::NoValues },
|
{ "-testmode" , KeyFormat::NoValues },
|
||||||
{ "-debug" , KeyFormat::NoValues },
|
{ "-debug" , KeyFormat::NoValues },
|
||||||
|
{ "-freetype" , KeyFormat::NoValues },
|
||||||
{ "-many" , KeyFormat::NoValues },
|
{ "-many" , KeyFormat::NoValues },
|
||||||
{ "-key" , KeyFormat::OneValue },
|
{ "-key" , KeyFormat::OneValue },
|
||||||
{ "-autostart" , KeyFormat::NoValues },
|
{ "-autostart" , KeyFormat::NoValues },
|
||||||
|
@ -423,6 +452,7 @@ void Launcher::processArguments() {
|
||||||
SetUpdaterDisabledAtStartup();
|
SetUpdaterDisabledAtStartup();
|
||||||
}
|
}
|
||||||
gTestMode = parseResult.contains("-testmode");
|
gTestMode = parseResult.contains("-testmode");
|
||||||
|
gUseFreeType = parseResult.contains("-freetype");
|
||||||
Logs::SetDebugEnabled(parseResult.contains("-debug"));
|
Logs::SetDebugEnabled(parseResult.contains("-debug"));
|
||||||
gManyInstance = parseResult.contains("-many");
|
gManyInstance = parseResult.contains("-many");
|
||||||
gKeyFile = parseResult.value("-key", {}).join(QString()).toLower();
|
gKeyFile = parseResult.value("-key", {}).join(QString()).toLower();
|
||||||
|
|
|
@ -39,6 +39,7 @@ bool gStartInTray = false;
|
||||||
bool gAutoStart = false;
|
bool gAutoStart = false;
|
||||||
bool gSendToMenu = false;
|
bool gSendToMenu = false;
|
||||||
bool gUseExternalVideoPlayer = false;
|
bool gUseExternalVideoPlayer = false;
|
||||||
|
bool gUseFreeType = false;
|
||||||
bool gAutoUpdate = true;
|
bool gAutoUpdate = true;
|
||||||
TWindowPos gWindowPos;
|
TWindowPos gWindowPos;
|
||||||
LaunchMode gLaunchMode = LaunchModeNormal;
|
LaunchMode gLaunchMode = LaunchModeNormal;
|
||||||
|
|
|
@ -42,6 +42,7 @@ DeclareSetting(bool, StartMinimized);
|
||||||
DeclareSetting(bool, StartInTray);
|
DeclareSetting(bool, StartInTray);
|
||||||
DeclareSetting(bool, SendToMenu);
|
DeclareSetting(bool, SendToMenu);
|
||||||
DeclareSetting(bool, UseExternalVideoPlayer);
|
DeclareSetting(bool, UseExternalVideoPlayer);
|
||||||
|
DeclareSetting(bool, UseFreeType);
|
||||||
enum LaunchMode {
|
enum LaunchMode {
|
||||||
LaunchModeNormal = 0,
|
LaunchModeNormal = 0,
|
||||||
LaunchModeAutoStart,
|
LaunchModeAutoStart,
|
||||||
|
|
|
@ -126,6 +126,21 @@ auto GenerateCodes() {
|
||||||
codes.emplace(qsl("export"), [](SessionController *window) {
|
codes.emplace(qsl("export"), [](SessionController *window) {
|
||||||
window->session().data().startExport();
|
window->session().data().startExport();
|
||||||
});
|
});
|
||||||
|
#if defined Q_OS_WIN || defined Q_OS_MAC
|
||||||
|
codes.emplace(qsl("freetype"), [](SessionController *window) {
|
||||||
|
auto text = cUseFreeType()
|
||||||
|
#ifdef Q_OS_WIN
|
||||||
|
? qsl("Switch font engine to GDI?")
|
||||||
|
#else // Q_OS_WIN
|
||||||
|
? qsl("Switch font engine to Cocoa?")
|
||||||
|
#endif // !Q_OS_WIN
|
||||||
|
: qsl("Switch font engine to FreeType?");
|
||||||
|
|
||||||
|
Ui::show(Box<ConfirmBox>(text, [] {
|
||||||
|
Core::App().switchFreeType();
|
||||||
|
}));
|
||||||
|
});
|
||||||
|
#endif // Q_OS_WIN || Q_OS_MAC
|
||||||
|
|
||||||
auto audioFilters = qsl("Audio files (*.wav *.mp3);;") + FileDialog::AllFilesFilter();
|
auto audioFilters = qsl("Audio files (*.wav *.mp3);;") + FileDialog::AllFilesFilter();
|
||||||
auto audioKeys = {
|
auto audioKeys = {
|
||||||
|
|
Loading…
Reference in New Issue