mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 19:08:58 +03:00
Use an ImageButton for the StatusIndicator
Incidentally, this allows ImageButtons to not change color.
This commit is contained in:
parent
f520f8ce16
commit
139ab146bb
2 changed files with 31 additions and 32 deletions
|
@ -8,6 +8,7 @@ AbstractButton {
|
||||||
property string image: undefined
|
property string image: undefined
|
||||||
property color highlightColor: colors.highlight
|
property color highlightColor: colors.highlight
|
||||||
property color buttonTextColor: colors.buttonText
|
property color buttonTextColor: colors.buttonText
|
||||||
|
property bool changeColorOnHover: true
|
||||||
|
|
||||||
focusPolicy: Qt.NoFocus
|
focusPolicy: Qt.NoFocus
|
||||||
width: 16
|
width: 16
|
||||||
|
@ -18,7 +19,12 @@ AbstractButton {
|
||||||
|
|
||||||
// Workaround, can't get icon.source working for now...
|
// Workaround, can't get icon.source working for now...
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
source: "image://colorimage/" + image + "?" + (button.hovered ? highlightColor : buttonTextColor)
|
source: {
|
||||||
|
var src = "image://colorimage/" + image;
|
||||||
|
if (changeColorOnHover)
|
||||||
|
src += "?" + (button.hovered ? highlightColor : buttonTextColor);
|
||||||
|
return src;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
MouseArea {
|
MouseArea {
|
||||||
|
|
|
@ -2,16 +2,16 @@ import QtQuick 2.5
|
||||||
import QtQuick.Controls 2.1
|
import QtQuick.Controls 2.1
|
||||||
import im.nheko 1.0
|
import im.nheko 1.0
|
||||||
|
|
||||||
Rectangle {
|
ImageButton {
|
||||||
id: indicator
|
id: indicator
|
||||||
|
|
||||||
property int state: 0
|
property int state: 0
|
||||||
property string eventId
|
property string eventId
|
||||||
|
|
||||||
color: "transparent"
|
|
||||||
width: 16
|
width: 16
|
||||||
height: 16
|
height: 16
|
||||||
ToolTip.visible: ma.containsMouse && state != MtxEvent.Empty
|
hoverEnabled: true
|
||||||
|
ToolTip.visible: hovered && state != MtxEvent.Empty
|
||||||
ToolTip.text: {
|
ToolTip.text: {
|
||||||
switch (state) {
|
switch (state) {
|
||||||
case MtxEvent.Failed:
|
case MtxEvent.Failed:
|
||||||
|
@ -27,37 +27,30 @@ Rectangle {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
MouseArea {
|
onClicked: {
|
||||||
id: ma
|
if (state == MtxEvent.Read)
|
||||||
|
TimelineManager.timeline.readReceiptsAction(eventId);
|
||||||
|
}
|
||||||
|
|
||||||
anchors.fill: parent
|
image: {
|
||||||
hoverEnabled: true
|
switch (state) {
|
||||||
|
case MtxEvent.Failed:
|
||||||
onClicked: {
|
return ":/icons/icons/ui/remove-symbol.png";
|
||||||
if (indicator.state == MtxEvent.Read)
|
case MtxEvent.Sent:
|
||||||
TimelineManager.timeline.readReceiptsAction(indicator.eventId);
|
return ":/icons/icons/ui/clock.png";
|
||||||
|
case MtxEvent.Received:
|
||||||
|
return ":/icons/icons/ui/checkmark.png";
|
||||||
|
case MtxEvent.Read:
|
||||||
|
return ":/icons/icons/ui/double-tick-indicator.png";
|
||||||
|
default:
|
||||||
|
return "";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Image {
|
changeColorOnHover: {
|
||||||
id: stateImg
|
if (state == MtxEvent.Read)
|
||||||
|
return true;
|
||||||
// Workaround, can't get icon.source working for now...
|
else
|
||||||
anchors.fill: parent
|
return false;
|
||||||
source: {
|
|
||||||
switch (indicator.state) {
|
|
||||||
case MtxEvent.Failed:
|
|
||||||
return "image://colorimage/:/icons/icons/ui/remove-symbol.png?" + colors.buttonText;
|
|
||||||
case MtxEvent.Sent:
|
|
||||||
return "image://colorimage/:/icons/icons/ui/clock.png?" + colors.buttonText;
|
|
||||||
case MtxEvent.Received:
|
|
||||||
return "image://colorimage/:/icons/icons/ui/checkmark.png?" + colors.buttonText;
|
|
||||||
case MtxEvent.Read:
|
|
||||||
return "image://colorimage/:/icons/icons/ui/double-tick-indicator.png?" + colors.buttonText;
|
|
||||||
default:
|
|
||||||
return "";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue