Warning, /sdk/cutehmi/extensions/CuteHMI/LockScreen.2/PasswordInput.qml is written in an unsupported language. File is not indexed.

0001 import QtQuick.Controls 2.12
0002 
0003 Container {
0004         property string text: ""
0005 
0006         property bool autoAccept: true
0007 
0008         property bool discretion: true
0009 
0010         signal accepted()
0011 
0012         function reset() {
0013                 text = ""
0014         }
0015 
0016         function accept() {
0017                 accepted()
0018         }
0019 }
0020 
0021 //(c)C: Copyright © 2021, Michał Policht <michal@policht.pl>. All rights reserved.
0022 //(c)C: SPDX-License-Identifier: LGPL-3.0-or-later OR MIT
0023 //(c)C: This file is a part of CuteHMI.
0024 //(c)C: CuteHMI is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
0025 //(c)C: CuteHMI 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 Lesser General Public License for more details.
0026 //(c)C: You should have received a copy of the GNU Lesser General Public License along with CuteHMI.  If not, see <https://www.gnu.org/licenses/>.
0027 //(c)C: Additionally, this file is licensed under terms of MIT license as expressed below.
0028 //(c)C: 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:
0029 //(c)C: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
0030 //(c)C: 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.