mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2024-11-01 16:41:30 +08:00
61 lines
1.8 KiB
QML
61 lines
1.8 KiB
QML
import QtQuick 2.15
|
|
import QtQuick.Window 2.15
|
|
import QtQuick.Controls 2.15
|
|
import QtQuick.Layouts 1.15
|
|
import FluentUI 1.0
|
|
|
|
Window {
|
|
id: app
|
|
flags: Qt.SplashScreen
|
|
|
|
Connections{
|
|
target: FluTheme
|
|
function onDarkModeChanged(){
|
|
SettingsHelper.saveDarkMode(FluTheme.darkMode)
|
|
}
|
|
}
|
|
|
|
Connections{
|
|
target: FluApp
|
|
function onVsyncChanged(){
|
|
SettingsHelper.saveVsync(FluApp.vsync)
|
|
}
|
|
}
|
|
|
|
FluHttpInterceptor{
|
|
id:interceptor
|
|
function onIntercept(request){
|
|
if(request.method === "get"){
|
|
request.params["method"] = "get"
|
|
}
|
|
if(request.method === "post"){
|
|
request.params["method"] = "post"
|
|
}
|
|
request.headers["token"] ="yyds"
|
|
request.headers["os"] ="pc"
|
|
console.debug(JSON.stringify(request))
|
|
return request
|
|
}
|
|
}
|
|
|
|
Component.onCompleted: {
|
|
FluApp.init(app)
|
|
FluApp.vsync = SettingsHelper.getVsync()
|
|
FluTheme.darkMode = SettingsHelper.getDarkMode()
|
|
FluTheme.enableAnimation = true
|
|
FluApp.routes = {
|
|
"/":"qrc:/example/qml/window/MainWindow.qml",
|
|
"/about":"qrc:/example/qml/window/AboutWindow.qml",
|
|
"/login":"qrc:/example/qml/window/LoginWindow.qml",
|
|
"/hotload":"qrc:/example/qml/window/HotloadWindow.qml",
|
|
"/singleTaskWindow":"qrc:/example/qml/window/SingleTaskWindow.qml",
|
|
"/standardWindow":"qrc:/example/qml/window/StandardWindow.qml",
|
|
"/singleInstanceWindow":"qrc:/example/qml/window/SingleInstanceWindow.qml",
|
|
"/pageWindow":"qrc:/example/qml/window/PageWindow.qml"
|
|
}
|
|
FluApp.initialRoute = "/"
|
|
FluApp.httpInterceptor = interceptor
|
|
FluApp.run()
|
|
}
|
|
}
|