mirror of
https://github.com/Armored-Dragon/overte.git
synced 2025-03-11 16:13:16 +01:00
fix mac TextFields
This commit is contained in:
parent
e505174041
commit
e52d2ff342
2 changed files with 40 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
import QtQuick 2.3
|
||||
import QtQuick 2.5
|
||||
import QtQuick.Controls 2.1
|
||||
|
||||
TextField {
|
||||
|
@ -55,4 +55,36 @@ TextField {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
Keys.onPressed: {
|
||||
event.accepted = false;
|
||||
|
||||
if (Platform === "MacOS") {
|
||||
if (event.key == Qt.Key_Left) {
|
||||
if (control.cursorPosition > 0) {
|
||||
var index = control.cursorPosition - 1;
|
||||
control.select(index, index);
|
||||
}
|
||||
event.accepted = true;
|
||||
}
|
||||
|
||||
if (event.key == Qt.Key_Right) {
|
||||
if (control.cursorPosition < control.text.length) {
|
||||
var index = control.cursorPosition + 1;
|
||||
control.select(index, index);
|
||||
}
|
||||
event.accepted = true;
|
||||
}
|
||||
|
||||
if (event.modifiers & Qt.ControlModifier) {
|
||||
if (event.key == Qt.Key_C) {
|
||||
control.copy();
|
||||
event.accepted = true;
|
||||
} else if (event.key == Qt.Key_V) {
|
||||
control.paste();
|
||||
event.accepted = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -12,9 +12,16 @@
|
|||
Launcher::Launcher(int& argc, char**argv) : QGuiApplication(argc, argv) {
|
||||
_launcherState = std::make_shared<LauncherState>();
|
||||
|
||||
QString platform;
|
||||
#ifdef Q_OS_WIN
|
||||
platform = "Windows";
|
||||
#elif defined(Q_OS_MACOS)
|
||||
platform = "MacOS";
|
||||
#endif
|
||||
_launcherWindow = std::make_unique<LauncherWindow>();
|
||||
_launcherWindow->rootContext()->setContextProperty("LauncherState", _launcherState.get());
|
||||
_launcherWindow->rootContext()->setContextProperty("PathUtils", new PathUtils());
|
||||
_launcherWindow->rootContext()->setContextProperty("Platform", platform);
|
||||
_launcherWindow->setTitle("High Fidelity");
|
||||
_launcherWindow->setFlags(Qt::FramelessWindowHint | Qt::Window);
|
||||
_launcherWindow->setLauncherStatePtr(_launcherState);
|
||||
|
|
Loading…
Reference in a new issue