add noctalia and fuzzel
This commit is contained in:
@@ -0,0 +1,52 @@
|
||||
import QtQuick
|
||||
import QtQuick.Layouts
|
||||
import qs.Commons
|
||||
import qs.Widgets
|
||||
|
||||
// Input and button row
|
||||
RowLayout {
|
||||
id: root
|
||||
|
||||
// Public properties
|
||||
property string label: ""
|
||||
property string description: ""
|
||||
property string placeholderText: ""
|
||||
property string text: ""
|
||||
property string actionButtonText: I18n.tr("common.test")
|
||||
property string actionButtonIcon: "media-play"
|
||||
property bool actionButtonEnabled: text !== ""
|
||||
|
||||
// Signals
|
||||
signal editingFinished
|
||||
signal actionClicked
|
||||
|
||||
// Internal properties
|
||||
spacing: Style.marginM
|
||||
|
||||
NTextInput {
|
||||
id: textInput
|
||||
label: root.label
|
||||
description: root.description
|
||||
placeholderText: root.placeholderText
|
||||
text: root.text
|
||||
onTextChanged: root.text = text
|
||||
onEditingFinished: root.editingFinished()
|
||||
Layout.fillWidth: true
|
||||
}
|
||||
|
||||
NButton {
|
||||
Layout.fillWidth: false
|
||||
Layout.alignment: Qt.AlignBottom
|
||||
|
||||
text: root.actionButtonText
|
||||
icon: root.actionButtonIcon
|
||||
backgroundColor: Color.mSecondary
|
||||
textColor: Color.mOnSecondary
|
||||
hoverColor: Color.mHover
|
||||
enabled: root.actionButtonEnabled
|
||||
|
||||
onClicked: {
|
||||
root.actionClicked();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user