passworddialog: replace eye with font awesome

This commit is contained in:
mmbyday
2019-04-29 01:34:58 -07:00
parent ff6ce6294b
commit 131c42701c
8 changed files with 51 additions and 59 deletions

View File

@@ -32,6 +32,7 @@ import QtQuick.Dialogs 1.2
import QtQuick.Layouts 1.1
import QtQuick.Controls.Styles 1.4
import QtQuick.Window 2.0
import FontAwesome 1.0
import "../components" as MoneroComponents
@@ -136,15 +137,16 @@ Item {
border.width: 1
color: MoneroComponents.Style.blackTheme ? "black" : "#A9FFFFFF"
Image {
width: 26
height: 26
MoneroComponents.Label {
fontSize: 20
text: isHidden ? FontAwesome.eye : FontAwesome.eyeSlash
opacity: 0.7
fillMode: Image.PreserveAspectFit
source: isHidden ? "qrc:///images/eyeShow.png" : "qrc:///images/eyeHide.png"
anchors.verticalCenter: parent.verticalCenter
fontFamily: FontAwesome.fontFamily
anchors.right: parent.right
anchors.rightMargin: 20
anchors.rightMargin: 15
anchors.verticalCenter: parent.verticalCenter
anchors.verticalCenterOffset: 1
MouseArea {
anchors.fill: parent
cursorShape: Qt.PointingHandCursor
@@ -154,13 +156,11 @@ Item {
}
onEntered: {
parent.opacity = 0.9
parent.width = 28
parent.height = 28
parent.fontSize = 24
}
onExited: {
parent.opacity = 0.7
parent.width = 26
parent.height = 26
parent.fontSize = 20
}
}
}
@@ -214,15 +214,15 @@ Item {
border.width: 1
color: MoneroComponents.Style.blackTheme ? "black" : "#A9FFFFFF"
Image {
width: 26
height: 26
MoneroComponents.Label {
fontSize: 20
text: isHidden ? FontAwesome.eye : FontAwesome.eyeSlash
opacity: 0.7
fillMode: Image.PreserveAspectFit
source: isHidden ? "qrc:///images/eyeShow.png" : "qrc:///images/eyeHide.png"
anchors.verticalCenter: parent.verticalCenter
fontFamily: FontAwesome.fontFamily
anchors.right: parent.right
anchors.rightMargin: 20
anchors.rightMargin: 15
anchors.verticalCenter: parent.verticalCenter
anchors.verticalCenterOffset: 1
MouseArea {
anchors.fill: parent
@@ -233,13 +233,11 @@ Item {
}
onEntered: {
parent.opacity = 0.9
parent.width = 28
parent.height = 28
parent.fontSize = 24
}
onExited: {
parent.opacity = 0.7
parent.width = 26
parent.height = 26
parent.fontSize = 20
}
}
}