mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-25 17:14:59 +02:00
Working QML window
This commit is contained in:
parent
dec176b921
commit
43268c0f65
2 changed files with 6 additions and 7 deletions
|
@ -5,7 +5,7 @@ import QtWebChannel 1.0
|
|||
import QtQuick.Controls 2.2
|
||||
|
||||
import stylesUit 1.0 as StylesUIt
|
||||
import "../hifi/PermissionPopup.qml" as PermissionPopup
|
||||
import "../hifi" as Controls
|
||||
|
||||
Item {
|
||||
id: flick
|
||||
|
@ -141,7 +141,7 @@ Item {
|
|||
});
|
||||
}
|
||||
|
||||
PermissionPopup {
|
||||
Controls.PermissionPopup {
|
||||
id: permissionPopup
|
||||
}
|
||||
|
||||
|
|
|
@ -9,7 +9,6 @@ Item {
|
|||
width: 600
|
||||
height: 200
|
||||
z:100
|
||||
HifiConstants { id: hifi }
|
||||
|
||||
// anchors.top: buttons.bottom
|
||||
Rectangle {
|
||||
|
@ -21,7 +20,7 @@ Item {
|
|||
Row {
|
||||
id: webAccessHeaderContainer
|
||||
height: root.height * 0.30
|
||||
RalewayLight {
|
||||
HifiStyles.RalewayLight {
|
||||
id: webAccessHeaderText
|
||||
text: "WEB CAMERA ACCESS REQUEST"
|
||||
width: mainContainer.width
|
||||
|
@ -37,7 +36,7 @@ Item {
|
|||
id: webAccessInfoContainer
|
||||
anchors.top: webAccessHeaderContainer.bottom
|
||||
anchors.topMargin: 10
|
||||
RalewayLight {
|
||||
HifiStyles.RalewayLight {
|
||||
width: mainContainer.width
|
||||
id: webAccessInfoText
|
||||
horizontalAlignment: Text.AlignHCenter
|
||||
|
@ -57,7 +56,7 @@ Item {
|
|||
anchors.horizontalCenter: webAccessInfoContainer.horizontalCenter
|
||||
anchors.verticalCenter: webAccessInfoContainer.verticalCenter
|
||||
property real space: 5
|
||||
Button {
|
||||
HifiControls.Button {
|
||||
anchors.left: permissionsButtonRow.left
|
||||
id: leftButton
|
||||
anchors.leftMargin: permissionsButtonRow.space
|
||||
|
@ -68,7 +67,7 @@ Item {
|
|||
enabled: true
|
||||
width: 155
|
||||
}
|
||||
Button {
|
||||
HifiControls.Button {
|
||||
id: rightButton
|
||||
anchors.left: leftButton.right
|
||||
anchors.leftMargin: permissionsButtonRow.space
|
||||
|
|
Loading…
Reference in a new issue