2018-01-07 05:20:45 +00:00
|
|
|
// Copyright (c) 2014-2018, The Monero Project
|
2016-02-02 21:09:45 +00:00
|
|
|
//
|
|
|
|
// All rights reserved.
|
|
|
|
//
|
|
|
|
// Redistribution and use in source and binary forms, with or without modification, are
|
|
|
|
// permitted provided that the following conditions are met:
|
|
|
|
//
|
|
|
|
// 1. Redistributions of source code must retain the above copyright notice, this list of
|
|
|
|
// conditions and the following disclaimer.
|
|
|
|
//
|
|
|
|
// 2. Redistributions in binary form must reproduce the above copyright notice, this list
|
|
|
|
// of conditions and the following disclaimer in the documentation and/or other
|
|
|
|
// materials provided with the distribution.
|
|
|
|
//
|
|
|
|
// 3. Neither the name of the copyright holder nor the names of its contributors may be
|
|
|
|
// used to endorse or promote products derived from this software without specific
|
|
|
|
// prior written permission.
|
|
|
|
//
|
|
|
|
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
|
|
|
|
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
|
|
// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
|
|
|
|
// THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
|
|
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
|
|
|
// STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
|
|
|
|
// THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
2016-01-25 21:17:55 +00:00
|
|
|
|
|
|
|
import QtQuick 2.0
|
2016-10-01 01:05:26 +00:00
|
|
|
import QtQuick.Controls 1.4
|
|
|
|
import QtQuick.Controls.Styles 1.4
|
2017-01-30 09:37:14 +00:00
|
|
|
import QtQuick.Layouts 1.1
|
2016-01-25 21:17:55 +00:00
|
|
|
|
2017-01-30 09:37:14 +00:00
|
|
|
ColumnLayout {
|
2016-01-25 21:17:55 +00:00
|
|
|
property alias password: password.text
|
2016-10-01 01:05:26 +00:00
|
|
|
property alias placeholderText: password.placeholderText
|
2016-01-25 21:17:55 +00:00
|
|
|
signal changed(string password)
|
|
|
|
|
|
|
|
|
2016-10-01 01:05:26 +00:00
|
|
|
TextField {
|
2017-01-30 09:37:14 +00:00
|
|
|
Layout.fillWidth: true
|
2016-01-25 21:17:55 +00:00
|
|
|
id : password
|
2016-10-01 01:05:26 +00:00
|
|
|
focus:true
|
2016-01-25 21:17:55 +00:00
|
|
|
font.family: "Arial"
|
2017-08-06 15:03:16 +00:00
|
|
|
font.pixelSize: (isMobile) ? 25 * scaleRatio : 26 * scaleRatio
|
2016-01-25 21:17:55 +00:00
|
|
|
echoMode: TextInput.Password
|
2016-10-01 01:05:26 +00:00
|
|
|
style: TextFieldStyle {
|
|
|
|
renderType: Text.NativeRendering
|
|
|
|
textColor: "#35B05A"
|
|
|
|
passwordCharacter: "•"
|
|
|
|
background: Rectangle {
|
|
|
|
radius: 0
|
|
|
|
border.width: 0
|
|
|
|
}
|
|
|
|
}
|
2016-12-25 22:57:32 +00:00
|
|
|
onTextChanged: changed(text)
|
2016-10-01 01:05:26 +00:00
|
|
|
|
2016-01-25 21:17:55 +00:00
|
|
|
Keys.onReleased: {
|
|
|
|
changed(text)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Rectangle {
|
2017-01-30 09:37:14 +00:00
|
|
|
Layout.fillWidth:true
|
2016-01-25 21:17:55 +00:00
|
|
|
height: 1
|
|
|
|
color: "#DBDBDB"
|
|
|
|
}
|
|
|
|
}
|