dock/qml/main.qml
2021-12-26 17:07:57 +08:00

199 lines
5.9 KiB
QML

/*
* Copyright (C) 2021 CutefishOS Team.
*
* Author: rekols <revenmartin@gmail.com>
*
* 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
* 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 <http://www.gnu.org/licenses/>.
*/
import QtQuick 2.12
import QtQuick.Controls 2.12
import QtQuick.Layouts 1.12
import QtGraphicalEffects 1.0
import Cutefish.Dock 1.0
import FishUI 1.0 as FishUI
Item {
id: root
visible: true
property bool isHorizontal: Settings.direction === DockSettings.Bottom
property real windowRadius: isHorizontal ? root.height * 0.3 : root.width * 0.3
property bool compositing: windowHelper.compositing
onCompositingChanged: {
mainWindow.updateSize()
}
Component.onCompleted: {
console.log(Settings.style)
}
DropArea {
anchors.fill: parent
enabled: true
}
// Background
Rectangle {
id: _background
property var borderColor: root.compositing ? FishUI.Theme.darkMode ? Qt.rgba(255, 255, 255, 0.3)
: Qt.rgba(0, 0, 0, 0.2) : FishUI.Theme.darkMode ? Qt.rgba(255, 255, 255, 0.15)
: Qt.rgba(0, 0, 0, 0.15)
anchors.fill: parent
radius: root.compositing && Settings.style === 0 ? windowRadius : 0
color: FishUI.Theme.darkMode ? "#666666" : "#E6E6E6"
opacity: root.compositing ? FishUI.Theme.darkMode ? 0.5 : 0.5 : 0.9
border.width: 1 / FishUI.Units.devicePixelRatio
border.pixelAligned: FishUI.Units.devicePixelRatio > 1 ? false : true
border.color: borderColor
Behavior on color {
ColorAnimation {
duration: 200
easing.type: Easing.Linear
}
}
}
FishUI.WindowHelper {
id: windowHelper
}
FishUI.WindowShadow {
view: mainWindow
geometry: Qt.rect(root.x, root.y, root.width, root.height)
strength: 1
radius: _background.radius
}
FishUI.WindowBlur {
view: mainWindow
geometry: Qt.rect(root.x, root.y, root.width, root.height)
windowRadius: _background.radius
enabled: true
}
FishUI.PopupTips {
id: popupTips
backgroundColor: _background.color
backgroundOpacity: _background.opacity
}
GridLayout {
id: mainLayout
anchors.fill: parent
anchors.topMargin: Settings.style === 1
&& (Settings.direction === 0 || Settings.direction === 2)
? 28 : 0
flow: isHorizontal ? Grid.LeftToRight : Grid.TopToBottom
columnSpacing: 0
rowSpacing: 0
ListView {
id: appItemView
orientation: isHorizontal ? Qt.Horizontal : Qt.Vertical
snapMode: ListView.SnapToItem
interactive: false
model: appModel
clip: true
Layout.fillHeight: true
Layout.fillWidth: true
delegate: AppItem {
id: appItemDelegate
implicitWidth: isHorizontal ? appItemView.height : appItemView.width
implicitHeight: isHorizontal ? appItemView.height : appItemView.width
}
moveDisplaced: Transition {
NumberAnimation {
properties: "x, y"
duration: 300
easing.type: Easing.InOutQuad
}
}
}
DockItem {
id: trashItem
implicitWidth: isHorizontal ? root.height : root.width
implicitHeight: isHorizontal ? root.height : root.width
popupText: qsTr("Trash")
enableActivateDot: false
iconName: trash.count === 0 ? "user-trash-empty" : "user-trash-full"
onClicked: trash.openTrash()
onRightClicked: trashMenu.popup()
dropArea.enabled: true
onDropped: {
if (drop.hasUrls) {
trash.moveToTrash(drop.urls)
}
}
Rectangle {
anchors.fill: parent
anchors.margins: FishUI.Units.smallSpacing / 2
color: "transparent"
border.color: FishUI.Theme.textColor
radius: height * 0.3
border.width: 1 / FishUI.Units.devicePixelRatio
border.pixelAligned: FishUI.Units.devicePixelRatio > 1 ? false : true
opacity: trashItem.dropArea.containsDrag ? 0.5 : 0
Behavior on opacity {
NumberAnimation {
duration: 200
}
}
}
FishUI.DesktopMenu {
id: trashMenu
MenuItem {
text: qsTr("Open")
onTriggered: trash.openTrash()
}
MenuItem {
text: qsTr("Empty Trash")
onTriggered: trash.emptyTrash()
}
}
}
}
Connections {
target: Settings
function onDirectionChanged() {
popupTips.hide()
}
}
Connections {
target: mainWindow
function onVisibleChanged() {
popupTips.hide()
}
}
}