ui: 修改前端界面使用新后端
This commit is contained in:
parent
713ba3d3e0
commit
35041e83ee
|
@ -51,6 +51,7 @@ set(SingleApplication "qtsingleapplication")
|
||||||
include_directories(src)
|
include_directories(src)
|
||||||
include_directories(src/model)
|
include_directories(src/model)
|
||||||
include_directories(src/appdata)
|
include_directories(src/appdata)
|
||||||
|
include_directories(src/libappdata)
|
||||||
include_directories(src/settings)
|
include_directories(src/settings)
|
||||||
include_directories(src/uiconfig)
|
include_directories(src/uiconfig)
|
||||||
include_directories(src/windows)
|
include_directories(src/windows)
|
||||||
|
@ -94,24 +95,11 @@ set(SOURCE_FILES
|
||||||
src/commons.h src/commons.cpp
|
src/commons.h src/commons.cpp
|
||||||
src/menu-dbus-service.cpp src/menu-dbus-service.h
|
src/menu-dbus-service.cpp src/menu-dbus-service.h
|
||||||
src/ukui-menu-application.cpp src/ukui-menu-application.h
|
src/ukui-menu-application.cpp src/ukui-menu-application.h
|
||||||
src/model/app-model.cpp src/model/app-model.h
|
|
||||||
src/model/label-model.cpp src/model/label-model.h
|
|
||||||
src/model/app-group-model.cpp src/model/app-group-model.h
|
|
||||||
src/model/model-manager.cpp src/model/model-manager.h
|
|
||||||
src/model/folder-model.cpp src/model/folder-model.h
|
|
||||||
src/settings/settings.cpp src/settings/settings.h
|
src/settings/settings.cpp src/settings/settings.h
|
||||||
src/uiconfig/theme-palette.cpp src/uiconfig/theme-palette.h
|
src/uiconfig/theme-palette.cpp src/uiconfig/theme-palette.h
|
||||||
src/windows/menu-main-window.cpp src/windows/menu-main-window.h
|
src/windows/menu-main-window.cpp src/windows/menu-main-window.h
|
||||||
src/appdata/data-provider-plugin-iface.h
|
|
||||||
src/appdata/app-data-manager.cpp src/appdata/app-data-manager.h
|
src/appdata/app-data-manager.cpp src/appdata/app-data-manager.h
|
||||||
src/appdata/app-folder-helper.cpp src/appdata/app-folder-helper.h
|
|
||||||
src/appdata/app-icon-provider.cpp src/appdata/app-icon-provider.h
|
src/appdata/app-icon-provider.cpp src/appdata/app-icon-provider.h
|
||||||
src/appdata/data-provider-manager.cpp src/appdata/data-provider-manager.h
|
|
||||||
src/appdata/plugin/all-app-data-provider.cpp src/appdata/plugin/all-app-data-provider.h
|
|
||||||
src/appdata/plugin/app-search-plugin.cpp src/appdata/plugin/app-search-plugin.h
|
|
||||||
src/appdata/plugin/app-category-plugin.cpp src/appdata/plugin/app-category-plugin.h
|
|
||||||
src/appdata/plugin/app-letter-sort-plugin.cpp src/appdata/plugin/app-letter-sort-plugin.h
|
|
||||||
src/utils/app-page-header-utils.cpp src/utils/app-page-header-utils.h
|
|
||||||
src/utils/power-button.cpp src/utils/power-button.h
|
src/utils/power-button.cpp src/utils/power-button.h
|
||||||
src/utils/app-manager.cpp src/utils/app-manager.h
|
src/utils/app-manager.cpp src/utils/app-manager.h
|
||||||
src/utils/event-track.cpp src/utils/event-track.h
|
src/utils/event-track.cpp src/utils/event-track.h
|
||||||
|
@ -135,6 +123,14 @@ set(SOURCE_FILES
|
||||||
src/extension/favorite/favorite-folder-helper.cpp src/extension/favorite/favorite-folder-helper.h
|
src/extension/favorite/favorite-folder-helper.cpp src/extension/favorite/favorite-folder-helper.h
|
||||||
src/libappdata/basic-app-model.cpp src/libappdata/basic-app-model.h
|
src/libappdata/basic-app-model.cpp src/libappdata/basic-app-model.h
|
||||||
src/libappdata/app-database-interface.cpp src/libappdata/app-database-interface.h
|
src/libappdata/app-database-interface.cpp src/libappdata/app-database-interface.h
|
||||||
|
src/libappdata/app-category-model.cpp src/libappdata/app-category-model.h
|
||||||
|
src/libappdata/combined-list-model.cpp src/libappdata/combined-list-model.h
|
||||||
|
src/libappdata/recently-installed-model.cpp src/libappdata/recently-installed-model.h
|
||||||
|
src/libappdata/app-page-backend.cpp src/libappdata/app-page-backend.h
|
||||||
|
src/libappdata/app-list-model.cpp src/libappdata/app-list-model.h
|
||||||
|
src/libappdata/app-list-plugin.cpp src/libappdata/app-list-plugin.h
|
||||||
|
src/libappdata/app-search-plugin.cpp src/libappdata/app-search-plugin.h
|
||||||
|
src/libappdata/app-category-plugin.cpp src/libappdata/app-category-plugin.h
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -136,10 +136,10 @@ MouseArea {
|
||||||
anchors.verticalCenter: parent.verticalCenter
|
anchors.verticalCenter: parent.verticalCenter
|
||||||
visible: textChange.activeFocus
|
visible: textChange.activeFocus
|
||||||
|
|
||||||
ThemeIcon {
|
UkuiItems.Icon {
|
||||||
anchors.centerIn: parent
|
anchors.centerIn: parent
|
||||||
width: 16; height: width
|
width: 16; height: width
|
||||||
source: "image://appicon/edit-clear-symbolic"
|
source: "edit-clear-symbolic"
|
||||||
}
|
}
|
||||||
|
|
||||||
onClicked: {
|
onClicked: {
|
||||||
|
|
|
@ -4,41 +4,21 @@ import QtQuick.Controls 2.5
|
||||||
import org.ukui.menu.core 1.0
|
import org.ukui.menu.core 1.0
|
||||||
import org.ukui.quick.platform 1.0 as Platform
|
import org.ukui.quick.platform 1.0 as Platform
|
||||||
import org.ukui.quick.items 1.0 as UkuiItems
|
import org.ukui.quick.items 1.0 as UkuiItems
|
||||||
|
|
||||||
MouseArea {
|
MouseArea {
|
||||||
id: control
|
id: control
|
||||||
hoverEnabled: true
|
hoverEnabled: true
|
||||||
ToolTip {
|
|
||||||
property bool isVisible: control.containsMouse
|
// ToolTip.text: comment
|
||||||
id: tip
|
// ToolTip.visible: control.containsMouse
|
||||||
x: mouseX + 15
|
// ToolTip.delay: 500
|
||||||
y: mouseY + 15
|
|
||||||
text: comment
|
|
||||||
visible: control.containsMouse
|
|
||||||
delay: 500
|
|
||||||
}
|
|
||||||
onPositionChanged: {
|
|
||||||
if (tip.isVisible) {
|
|
||||||
if (tip.visible) {
|
|
||||||
tip.hide();
|
|
||||||
} else {
|
|
||||||
tip.show(comment);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
states: State {
|
|
||||||
when: control.activeFocus
|
|
||||||
PropertyChanges {
|
|
||||||
target: controlBase
|
|
||||||
borderColor: Palette.Highlight
|
|
||||||
border.width: 2
|
|
||||||
}
|
|
||||||
}
|
|
||||||
UkuiItems.StyleBackground {
|
UkuiItems.StyleBackground {
|
||||||
id: controlBase
|
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
radius: Platform.Theme.minRadius
|
radius: Platform.Theme.minRadius
|
||||||
useStyleTransparency: false
|
useStyleTransparency: false
|
||||||
alpha: control.containsPress ? 0.82 : control.containsMouse ? 0.55 : 0.00
|
paletteRole: Platform.Theme.Text
|
||||||
|
alpha: control.containsPress ? 0.16 : control.containsMouse ? 0.08 : 0.00
|
||||||
|
|
||||||
RowLayout {
|
RowLayout {
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
|
@ -50,7 +30,7 @@ MouseArea {
|
||||||
horizontalAlignment: Qt.AlignLeft
|
horizontalAlignment: Qt.AlignLeft
|
||||||
verticalAlignment: Qt.AlignVCenter
|
verticalAlignment: Qt.AlignVCenter
|
||||||
font.bold: true
|
font.bold: true
|
||||||
text: name
|
text: section
|
||||||
}
|
}
|
||||||
|
|
||||||
Image {
|
Image {
|
||||||
|
|
|
@ -23,129 +23,85 @@ import QtQuick.Layouts 1.12
|
||||||
import AppControls2 1.0 as AppControls2
|
import AppControls2 1.0 as AppControls2
|
||||||
import org.ukui.menu.core 1.0
|
import org.ukui.menu.core 1.0
|
||||||
|
|
||||||
Item {
|
AppListView {
|
||||||
id: appListRoot
|
id: appListView
|
||||||
property string title: ""
|
|
||||||
property string idSelect: ""
|
|
||||||
property bool folderEditStatus: false
|
|
||||||
property int viewContentY: appListView.view.contentY
|
|
||||||
signal labelItemClicked()
|
signal labelItemClicked()
|
||||||
signal openFolderPageSignal(string folderId, string folderName)
|
|
||||||
function labelSelection(labelId) {
|
|
||||||
appListView.view.positionViewAtIndex(appListView.model.getLabelIndex(labelId), ListView.Beginning);
|
|
||||||
appListView.view.currentIndex = appListView.model.getLabelIndex(labelId);
|
|
||||||
}
|
|
||||||
|
|
||||||
function resetListFocus() {
|
function resetListFocus() {
|
||||||
appListView.listFocus = true;
|
listFocus = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
AppListView {
|
// 在listview区域,鼠标进出和移动事件都会清空原有的按键焦点
|
||||||
id: appListView
|
// 鼠标不移动,原有的鼠标悬浮三态会保留
|
||||||
anchors.fill: parent
|
onContainsMouseChanged: { listFocus = false }
|
||||||
|
onPositionChanged: { listFocus = false }
|
||||||
|
|
||||||
// 在listview区域,鼠标进出和移动事件都会清空原有的按键焦点
|
delegate: Component {
|
||||||
// 鼠标不移动,原有的鼠标悬浮三态会保留
|
Loader {
|
||||||
onContainsMouseChanged: clearViewFocus()
|
focus: true
|
||||||
onPositionChanged: clearViewFocus()
|
width: ListView.view ? ListView.view.width : 0
|
||||||
function clearViewFocus() {
|
height: appListView.itemHeight
|
||||||
if(!folderEditStatus) {
|
|
||||||
appListView.listFocus = false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
model: modelManager.getAppModel()
|
property int index: model.index
|
||||||
delegate: Component {
|
property int type: model.type
|
||||||
Loader {
|
property string id: model.id
|
||||||
id: loaderView
|
property string name: model.name
|
||||||
focus: true
|
property string icon: model.icon
|
||||||
width: ListView.view ? ListView.view.width : 0
|
property string comment: model.comment // label tooltip
|
||||||
height: appListView.itemHeight
|
property bool favorite: model.favorite
|
||||||
property int index: model.index
|
|
||||||
property int type: model.type
|
|
||||||
property string id: model.id
|
|
||||||
property string name: model.name
|
|
||||||
property string icon: model.icon
|
|
||||||
property string comment: model.comment // label tooltip
|
|
||||||
property bool favorite: model.favorite
|
|
||||||
sourceComponent: {
|
|
||||||
if (type === DataType.Normal) {
|
|
||||||
return appItemComponent;
|
|
||||||
}
|
|
||||||
if (type === DataType.Folder) {
|
|
||||||
return folderItemComponent;
|
|
||||||
}
|
|
||||||
if (type === DataType.Label) {
|
|
||||||
return labelItemComponent;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
view.onContentYChanged: {
|
sourceComponent: Component {
|
||||||
if (appPageHeaderUtils.currentPluginId() === "all") {
|
Item {
|
||||||
return;
|
id: appItemBase
|
||||||
}
|
AppControls2.AppItem {
|
||||||
|
id: appItem
|
||||||
var obj = view.itemAt(10, view.contentY);
|
focus: true
|
||||||
if (obj !== null && obj.type === DataType.Label) {
|
width: appListView.view ? appListView.view.width : 0
|
||||||
appListRoot.title = obj.name;
|
height: appListView.itemHeight
|
||||||
}
|
acceptedButtons: Qt.LeftButton | Qt.RightButton
|
||||||
}
|
// Drag.active: drag.active
|
||||||
}
|
// Drag.hotSpot.x: width / 2
|
||||||
|
// Drag.hotSpot.y: height / 2
|
||||||
Component {
|
onClicked: {
|
||||||
id: appItemComponent
|
if (mouse.button === Qt.RightButton) {
|
||||||
Item {
|
appListView.model.openMenu(index, MenuInfo.AppList);
|
||||||
id: appItemBase
|
return;
|
||||||
AppControls2.AppItem {
|
}
|
||||||
id: appItem
|
if (mouse.button === Qt.LeftButton) {
|
||||||
focus: true
|
appManager.launchApp(id);
|
||||||
width: appListView.view ? appListView.view.width : 0
|
return;
|
||||||
height: appListView.itemHeight
|
}
|
||||||
acceptedButtons: Qt.LeftButton | Qt.RightButton
|
}
|
||||||
Drag.active: drag.active
|
// onPressAndHold: {
|
||||||
Drag.hotSpot.x: width / 2
|
// if (mouse.button === Qt.LeftButton) {
|
||||||
Drag.hotSpot.y: height / 2
|
// x = appItem.mapToItem(appListView,0,0).x;
|
||||||
onClicked: {
|
// y = appItem.mapToItem(appListView,0,0).y;
|
||||||
if (mouse.button === Qt.RightButton) {
|
// drag.target = appItem;
|
||||||
appListView.model.openMenu(index, MenuInfo.AppList);
|
// appItem.parent = appListView;
|
||||||
return;
|
// appItem.isSelect = true;
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
// onReleased: {
|
||||||
|
// Drag.drop();
|
||||||
|
// drag.target = null;
|
||||||
|
// appItem.parent = appItemBase;
|
||||||
|
// x = 0;
|
||||||
|
// y = 0;
|
||||||
|
// appItem.isSelect = false;
|
||||||
|
// }
|
||||||
}
|
}
|
||||||
if (mouse.button === Qt.LeftButton) {
|
Keys.onPressed: {
|
||||||
appManager.launchApp(id);
|
if (event.key === Qt.Key_Enter || event.key === Qt.Key_Return) {
|
||||||
return;
|
appManager.launchApp(id);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
onPressAndHold: {
|
|
||||||
if (mouse.button === Qt.LeftButton) {
|
|
||||||
x = appItem.mapToItem(appListView,0,0).x;
|
|
||||||
y = appItem.mapToItem(appListView,0,0).y;
|
|
||||||
drag.target = appItem;
|
|
||||||
appItem.parent = appListView;
|
|
||||||
appItem.isSelect = true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
onReleased: {
|
|
||||||
idSelect = id;
|
|
||||||
Drag.drop();
|
|
||||||
drag.target = null;
|
|
||||||
appItem.parent = appItemBase;
|
|
||||||
x = 0;
|
|
||||||
y = 0;
|
|
||||||
appItem.isSelect = false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Keys.onPressed: {
|
|
||||||
if (event.key === Qt.Key_Enter || event.key === Qt.Key_Return) {
|
|
||||||
appManager.launchApp(id);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Component {
|
view.section.property: "group"
|
||||||
id: labelItemComponent
|
view.section.delegate: Component {
|
||||||
AppControls2.LabelItem {
|
AppControls2.LabelItem {
|
||||||
focus: true;
|
focus: true;
|
||||||
onClicked: labelItemClicked();
|
onClicked: labelItemClicked();
|
||||||
|
@ -156,56 +112,4 @@ Item {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Component {
|
|
||||||
id: folderItemComponent
|
|
||||||
DropArea {
|
|
||||||
onEntered: {
|
|
||||||
folderItem.isSelect = true;
|
|
||||||
}
|
|
||||||
onExited: {
|
|
||||||
folderItem.isSelect = false;
|
|
||||||
}
|
|
||||||
onDropped: {
|
|
||||||
folderItem.isSelect = false;
|
|
||||||
if (id !== idSelect) {
|
|
||||||
appListView.model.addAppToFolder(idSelect, id);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
AppControls2.FolderItem {
|
|
||||||
id: folderItem
|
|
||||||
focus: true
|
|
||||||
anchors.fill: parent
|
|
||||||
acceptedButtons: Qt.LeftButton | Qt.RightButton
|
|
||||||
onClicked: {
|
|
||||||
if (mouse.button === Qt.RightButton) {
|
|
||||||
appListView.model.openMenu(index, MenuInfo.AppList);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if (mouse.button === Qt.LeftButton) {
|
|
||||||
openFolderPageSignal(id, name);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Keys.onPressed: {
|
|
||||||
if (event.key === Qt.Key_Enter || event.key === Qt.Key_Return) {
|
|
||||||
openFolderPageSignal(id, name);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Component.onCompleted: {
|
|
||||||
appListView.model.renameText.connect(toEditText);
|
|
||||||
}
|
|
||||||
Component.onDestruction: {
|
|
||||||
appListView.model.renameText.disconnect(toEditText);
|
|
||||||
}
|
|
||||||
|
|
||||||
onEditStatusChanged: folderEditStatus = editStatus;
|
|
||||||
function toEditText(idOfIndex){
|
|
||||||
if (id === idOfIndex) {
|
|
||||||
editStatus = true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,97 @@
|
||||||
|
/*
|
||||||
|
* Copyright (C) 2023, KylinSoft Co., Ltd.
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
import QtQuick 2.12
|
||||||
|
import QtQuick.Layouts 1.12
|
||||||
|
import QtQuick.Controls 2.12
|
||||||
|
import org.ukui.menu.core 1.0
|
||||||
|
import org.ukui.quick.items 1.0 as UkuiItems
|
||||||
|
import org.ukui.quick.platform 1.0 as Platform
|
||||||
|
|
||||||
|
Item {
|
||||||
|
id: root
|
||||||
|
property var header: null
|
||||||
|
property string title: ""
|
||||||
|
|
||||||
|
clip: true
|
||||||
|
visible: header !== null && header.visible
|
||||||
|
|
||||||
|
RowLayout {
|
||||||
|
anchors.fill: parent
|
||||||
|
anchors.leftMargin: 16
|
||||||
|
anchors.rightMargin: 16
|
||||||
|
spacing: 5
|
||||||
|
|
||||||
|
UkuiItems.StyleText {
|
||||||
|
Layout.fillWidth: true
|
||||||
|
Layout.fillHeight: true
|
||||||
|
verticalAlignment: Text.AlignVCenter
|
||||||
|
elide: Text.ElideRight
|
||||||
|
text: root.title === "" ? header.title : root.title
|
||||||
|
}
|
||||||
|
|
||||||
|
UkuiItems.StyleBackground {
|
||||||
|
useStyleTransparency: false
|
||||||
|
paletteRole: Platform.Theme.Text
|
||||||
|
radius: height/2
|
||||||
|
alpha: 0.06
|
||||||
|
|
||||||
|
Layout.preferredWidth: childrenRect.width + 10
|
||||||
|
Layout.fillHeight: true
|
||||||
|
Layout.topMargin: 5
|
||||||
|
Layout.bottomMargin: 5
|
||||||
|
Layout.alignment: Qt.AlignVCenter
|
||||||
|
|
||||||
|
Row {
|
||||||
|
width: childrenRect.width
|
||||||
|
height: parent.height - 10
|
||||||
|
x: 5; y: 5
|
||||||
|
spacing: 5
|
||||||
|
|
||||||
|
Repeater {
|
||||||
|
model: header.actions
|
||||||
|
delegate: Component {
|
||||||
|
UkuiItems.Button {
|
||||||
|
width: height
|
||||||
|
height: parent.height
|
||||||
|
|
||||||
|
ToolTip.delay: 500
|
||||||
|
ToolTip.text: modelData.toolTip
|
||||||
|
ToolTip.visible: modelData.toolTip !== "" && containsMouse
|
||||||
|
|
||||||
|
background.radius: width / 2
|
||||||
|
background.alpha: modelData.checked ? 0.75 : containsMouse ? 0.4 : 0
|
||||||
|
icon.source: modelData.icon
|
||||||
|
icon.mode: UkuiItems.Icon.AutoHighlight
|
||||||
|
|
||||||
|
onClicked: {
|
||||||
|
// 执行action
|
||||||
|
modelData.trigger();
|
||||||
|
}
|
||||||
|
Keys.onPressed: {
|
||||||
|
if (event.key === Qt.Key_Enter || event.key === Qt.Key_Return) {
|
||||||
|
pluginSortButtonRoot.model.changeProvider(0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -22,35 +22,32 @@ import org.ukui.menu.core 1.0
|
||||||
|
|
||||||
Item {
|
Item {
|
||||||
property alias search: appPageSearch
|
property alias search: appPageSearch
|
||||||
property alias header: appPageHeader
|
|
||||||
property alias content: appPageContent
|
property alias content: appPageContent
|
||||||
|
|
||||||
|
AppPageBackend {
|
||||||
|
id: appPageBackend
|
||||||
|
}
|
||||||
|
|
||||||
ColumnLayout {
|
ColumnLayout {
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
anchors.topMargin: 12
|
anchors.topMargin: 12
|
||||||
spacing: 0
|
anchors.bottomMargin: 5
|
||||||
|
spacing: 5
|
||||||
|
|
||||||
AppPageSearch {
|
AppPageSearch {
|
||||||
id: appPageSearch
|
id: appPageSearch
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
Layout.preferredHeight: 40
|
Layout.preferredHeight: 40
|
||||||
focusToPageContent: appPageContent
|
focusToPageContent: appPageContent
|
||||||
}
|
backend: appPageBackend
|
||||||
|
|
||||||
AppPageHeader {
|
|
||||||
id: appPageHeader
|
|
||||||
visible: !appPageSearch.inputStatus
|
|
||||||
Layout.fillWidth: true
|
|
||||||
Layout.preferredHeight: 48
|
|
||||||
focusToPageContent: appPageContent
|
|
||||||
}
|
}
|
||||||
|
|
||||||
AppPageContent {
|
AppPageContent {
|
||||||
id: appPageContent
|
id: appPageContent
|
||||||
appPageHeader: appPageHeader
|
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
Layout.fillHeight: true
|
Layout.fillHeight: true
|
||||||
activeFocusOnTab: false
|
activeFocusOnTab: false
|
||||||
|
backend: appPageBackend
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,13 +22,9 @@ import QtQuick.Controls 2.5
|
||||||
import AppControls2 1.0 as AppControls2
|
import AppControls2 1.0 as AppControls2
|
||||||
import org.ukui.menu.core 1.0
|
import org.ukui.menu.core 1.0
|
||||||
|
|
||||||
SwipeView {
|
Item {
|
||||||
id: root
|
id: root
|
||||||
interactive: false
|
property AppPageBackend backend: null
|
||||||
// 5.15
|
|
||||||
// required property AppPageHeader appPageHeader
|
|
||||||
// 5.12
|
|
||||||
property AppPageHeader appPageHeader: null
|
|
||||||
property bool isAppListShow: appList.visible
|
property bool isAppListShow: appList.visible
|
||||||
|
|
||||||
function resetFocus() {
|
function resetFocus() {
|
||||||
|
@ -39,118 +35,43 @@ SwipeView {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Item {
|
ColumnLayout {
|
||||||
id: appListBase
|
anchors.fill: parent
|
||||||
AppControls2.StyleBackground {
|
spacing: 5
|
||||||
anchors.top: parent.top
|
|
||||||
width: parent.width
|
AppListHeader {
|
||||||
height: 1
|
id: appListHeader
|
||||||
useStyleTransparent: false
|
Layout.fillWidth: true
|
||||||
alpha: 0.15
|
Layout.preferredHeight: 48
|
||||||
paletteRole: Palette.Text
|
header: backend.appModel.header
|
||||||
visible: appList.viewContentY > 0 && appList.visible
|
|
||||||
}
|
}
|
||||||
|
|
||||||
AppList {
|
|
||||||
id: appList
|
|
||||||
anchors.fill: parent
|
|
||||||
anchors.leftMargin: 4
|
|
||||||
onLabelItemClicked: {
|
|
||||||
appList.visible = false;
|
|
||||||
selectionPage.viewShowStart();
|
|
||||||
}
|
|
||||||
onTitleChanged: {
|
|
||||||
appPageHeader.title = title;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
SelectionPage {
|
|
||||||
id: selectionPage
|
|
||||||
anchors.fill: parent
|
|
||||||
anchors.bottomMargin: 54
|
|
||||||
visible: !appList.visible
|
|
||||||
onViewHideFinished: appList.visible = true
|
|
||||||
onLabelSelected: appList.labelSelection(labelId)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Loader {
|
|
||||||
id: folderPageLoader
|
|
||||||
active: false
|
|
||||||
sourceComponent: Component {
|
|
||||||
AppListView {
|
|
||||||
model: modelManager.getFolderModel()
|
|
||||||
delegate: Component {
|
|
||||||
Loader {
|
|
||||||
width: ListView.view ? ListView.view.width : 0; height: 40
|
|
||||||
property string id: model.id
|
|
||||||
property string name: model.name
|
|
||||||
property string icon: model.icon
|
|
||||||
sourceComponent: AppControls2.AppItem {
|
|
||||||
acceptedButtons: Qt.LeftButton | Qt.RightButton
|
|
||||||
onClicked: {
|
|
||||||
if (mouse.button === Qt.RightButton) {
|
|
||||||
menuManager.showMenu(id, MenuInfo.FolderPage);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if (mouse.button === Qt.LeftButton) {
|
|
||||||
appManager.launchApp(id);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function showFolderPage(folderId, folderName) {
|
|
||||||
active = true;
|
|
||||||
item.model.setFolderId(folderId);
|
|
||||||
appPageHeader.title = folderName;
|
|
||||||
appPageHeader.content = folderPageHeader;
|
|
||||||
root.currentIndex = SwipeView.index;
|
|
||||||
EventTrack.sendClickEvent("enter_folder_page", "AppView");
|
|
||||||
}
|
|
||||||
function hideFolderPage() {
|
|
||||||
root.currentIndex = appListBase.SwipeView.index;
|
|
||||||
appPageHeader.title = appList.title;
|
|
||||||
appPageHeader.content = null;
|
|
||||||
//active = false;
|
|
||||||
EventTrack.sendClickEvent("exit_folder_page", "AppView");
|
|
||||||
}
|
|
||||||
|
|
||||||
Component.onCompleted: {
|
|
||||||
appList.openFolderPageSignal.connect(showFolderPage);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Component {
|
|
||||||
id: folderPageHeader
|
|
||||||
Item {
|
Item {
|
||||||
RowLayout {
|
Layout.fillWidth: true
|
||||||
anchors.fill: parent
|
Layout.fillHeight: true
|
||||||
anchors.leftMargin: 12
|
|
||||||
anchors.rightMargin: 30
|
|
||||||
spacing: 2
|
|
||||||
|
|
||||||
ThemeIcon {
|
AppList {
|
||||||
Layout.fillWidth: true
|
id: appList
|
||||||
Layout.fillHeight: true
|
anchors.fill: parent
|
||||||
Layout.maximumWidth: 16
|
visible: true
|
||||||
Layout.maximumHeight: 16
|
model: backend.appModel
|
||||||
Layout.alignment: Qt.AlignVCenter
|
|
||||||
source: "image://appicon/ukui-start-symbolic"
|
view.onContentYChanged: {
|
||||||
MouseArea {
|
if (view.contentY <= 0) {
|
||||||
anchors.fill: parent
|
appListHeader.title = "";
|
||||||
onClicked: folderPageLoader.hideFolderPage();
|
} else {
|
||||||
|
appListHeader.title = view.currentSection;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
EditText {
|
SelectionPage {
|
||||||
Layout.fillWidth: true
|
id: selectionPage
|
||||||
Layout.fillHeight: true
|
anchors.fill: parent
|
||||||
}
|
anchors.bottomMargin: 54
|
||||||
|
visible: !appList.visible
|
||||||
|
onViewHideFinished: appList.visible = true
|
||||||
|
onLabelSelected: appList.labelSelection(labelId)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,89 +0,0 @@
|
||||||
/*
|
|
||||||
* Copyright (C) 2023, KylinSoft Co., Ltd.
|
|
||||||
*
|
|
||||||
* This program is free software: you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License as published by
|
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
|
||||||
* This program is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
import QtQuick 2.12
|
|
||||||
import QtQuick.Layouts 1.12
|
|
||||||
import QtQuick.Controls 2.5
|
|
||||||
import AppControls2 1.0 as AppControls2
|
|
||||||
import org.ukui.menu.core 1.0
|
|
||||||
import org.ukui.menu.utils 1.0
|
|
||||||
|
|
||||||
Item {
|
|
||||||
id: appPageHeaderRoot
|
|
||||||
property string title: ""
|
|
||||||
property Item focusToPageContent
|
|
||||||
property Component content: null
|
|
||||||
clip: true
|
|
||||||
|
|
||||||
Loader {
|
|
||||||
id: loader
|
|
||||||
anchors.fill: parent
|
|
||||||
property string title: appPageHeaderRoot.title
|
|
||||||
sourceComponent: {
|
|
||||||
return appPageHeaderRoot.content === null ? defaultComponent : appPageHeaderRoot.content
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Component {
|
|
||||||
id: defaultComponent
|
|
||||||
Item {
|
|
||||||
id: root
|
|
||||||
|
|
||||||
Item {
|
|
||||||
id: pluginSelectionBar
|
|
||||||
width: parent.width
|
|
||||||
height: parent.height
|
|
||||||
RowLayout {
|
|
||||||
anchors.fill: parent
|
|
||||||
anchors.leftMargin: 16
|
|
||||||
spacing: 12
|
|
||||||
AppControls2.StyleText {
|
|
||||||
Layout.fillWidth: true
|
|
||||||
Layout.fillHeight: true
|
|
||||||
verticalAlignment: Qt.AlignVCenter
|
|
||||||
text: appPageHeaderRoot.title
|
|
||||||
font.bold: true
|
|
||||||
}
|
|
||||||
|
|
||||||
PluginSelectButton {
|
|
||||||
id: pluginSelectButton
|
|
||||||
Layout.preferredWidth: 64
|
|
||||||
Layout.preferredHeight: 32
|
|
||||||
Layout.maximumHeight: 32
|
|
||||||
Layout.minimumWidth: 64
|
|
||||||
Layout.rightMargin: 8
|
|
||||||
Layout.alignment: Qt.AlignVCenter
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function updateTitle(id) {
|
|
||||||
appPageHeaderRoot.title = appPageHeaderUtils.getPluginTitle(id);
|
|
||||||
}
|
|
||||||
|
|
||||||
Component.onCompleted: {
|
|
||||||
updateTitle("");
|
|
||||||
appPageHeaderUtils.pluginChanged.connect(updateTitle);
|
|
||||||
}
|
|
||||||
|
|
||||||
Component.onDestruction: {
|
|
||||||
appPageHeaderUtils.pluginChanged.disconnect(updateTitle);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -6,9 +6,11 @@ import org.ukui.quick.items 1.0 as UkuiItems
|
||||||
import org.ukui.menu.utils 1.0
|
import org.ukui.menu.utils 1.0
|
||||||
|
|
||||||
Item {
|
Item {
|
||||||
|
id: root
|
||||||
|
property AppPageBackend backend: null
|
||||||
property Item focusToPageContent
|
property Item focusToPageContent
|
||||||
property bool inputStatus: false
|
property bool inputStatus: false
|
||||||
id: appPageSearchBar
|
|
||||||
SearchInputBar {
|
SearchInputBar {
|
||||||
id: searchInputBar
|
id: searchInputBar
|
||||||
property string providerId: "search"
|
property string providerId: "search"
|
||||||
|
@ -21,15 +23,17 @@ Item {
|
||||||
visible: true
|
visible: true
|
||||||
onTextChanged: {
|
onTextChanged: {
|
||||||
if (text === "") {
|
if (text === "") {
|
||||||
appPageHeaderUtils.model(PluginGroup.SortMenuItem).reactivateProvider();
|
root.backend.group = PluginGroup.Display;
|
||||||
inputStatus = false;
|
inputStatus = false;
|
||||||
} else {
|
} else {
|
||||||
appPageHeaderUtils.activateProvider(providerId);
|
root.backend.group = PluginGroup.Search;
|
||||||
appPageHeaderUtils.startSearch(text);
|
// appPageHeaderUtils.startSearch(text);
|
||||||
|
root.backend.startSearch(text);
|
||||||
inputStatus = true;
|
inputStatus = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function changeToSearch(keyEvent) {
|
function changeToSearch(keyEvent) {
|
||||||
if (header.content === null) {
|
if (header.content === null) {
|
||||||
searchInputBar.text = keyEvent;
|
searchInputBar.text = keyEvent;
|
||||||
|
|
|
@ -43,12 +43,11 @@ Row {
|
||||||
id: powerButtonBase
|
id: powerButtonBase
|
||||||
}
|
}
|
||||||
|
|
||||||
ThemeIcon {
|
UkuiItems.Icon {
|
||||||
anchors.centerIn: parent
|
anchors.centerIn: parent
|
||||||
width: Math.floor(parent.width / 2)
|
width: Math.floor(parent.width / 2)
|
||||||
height: width
|
height: width
|
||||||
highLight: true
|
mode: UkuiItems.Icon.Highlight
|
||||||
autoHighLight: false
|
|
||||||
source: powerButtonBase.icon
|
source: powerButtonBase.icon
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -28,10 +28,10 @@ Item {
|
||||||
|
|
||||||
onTextChanged: {
|
onTextChanged: {
|
||||||
if (text === "") {
|
if (text === "") {
|
||||||
appPageHeaderUtils.model(PluginGroup.SortMenuItem).reactivateProvider();
|
// appPageHeaderUtils.model(PluginGroup.SortMenuItem).reactivateProvider();
|
||||||
} else {
|
} else {
|
||||||
appPageHeaderUtils.model(PluginGroup.Button).reactivateProvider();
|
// appPageHeaderUtils.model(PluginGroup.Button).reactivateProvider();
|
||||||
appPageHeaderUtils.startSearch(text);
|
// appPageHeaderUtils.startSearch(text);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Behavior on opacity {
|
Behavior on opacity {
|
||||||
|
@ -50,12 +50,11 @@ Item {
|
||||||
borderColor: Platform.Theme.Highlight
|
borderColor: Platform.Theme.Highlight
|
||||||
border.width: buttonMouseArea.activeFocus ? 2 : 0
|
border.width: buttonMouseArea.activeFocus ? 2 : 0
|
||||||
|
|
||||||
ThemeIcon {
|
UkuiItems.Icon {
|
||||||
anchors.centerIn: parent
|
anchors.centerIn: parent
|
||||||
width: parent.width / 2; height: width
|
width: parent.width / 2; height: width
|
||||||
source: "image://appicon/view-restore-symbolic"
|
source: "view-restore-symbolic"
|
||||||
highLight: true
|
mode: UkuiItems.Icon.Highlight
|
||||||
autoHighLight: false
|
|
||||||
}
|
}
|
||||||
MouseArea {
|
MouseArea {
|
||||||
id: buttonMouseArea
|
id: buttonMouseArea
|
||||||
|
|
|
@ -1,11 +1,12 @@
|
||||||
import QtQuick 2.12
|
import QtQuick 2.12
|
||||||
|
import QtQuick.Layouts 1.12
|
||||||
import org.ukui.menu.core 1.0
|
import org.ukui.menu.core 1.0
|
||||||
import org.ukui.quick.platform 1.0 as Platform
|
import org.ukui.quick.platform 1.0 as Platform
|
||||||
import org.ukui.quick.items 1.0 as UkuiItems
|
import org.ukui.quick.items 1.0 as UkuiItems
|
||||||
|
|
||||||
FocusScope {
|
FocusScope {
|
||||||
id: normalUI
|
id: normalUI
|
||||||
anchors.fill: parent
|
|
||||||
function focusToFalse() {
|
function focusToFalse() {
|
||||||
focus = false;
|
focus = false;
|
||||||
}
|
}
|
||||||
|
@ -24,17 +25,29 @@ FocusScope {
|
||||||
|
|
||||||
Component.onCompleted: mainWindow.visibleChanged.connect(focusToFalse)
|
Component.onCompleted: mainWindow.visibleChanged.connect(focusToFalse)
|
||||||
Component.onDestruction: mainWindow.visibleChanged.disconnect(focusToFalse)
|
Component.onDestruction: mainWindow.visibleChanged.disconnect(focusToFalse)
|
||||||
Row {
|
|
||||||
anchors.fill: parent;
|
// 点击空白处失去焦点
|
||||||
|
MouseArea {
|
||||||
|
anchors.fill: parent
|
||||||
|
onClicked: {
|
||||||
|
normalUI.focusToFalse();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
RowLayout {
|
||||||
|
anchors.fill: parent
|
||||||
|
spacing: 0
|
||||||
|
z: 10
|
||||||
|
|
||||||
AppPage {
|
AppPage {
|
||||||
id: appPage
|
id: appPage
|
||||||
width: 312
|
Layout.preferredWidth: 312
|
||||||
height: parent.height;
|
Layout.fillHeight: true
|
||||||
}
|
}
|
||||||
|
|
||||||
UkuiItems.StyleBackground {
|
UkuiItems.StyleBackground {
|
||||||
width: 1
|
Layout.preferredWidth: 1
|
||||||
height: parent.height
|
Layout.fillHeight: true
|
||||||
|
|
||||||
paletteRole: Platform.Theme.ButtonText
|
paletteRole: Platform.Theme.ButtonText
|
||||||
useStyleTransparency: false
|
useStyleTransparency: false
|
||||||
|
@ -42,13 +55,13 @@ FocusScope {
|
||||||
}
|
}
|
||||||
|
|
||||||
WidgetPage {
|
WidgetPage {
|
||||||
width: parent.width - 374;
|
Layout.fillWidth: true
|
||||||
height: parent.height;
|
Layout.fillHeight: true
|
||||||
}
|
}
|
||||||
|
|
||||||
UkuiItems.StyleBackground {
|
UkuiItems.StyleBackground {
|
||||||
width: 1
|
Layout.preferredWidth: 1
|
||||||
height: parent.height
|
Layout.fillHeight: true
|
||||||
|
|
||||||
paletteRole: Platform.Theme.ButtonText
|
paletteRole: Platform.Theme.ButtonText
|
||||||
useStyleTransparency: false
|
useStyleTransparency: false
|
||||||
|
@ -56,8 +69,8 @@ FocusScope {
|
||||||
}
|
}
|
||||||
|
|
||||||
Sidebar {
|
Sidebar {
|
||||||
width: 60;
|
Layout.preferredWidth: 60
|
||||||
height: parent.height;
|
Layout.fillHeight: true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -46,7 +46,7 @@ UkuiItems.StyleBackground {
|
||||||
anchors.bottomMargin: 2
|
anchors.bottomMargin: 2
|
||||||
anchors.leftMargin: 2
|
anchors.leftMargin: 2
|
||||||
anchors.rightMargin: 2
|
anchors.rightMargin: 2
|
||||||
property var model: appPageHeaderUtils.model(PluginGroup.SortMenuItem)
|
// property var model: appPageHeaderUtils.model(PluginGroup.SortMenuItem)
|
||||||
spacing: 4
|
spacing: 4
|
||||||
|
|
||||||
UkuiItems.Button {
|
UkuiItems.Button {
|
||||||
|
|
|
@ -56,12 +56,11 @@ UkuiItems.StyleBackground {
|
||||||
anchors.left: parent.left
|
anchors.left: parent.left
|
||||||
anchors.leftMargin: (parent.height - height) / 2
|
anchors.leftMargin: (parent.height - height) / 2
|
||||||
|
|
||||||
ThemeIcon {
|
UkuiItems.Icon {
|
||||||
anchors.centerIn: parent
|
anchors.centerIn: parent
|
||||||
width: parent.height / 2; height: width
|
width: parent.height / 2; height: width
|
||||||
source: "search-symbolic"
|
source: "search-symbolic"
|
||||||
highLight: mainWindow.isFullScreen
|
mode: mainWindow.isFullScreen ? UkuiItems.Icon.Highlight : UkuiItems.Icon.AutoHighlight
|
||||||
autoHighLight: !mainWindow.isFullScreen
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -131,16 +130,18 @@ UkuiItems.StyleBackground {
|
||||||
Component.onDestruction: themePalette.styleColorChanged.disconnect(updateTextInputColor)
|
Component.onDestruction: themePalette.styleColorChanged.disconnect(updateTextInputColor)
|
||||||
}
|
}
|
||||||
|
|
||||||
AppControls2.RoundButton {
|
UkuiItems.Button {
|
||||||
id: clearButton
|
|
||||||
width: 18; height: width
|
|
||||||
anchors.right: parent.right
|
anchors.right: parent.right
|
||||||
anchors.rightMargin: (parent.height - height) / 2
|
anchors.rightMargin: (parent.height - height) / 2
|
||||||
anchors.verticalCenter: parent.verticalCenter
|
anchors.verticalCenter: parent.verticalCenter
|
||||||
|
width: 18; height: width
|
||||||
visible: textInput.activeFocus
|
visible: textInput.activeFocus
|
||||||
buttonIcon: "image://appicon/edit-clear-symbolic"
|
activeFocusOnTab: false
|
||||||
highlight: mainWindow.isFullScreen
|
|
||||||
autoHighLight: !mainWindow.isFullScreen
|
background.radius: width/2
|
||||||
|
background.border.width: 1
|
||||||
|
icon.source: "edit-clear-symbolic"
|
||||||
|
icon.mode: mainWindow.isFullScreen ? UkuiItems.Icon.Highlight : UkuiItems.Icon.AutoHighlight
|
||||||
|
|
||||||
onClicked: {
|
onClicked: {
|
||||||
textInput.clear();
|
textInput.clear();
|
||||||
|
|
|
@ -5,7 +5,7 @@ Sidebar 1.0 Sidebar.qml
|
||||||
WidgetPage 1.0 WidgetPage.qml
|
WidgetPage 1.0 WidgetPage.qml
|
||||||
NormalUI 1.0 NormalUI.qml
|
NormalUI 1.0 NormalUI.qml
|
||||||
FullScreenUI 1.0 FullScreenUI.qml
|
FullScreenUI 1.0 FullScreenUI.qml
|
||||||
AppPageHeader 1.0 AppPageHeader.qml
|
AppListHeader 1.0 AppListHeader.qml
|
||||||
AppListView 1.0 AppListView.qml
|
AppListView 1.0 AppListView.qml
|
||||||
SearchInputBar 1.0 SearchInputBar.qml
|
SearchInputBar 1.0 SearchInputBar.qml
|
||||||
PluginSelectButton 1.0 PluginSelectButton.qml
|
PluginSelectButton 1.0 PluginSelectButton.qml
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
<file>AppUI/FullScreenHeader.qml</file>
|
<file>AppUI/FullScreenHeader.qml</file>
|
||||||
<file>AppUI/FullScreenContent.qml</file>
|
<file>AppUI/FullScreenContent.qml</file>
|
||||||
<file>AppUI/FullScreenFooter.qml</file>
|
<file>AppUI/FullScreenFooter.qml</file>
|
||||||
<file>AppUI/AppPageHeader.qml</file>
|
<file>AppUI/AppListHeader.qml</file>
|
||||||
<file>AppUI/SearchInputBar.qml</file>
|
<file>AppUI/SearchInputBar.qml</file>
|
||||||
<file>AppUI/AppListView.qml</file>
|
<file>AppUI/AppListView.qml</file>
|
||||||
<file>AppControls2/qmldir</file>
|
<file>AppControls2/qmldir</file>
|
||||||
|
|
|
@ -20,19 +20,17 @@
|
||||||
#include "menu-dbus-service.h"
|
#include "menu-dbus-service.h"
|
||||||
#include "settings.h"
|
#include "settings.h"
|
||||||
#include "commons.h"
|
#include "commons.h"
|
||||||
#include "model-manager.h"
|
|
||||||
#include "theme-palette.h"
|
#include "theme-palette.h"
|
||||||
#include "app-icon-provider.h"
|
#include "app-icon-provider.h"
|
||||||
#include "menu-main-window.h"
|
#include "menu-main-window.h"
|
||||||
#include "app-page-header-utils.h"
|
|
||||||
#include "power-button.h"
|
#include "power-button.h"
|
||||||
#include "items/theme-icon.h"
|
#include "items/theme-icon.h"
|
||||||
#include "app-manager.h"
|
#include "app-manager.h"
|
||||||
#include "context-menu-manager.h"
|
#include "context-menu-manager.h"
|
||||||
#include "data-provider-manager.h"
|
|
||||||
#include "event-track.h"
|
#include "event-track.h"
|
||||||
#include "sidebar-button-utils.h"
|
#include "sidebar-button-utils.h"
|
||||||
#include "extension/widget-model.h"
|
#include "extension/widget-model.h"
|
||||||
|
#include "app-page-backend.h"
|
||||||
|
|
||||||
#include <QGuiApplication>
|
#include <QGuiApplication>
|
||||||
#include <QCommandLineParser>
|
#include <QCommandLineParser>
|
||||||
|
@ -65,9 +63,9 @@ void UkuiMenuApplication::registerQmlTypes()
|
||||||
PowerButton::defineModule(uri, versionMajor, versionMinor);
|
PowerButton::defineModule(uri, versionMajor, versionMinor);
|
||||||
SidebarButtonUtils::defineModule(uri, versionMajor, versionMinor);
|
SidebarButtonUtils::defineModule(uri, versionMajor, versionMinor);
|
||||||
|
|
||||||
ModelManager::registerMetaTypes();
|
|
||||||
|
|
||||||
qmlRegisterType<WidgetModel>(uri, versionMajor, versionMinor, "WidgetModel");
|
qmlRegisterType<WidgetModel>(uri, versionMajor, versionMinor, "WidgetModel");
|
||||||
|
qmlRegisterType<AppPageBackend>(uri, versionMajor, versionMinor, "AppPageBackend");
|
||||||
|
qmlRegisterUncreatableType<AppListPluginGroup>(uri, versionMajor, versionMinor, "PluginGroup", "Use enums only.");
|
||||||
|
|
||||||
// commons
|
// commons
|
||||||
qRegisterMetaType<UkuiMenu::DataType::Type>("DataType::Type");
|
qRegisterMetaType<UkuiMenu::DataType::Type>("DataType::Type");
|
||||||
|
@ -95,8 +93,6 @@ void UkuiMenuApplication::initQmlEngine()
|
||||||
QQmlContext *context = m_engine->rootContext();
|
QQmlContext *context = m_engine->rootContext();
|
||||||
context->setContextProperty("themePalette", ThemePalette::getInstance());
|
context->setContextProperty("themePalette", ThemePalette::getInstance());
|
||||||
context->setContextProperty("menuSetting", MenuSetting::instance());
|
context->setContextProperty("menuSetting", MenuSetting::instance());
|
||||||
context->setContextProperty("modelManager", ModelManager::instance());
|
|
||||||
context->setContextProperty("appPageHeaderUtils", new AppPageHeaderUtils(this));
|
|
||||||
context->setContextProperty("menuManager", ContextMenuManager::instance());
|
context->setContextProperty("menuManager", ContextMenuManager::instance());
|
||||||
context->setContextProperty("appManager", AppManager::instance());
|
context->setContextProperty("appManager", AppManager::instance());
|
||||||
|
|
||||||
|
@ -126,7 +122,7 @@ void UkuiMenuApplication::loadMenuUI()
|
||||||
}
|
}
|
||||||
|
|
||||||
execCommand(Hide);
|
execCommand(Hide);
|
||||||
DataProviderManager::instance()->toUpdate(false);
|
// DataProviderManager::instance()->toUpdate(false);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -175,8 +171,8 @@ void UkuiMenuApplication::execCommand(Command command)
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
bool isShowed = m_mainWindow->isVisible();
|
// bool isShowed = m_mainWindow->isVisible();
|
||||||
DataProviderManager::instance()->toUpdate(isShowed);
|
// DataProviderManager::instance()->toUpdate(isShowed);
|
||||||
}
|
}
|
||||||
|
|
||||||
UkuiMenuApplication::~UkuiMenuApplication()
|
UkuiMenuApplication::~UkuiMenuApplication()
|
||||||
|
|
Loading…
Reference in New Issue