2014-10-02 15:29:27 +02:00
|
|
|
import QtQuick 2.0
|
|
|
|
|
|
|
|
import org.kde.plasma.components 2.0 as PlasmaComponents
|
|
|
|
|
|
|
|
import QtQuick.Controls 1.3
|
|
|
|
|
2019-12-09 17:33:23 +01:00
|
|
|
ComponentBase {
|
2014-10-02 15:29:27 +02:00
|
|
|
id: root
|
|
|
|
property string longText: "This is a longer sentence"
|
|
|
|
|
|
|
|
Flow {
|
|
|
|
anchors.fill: parent
|
|
|
|
anchors.margins: 20
|
|
|
|
spacing: 20
|
|
|
|
|
|
|
|
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
|
|
|
}
|