-
Notifications
You must be signed in to change notification settings - Fork 943
Expand file tree
/
Copy pathPredefinedStatusButton.qml
More file actions
62 lines (51 loc) · 1.64 KB
/
PredefinedStatusButton.qml
File metadata and controls
62 lines (51 loc) · 1.64 KB
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
/*
* SPDX-FileCopyrightText: 2022 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: GPL-2.0-or-later
*/
import QtQuick
import QtQuick.Layouts
import QtQuick.Controls
import "./tray"
AbstractButton {
id: root
hoverEnabled: true
topPadding: Style.standardSpacing
bottomPadding: Style.standardSpacing
leftPadding: Style.standardSpacing / 2
rightPadding: Style.standardSpacing / 2
property int emojiWidth: -1
property int internalSpacing: Style.standardSpacing
property string emoji: ""
property string statusText: ""
property string clearAtText: ""
background: Rectangle {
color: root.hovered || root.checked ? palette.highlight : palette.base
// TODO: fix radius borders - they were showing for each item
// radius: Style.slightlyRoundedButtonRadius
}
contentItem: Row {
spacing: root.internalSpacing
EnforcedPlainTextLabel {
width: root.emojiWidth > 0 ? root.emojiWidth : implicitWidth
text: emoji
horizontalAlignment: Image.AlignHCenter
verticalAlignment: Image.AlignVCenter
}
Row {
spacing: Style.smallSpacing
EnforcedPlainTextLabel {
text: root.statusText
verticalAlignment: Text.AlignVCenter
font.bold: true
}
EnforcedPlainTextLabel {
text: "-"
verticalAlignment: Text.AlignVCenter
}
EnforcedPlainTextLabel {
text: root.clearAtText
verticalAlignment: Text.AlignVCenter
}
}
}
}