mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
121 lines
3.2 KiB
QML
121 lines
3.2 KiB
QML
//
|
|
// HelpFAQ.qml
|
|
//
|
|
// Created by Zach Fox on 2019-08-08
|
|
// Copyright 2019 High Fidelity, Inc.
|
|
// Copyright 2024 Overte e.V.
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
//
|
|
|
|
import QtQuick 2.10
|
|
import QtQuick.Controls 2.3
|
|
import "../../simplifiedConstants" as SimplifiedConstants
|
|
import "../../simplifiedControls" as SimplifiedControls
|
|
import stylesUit 1.0 as HifiStylesUit
|
|
import QtQuick.Layouts 1.3
|
|
import PerformanceEnums 1.0
|
|
|
|
Item {
|
|
id: root
|
|
width: parent.width
|
|
height: parent.height
|
|
|
|
|
|
SimplifiedConstants.SimplifiedConstants {
|
|
id: simplifiedUI
|
|
}
|
|
|
|
|
|
Image {
|
|
id: accent
|
|
source: "../images/accent3.svg"
|
|
anchors.left: parent.left
|
|
anchors.top: parent.top
|
|
width: 83
|
|
height: 156
|
|
transform: Scale {
|
|
xScale: -1
|
|
origin.x: accent.width / 2
|
|
origin.y: accent.height / 2
|
|
}
|
|
}
|
|
|
|
|
|
ColumnLayout {
|
|
id: faqColumnLayout
|
|
anchors.left: parent.left
|
|
anchors.leftMargin: 26
|
|
anchors.right: parent.right
|
|
anchors.rightMargin: 26
|
|
anchors.top: parent.top
|
|
spacing: 0
|
|
|
|
HifiStylesUit.FiraSansSemiBold {
|
|
text: "FAQ"
|
|
Layout.preferredWidth: parent.width
|
|
Layout.preferredHeight: paintedHeight
|
|
Layout.topMargin: 16
|
|
size: 22
|
|
color: simplifiedUI.colors.text.white
|
|
}
|
|
|
|
HifiStylesUit.FiraSansRegular {
|
|
text: "You can find answers to all of our frequently asked questions by clicking the button below."
|
|
Layout.preferredWidth: parent.width
|
|
Layout.preferredHeight: paintedHeight
|
|
Layout.topMargin: 8
|
|
size: 18
|
|
wrapMode: Text.Wrap
|
|
color: simplifiedUI.colors.text.white
|
|
}
|
|
|
|
SimplifiedControls.Button {
|
|
Layout.topMargin: 8
|
|
width: 200
|
|
height: 32
|
|
text: "VIEW FAQ"
|
|
temporaryText: "Viewing!"
|
|
|
|
onClicked: {
|
|
Qt.openUrlExternally("https://overte.org/");
|
|
}
|
|
}
|
|
|
|
HifiStylesUit.FiraSansSemiBold {
|
|
text: "Having problems with your audio?"
|
|
Layout.preferredWidth: parent.width
|
|
Layout.preferredHeight: paintedHeight
|
|
Layout.topMargin: 32
|
|
size: 16
|
|
color: simplifiedUI.colors.text.white
|
|
}
|
|
|
|
HifiStylesUit.FiraSansRegular {
|
|
text: "Quickly check your audio configuration and make changes to resolve any audio input/output issues."
|
|
Layout.preferredWidth: parent.width
|
|
Layout.preferredHeight: paintedHeight
|
|
Layout.topMargin: 4
|
|
size: 18
|
|
wrapMode: Text.Wrap
|
|
color: simplifiedUI.colors.text.white
|
|
}
|
|
|
|
SimplifiedControls.Button {
|
|
Layout.topMargin: 8
|
|
width: 200
|
|
height: 32
|
|
text: "TEST YOUR AUDIO"
|
|
|
|
onClicked: {
|
|
root.sendToScript({
|
|
"source": "HelpApp.qml",
|
|
"method": "goToAudioSettings"
|
|
});
|
|
}
|
|
}
|
|
}
|
|
|
|
signal sendToScript(var message);
|
|
}
|