2023-02-26 23:47:07 +08:00
|
|
|
|
import QtQuick 2.15
|
|
|
|
|
import QtQuick.Window 2.15
|
|
|
|
|
import QtQuick.Controls 2.15
|
|
|
|
|
import QtQuick.Layouts 1.15
|
|
|
|
|
import QtGraphicalEffects 1.15
|
2023-03-02 18:21:43 +08:00
|
|
|
|
|
2023-02-26 23:47:07 +08:00
|
|
|
|
import FluentUI 1.0
|
|
|
|
|
|
2023-02-27 18:46:39 +08:00
|
|
|
|
FluWindow {
|
2023-02-26 23:47:07 +08:00
|
|
|
|
id:rootwindow
|
|
|
|
|
width: 800
|
2023-03-02 23:58:50 +08:00
|
|
|
|
height: 700
|
2023-02-27 23:04:52 +08:00
|
|
|
|
title: "FluentUI"
|
2023-03-02 18:21:43 +08:00
|
|
|
|
minimumWidth: 600
|
2023-03-02 23:58:50 +08:00
|
|
|
|
minimumHeight: 500
|
2023-02-27 18:46:39 +08:00
|
|
|
|
|
|
|
|
|
FluAppBar{
|
|
|
|
|
id:appbar
|
|
|
|
|
title: "FluentUI"
|
2023-03-03 18:19:48 +08:00
|
|
|
|
showDark: true
|
|
|
|
|
showFps: true
|
2023-02-27 18:46:39 +08:00
|
|
|
|
}
|
2023-02-26 23:47:07 +08:00
|
|
|
|
|
2023-03-02 18:21:43 +08:00
|
|
|
|
Item{
|
|
|
|
|
id:data
|
|
|
|
|
|
|
|
|
|
ListModel{
|
|
|
|
|
id:nav_items
|
|
|
|
|
ListElement{
|
|
|
|
|
text:"Buttons"
|
|
|
|
|
page:"qrc:/T_Buttons.qml"
|
|
|
|
|
}
|
|
|
|
|
ListElement{
|
|
|
|
|
text:"TextBox"
|
|
|
|
|
page:"qrc:/T_TextBox.qml"
|
|
|
|
|
}
|
|
|
|
|
ListElement{
|
|
|
|
|
text:"ToggleSwitch"
|
|
|
|
|
page:"qrc:/T_ToggleSwitch.qml"
|
|
|
|
|
}
|
|
|
|
|
ListElement{
|
|
|
|
|
text:"Slider"
|
|
|
|
|
page:"qrc:/T_Slider.qml"
|
|
|
|
|
}
|
|
|
|
|
ListElement{
|
|
|
|
|
text:"InfoBar"
|
|
|
|
|
page:"qrc:/T_InfoBar.qml"
|
|
|
|
|
}
|
|
|
|
|
ListElement{
|
|
|
|
|
text:"Progress"
|
|
|
|
|
page:"qrc:/T_Progress.qml"
|
|
|
|
|
}
|
|
|
|
|
ListElement{
|
|
|
|
|
text:"Rectangle"
|
|
|
|
|
page:"qrc:/T_Rectangle.qml"
|
|
|
|
|
}
|
|
|
|
|
ListElement{
|
|
|
|
|
text:"Awesome"
|
|
|
|
|
page:"qrc:/T_Awesome.qml"
|
|
|
|
|
}
|
|
|
|
|
ListElement{
|
|
|
|
|
text:"Typography"
|
|
|
|
|
page:"qrc:/T_Typography.qml"
|
|
|
|
|
}
|
2023-02-28 23:57:55 +08:00
|
|
|
|
}
|
2023-03-02 18:21:43 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
FluIconButton{
|
|
|
|
|
icon:FluentIcons.FA_navicon
|
|
|
|
|
anchors{
|
|
|
|
|
left: parent.left
|
|
|
|
|
bottom: parent.bottom
|
|
|
|
|
leftMargin: 12
|
|
|
|
|
bottomMargin: 12
|
2023-03-02 12:20:16 +08:00
|
|
|
|
}
|
2023-03-02 23:58:50 +08:00
|
|
|
|
FluMenu{
|
|
|
|
|
id:menu
|
|
|
|
|
x:40
|
|
|
|
|
margins:4
|
|
|
|
|
FluMenuItem{
|
2023-03-03 18:19:48 +08:00
|
|
|
|
text:"意见反馈"
|
2023-03-02 23:58:50 +08:00
|
|
|
|
onClicked:{
|
2023-03-03 18:19:48 +08:00
|
|
|
|
showInfo("正在建设中...")
|
2023-03-02 23:58:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
FluMenuItem{
|
2023-03-03 18:19:48 +08:00
|
|
|
|
text:"关于"
|
2023-03-02 23:58:50 +08:00
|
|
|
|
onClicked:{
|
2023-03-03 18:19:48 +08:00
|
|
|
|
FluApp.navigate("/About")
|
2023-03-02 23:58:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2023-03-03 18:19:48 +08:00
|
|
|
|
// FluMenuItem{
|
|
|
|
|
// text:"设置"
|
|
|
|
|
// onClicked:{
|
|
|
|
|
// FluApp.navigate("/Setting")
|
|
|
|
|
// }
|
|
|
|
|
// }
|
2023-03-02 23:58:50 +08:00
|
|
|
|
}
|
2023-03-02 18:21:43 +08:00
|
|
|
|
onClicked:{
|
2023-03-02 23:58:50 +08:00
|
|
|
|
menu.open()
|
2023-02-26 23:47:07 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ListView{
|
|
|
|
|
id:nav_list
|
|
|
|
|
anchors{
|
2023-02-27 18:46:39 +08:00
|
|
|
|
top: appbar.bottom
|
2023-02-26 23:47:07 +08:00
|
|
|
|
bottom: parent.bottom
|
|
|
|
|
topMargin: 20
|
2023-03-02 18:21:43 +08:00
|
|
|
|
bottomMargin: 52
|
2023-02-26 23:47:07 +08:00
|
|
|
|
}
|
2023-03-02 18:21:43 +08:00
|
|
|
|
clip: true
|
2023-02-26 23:47:07 +08:00
|
|
|
|
width: 160
|
|
|
|
|
model: nav_items
|
|
|
|
|
delegate: Item{
|
|
|
|
|
height: 38
|
|
|
|
|
width: nav_list.width
|
|
|
|
|
|
|
|
|
|
Rectangle{
|
|
|
|
|
color: {
|
2023-02-27 23:04:52 +08:00
|
|
|
|
if(FluApp.isDark){
|
|
|
|
|
if(item_mouse.containsMouse){
|
|
|
|
|
return "#292929"
|
|
|
|
|
}
|
|
|
|
|
if(nav_list.currentIndex === index){
|
|
|
|
|
return "#2D2D2D"
|
|
|
|
|
}
|
|
|
|
|
return "#00000000"
|
|
|
|
|
}else{
|
|
|
|
|
if(item_mouse.containsMouse){
|
|
|
|
|
return "#EDEDED"
|
|
|
|
|
}
|
|
|
|
|
if(nav_list.currentIndex === index){
|
|
|
|
|
return "#EAEAEA"
|
|
|
|
|
}
|
|
|
|
|
return "#00000000"
|
2023-02-26 23:47:07 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
radius: 4
|
|
|
|
|
anchors{
|
|
|
|
|
top: parent.top
|
|
|
|
|
bottom: parent.bottom
|
|
|
|
|
left: parent.left
|
|
|
|
|
right: parent.right
|
|
|
|
|
topMargin: 2
|
|
|
|
|
bottomMargin: 2
|
|
|
|
|
leftMargin: 6
|
|
|
|
|
rightMargin: 6
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
MouseArea{
|
|
|
|
|
id:item_mouse
|
|
|
|
|
hoverEnabled: true
|
|
|
|
|
anchors.fill: parent
|
|
|
|
|
onClicked: {
|
|
|
|
|
nav_list.currentIndex = index
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-02-27 23:04:52 +08:00
|
|
|
|
FluText{
|
2023-02-26 23:47:07 +08:00
|
|
|
|
text:model.text
|
|
|
|
|
anchors.centerIn: parent
|
2023-02-27 23:04:52 +08:00
|
|
|
|
fontStyle: FluText.Caption
|
2023-02-26 23:47:07 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Rectangle{
|
2023-02-27 18:46:39 +08:00
|
|
|
|
color: FluApp.isDark ? "#323232" : "#FFFFFF"
|
2023-02-26 23:47:07 +08:00
|
|
|
|
radius: 10
|
|
|
|
|
clip: true
|
|
|
|
|
anchors{
|
|
|
|
|
left: nav_list.right
|
|
|
|
|
leftMargin: 2
|
2023-02-27 18:46:39 +08:00
|
|
|
|
top: appbar.bottom
|
2023-02-26 23:47:07 +08:00
|
|
|
|
topMargin: 20
|
|
|
|
|
right: parent.right
|
|
|
|
|
rightMargin: 10
|
|
|
|
|
bottom: parent.bottom
|
|
|
|
|
bottomMargin: 20
|
|
|
|
|
}
|
|
|
|
|
border.width: 1
|
2023-02-28 18:29:00 +08:00
|
|
|
|
border.color: FluApp.isDark ? Qt.rgba(45/255,45/255,45/255,1) : Qt.rgba(238/255,238/255,238/255,1)
|
2023-02-26 23:47:07 +08:00
|
|
|
|
|
|
|
|
|
Loader{
|
|
|
|
|
anchors.fill: parent
|
|
|
|
|
anchors.margins:20
|
|
|
|
|
source: nav_items.get(nav_list.currentIndex).page
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|