mirror of
https://github.com/end-4/dots-hyprland.git
synced 2026-06-07 07:49:28 -05:00
41 lines
1.4 KiB
QML
41 lines
1.4 KiB
QML
import qs.modules.common
|
|
import QtQuick
|
|
import QtQuick.Layouts
|
|
|
|
Item {
|
|
id: root
|
|
property bool vertical: false
|
|
property real padding: 5
|
|
implicitWidth: vertical ? Appearance.sizes.baseVerticalBarWidth : (gridLayout.implicitWidth + padding * 2)
|
|
implicitHeight: vertical ? (gridLayout.implicitHeight + padding * 2) : Appearance.sizes.baseBarHeight
|
|
default property alias items: gridLayout.children
|
|
|
|
Rectangle {
|
|
id: background
|
|
anchors {
|
|
fill: parent
|
|
topMargin: root.vertical ? 0 : 4
|
|
bottomMargin: root.vertical ? 0 : 4
|
|
leftMargin: root.vertical ? 4 : 0
|
|
rightMargin: root.vertical ? 4 : 0
|
|
}
|
|
color: Config.options?.bar.borderless ? "transparent" : Appearance.colors.colLayer1
|
|
radius: Appearance.rounding.small
|
|
}
|
|
|
|
GridLayout {
|
|
id: gridLayout
|
|
columns: root.vertical ? 1 : -1
|
|
anchors {
|
|
verticalCenter: root.vertical ? undefined : parent.verticalCenter
|
|
horizontalCenter: root.vertical ? parent.horizontalCenter : undefined
|
|
left: root.vertical ? undefined : parent.left
|
|
right: root.vertical ? undefined : parent.right
|
|
top: root.vertical ? parent.top : undefined
|
|
bottom: root.vertical ? parent.bottom : undefined
|
|
margins: root.padding
|
|
}
|
|
columnSpacing: 4
|
|
rowSpacing: 12
|
|
}
|
|
} |