1
0
mirror of https://gitlab.com/kelteseth/ScreenPlay.git synced 2024-09-15 06:52:34 +02:00

Add sort of working sidebar

This commit is contained in:
kelteseth 2017-04-03 19:58:47 +02:00
parent a65a1f85a4
commit 880cea332a
4 changed files with 62 additions and 12 deletions

View File

@ -2,21 +2,35 @@ import QtQuick 2.7
import QtQml.Models 2.2
Page {
id:pageInstalled
pageName: "Installed"
signal toggleSidebar(var screenName)
GridView {
id: gridView
anchors.fill: parent
cellWidth: 320
cellHeight: 200
anchors.margins: 20
focus: true
anchors.margins: 30
delegate: ScreenPlayItem {
id:delegate
focus: true
customTitle: title
Connections {
target: delegate
onItemClicked: {
toggleSidebar(screenName)
}
}
}

View File

@ -6,6 +6,7 @@ Item {
height: 180
property string customTitle: "name here"
signal itemClicked(var screenName)
Rectangle
{
@ -25,7 +26,18 @@ Item {
anchors.fill: parent
font.pixelSize: 18
anchors.margins: 10
}
MouseArea {
anchors.fill: parent
onClicked: {
itemClicked(customTitle)
}
}
}
}

View File

@ -7,6 +7,7 @@ Item {
height: 768
width:400
state: "inactive"
focus: true
Item {
id: sidebarWrapper
@ -17,6 +18,7 @@ Item {
bottom:sidebar.bottom
left:sidebar.left
}
Rectangle {
id:sidebarBackground
color: "grey"
@ -28,15 +30,29 @@ Item {
leftMargin: 5
}
Rectangle {
id: rectangle
y: 0
height: 237
color: "#2b2b2b"
anchors.right: parent.right
anchors.rightMargin: 0
anchors.left: parent.left
anchors.leftMargin: 0
}
Button {
id: button
text: qsTr("Button")
anchors.horizontalCenter: parent.horizontalCenter
anchors.verticalCenter: parent.verticalCenter
text: qsTr("Back")
anchors.top: parent.top
anchors.topMargin: 20
anchors.left: parent.left
anchors.leftMargin: 20
onClicked: {
sidebar.state = sidebar.state == "active" ? "inactive" : "active"
sidebar.state = sidebar.state === "active" ? "inactive" : "active"
}
}
}
Rectangle {
@ -52,7 +68,7 @@ Item {
LinearGradient {
anchors.fill: parent
start: Qt.point(0, 0)
end: Qt.point(5, 0)
end: Qt.point(0, 5)
gradient: Gradient {
GradientStop { position: 0.0; color: "#00000000" }
GradientStop { position: 1.0; color: "#22000000" }
@ -89,7 +105,7 @@ Item {
NumberAnimation {
properties: "anchors.leftMargin"
duration: 500
duration: 300
easing.type: Easing.InOutQuad
}
},
@ -98,7 +114,7 @@ Item {
NumberAnimation {
properties: "anchors.leftMargin"
duration: 500
duration: 300
easing.type: Easing.InOutQuad
}
}

View File

@ -25,17 +25,25 @@ Window {
left: parent.left
}
source: "qrc:/qml/Components/Installed.qml"
Connections{
target: pageLoader.item
ignoreUnknownSignals: true
onToggleSidebar: {
sidebar.state = sidebar.state === "active" ? "inactive" : "active"
}
}
}
Sidebar {
id: sidebar
width:400
anchors {
top:parent.top
top:nav.bottom
right:parent.right
bottom:parent.bottom
}
}
Navigation {