Spectral/qml/main.qml

138 lines
3.3 KiB
QML
Raw Normal View History

2018-02-23 14:39:14 +00:00
import QtQuick 2.10
import QtQuick.Controls 2.3
import QtQuick.Layouts 1.3
import QtQuick.Controls.Material 2.2
import QtGraphicalEffects 1.0
import Qt.labs.settings 1.0
import "qrc:/qml/component"
import "qrc:/qml/form"
import Matrique 0.1
ApplicationWindow {
id: window
visible: true
width: 960
height: 640
title: qsTr("Matrique")
2018-02-27 11:07:50 +00:00
Controller {
id: controller
2018-02-27 11:37:53 +00:00
onIsLoginChanged: console.log("Status:", isLogin)
2018-02-26 12:41:20 +00:00
}
2018-02-23 14:39:14 +00:00
Settings {
id: settings
2018-02-27 11:07:50 +00:00
property alias userID: controller.userID
property alias token: controller.token
2018-02-23 14:39:14 +00:00
}
FontLoader { id: materialFont; source: "qrc:/asset/font/material.ttf" }
SideNav {
id: sideNav
width: 80
height: window.height
ColumnLayout {
anchors.fill: parent
spacing: 0
ButtonDelegate {
index: 0
contentItem: ImageStatus {
width: parent.width
height: parent.width
source: "qrc:/asset/img/avatar.png"
anchors.horizontalCenter: parent.horizontalCenter
}
}
Rectangle {
color: "transparent"
Layout.fillHeight: true
}
ButtonDelegate {
index: 1
contentItem: Text {
text: "\ue853"
font.pointSize: 16
font.family: materialFont.name
color: "white"
horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignVCenter
}
}
2018-02-28 13:11:42 +00:00
// ButtonDelegate {
// index: 2
// contentItem: Text {
// text: "\ue5d2"
// font.pointSize: 16
// font.family: materialFont.name
// color: "white"
// horizontalAlignment: Text.AlignHCenter
// verticalAlignment: Text.AlignVCenter
// }
// }
2018-02-23 14:39:14 +00:00
ButtonDelegate {
2018-02-28 13:11:42 +00:00
index: 2
2018-02-23 14:39:14 +00:00
contentItem: Text {
text: "\ue8b8"
font.pointSize: 16
font.family: materialFont.name
color: "white"
horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignVCenter
}
}
ButtonDelegate {
2018-02-28 13:11:42 +00:00
index: 3
2018-02-23 14:39:14 +00:00
contentItem: Text {
text: "\ue879"
font.pointSize: 16
font.family: materialFont.name
color: "white"
horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignVCenter
}
onClicked: Qt.quit()
}
}
}
SwipeView {
id: swipeView
anchors.fill: parent
anchors.leftMargin: sideNav.width
interactive: false
orientation: Qt.Vertical
2018-02-28 13:11:42 +00:00
Room {
roomListModel: controller.roomListModel
2018-02-23 14:39:14 +00:00
}
Login {
id: loginPage
window: window
2018-02-27 11:07:50 +00:00
controller: controller
2018-02-23 14:39:14 +00:00
}
Setting {
}
}
}