163 lines
4.9 KiB
QML
163 lines
4.9 KiB
QML
/***************************************************************************
|
|
* Copyright (c) 2013 Nikita Mikhaylov <nslqqq@gmail.com>
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person
|
|
* obtaining a copy of this software and associated documentation
|
|
* files (the "Software"), to deal in the Software without restriction,
|
|
* including without limitation the rights to use, copy, modify, merge,
|
|
* publish, distribute, sublicense, and/or sell copies of the Software,
|
|
* and to permit persons to whom the Software is furnished to do so,
|
|
* subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included
|
|
* in all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
|
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
|
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
|
|
* OR OTHER DEALINGS IN THE SOFTWARE.
|
|
*
|
|
***************************************************************************/
|
|
|
|
import QtQuick 2.0
|
|
|
|
FocusScope {
|
|
id: container
|
|
width: 80; height: 30
|
|
|
|
property alias borderWidth: txtMain.borderWidth
|
|
property alias color: txtMain.color
|
|
property alias borderColor: txtMain.borderColor
|
|
property alias focusColor: txtMain.focusColor
|
|
property alias hoverColor: txtMain.hoverColor
|
|
property alias radius: txtMain.radius
|
|
property alias font: txtMain.font
|
|
property alias textColor: txtMain.textColor
|
|
property alias echoMode: txtMain.echoMode
|
|
property alias text: txtMain.text
|
|
|
|
property alias image: img.source
|
|
property double imageFadeIn: 300
|
|
property double imageFadeOut: 200
|
|
|
|
property alias tooltipEnabled: tooltip.visible
|
|
property alias tooltipText: tooltipText.text
|
|
property alias tooltipFG: tooltipText.color
|
|
property alias tooltipBG: tooltip.color
|
|
|
|
SaltTextBox {
|
|
id: txtMain
|
|
width: parent.width; height: parent.height
|
|
font.pixelSize: 14
|
|
|
|
echoMode: TextInput.Password
|
|
|
|
focus: true
|
|
}
|
|
|
|
Image {
|
|
id: img
|
|
opacity: 0
|
|
state: keyboard.capsLock ? "activated" : ""
|
|
anchors.right: parent.right
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
fillMode: Image.PreserveAspectFit
|
|
|
|
smooth: true
|
|
height: parent.height * 0.8
|
|
|
|
source: "warning.png"
|
|
sourceSize.width: width
|
|
sourceSize.height: height
|
|
|
|
anchors.rightMargin: 0.3 * width
|
|
|
|
states: [
|
|
State {
|
|
name: "activated"
|
|
PropertyChanges { target: img; opacity: 1; }
|
|
},
|
|
State {
|
|
name: ""
|
|
PropertyChanges { target: img; opacity: 0; }
|
|
}
|
|
]
|
|
|
|
transitions: [
|
|
Transition {
|
|
to: "activated"
|
|
NumberAnimation { target: img; property: "opacity"; from: 0; to: 1; duration: imageFadeIn; }
|
|
},
|
|
|
|
Transition {
|
|
to: ""
|
|
NumberAnimation { target: img; property: "opacity"; from: 1; to: 0; duration: imageFadeOut; }
|
|
}
|
|
]
|
|
|
|
MouseArea {
|
|
id: hoverArea
|
|
|
|
anchors.fill: parent
|
|
hoverEnabled: true
|
|
cursorShape: Qt.ArrowCursor
|
|
|
|
onEntered: {
|
|
tooltip.x = mouseX + img.x + 10
|
|
tooltip.y = mouseY + 10
|
|
}
|
|
|
|
onPositionChanged: {
|
|
tooltip.x = mouseX + img.x + 10
|
|
tooltip.y = mouseY + 10
|
|
}
|
|
}
|
|
}
|
|
|
|
Rectangle {
|
|
id: tooltip
|
|
color: "lightblue"
|
|
border.color: "black"
|
|
border.width: 1
|
|
|
|
width: 1.1 * tooltipText.implicitWidth
|
|
height: 1.4 * tooltipText.implicitHeight
|
|
radius: 2
|
|
opacity: 0
|
|
|
|
state: hoverArea.containsMouse && img.state == "activated" ? "activated" : ""
|
|
|
|
states: [
|
|
State {
|
|
name: "activated"
|
|
PropertyChanges { target: tooltip; opacity: 1 }
|
|
},
|
|
State {
|
|
name: ""
|
|
PropertyChanges { target: tooltip; opacity: 0 }
|
|
}
|
|
]
|
|
|
|
transitions: [
|
|
Transition {
|
|
to: "activated"
|
|
NumberAnimation { target: tooltip; property: "opacity"; from: 0; to: 1; duration: imageFadeIn; }
|
|
},
|
|
|
|
Transition {
|
|
to: ""
|
|
NumberAnimation { target: tooltip; property: "opacity"; from: 1; to: 0; duration: imageFadeOut; }
|
|
}
|
|
]
|
|
|
|
Text {
|
|
id: tooltipText
|
|
anchors.centerIn: parent;
|
|
text: textConstants.capslockWarning
|
|
}
|
|
}
|
|
}
|