controlcenter: add header when floating
This commit is contained in:
parent
860b8039ea
commit
a9f7d1efc1
3 changed files with 73 additions and 3 deletions
|
|
@ -30,10 +30,27 @@ Item {
|
||||||
implicitWidth: implicitHeight * Config.controlCenter.sizes.ratio
|
implicitWidth: implicitHeight * Config.controlCenter.sizes.ratio
|
||||||
implicitHeight: screen.height * Config.controlCenter.sizes.heightMult
|
implicitHeight: screen.height * Config.controlCenter.sizes.heightMult
|
||||||
|
|
||||||
RowLayout {
|
GridLayout {
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
|
|
||||||
spacing: 0
|
rowSpacing: 0
|
||||||
|
columnSpacing: 0
|
||||||
|
rows: root.floating ? 2 : 1
|
||||||
|
columns: 2
|
||||||
|
|
||||||
|
Loader {
|
||||||
|
Layout.fillWidth: true
|
||||||
|
Layout.columnSpan: 2
|
||||||
|
|
||||||
|
asynchronous: true
|
||||||
|
active: root.floating
|
||||||
|
visible: active
|
||||||
|
|
||||||
|
sourceComponent: WindowTitle {
|
||||||
|
screen: root.screen
|
||||||
|
session: root.session
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
StyledRect {
|
StyledRect {
|
||||||
Layout.fillHeight: true
|
Layout.fillHeight: true
|
||||||
|
|
|
||||||
|
|
@ -38,6 +38,8 @@ Singleton {
|
||||||
implicitWidth: cc.implicitWidth
|
implicitWidth: cc.implicitWidth
|
||||||
implicitHeight: cc.implicitHeight
|
implicitHeight: cc.implicitHeight
|
||||||
|
|
||||||
|
title: qsTr("Caelestia Settings - %1").arg(cc.active.slice(0, 1).toUpperCase() + cc.active.slice(1))
|
||||||
|
|
||||||
ControlCenter {
|
ControlCenter {
|
||||||
id: cc
|
id: cc
|
||||||
|
|
||||||
|
|
@ -46,7 +48,7 @@ Singleton {
|
||||||
floating: true
|
floating: true
|
||||||
|
|
||||||
function close(): void {
|
function close(): void {
|
||||||
win.visible = false;
|
win.destroy();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
51
modules/controlcenter/WindowTitle.qml
Normal file
51
modules/controlcenter/WindowTitle.qml
Normal file
|
|
@ -0,0 +1,51 @@
|
||||||
|
import qs.components
|
||||||
|
import qs.services
|
||||||
|
import qs.config
|
||||||
|
import Quickshell
|
||||||
|
import QtQuick
|
||||||
|
|
||||||
|
StyledRect {
|
||||||
|
id: root
|
||||||
|
|
||||||
|
required property ShellScreen screen
|
||||||
|
required property Session session
|
||||||
|
|
||||||
|
implicitHeight: text.implicitHeight + Appearance.padding.normal
|
||||||
|
color: Colours.palette.m3surfaceContainer
|
||||||
|
|
||||||
|
StyledText {
|
||||||
|
id: text
|
||||||
|
|
||||||
|
anchors.horizontalCenter: parent.horizontalCenter
|
||||||
|
anchors.bottom: parent.bottom
|
||||||
|
|
||||||
|
text: qsTr("Caelestia Settings - %1").arg(root.session.active)
|
||||||
|
font.capitalization: Font.Capitalize
|
||||||
|
font.pointSize: Appearance.font.size.larger
|
||||||
|
font.weight: 500
|
||||||
|
}
|
||||||
|
|
||||||
|
Item {
|
||||||
|
anchors.right: parent.right
|
||||||
|
anchors.top: parent.top
|
||||||
|
anchors.margins: Appearance.padding.normal
|
||||||
|
|
||||||
|
implicitWidth: implicitHeight
|
||||||
|
implicitHeight: closeIcon.implicitHeight + Appearance.padding.small
|
||||||
|
|
||||||
|
StateLayer {
|
||||||
|
radius: Appearance.rounding.full
|
||||||
|
|
||||||
|
function onClicked(): void {
|
||||||
|
QsWindow.window.destroy();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
MaterialIcon {
|
||||||
|
id: closeIcon
|
||||||
|
|
||||||
|
anchors.centerIn: parent
|
||||||
|
text: "close"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Add table
Reference in a new issue