mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2024-11-01 08:31:33 +08:00
65 lines
1.8 KiB
QML
65 lines
1.8 KiB
QML
import QtQuick
|
|
import QtQuick.Layouts
|
|
import FluentUI
|
|
import org.wangwenx190.FramelessHelper
|
|
|
|
FluWindow {
|
|
id:window
|
|
property bool fixSize
|
|
property alias titleVisible: title_bar.titleVisible
|
|
property bool appBarVisible: true
|
|
default property alias content: container.data
|
|
FluAppBar {
|
|
id: title_bar
|
|
title: window.title
|
|
visible: window.appBarVisible
|
|
icon:"qrc:/example/res/image/favicon.ico"
|
|
anchors {
|
|
top: parent.top
|
|
left: parent.left
|
|
right: parent.right
|
|
}
|
|
darkText: lang.dark_mode
|
|
}
|
|
Item{
|
|
id:container
|
|
anchors{
|
|
top: title_bar.bottom
|
|
left: parent.left
|
|
right: parent.right
|
|
bottom: parent.bottom
|
|
}
|
|
clip: true
|
|
}
|
|
FramelessHelper{
|
|
id:framless_helper
|
|
onReady: {
|
|
setTitleBarItem(title_bar)
|
|
moveWindowToDesktopCenter()
|
|
setHitTestVisible(title_bar.minimizeButton())
|
|
setHitTestVisible(title_bar.maximizeButton())
|
|
setHitTestVisible(title_bar.closeButton())
|
|
setWindowFixedSize(fixSize)
|
|
title_bar.maximizeButton.visible = !fixSize
|
|
if (blurBehindWindowEnabled)
|
|
window.background = undefined
|
|
window.show()
|
|
}
|
|
}
|
|
Connections{
|
|
target: FluTheme
|
|
function onDarkChanged(){
|
|
if (FluTheme.dark)
|
|
FramelessUtils.systemTheme = FramelessHelperConstants.Dark
|
|
else
|
|
FramelessUtils.systemTheme = FramelessHelperConstants.Light
|
|
}
|
|
}
|
|
function setHitTestVisible(com){
|
|
framless_helper.setHitTestVisible(com)
|
|
}
|
|
function setTitleBarItem(com){
|
|
framless_helper.setTitleBarItem(com)
|
|
}
|
|
}
|