1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235
|
/*
* SPDX-FileCopyrightText: 2023 ivan tkachenko <me@ratijas.tk>
*
* SPDX-License-Identifier: LGPL-2.0-or-later
*/
import QtQuick
import QtQuick.Layouts
import QtQuick.Controls as QQC2
import org.kde.kirigami as Kirigami
import org.kde.kirigamiaddons.components as KirigamiComponents
Kirigami.ScrollablePage {
id: root
width: cellSize * columns
height: cellSize * 4
padding: 0
property real cellSize: Kirigami.Units.gridUnit * 12
property int columns: 4
component Cell : Item {
implicitWidth: root.cellSize
implicitHeight: root.cellSize
Rectangle {
anchors.fill: parent
z: -1
color: "transparent"
border.color: Kirigami.ColorUtils.linearInterpolation(Kirigami.Theme.backgroundColor, Kirigami.Theme.textColor, Kirigami.Theme.frameContrast)
border.width: 1
opacity: 0.3
}
}
component CenterSet : Cell {
id: cell
// These are the default values of FloatingButton
property real radius: Kirigami.Units.largeSpacing
property real margins: 0
property alias title: label.text
QQC2.Label {
id: label
anchors.centerIn: parent
horizontalAlignment: Text.AlignHCenter
z: 1
}
KirigamiComponents.FloatingButton {
anchors {
top: parent.top
horizontalCenter: parent.horizontalCenter
}
icon.name: "arrow-up-symbolic"
radius: cell.radius
margins: cell.margins
}
KirigamiComponents.FloatingButton {
anchors {
left: parent.left
verticalCenter: parent.verticalCenter
}
icon.name: "arrow-left-symbolic"
radius: cell.radius
margins: cell.margins
}
KirigamiComponents.FloatingButton {
anchors {
right: parent.right
verticalCenter: parent.verticalCenter
}
icon.name: "arrow-right-symbolic"
radius: cell.radius
margins: cell.margins
}
KirigamiComponents.FloatingButton {
anchors {
bottom: parent.bottom
horizontalCenter: parent.horizontalCenter
}
icon.name: "arrow-down-symbolic"
radius: cell.radius
margins: cell.margins
}
}
component CornerSet : Cell {
id: cell
// These are the default values of FloatingButton
property real radius: Kirigami.Units.largeSpacing
property real margins: 0
property real iconSize: 0
property int focusPolicy: Qt.StrongFocus
property alias title: label.text
QQC2.Label {
id: label
anchors.centerIn: parent
horizontalAlignment: Text.AlignHCenter
z: 1
}
KirigamiComponents.FloatingButton {
anchors {
top: parent.top
left: parent.left
}
icon.name: "go-top-symbolic"
icon.width: cell.iconSize
icon.height: cell.iconSize
radius: cell.radius
margins: cell.margins
focusPolicy: cell.focusPolicy
}
KirigamiComponents.FloatingButton {
anchors {
left: parent.left
bottom: parent.bottom
}
icon.name: "go-bottom-symbolic"
icon.width: cell.iconSize
icon.height: cell.iconSize
radius: cell.radius
margins: cell.margins
focusPolicy: cell.focusPolicy
}
KirigamiComponents.FloatingButton {
anchors {
right: parent.right
top: parent.top
}
icon.name: "search-symbolic"
icon.width: cell.iconSize
icon.height: cell.iconSize
radius: cell.radius
margins: cell.margins
focusPolicy: cell.focusPolicy
}
KirigamiComponents.FloatingButton {
anchors {
right: parent.right
bottom: parent.bottom
}
icon.name: "list-add-symbolic"
icon.width: cell.iconSize
icon.height: cell.iconSize
radius: cell.radius
margins: cell.margins
focusPolicy: cell.focusPolicy
}
}
GridLayout {
columns: root.columns
rowSpacing: 0
columnSpacing: 0
CenterSet {
title: "Default"
}
CenterSet {
title: "Round"
radius: Infinity
}
CenterSet {
title: "Default\nDisabled"
enabled: false
}
CenterSet {
title: "Round\nDisabled"
radius: Infinity
enabled: false
}
CornerSet {
title: "Default"
}
CornerSet {
title: "Round"
radius: Infinity
}
CornerSet {
title: "Default\nDisabled"
enabled: false
}
CornerSet {
title: "Round\nDisabled"
radius: Infinity
enabled: false
}
CornerSet {
title: "Default\nMargins"
margins: Kirigami.Units.gridUnit
}
CornerSet {
title: "Round\nMargins"
margins: Kirigami.Units.gridUnit
radius: Infinity
}
CornerSet {
title: "Default\nBig"
iconSize: Kirigami.Units.iconSizes.large
}
CornerSet {
title: "Round\nBig"
iconSize: Kirigami.Units.iconSizes.large
radius: Infinity
}
CornerSet {
title: "Default\nNo Focus"
focusPolicy: Qt.NoFocus
}
CornerSet {
title: "Round\nNo Focus"
radius: Infinity
focusPolicy: Qt.NoFocus
}
CornerSet {
title: "Default\nMargins\nNo Focus"
margins: Kirigami.Units.gridUnit
focusPolicy: Qt.NoFocus
}
CornerSet {
title: "Default\nMargins\nNo Focus"
radius: Infinity
margins: Kirigami.Units.gridUnit
focusPolicy: Qt.NoFocus
}
}
}
|