main
zhuzihcu 2023-05-11 18:24:58 +08:00
parent dd16b4703d
commit f8146f24ea
154 changed files with 211 additions and 829 deletions

View File

@ -8,13 +8,11 @@ Window {
id:app id:app
Component.onCompleted: { Component.onCompleted: {
FluApp.init(app) FluApp.init(app)
FluTheme.frameless = ("windows" === Qt.platform.os)
FluTheme.darkMode = FluDarkMode.System FluTheme.darkMode = FluDarkMode.System
FluApp.routes = { FluApp.routes = {
"/":"qrc:/example/qml/window/MainWindow.qml", "/":"qrc:/example/qml/window/MainWindow.qml",
"/about":"qrc:/example/qml/window/AboutWindow.qml", "/about":"qrc:/example/qml/window/AboutWindow.qml",
"/login":"qrc:/example/qml/window/LoginWindow.qml", "/login":"qrc:/example/qml/window/LoginWindow.qml",
"/chat":"qrc:/example/qml/window/ChatWindow.qml",
"/media":"qrc:/example/qml/window/MediaWindow.qml", "/media":"qrc:/example/qml/window/MediaWindow.qml",
"/singleTaskWindow":"qrc:/example/qml/window/SingleTaskWindow.qml", "/singleTaskWindow":"qrc:/example/qml/window/SingleTaskWindow.qml",
"/standardWindow":"qrc:/example/qml/window/StandardWindow.qml", "/standardWindow":"qrc:/example/qml/window/StandardWindow.qml",

View File

@ -8,10 +8,6 @@ FluContentPage {
title:"Awesome" title:"Awesome"
leftPadding:10
rightPadding:10
bottomPadding:20
FluTextBox{ FluTextBox{
id:text_box id:text_box
placeholderText: "请输入关键字" placeholderText: "请输入关键字"

View File

@ -9,11 +9,6 @@ FluScrollablePage{
title:"Badge" title:"Badge"
leftPadding:10
rightPadding:10
bottomPadding:20
spacing: 0
FluArea{ FluArea{
Layout.fillWidth: true Layout.fillWidth: true
Layout.topMargin: 20 Layout.topMargin: 20

View File

@ -8,10 +8,6 @@ import "../component"
FluScrollablePage{ FluScrollablePage{
title:"BreadcurmbBar" title:"BreadcurmbBar"
leftPadding:10
rightPadding:10
bottomPadding:20
spacing: 0
Component.onCompleted: { Component.onCompleted: {
var items = [] var items = []

View File

@ -7,12 +7,8 @@ import FluentUI
import "../component" import "../component"
FluScrollablePage{ FluScrollablePage{
title:"Buttons"
leftPadding:10 title:"Buttons"
rightPadding:10
bottomPadding:20
spacing: 0
FluText{ FluText{
Layout.topMargin: 20 Layout.topMargin: 20

View File

@ -8,10 +8,6 @@ import "../component"
FluScrollablePage{ FluScrollablePage{
title:"CalendarPicker" title:"CalendarPicker"
leftPadding:10
rightPadding:10
bottomPadding:20
spacing: 0
FluArea{ FluArea{
Layout.fillWidth: true Layout.fillWidth: true

View File

@ -8,10 +8,6 @@ import "../component"
FluScrollablePage{ FluScrollablePage{
title:"Carousel" title:"Carousel"
leftPadding:10
rightPadding:10
bottomPadding:20
spacing: 0
FluArea{ FluArea{
Layout.fillWidth: true Layout.fillWidth: true

View File

@ -8,10 +8,6 @@ import "../component"
FluScrollablePage{ FluScrollablePage{
title:"CheckBox" title:"CheckBox"
leftPadding:10
rightPadding:10
bottomPadding:20
spacing: 0
FluArea{ FluArea{
Layout.fillWidth: true Layout.fillWidth: true

View File

@ -8,10 +8,6 @@ import "../component"
FluScrollablePage{ FluScrollablePage{
title:"ColorPicker" title:"ColorPicker"
leftPadding:10
rightPadding:10
bottomPadding:20
spacing: 0
FluArea{ FluArea{
Layout.fillWidth: true Layout.fillWidth: true

View File

@ -8,10 +8,6 @@ import "../component"
FluScrollablePage{ FluScrollablePage{
title:"TimePicker" title:"TimePicker"
leftPadding:10
rightPadding:10
bottomPadding:20
spacing: 0
FluArea{ FluArea{
Layout.fillWidth: true Layout.fillWidth: true

View File

@ -8,10 +8,6 @@ import "../component"
FluScrollablePage{ FluScrollablePage{
title:"Dialog" title:"Dialog"
leftPadding:10
rightPadding:10
bottomPadding:20
spacing: 0
FluArea{ FluArea{
Layout.fillWidth: true Layout.fillWidth: true

View File

@ -8,10 +8,6 @@ import "../component"
FluScrollablePage{ FluScrollablePage{
title:"Expander" title:"Expander"
leftPadding:10
rightPadding:10
bottomPadding:20
spacing: 0
FluArea{ FluArea{
Layout.fillWidth: true Layout.fillWidth: true

View File

@ -8,10 +8,6 @@ import "../component"
FluScrollablePage{ FluScrollablePage{
title:"FlipView" title:"FlipView"
leftPadding:10
rightPadding:10
bottomPadding:20
spacing: 0
FluArea{ FluArea{
Layout.fillWidth: true Layout.fillWidth: true

View File

@ -7,11 +7,6 @@ import FluentUI
FluScrollablePage{ FluScrollablePage{
leftPadding:10
rightPadding:0
bottomPadding:20
ListModel{ ListModel{
id:model_header id:model_header
ListElement{ ListElement{

View File

@ -8,10 +8,6 @@ import "../component"
FluScrollablePage{ FluScrollablePage{
title:"InfoBar" title:"InfoBar"
leftPadding:10
rightPadding:10
bottomPadding:20
spacing: 0
FluArea{ FluArea{
Layout.fillWidth: true Layout.fillWidth: true

View File

@ -8,10 +8,6 @@ import "../component"
FluScrollablePage{ FluScrollablePage{
title:"MediaPlayer" title:"MediaPlayer"
leftPadding:10
rightPadding:10
bottomPadding:20
spacing: 0
onVisibleChanged: { onVisibleChanged: {
if(visible){ if(visible){

View File

@ -8,10 +8,6 @@ import "../component"
FluScrollablePage{ FluScrollablePage{
title:"Menu" title:"Menu"
leftPadding:10
rightPadding:10
bottomPadding:20
spacing: 0
FluArea{ FluArea{
Layout.fillWidth: true Layout.fillWidth: true

View File

@ -11,10 +11,6 @@ FluScrollablePage{
property var loginPageRegister: registerForWindowResult("/login") property var loginPageRegister: registerForWindowResult("/login")
title:"MultiWindow" title:"MultiWindow"
leftPadding:10
rightPadding:10
bottomPadding:20
spacing: 0
Connections{ Connections{
target: loginPageRegister target: loginPageRegister

View File

@ -8,10 +8,6 @@ import "../component"
FluScrollablePage{ FluScrollablePage{
title:"Pivot" title:"Pivot"
leftPadding:10
rightPadding:10
bottomPadding:20
spacing: 0
FluArea{ FluArea{
Layout.fillWidth: true Layout.fillWidth: true

View File

@ -8,10 +8,6 @@ import "../component"
FluScrollablePage{ FluScrollablePage{
title:"Progress" title:"Progress"
leftPadding:10
rightPadding:10
bottomPadding:20
spacing: 0
FluArea{ FluArea{
Layout.fillWidth: true Layout.fillWidth: true

View File

@ -8,10 +8,6 @@ import "../component"
FluScrollablePage{ FluScrollablePage{
title:"RatingControl" title:"RatingControl"
leftPadding:10
rightPadding:10
bottomPadding:20
spacing: 0
FluArea{ FluArea{
Layout.fillWidth: true Layout.fillWidth: true

View File

@ -8,10 +8,6 @@ import "../component"
FluScrollablePage{ FluScrollablePage{
title:"Rectangle" title:"Rectangle"
leftPadding:10
rightPadding:10
bottomPadding:20
spacing: 0
FluArea{ FluArea{
Layout.fillWidth: true Layout.fillWidth: true

View File

@ -9,10 +9,6 @@ import "../component"
FluScrollablePage{ FluScrollablePage{
title:"Settings" title:"Settings"
leftPadding:10
rightPadding:10
bottomPadding:20
spacing: 0
FluArea{ FluArea{
Layout.fillWidth: true Layout.fillWidth: true

View File

@ -8,10 +8,6 @@ import FluentUI
FluScrollablePage{ FluScrollablePage{
title:"Slider" title:"Slider"
leftPadding:10
rightPadding:10
bottomPadding:20
spacing: 0
FluArea{ FluArea{
Layout.fillWidth: true Layout.fillWidth: true

View File

@ -8,10 +8,6 @@ import "../component"
FluScrollablePage{ FluScrollablePage{
title:"StatusView" title:"StatusView"
leftPadding:10
rightPadding:10
bottomPadding:20
spacing: 0
FluArea{ FluArea{
id:layout_actions id:layout_actions

View File

@ -7,14 +7,10 @@ import "../component"
FluScrollablePage{ FluScrollablePage{
title:"TabView"
leftPadding:10
rightPadding:10
bottomPadding:20
spacing: 0
property var colors : [FluColors.Yellow,FluColors.Orange,FluColors.Red,FluColors.Magenta,FluColors.Purple,FluColors.Blue,FluColors.Teal,FluColors.Green] property var colors : [FluColors.Yellow,FluColors.Orange,FluColors.Red,FluColors.Magenta,FluColors.Purple,FluColors.Blue,FluColors.Teal,FluColors.Green]
title:"TabView"
Component{ Component{
id:com_page id:com_page
Rectangle{ Rectangle{

View File

@ -8,10 +8,6 @@ import "../component"
FluScrollablePage{ FluScrollablePage{
title:"TableView" title:"TableView"
leftPadding:10
rightPadding:10
bottomPadding:20
spacing: 0
Component.onCompleted: { Component.onCompleted: {
const columns = [ const columns = [

View File

@ -8,10 +8,6 @@ import "../component"
FluScrollablePage{ FluScrollablePage{
title:"Text" title:"Text"
leftPadding:10
rightPadding:10
bottomPadding:20
spacing: 0
FluArea{ FluArea{
Layout.fillWidth: true Layout.fillWidth: true

View File

@ -8,10 +8,6 @@ import "../component"
FluScrollablePage{ FluScrollablePage{
title:"TextBox" title:"TextBox"
leftPadding:10
rightPadding:10
bottomPadding:20
spacing: 0
FluArea{ FluArea{
Layout.fillWidth: true Layout.fillWidth: true

View File

@ -8,10 +8,6 @@ import "../component"
FluScrollablePage{ FluScrollablePage{
title:"Theme" title:"Theme"
leftPadding:10
rightPadding:10
bottomPadding:20
spacing: 0
FluArea{ FluArea{
Layout.fillWidth: true Layout.fillWidth: true

View File

@ -8,10 +8,6 @@ import "../component"
FluScrollablePage{ FluScrollablePage{
title:"TimePicker" title:"TimePicker"
leftPadding:10
rightPadding:10
bottomPadding:20
spacing: 0
FluArea{ FluArea{
Layout.fillWidth: true Layout.fillWidth: true

View File

@ -8,10 +8,6 @@ import "../component"
FluScrollablePage{ FluScrollablePage{
title:"ToggleSwitch" title:"ToggleSwitch"
leftPadding:10
rightPadding:10
bottomPadding:20
spacing: 0
FluArea{ FluArea{
Layout.fillWidth: true Layout.fillWidth: true

View File

@ -8,10 +8,6 @@ import "../component"
FluScrollablePage{ FluScrollablePage{
title:"Tooltip" title:"Tooltip"
leftPadding:10
rightPadding:10
bottomPadding:20
spacing: 0
FluText{ FluText{
Layout.topMargin: 20 Layout.topMargin: 20

View File

@ -8,10 +8,6 @@ import "../component"
FluScrollablePage { FluScrollablePage {
title:"TreeView" title:"TreeView"
leftPadding:10
rightPadding:10
bottomPadding:20
spacing: 0
function randomName() { function randomName() {
var names = ["张三", "李四", "王五", "赵六", "钱七", "孙八", "周九", "吴十"] var names = ["张三", "李四", "王五", "赵六", "钱七", "孙八", "周九", "吴十"]

View File

@ -5,11 +5,9 @@ import FluentUI
FluContentPage { FluContentPage {
title: "Typography"
property real textScale: 1 property real textScale: 1
leftPadding:10
rightPadding:10 title: "Typography"
bottomPadding:20
Component.onCompleted: { Component.onCompleted: {
slider.seek(0) slider.seek(0)

View File

@ -119,6 +119,7 @@ FluWindow {
RowLayout{ RowLayout{
spacing: 14 spacing: 14
Layout.topMargin: 20
Layout.leftMargin: 15 Layout.leftMargin: 15
FluText{ FluText{
text:"捐赠:" text:"捐赠:"
@ -147,12 +148,11 @@ FluWindow {
RowLayout{ RowLayout{
spacing: 14 spacing: 14
Layout.leftMargin: 15 Layout.leftMargin: 15
Layout.topMargin: 20
FluText{ FluText{
id:text_desc id:text_desc
text:"个人开发,维护不易,你们的捐赠就是我继续更新的动力!\n有什么问题提Issues只要时间充足我就会解决的" text:"个人开发,维护不易,你们的捐赠就是我继续更新的动力!\n有什么问题提Issues只要时间充足我就会解决的"
} }
} }
} }
} }

View File

@ -1,261 +0,0 @@
import QtQuick
import QtQuick.Layouts
import QtQuick.Controls
import FluentUI
import Controller
import QtQuick.Dialogs
FluWindow {
title:"ChatGPT"
width: 680
height: 600
minimumWidth: 500
minimumHeight: 600
onInitArgument:
(argument)=>{
scrollview.focus = true
}
ChatController{
id:controller
onResponseDataChanged: {
appendMessage(false,responseData)
}
}
ListModel{
id:model_message
ListElement{
isMy:false
text:"欢迎使用ChatGPT"
}
ListElement{
isMy:true
text:"好的3Q"
}
}
FluAppBar{
id:appbar
title:"ChatGPT"
width:parent.width
}
Component{
id:com_text
TextEdit {
id:item_text
text: message
wrapMode: Text.WrapAnywhere
readOnly: true
selectByMouse: true
selectByKeyboard: true
selectedTextColor: Qt.rgba(51,153,255,1)
color:FluColors.Black
selectionColor: {
if(FluTheme.dark){
return FluTheme.primaryColor.lighter
}else{
return FluTheme.primaryColor.dark
}
}
width: Math.min(list_message.width-200,600,implicitWidth)
TapHandler{
acceptedButtons: Qt.RightButton
onTapped: {
menu_item.showMenu(item_text.selectedText)
}
}
}
}
FluArea{
id:layout_content
anchors{
top: appbar.bottom
left: parent.left
right: parent.right
bottom: layout_bottom.top
margins: 10
}
color: FluTheme.dark ? Qt.rgba(39/255,39/255,39/255,1) : Qt.rgba(245/255,245/255,245/255,1)
ListView{
id:list_message
anchors.fill: parent
model:model_message
clip: true
ScrollBar.vertical: FluScrollBar {}
preferredHighlightBegin: 0
preferredHighlightEnd: 0
highlightMoveDuration: 0
header:Item{
width: list_message.width
height:20
}
footer:Item{
width: list_message.width
height:20
}
delegate: Item{
width: ListView.view.width
height: childrenRect.height
FluRectangle{
id:item_avatar
width: 30
height: 30
radius:[15,15,15,15]
anchors{
right: isMy ? parent.right : undefined
rightMargin: isMy ? 20 : undefined
left: isMy ? undefined : parent.left
leftMargin: isMy ? undefined : 20
top:parent.top
}
Image {
asynchronous: true
anchors.fill: parent
sourceSize: Qt.size(100,100)
source: isMy ? "qrc:/example/res/svg/avatar_2.svg" : "qrc:/example/res/image/logo_openai.png"
}
}
Rectangle{
id:item_layout_content
color: isMy ? "#FF95EC69" : "#FFFFFF"
width: item_msg_loader.width+10
height: item_msg_loader.height+10
radius: 3
anchors{
top: item_avatar.top
right: isMy ? item_avatar.left : undefined
rightMargin: isMy ? 10 : undefined
left: isMy ? undefined : item_avatar.right
leftMargin: isMy ? undefined : 10
}
Loader{
id:item_msg_loader
property var message: model.text
anchors.centerIn: parent
sourceComponent: com_text
}
}
Item{
id:item_layout_bottom
width: parent.width
anchors.top: item_layout_content.bottom
height: 20
}
}
}
}
FluArea{
id:layout_bottom
height: 90
anchors{
bottom: parent.bottom
bottomMargin: 10
left: parent.left
right: parent.right
leftMargin: 10
rightMargin: 10
}
ScrollView{
id:scrollview
anchors{
bottom: parent.bottom
left: parent.left
right: button_send.left
bottomMargin: 10
leftMargin: 10
rightMargin: 10
}
height: Math.min(textbox.implicitHeight,64)
FluMultilineTextBox{
id:textbox
focus:true
placeholderText: "请输入消息"
}
}
FluFilledButton{
id:button_send
text:controller.isLoading ? timer_loading.loadingText :"发送"
anchors{
bottom: parent.bottom
right: parent.right
bottomMargin: 10
rightMargin: 10
}
width: 60
disabled: controller.isLoading
onClicked:{
var text = textbox.text
appendMessage(true,text)
controller.sendMessage(text)
textbox.clear()
}
Timer{
id:timer_loading
property int count : 0
property string loadingText : ""
interval: 500
running: controller.isLoading
repeat: true
onTriggered: {
switch(count%3){
case 0:
loadingText = "."
break
case 1:
loadingText = ".."
break
case 2:
loadingText = "..."
break
default:
loadingText = ""
break
}
count++
}
}
}
}
FluMenu{
id:menu_item
focus: false
property string selectedText: ""
FluMenuItem{
text:"复制"
onClicked: {
controller.clipText(menu_item.selectedText)
showSuccess("复制成功")
}
}
function showMenu(text){
menu_item.selectedText = text
menu_item.popup()
}
}
function appendMessage(isMy,text){
model_message.append({isMy:isMy,text:text})
list_message.positionViewAtEnd()
}
}

View File

@ -48,7 +48,7 @@ FluWindow {
MenuItem { MenuItem {
text: "退出" text: "退出"
onTriggered: { onTriggered: {
window.destoryWindow() window.deleteWindow()
FluApp.closeApp() FluApp.closeApp()
} }
} }
@ -76,7 +76,7 @@ FluWindow {
positiveText:"退出" positiveText:"退出"
neutralText:"取消" neutralText:"取消"
onPositiveClicked:{ onPositiveClicked:{
window.destoryWindow() window.deleteWindow()
FluApp.closeApp() FluApp.closeApp()
} }
@ -102,6 +102,27 @@ FluWindow {
ItemsOriginal.startPageByItem(data) ItemsOriginal.startPageByItem(data)
} }
} }
actionItem:Item{
height: 40
width: 148
RowLayout{
anchors.centerIn: parent
spacing: 5
FluText{
text:lang.dark_mode
}
FluToggleSwitch{
selected: FluTheme.dark
clickFunc:function(){
if(FluTheme.dark){
FluTheme.darkMode = FluDarkMode.Light
}else{
FluTheme.darkMode = FluDarkMode.Dark
}
}
}
}
}
Component.onCompleted: { Component.onCompleted: {
ItemsOriginal.navigationView = nav_view ItemsOriginal.navigationView = nav_view
ItemsFooter.navigationView = nav_view ItemsFooter.navigationView = nav_view

View File

@ -0,0 +1,14 @@
import QtQuick
import FluentUI
Window {
id:window
width: 400
height: 400
visible: true
FluButton{
text:"123"
}
}

View File

@ -1,56 +0,0 @@
#include "ChatController.h"
ChatController::ChatController(QObject *parent)
: QObject{parent}
{
isLoading(false);
networkManager = new QNetworkAccessManager(this);
}
void ChatController::sendMessage(const QString& text){
isLoading(true);
QUrl apiUrl("https://api.openai.com/v1/chat/completions");
QNetworkRequest request(apiUrl);
request.setHeader(QNetworkRequest::ContentTypeHeader, "application/json");
request.setRawHeader("Authorization", QString::fromStdString("Bearer %1").arg(QString::fromUtf8(QByteArray::fromBase64(baseKey.toUtf8()))).toUtf8());
QJsonObject requestData;
requestData.insert("model", "gpt-3.5-turbo");
messages.append(createMessage("user",text));
requestData.insert("messages", messages);
QJsonDocument requestDoc(requestData);
QByteArray requestDataBytes = requestDoc.toJson();
QNetworkReply* reply = networkManager->post(request, requestDataBytes);
connect(reply, &QNetworkReply::finished,this, [=]() {
if (reply->error() == QNetworkReply::NoError) {
QString responseString = QString::fromUtf8(reply->readAll());
qDebug() << responseString;
QJsonDocument doc = QJsonDocument::fromJson(responseString.toUtf8());
QJsonObject jsonObj = doc.object();
QString text = jsonObj.value("choices").toArray().at(0).toObject().value("message").toObject().value("content").toString();
if(text.isEmpty()){
text = "响应错误content为空数据";
}else{
messages.append(createMessage("assistant",text));
}
responseData(text.trimmed());
} else {
responseData("网络错误:"+reply->errorString());
}
isLoading(false);
reply->deleteLater();
});
}
QJsonObject ChatController::createMessage(const QString& role,const QString& content){
QJsonObject message;
message.insert("role",role);
message.insert("content",content);
return message;
}
void ChatController::clipText(const QString& text){
qDebug()<<text;
QClipboard *clipboard = QGuiApplication::clipboard();
clipboard->setText(text);
}

View File

@ -1,35 +0,0 @@
#ifndef CHATCONTROLLER_H
#define CHATCONTROLLER_H
#include <QObject>
#include <QNetworkAccessManager>
#include <QNetworkReply>
#include <QJsonObject>
#include <QJsonDocument>
#include <QJsonArray>
#include <QGuiApplication>
#include <QClipboard>
#include <QByteArray>
#include <QFile>
#include "../stdafx.h"
class ChatController : public QObject
{
Q_OBJECT
Q_PROPERTY_AUTO(bool,isLoading)
Q_PROPERTY_AUTO(QString,responseData);
public:
explicit ChatController(QObject *parent = nullptr);
Q_INVOKABLE void sendMessage(const QString& text);
Q_INVOKABLE void clipText(const QString& text);
private:
QJsonObject createMessage(const QString& role,const QString& content);
private:
QNetworkAccessManager* networkManager;
QJsonArray messages;
QString baseKey = "c2stbXgxWm5MQkZ5TzhNYzNmRWl6eDZUM0JsYmtGSnNBWjNiakJjSXB6WGN3QW9KSk11";
};
#endif // CHATCONTROLLER_H

View File

@ -6,11 +6,7 @@
#include <QProcess> #include <QProcess>
#include "lang/Lang.h" #include "lang/Lang.h"
#include "AppInfo.h" #include "AppInfo.h"
#include "controller/ChatController.h"
#include "tool/IPC.h" #include "tool/IPC.h"
#if defined(STATICLIB)
#include <FluentUI.h>
#endif
int main(int argc, char *argv[]) int main(int argc, char *argv[])
{ {
@ -41,10 +37,6 @@ int main(int argc, char *argv[])
} }
app.setQuitOnLastWindowClosed(false); app.setQuitOnLastWindowClosed(false);
QQmlApplicationEngine engine; QQmlApplicationEngine engine;
#if defined(STATICLIB)
FluentUI::initialize(&engine);
#endif
qmlRegisterType<ChatController>("Controller",1,0,"ChatController");
QQmlContext * context = engine.rootContext(); QQmlContext * context = engine.rootContext();
Lang* lang = appInfo->lang(); Lang* lang = appInfo->lang();
context->setContextProperty("lang",lang); context->setContextProperty("lang",lang);
@ -53,6 +45,7 @@ int main(int argc, char *argv[])
}); });
context->setContextProperty("appInfo",appInfo); context->setContextProperty("appInfo",appInfo);
const QUrl url(QStringLiteral("qrc:/example/qml/App.qml")); const QUrl url(QStringLiteral("qrc:/example/qml/App.qml"));
// const QUrl url(QStringLiteral("qrc:/example/qml/window/main.qml"));
QObject::connect(&engine, &QQmlApplicationEngine::objectCreated, QObject::connect(&engine, &QQmlApplicationEngine::objectCreated,
&app, [url](QObject *obj, const QUrl &objUrl) { &app, [url](QObject *obj, const QUrl &objUrl) {
if (!obj && url == objUrl) if (!obj && url == objUrl)

View File

@ -9,13 +9,16 @@ if(APPLE)
set(CMAKE_OSX_ARCHITECTURES "arm64;x86_64" CACHE STRING "" FORCE) set(CMAKE_OSX_ARCHITECTURES "arm64;x86_64" CACHE STRING "" FORCE)
endif() endif()
# ##
if(CMAKE_BUILD_TYPE STREQUAL "Debug") if(CMAKE_BUILD_TYPE STREQUAL "Debug")
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_SOURCE_DIR}/bin/debug) set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_PREFIX_PATH}/bin)
else() else()
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_SOURCE_DIR}/bin/release) set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_PREFIX_PATH}/bin)
endif() endif()
#QML
set(QT_QML_OUTPUT_DIRECTORY ${CMAKE_PREFIX_PATH}/qml)
# #
add_definitions(-DVERSION=1,2,9,0) add_definitions(-DVERSION=1,2,9,0)
@ -36,7 +39,7 @@ foreach(filepath ${QML_PATHS})
endforeach(filepath) endforeach(filepath)
# #
file(GLOB_RECURSE RES_PATHS *.png *.jpg *.svg *.ico *.ttf *.webp) file(GLOB_RECURSE RES_PATHS *.png *.jpg *.svg *.ico *.ttf *.webp *.metainfo)
foreach(filepath ${RES_PATHS}) foreach(filepath ${RES_PATHS})
string(REPLACE "${CMAKE_CURRENT_SOURCE_DIR}/" "" filename ${filepath}) string(REPLACE "${CMAKE_CURRENT_SOURCE_DIR}/" "" filename ${filepath})
list(APPEND resource_files ${filename}) list(APPEND resource_files ${filename})
@ -49,8 +52,8 @@ foreach(filepath IN LISTS qml_files resource_files)
endforeach() endforeach()
#qml #qml
qt_add_library(fluentui SHARED)
qt_add_qml_module(fluentui qt_add_qml_module(fluentui
OUTPUT_DIRECTORY ${CMAKE_PREFIX_PATH}/qml/FluentUI
VERSION 1.0 VERSION 1.0
URI "FluentUI" URI "FluentUI"
SOURCES ${sources_files} fluentui.rc SOURCES ${sources_files} fluentui.rc

View File

@ -6,13 +6,13 @@
namespace Fluent_DarkMode { namespace Fluent_DarkMode {
Q_NAMESPACE Q_NAMESPACE
enum Fluent_DarkModeType { enum Fluent_DarkModeType {
System = 0x0, System = 0x0,
Light = 0x1, Light = 0x1,
Dark = 0x2, Dark = 0x2,
}; };
QML_NAMED_ELEMENT(FluDarkMode) Q_ENUM_NS(Fluent_DarkModeType)
Q_ENUMS(Fluent_DarkModeType); QML_NAMED_ELEMENT(FluDarkMode)
} }
namespace Fluent_Awesome { namespace Fluent_Awesome {
@ -1422,8 +1422,8 @@ enum class Fluent_AwesomeType {
SpeechSolidBold=0xf8b2, SpeechSolidBold=0xf8b2,
ClickedOutLoudSolidBold=0xf8b3, ClickedOutLoudSolidBold=0xf8b3,
}; };
QML_NAMED_ELEMENT(FluentIcons) Q_ENUM_NS(Fluent_AwesomeType)
Q_ENUMS(Fluent_AwesomeType) QML_NAMED_ELEMENT(FluentIcons)
} }
#endif // DEF_H #endif // DEF_H

View File

@ -9,27 +9,16 @@
#include <QFontDatabase> #include <QFontDatabase>
#include <QClipboard> #include <QClipboard>
#include "Def.h" #include "Def.h"
#ifdef Q_OS_WIN
#pragma comment(lib, "Dwmapi.lib") FluApp* FluApp::m_instance = nullptr;
#pragma comment(lib, "User32.lib")
#include <dwmapi.h> FluApp *FluApp::getInstance()
#include <Windows.h>
#include <windowsx.h>
static bool isCompositionEnabled()
{ {
BOOL composition_enabled = FALSE; if(FluApp::m_instance == nullptr){
bool success = ::DwmIsCompositionEnabled(&composition_enabled) == S_OK; FluApp::m_instance = new FluApp;
return composition_enabled && success; }
return FluApp::m_instance;
} }
#endif
FluApp* FluApp::fluApp = nullptr;
FluTheme* FluApp::fluTheme = nullptr;
FluColors* FluApp::fluColors = nullptr;
FluTools* FluApp::fluTools = nullptr;
FluApp::FluApp(QObject *parent) FluApp::FluApp(QObject *parent)
: QObject{parent} : QObject{parent}
@ -38,43 +27,14 @@ FluApp::FluApp(QObject *parent)
} }
FluApp::~FluApp(){ FluApp::~FluApp(){
if (nativeEvent != Q_NULLPTR) {
delete nativeEvent;
nativeEvent = Q_NULLPTR;
}
}
void FluApp::setFluApp(FluApp* val){
FluApp::fluApp = val;
}
void FluApp::setFluTheme(FluTheme* val){
FluApp::fluTheme = val;
}
void FluApp::setFluColors(FluColors* val){
FluApp::fluColors = val;
}
void FluApp::setFluTools(FluTools* val){
FluApp::fluTools = val;
} }
void FluApp::init(QQuickWindow *window){ void FluApp::init(QQuickWindow *window){
this->appWindow = window; this->appWindow = window;
QQmlEngine *engine = qmlEngine(appWindow);
QQmlComponent component(engine, ":/FluentUI/Controls/FluSingleton.qml");
component.create();
nativeEvent = new NativeEventFilter();
qApp->installNativeEventFilter(nativeEvent);
} }
void FluApp::run(){ void FluApp::run(){
#ifdef Q_OS_WIN
if(!isCompositionEnabled()){
fluTheme->frameless(false);
}
#endif
navigate(initialRoute()); navigate(initialRoute());
} }
@ -113,9 +73,6 @@ void FluApp::navigate(const QString& route,const QJsonObject& argument,FluRegist
} }
} }
view = qobject_cast<QQuickWindow*>(component.createWithInitialProperties(properties)); view = qobject_cast<QQuickWindow*>(component.createWithInitialProperties(properties));
if(fluTheme->frameless()){
view->setFlag(Qt::FramelessWindowHint,true);
}
wnds.insert(view->winId(),view); wnds.insert(view->winId(),view);
if(fluRegister){ if(fluRegister){
fluRegister->to(view); fluRegister->to(view);

View File

@ -11,7 +11,6 @@
#include "FluTheme.h" #include "FluTheme.h"
#include "FluTools.h" #include "FluTools.h"
#include "FluColors.h" #include "FluColors.h"
#include "NativeEventFilter.h"
#include "FluRegister.h" #include "FluRegister.h"
#include "stdafx.h" #include "stdafx.h"
@ -33,11 +32,19 @@ class FluApp : public QObject
QML_NAMED_ELEMENT(FluApp) QML_NAMED_ELEMENT(FluApp)
QML_SINGLETON QML_SINGLETON
private:
public: /**
* @brief FluApp qmlcreate
* @param parent
*/
explicit FluApp(QObject *parent = nullptr); explicit FluApp(QObject *parent = nullptr);
public:
~FluApp(); ~FluApp();
static FluApp *create(QQmlEngine *qmlEngine, QJSEngine *jsEngine)
{
return getInstance();
}
static FluApp *getInstance();
/** /**
* @brief run * @brief run
*/ */
@ -69,62 +76,14 @@ public:
*/ */
Q_INVOKABLE void closeApp(); Q_INVOKABLE void closeApp();
/**
* @brief setFluApp FluSingleton.qmlQMLFluApp
* @param val
*/
Q_INVOKABLE void setFluApp(FluApp* val);
/**
* @brief setFluTheme FluSingleton.qmlQMLFluTheme
* @param val
*/
Q_INVOKABLE void setFluTheme(FluTheme* val);
/**
* @brief setFluColors FluSingleton.qmlQMLFluColors
* @param val
*/
Q_INVOKABLE void setFluColors(FluColors* val);
/**
* @brief setFluColors FluSingleton.qmlQMLFluTools
* @param val
*/
Q_INVOKABLE void setFluTools(FluTools* val);
public: public:
/** /**
* @brief wnds * @brief wnds
*/ */
QMap<quint64, QQuickWindow*> wnds; QMap<quint64, QQuickWindow*> wnds;
/**
* @brief fluApp
*/
static FluApp* fluApp;
/**
* @brief fluTheme
*/
static FluTheme* fluTheme;
/**
* @brief fluColors
*/
static FluColors* fluColors;
/**
* @brief fluTools
*/
static FluTools* fluTools;
private: private:
/** static FluApp* m_instance;
* @brief nativeEvent
*/
NativeEventFilter *nativeEvent = Q_NULLPTR;
/** /**
* @brief appWindow * @brief appWindow
*/ */

View File

@ -1,5 +1,15 @@
#include "FluColors.h" #include "FluColors.h"
FluColors* FluColors::m_instance = nullptr;
FluColors *FluColors::getInstance()
{
if(FluColors::m_instance == nullptr){
FluColors::m_instance = new FluColors;
}
return FluColors::m_instance;
}
FluColors::FluColors(QObject *parent) FluColors::FluColors(QObject *parent)
: QObject{parent} : QObject{parent}
{ {

View File

@ -46,8 +46,15 @@ class FluColors : public QObject
Q_PROPERTY_AUTO(FluColorSet*,Green); Q_PROPERTY_AUTO(FluColorSet*,Green);
QML_NAMED_ELEMENT(FluColors) QML_NAMED_ELEMENT(FluColors)
QML_SINGLETON QML_SINGLETON
public: private:
explicit FluColors(QObject *parent = nullptr); explicit FluColors(QObject *parent = nullptr);
static FluColors* m_instance;
public:
static FluColors *getInstance();
static FluColors *create(QQmlEngine *qmlEngine, QJSEngine *jsEngine)
{
return getInstance();
}
}; };
#endif // FLUCOLORS_H #endif // FLUCOLORS_H

View File

@ -12,7 +12,7 @@ FluRegister::FluRegister(QObject *parent)
} }
void FluRegister::launch(const QJsonObject& argument){ void FluRegister::launch(const QJsonObject& argument){
FluApp::fluApp->navigate(path(),argument,this); FluApp::getInstance()->navigate(path(),argument,this);
} }
void FluRegister::onResult(const QJsonObject& data){ void FluRegister::onResult(const QJsonObject& data){

View File

@ -5,15 +5,24 @@
#include "FluApp.h" #include "FluApp.h"
#include <QGuiApplication> #include <QGuiApplication>
FluTheme* FluTheme::m_instance = nullptr;
FluTheme *FluTheme::getInstance()
{
if(FluTheme::m_instance == nullptr){
FluTheme::m_instance = new FluTheme;
}
return FluTheme::m_instance;
}
FluTheme::FluTheme(QObject *parent) FluTheme::FluTheme(QObject *parent)
: QObject{parent} : QObject{parent}
{ {
connect(this,&FluTheme::darkModeChanged,this,[=]{ connect(this,&FluTheme::darkModeChanged,this,[=]{
Q_EMIT darkChanged(); Q_EMIT darkChanged();
}); });
primaryColor(FluApp::fluColors->Blue()); primaryColor(FluColors::getInstance()->Blue());
nativeText(false); nativeText(false);
frameless(true);
darkMode(Fluent_DarkMode::Fluent_DarkModeType::Light); darkMode(Fluent_DarkMode::Fluent_DarkModeType::Light);
qApp->installEventFilter(this); qApp->installEventFilter(this);
} }

View File

@ -22,11 +22,6 @@ class FluTheme : public QObject
*/ */
Q_PROPERTY_AUTO(FluColorSet*,primaryColor) Q_PROPERTY_AUTO(FluColorSet*,primaryColor)
/**
* @brief frameless windows
*/
Q_PROPERTY_AUTO(bool,frameless);
/** /**
* @brief darkMode System=0Light=1Dark=2 * @brief darkMode System=0Light=1Dark=2
*/ */
@ -39,8 +34,15 @@ class FluTheme : public QObject
QML_NAMED_ELEMENT(FluTheme) QML_NAMED_ELEMENT(FluTheme)
QML_SINGLETON QML_SINGLETON
public: private:
static FluTheme* m_instance;
explicit FluTheme(QObject *parent = nullptr); explicit FluTheme(QObject *parent = nullptr);
public:
static FluTheme *getInstance();
static FluTheme *create(QQmlEngine *qmlEngine, QJSEngine *jsEngine)
{
return getInstance();
}
bool dark(); bool dark();
Q_SIGNAL void darkChanged(); Q_SIGNAL void darkChanged();
private: private:

View File

@ -3,6 +3,17 @@
#include <QClipboard> #include <QClipboard>
#include <QUuid> #include <QUuid>
FluTools* FluTools::m_instance = nullptr;
FluTools *FluTools::getInstance()
{
if(FluTools::m_instance == nullptr){
FluTools::m_instance = new FluTools;
}
return FluTools::m_instance;
}
FluTools::FluTools(QObject *parent) FluTools::FluTools(QObject *parent)
: QObject{parent} : QObject{parent}
{ {

View File

@ -13,10 +13,15 @@ class FluTools : public QObject
QML_NAMED_ELEMENT(FluTools) QML_NAMED_ELEMENT(FluTools)
QML_SINGLETON QML_SINGLETON
private:
public:
explicit FluTools(QObject *parent = nullptr); explicit FluTools(QObject *parent = nullptr);
static FluTools* m_instance;
public:
static FluTools *create(QQmlEngine *qmlEngine, QJSEngine *jsEngine)
{
return getInstance();
}
static FluTools *getInstance();
/** /**
* @brief clipText * @brief clipText
* @param text * @param text

View File

@ -1,81 +0,0 @@
#include "NativeEventFilter.h"
#include "FluTheme.h"
#include "FluApp.h"
#ifdef Q_OS_WIN
#pragma comment(lib, "Dwmapi.lib")
#pragma comment(lib, "User32.lib")
#include <Windows.h>
#include <windowsx.h>
#endif
bool NativeEventFilter::nativeEventFilter(const QByteArray &eventType, void *message, qintptr *result)
{
#ifdef Q_OS_WIN
if (eventType == "windows_generic_MSG" && FluApp::fluTheme->frameless()) {
MSG* msg = static_cast<MSG *>(message);
if (msg == Q_NULLPTR)
return false;
if(!FluApp::fluApp->wnds.contains((WId)msg->hwnd)){
return false;
}
switch(msg->message) {
case WM_NCCALCSIZE:{
NCCALCSIZE_PARAMS& params = *reinterpret_cast<NCCALCSIZE_PARAMS*>(msg->lParam);
if (params.rgrc[0].top != 0)
params.rgrc[0].top -= 1;
*result = WVR_REDRAW;
return true;
}
case WM_NCHITTEST: {
auto view = FluApp::fluApp->wnds[(WId)msg->hwnd];
bool isResize = !(view->maximumWidth()==view->minimumWidth()&&view->maximumHeight()==view->minimumHeight());
const LONG borderWidth = 8;
RECT winrect;
GetWindowRect(msg->hwnd, &winrect);
long x = GET_X_LPARAM(msg->lParam);
long y = GET_Y_LPARAM(msg->lParam);
if (x >= winrect.left && x < winrect.left + borderWidth &&
y < winrect.bottom && y >= winrect.bottom - borderWidth && isResize) {
*result = HTBOTTOMLEFT;
return true;
}
if (x < winrect.right && x >= winrect.right - borderWidth &&
y < winrect.bottom && y >= winrect.bottom - borderWidth && isResize) {
*result = HTBOTTOMRIGHT;
return true;
}
if (x >= winrect.left && x < winrect.left + borderWidth &&
y >= winrect.top && y < winrect.top + borderWidth && isResize) {
*result = HTTOPLEFT;
return true;
}
if (x < winrect.right && x >= winrect.right - borderWidth &&
y >= winrect.top && y < winrect.top + borderWidth && isResize) {
*result = HTTOPRIGHT;
return true;
}
if (x >= winrect.left && x < winrect.left + borderWidth && isResize) {
*result = HTLEFT;
return true;
}
if (x < winrect.right && x >= winrect.right - borderWidth && isResize) {
*result = HTRIGHT;
return true;
}
if (y < winrect.bottom && y >= winrect.bottom - borderWidth && isResize) {
*result = HTBOTTOM;
return true;
}
if (y >= winrect.top && y < winrect.top + borderWidth && isResize) {
*result = HTTOP;
return true;
}
return false;
}
default:
break;
}
}
#endif
return false;
}

View File

@ -1,17 +0,0 @@
#ifndef NATIVEEVENTFILTER_H
#define NATIVEEVENTFILTER_H
#include <QObject>
#include <QAbstractNativeEventFilter>
/**
* @brief The NativeEventFilter class
*/
class NativeEventFilter : public QAbstractNativeEventFilter
{
public:
bool nativeEventFilter(const QByteArray &eventType, void *message, qintptr *result) override;
};
#endif // NATIVEEVENTFILTER_H

View File

@ -2,20 +2,6 @@
#include "FluRegister.h" #include "FluRegister.h"
#include "FluApp.h" #include "FluApp.h"
#include "FluTheme.h"
#ifdef Q_OS_WIN
#pragma comment(lib, "Dwmapi.lib")
#pragma comment(lib, "User32.lib")
#include <dwmapi.h>
#include <Windows.h>
#include <windowsx.h>
enum class Style : DWORD
{
windowed = (WS_OVERLAPPEDWINDOW | WS_CAPTION | WS_SYSMENU | WS_MINIMIZEBOX | WS_MAXIMIZEBOX | WS_THICKFRAME | WS_CLIPCHILDREN),
aero_borderless = (WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_MINIMIZEBOX | WS_MAXIMIZEBOX | WS_THICKFRAME | WS_CLIPCHILDREN)
};
#endif
WindowHelper::WindowHelper(QObject *parent) WindowHelper::WindowHelper(QObject *parent)
: QObject{parent} : QObject{parent}
@ -27,20 +13,6 @@ void WindowHelper::initWindow(QQuickWindow* window){
this->window = window; this->window = window;
} }
void WindowHelper::firstUpdate(){
#ifdef Q_OS_WIN
if(FluApp::fluTheme->frameless()){
HWND wnd = (HWND)window->winId();
SetWindowLongPtr(wnd, GWL_STYLE, static_cast<LONG>(Style::aero_borderless));
const MARGINS shadow_on = { 1, 1, 1, 1 };
DwmExtendFrameIntoClientArea(wnd, &shadow_on);
SetWindowPos(wnd, Q_NULLPTR, 0, 0, 0, 0, SWP_FRAMECHANGED | SWP_NOMOVE | SWP_NOSIZE);
ShowWindow(wnd, SW_SHOW);
window->setFlag(Qt::FramelessWindowHint,false);
}
#endif
}
QVariant WindowHelper::createRegister(QQuickWindow* window,const QString& path){ QVariant WindowHelper::createRegister(QQuickWindow* window,const QString& path){
FluRegister *p = new FluRegister(window); FluRegister *p = new FluRegister(window);
p->from(window); p->from(window);
@ -48,9 +20,9 @@ QVariant WindowHelper::createRegister(QQuickWindow* window,const QString& path){
return QVariant::fromValue(p); return QVariant::fromValue(p);
} }
void WindowHelper::destoryWindow(){ void WindowHelper::deleteWindow(){
if(this->window){ if(this->window){
FluApp::fluApp->wnds.remove(this->window->winId()); FluApp::getInstance()->wnds.remove(this->window->winId());
this->window->deleteLater(); this->window->deleteLater();
} }
} }

View File

@ -25,9 +25,9 @@ public:
Q_INVOKABLE void initWindow(QQuickWindow* window); Q_INVOKABLE void initWindow(QQuickWindow* window);
/** /**
* @brief destoryWindow QMLWindow close * @brief deleteWindow QMLWindow close
*/ */
Q_INVOKABLE void destoryWindow(); Q_INVOKABLE void deleteWindow();
/** /**
* @brief createRegister FluRegsiterFluWindowregisterForWindowResult * @brief createRegister FluRegsiterFluWindowregisterForWindowResult
@ -37,11 +37,6 @@ public:
*/ */
Q_INVOKABLE QVariant createRegister(QQuickWindow* window,const QString& path); Q_INVOKABLE QVariant createRegister(QQuickWindow* window,const QString& path);
/**
* @brief firstUpdate
*/
Q_INVOKABLE void firstUpdate();
private: private:
QQuickWindow* window; QQuickWindow* window;
}; };

View File

@ -31,7 +31,7 @@ Rectangle{
id:root id:root
color: Qt.rgba(0,0,0,0) color: Qt.rgba(0,0,0,0)
visible: FluTheme.frameless visible: false
height: visible ? 30 : 0 height: visible ? 30 : 0
opacity: visible opacity: visible
z: 65535 z: 65535

View File

@ -20,11 +20,7 @@ Item {
property FluObject footerItems property FluObject footerItems
property int displayMode: FluNavigationView.Auto property int displayMode: FluNavigationView.Auto
property Component autoSuggestBox property Component autoSuggestBox
property var window : { property Component actionItem
if(Window.window == null)
return null
return Window.window
}
id:control id:control
@ -471,7 +467,7 @@ Item {
Item { Item {
id:nav_app_bar id:nav_app_bar
width: parent.width width: parent.width
height: 50 height: 40
z:999 z:999
RowLayout{ RowLayout{
height:parent.height height:parent.height
@ -479,8 +475,8 @@ Item {
FluIconButton{ FluIconButton{
iconSource: FluentIcons.ChromeBack iconSource: FluentIcons.ChromeBack
Layout.leftMargin: 5 Layout.leftMargin: 5
Layout.preferredWidth: 40 Layout.preferredWidth: 30
Layout.preferredHeight: 40 Layout.preferredHeight: 30
Layout.alignment: Qt.AlignVCenter Layout.alignment: Qt.AlignVCenter
disabled: nav_swipe.depth === 1 disabled: nav_swipe.depth === 1
iconSize: 13 iconSize: 13
@ -503,8 +499,8 @@ Item {
id:btn_nav id:btn_nav
iconSource: FluentIcons.GlobalNavButton iconSource: FluentIcons.GlobalNavButton
iconSize: 15 iconSize: 15
Layout.preferredWidth: d.isMinimal ? 40 : 0 Layout.preferredWidth: d.isMinimal ? 30 : 0
Layout.preferredHeight: 40 Layout.preferredHeight: 30
Layout.alignment: Qt.AlignVCenter Layout.alignment: Qt.AlignVCenter
onClicked: { onClicked: {
d.enableNavigationPanel = !d.enableNavigationPanel d.enableNavigationPanel = !d.enableNavigationPanel
@ -529,6 +525,7 @@ Item {
} }
return 5 return 5
} }
sourceSize: Qt.size(40,40)
Layout.alignment: Qt.AlignVCenter Layout.alignment: Qt.AlignVCenter
} }
FluText{ FluText{
@ -538,6 +535,22 @@ Item {
font: FluTextStyle.Body font: FluTextStyle.Body
} }
} }
Item{
anchors.right: parent.right
height: parent.height
width: {
if(loader_action.item){
return loader_action.item.width
}
return 0
}
Loader{
id:loader_action
anchors.centerIn: parent
sourceComponent: actionItem
}
}
} }
Item{ Item{
@ -620,7 +633,7 @@ Item {
if(d.isMinimal || d.isCompactAndPanel){ if(d.isMinimal || d.isCompactAndPanel){
return FluTheme.dark ? Qt.rgba(61/255,61/255,61/255,1) : Qt.rgba(243/255,243/255,243/255,1) return FluTheme.dark ? Qt.rgba(61/255,61/255,61/255,1) : Qt.rgba(243/255,243/255,243/255,1)
} }
if(window && window.active){ if(Window.window.active){
return FluTheme.dark ? Qt.rgba(26/255,34/255,41/255,1) : Qt.rgba(238/255,244/255,249/255,1) return FluTheme.dark ? Qt.rgba(26/255,34/255,41/255,1) : Qt.rgba(238/255,244/255,249/255,1)
} }
return FluTheme.dark ? Qt.rgba(32/255,32/255,32/255,1) : Qt.rgba(243/255,243/255,243/255,1) return FluTheme.dark ? Qt.rgba(32/255,32/255,32/255,1) : Qt.rgba(243/255,243/255,243/255,1)

View File

@ -8,19 +8,20 @@ Item {
property alias title: text_title.text property alias title: text_title.text
default property alias content: container.data default property alias content: container.data
property int spacing : 5 property int spacing : 0
property int leftPadding: 0 property int leftPadding: 10
property int topPadding: 0 property int topPadding: 0
property int rightPadding: 0 property int rightPadding: 10
property int bottomPadding: 0 property int bottomPadding: 10
id:control id:control
FluText{ FluText{
id:text_title id:text_title
font: FluTextStyle.TitleLarge font: FluTextStyle.Title
visible: text !== "" visible: text !== ""
height: visible?implicitHeight:0 height: visible ? implicitHeight : 0
padding: 0
anchors{ anchors{
top: parent.top top: parent.top
topMargin: control.topPadding topMargin: control.topPadding

View File

@ -1,16 +0,0 @@
import QtQuick
import QtQuick.Controls
import FluentUI
QtObject {
id:control
Component.onCompleted: {
FluApp.setFluApp(FluApp)
FluApp.setFluColors(FluColors)
FluApp.setFluTheme(FluTheme)
FluApp.setFluTools(FluTools)
}
}

View File

@ -1,5 +1,6 @@
import QtQuick import QtQuick
import QtQuick.Controls import QtQuick.Controls
import QtQuick.Controls.Basic
import QtQuick.Layouts import QtQuick.Layouts
import FluentUI import FluentUI
@ -144,12 +145,22 @@ Item {
} }
} }
model:model_data_source model:model_data_source
delegate: Item{ delegate: Control{
id:item_control
height: table_row.maxHeight height: table_row.maxHeight
width: layout_table.width width: layout_table.width
property var model_values : getObjectValues(index) property var model_values : getObjectValues(index)
property var itemObject: getObject(index) property var itemObject: getObject(index)
property var listModel: model property var listModel: model
Rectangle{
anchors.fill: parent
color: {
if(item_control.hovered){
return FluTheme.dark ? Qt.rgba(68/255,68/255,68/255,1) : Qt.rgba(251/255,251/255,251/255,1)
}
return FluTheme.dark ? Qt.rgba(62/255,62/255,62/255,1) : Qt.rgba(1,1,1,1)
}
}
Row{ Row{
id: table_row id: table_row
spacing: 0 spacing: 0

View File

@ -4,7 +4,7 @@ import QtQuick.Controls
import QtQuick.Layouts import QtQuick.Layouts
import FluentUI import FluentUI
ApplicationWindow { Window {
enum LaunchMode { enum LaunchMode {
Standard, Standard,
@ -20,7 +20,7 @@ ApplicationWindow {
property var pageRegister property var pageRegister
property var closeFunc: function(event){ property var closeFunc: function(event){
if(closeDestory){ if(closeDestory){
destoryWindow() deleteWindow()
}else{ }else{
visible = false visible = false
event.accepted = false event.accepted = false
@ -28,13 +28,9 @@ ApplicationWindow {
} }
signal initArgument(var argument) signal initArgument(var argument)
QtObject{
id:d
property bool firstFlag: true
}
id:window id:window
background: Rectangle{ Rectangle{
anchors.fill: parent
color: { color: {
if(active){ if(active){
return FluTheme.dark ? Qt.rgba(26/255,34/255,40/255,1) : Qt.rgba(238/255,244/255,249/255,1) return FluTheme.dark ? Qt.rgba(26/255,34/255,40/255,1) : Qt.rgba(238/255,244/255,249/255,1)
@ -51,17 +47,9 @@ ApplicationWindow {
Item{ Item{
id:container id:container
anchors.fill: parent anchors.fill: parent
anchors.margins: window.visibility === Window.Maximized && FluTheme.frameless ? 8/Screen.devicePixelRatio : 0
clip: true clip: true
} }
onActiveChanged: {
if(d.firstFlag){
helper.firstUpdate()
d.firstFlag = false
}
}
onClosing:(event)=>closeFunc(event) onClosing:(event)=>closeFunc(event)
FluInfoBar{ FluInfoBar{
@ -76,8 +64,6 @@ ApplicationWindow {
Component.onCompleted: { Component.onCompleted: {
helper.initWindow(window) helper.initWindow(window)
initArgument(argument) initArgument(argument)
window.x = (Screen.width - window.width)/2
window.y = (Screen.desktopAvailableHeight - window.height)/2
} }
function showSuccess(text,duration,moremsg){ function showSuccess(text,duration,moremsg){
@ -100,8 +86,8 @@ ApplicationWindow {
return helper.createRegister(window,path) return helper.createRegister(window,path)
} }
function destoryWindow(){ function deleteWindow(){
helper.destoryWindow() helper.deleteWindow()
} }
function onResult(data){ function onResult(data){

View File

@ -0,0 +1,17 @@
MetaInfo {
Type {
name: "FluentUI.Controls.FluButton"
icon: "images/button-icon16.png"
ItemLibraryEntry {
name: "FluButton"
category: "FluentUI - Controls"
libraryIcon: "images/button-icon.png"
version: "2.0"
requiredImport: "FluentUI"
toolTip: qsTr("A button with text.")
Property { name: "text"; type: "binding"; value: "qsTr(\"Button\")" }
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 320 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 229 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 643 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 162 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 145 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 259 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 258 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 230 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 336 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 156 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 155 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 185 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 293 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 229 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 509 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 189 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 160 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 286 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 267 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 243 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 505 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 121 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 117 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 125 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 133 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 125 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 136 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 127 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 124 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 133 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 206 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 182 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 284 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 190 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 148 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 195 B

Some files were not shown because too many files have changed in this diff Show More