mirror of
https://github.com/AleziaKurdis/overte.git
synced 2025-04-06 11:33:30 +02:00
Ressources rebranding for Overte (mostly images, icon, model updated with Overte brand) some file has been edited to replace some files (they had vircadia in the name) Most of this has not been tested. (cause I don't build)
132 lines
3.2 KiB
QML
132 lines
3.2 KiB
QML
//
|
|
// LoginDialog.qml
|
|
//
|
|
// Created by David Rowe on 3 Jun 2015
|
|
// Copyright 2015 High Fidelity, Inc.
|
|
// Copyright 2020 Vircadia contributors.
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
|
|
import Hifi 1.0
|
|
import QtQuick 2.4
|
|
|
|
import controlsUit 1.0 as HifiControlsUit
|
|
import stylesUit 1.0 as HifiStylesUit
|
|
|
|
FocusScope {
|
|
id: root
|
|
objectName: "LoginDialog"
|
|
property bool shown: true
|
|
visible: shown
|
|
|
|
HifiStylesUit.HifiConstants { id: hifi }
|
|
|
|
anchors.fill: parent
|
|
|
|
readonly property bool isTablet: false
|
|
readonly property bool isOverlay: false
|
|
|
|
property string iconText: ""
|
|
property int iconSize: 50
|
|
property bool keyboardEnabled: false
|
|
property bool keyboardRaised: false
|
|
property bool punctuationMode: false
|
|
property bool isPassword: false
|
|
|
|
property alias bannerWidth: banner.width
|
|
property alias bannerHeight: banner.height
|
|
|
|
property string title: ""
|
|
property string text: ""
|
|
|
|
property int titleWidth: 0
|
|
|
|
property bool isHMD: HMD.active
|
|
|
|
function tryDestroy() {
|
|
root.destroy()
|
|
}
|
|
|
|
LoginDialog {
|
|
id: loginDialog
|
|
|
|
Loader {
|
|
id: bodyLoader
|
|
}
|
|
}
|
|
|
|
Image {
|
|
z: -10
|
|
id: loginDialogBackground
|
|
fillMode: Image.PreserveAspectCrop
|
|
source: "LoginDialog/images/background.png"
|
|
anchors.fill: parent
|
|
}
|
|
|
|
Rectangle {
|
|
z: -6
|
|
id: opaqueRect
|
|
height: parent.height
|
|
width: parent.width
|
|
opacity: 0.65
|
|
color: "black"
|
|
}
|
|
|
|
Item {
|
|
z: -5
|
|
id: bannerContainer
|
|
width: parent.width
|
|
height: banner.height
|
|
anchors {
|
|
top: parent.top
|
|
topMargin: 0.18 * parent.height
|
|
}
|
|
Image {
|
|
id: banner
|
|
anchors.centerIn: parent
|
|
sourceSize.width: 272
|
|
sourceSize.height: 91
|
|
source: "../images/brand-banner.svg"
|
|
horizontalAlignment: Image.AlignHCenter
|
|
}
|
|
}
|
|
|
|
Keys.onPressed: {
|
|
if (!visible) {
|
|
return
|
|
}
|
|
|
|
if (event.modifiers === Qt.ControlModifier)
|
|
switch (event.key) {
|
|
case Qt.Key_A:
|
|
event.accepted = true
|
|
detailedText.selectAll()
|
|
break
|
|
case Qt.Key_C:
|
|
event.accepted = true
|
|
detailedText.copy()
|
|
break
|
|
case Qt.Key_Period:
|
|
if (Qt.platform.os === "osx") {
|
|
event.accepted = true
|
|
content.reject()
|
|
}
|
|
break
|
|
} else switch (event.key) {
|
|
case Qt.Key_Escape:
|
|
case Qt.Key_Back:
|
|
event.accepted = true
|
|
break
|
|
|
|
case Qt.Key_Enter:
|
|
case Qt.Key_Return:
|
|
event.accepted = true
|
|
break
|
|
}
|
|
}
|
|
|
|
Component.onCompleted: {
|
|
bodyLoader.setSource("LoginDialog/LinkAccountBody.qml", { "loginDialog": loginDialog, "root": root, "bodyLoader": bodyLoader, "linkSteam": false, "linkOculus": false });
|
|
}
|
|
}
|