102 lines
2.7 KiB
QML
102 lines
2.7 KiB
QML
/*
|
|
* Copyright 2018 Marian Arlt <marianarlt@icloud.com>
|
|
* Copyright 2016 David Edmundson <davidedmundson@kde.org>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU Library General Public License as
|
|
* published by the Free Software Foundation; either version 3 or
|
|
* (at your option) 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 Library General Public
|
|
* License along with this program; if not, write to the
|
|
* Free Software Foundation, Inc.,
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
import QtQuick 2.2
|
|
import QtQuick.Controls 1.4
|
|
|
|
Item {
|
|
id: root
|
|
|
|
anchors.top: parent.bottom
|
|
anchors.topMargin: icon.height
|
|
|
|
property alias text: label.text
|
|
property alias iconSource: icon.source
|
|
property alias font: label.font
|
|
signal clicked
|
|
|
|
activeFocusOnTab: true
|
|
property int iconSize
|
|
opacity: activeFocus ? 1 : 0.6
|
|
|
|
implicitWidth: Math.max(icon.implicitWidth, label.contentWidth)
|
|
implicitHeight: Math.max(icon.implicitHeight + label.height * 2, label.height)
|
|
|
|
Image {
|
|
id: icon
|
|
|
|
anchors {
|
|
top: parent.top
|
|
horizontalCenter: parent.horizontalCenter
|
|
}
|
|
width: config.PowerIconSize || iconSize
|
|
height: config.PowerIconSize || iconSize
|
|
}
|
|
|
|
Label {
|
|
id: label
|
|
|
|
font.pointSize: iconSize / 3
|
|
renderType: Text.QtRendering
|
|
anchors {
|
|
top: icon.bottom
|
|
left: parent.left
|
|
right: parent.right
|
|
topMargin: label.height / 2
|
|
}
|
|
horizontalAlignment: Text.AlignHCenter
|
|
wrapMode: Text.WordWrap
|
|
color: "white"
|
|
font.underline: root.activeFocus
|
|
}
|
|
MouseArea {
|
|
id: mouseArea
|
|
hoverEnabled: true
|
|
cursorShape: Qt.PointingHandCursor
|
|
onClicked: root.clicked()
|
|
onEntered: fadeIn.start()
|
|
onExited: fadeOut.start()
|
|
anchors.fill: root
|
|
}
|
|
|
|
PropertyAnimation {
|
|
id: fadeIn
|
|
target: root
|
|
properties: "opacity"
|
|
to: 1
|
|
duration: 200
|
|
}
|
|
|
|
PropertyAnimation {
|
|
id: fadeOut
|
|
target: root
|
|
properties: "opacity"
|
|
to: 0.6
|
|
duration: 200
|
|
}
|
|
|
|
Keys.onEnterPressed: clicked()
|
|
Keys.onReturnPressed: clicked()
|
|
Keys.onSpacePressed: clicked()
|
|
|
|
Accessible.onPressAction: clicked()
|
|
Accessible.role: Accessible.Button
|
|
Accessible.name: label.text
|
|
}
|