2020-08-20 00:14:19 +02:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: 2014 David Edmundson <kde@davidedmundson.co.uk>
|
|
|
|
* SPDX-FileCopyrightText: 2020 Noah Davis <noahadvs@gmail.com>
|
|
|
|
* SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
|
|
|
|
*/
|
2014-10-02 15:29:27 +02:00
|
|
|
import QtQuick 2.0
|
2020-08-18 11:45:23 +02:00
|
|
|
import QtQuick.Layouts 1.12
|
2014-10-02 15:29:27 +02:00
|
|
|
import QtQuick.Controls 1.3
|
2020-08-18 11:45:23 +02:00
|
|
|
import org.kde.plasma.core 2.0 as PlasmaCore
|
|
|
|
import org.kde.plasma.components 2.0 as PlasmaComponents
|
2014-10-02 15:29:27 +02:00
|
|
|
|
2019-12-09 17:33:23 +01:00
|
|
|
ComponentBase {
|
2014-10-02 15:29:27 +02:00
|
|
|
id: root
|
2020-08-18 11:45:23 +02:00
|
|
|
title: "Plasma Components 2 TextField"
|
2014-10-02 15:29:27 +02:00
|
|
|
property string longText: "This is a longer sentence"
|
|
|
|
|
2020-08-18 11:45:23 +02:00
|
|
|
contentItem: Flow {
|
|
|
|
spacing: PlasmaCore.Units.gridUnit
|
2014-10-02 15:29:27 +02:00
|
|
|
|
|
|
|
PlasmaComponents.TextField {
|
|
|
|
placeholderText: longText
|
|
|
|
}
|
|
|
|
|
|
|
|
PlasmaComponents.TextField {
|
|
|
|
text: root.longText
|
|
|
|
}
|
|
|
|
|
|
|
|
PlasmaComponents.TextField {
|
|
|
|
text: root.longText
|
|
|
|
clearButtonShown: true
|
|
|
|
}
|
|
|
|
|
|
|
|
PlasmaComponents.TextField {
|
|
|
|
width: 400
|
|
|
|
placeholderText: longText
|
|
|
|
}
|
2016-08-15 15:31:05 +02:00
|
|
|
|
|
|
|
PlasmaComponents.TextField {
|
|
|
|
text: root.longText
|
|
|
|
echoMode: TextInput.Password
|
|
|
|
revealPasswordButtonShown: true
|
|
|
|
}
|
|
|
|
|
|
|
|
PlasmaComponents.TextField {
|
|
|
|
text: longText
|
|
|
|
echoMode: TextInput.Password
|
|
|
|
revealPasswordButtonShown: true
|
|
|
|
clearButtonShown: true
|
|
|
|
}
|
|
|
|
|
|
|
|
PlasmaComponents.TextField {
|
|
|
|
text: longText
|
|
|
|
LayoutMirroring.enabled: true
|
|
|
|
LayoutMirroring.childrenInherit: true
|
|
|
|
clearButtonShown: true
|
|
|
|
}
|
2014-10-02 15:29:27 +02:00
|
|
|
}
|
2016-08-15 15:31:05 +02:00
|
|
|
}
|