Commit 4a495b42 authored by Ronan Abhamon's avatar Ronan Abhamon

feat(ui/views/App/Calls/ConferenceManager): in progress

parent d86be325
......@@ -192,6 +192,7 @@
<file>ui/modules/Common/Form/Fields/NumericField.qml</file>
<file>ui/modules/Common/Form/Fields/PasswordField.qml</file>
<file>ui/modules/Common/Form/Fields/PortField.qml</file>
<file>ui/modules/Common/Form/Fields/ScrollableListViewField.qml</file>
<file>ui/modules/Common/Form/Fields/TextAreaField.qml</file>
<file>ui/modules/Common/Form/Fields/TextField.qml</file>
<file>ui/modules/Common/Form/+linux/SearchBox.qml</file>
......
import QtQuick 2.7
import Common 1.0
import Common.Styles 1.0
// =============================================================================
Rectangle {
border {
color: TextFieldStyle.background.border.color.normal
width: TextFieldStyle.background.border.width
}
color: TextFieldStyle.background.color.normal
radius: TextFieldStyle.background.radius
ScrollableListView {
anchors.fill: parent
}
}
......@@ -37,6 +37,7 @@ HexField 1.0 Form/Fields/HexField.qml
NumericField 1.0 Form/Fields/NumericField.qml
PasswordField 1.0 Form/Fields/PasswordField.qml
PortField 1.0 Form/Fields/PortField.qml
ScrollableListViewField 1.0 Form/Fields/ScrollableListViewField.qml
TextAreaField 1.0 Form/Fields/TextAreaField.qml
TextField 1.0 Form/Fields/TextField.qml
......
......@@ -31,18 +31,29 @@ ConfirmDialog {
// Address selector.
// -------------------------------------------------------------------------
Column {
Layout.alignment: Qt.AlignTop
Item {
Layout.fillHeight: true
Layout.fillWidth: true
ColumnLayout {
anchors.fill: parent
spacing: ConferenceManagerStyle.columns.selector.spacing
TextField {
id: filter
Layout.fillWidth: true
icon: 'search'
width: parent.width
onTextChanged: Logic.updateFilter(text)
}
ScrollableListViewField {
Layout.fillHeight: true
Layout.fillWidth: true
}
}
}
// -------------------------------------------------------------------------
......@@ -62,8 +73,9 @@ ConfirmDialog {
// See and remove selected addresses.
// -------------------------------------------------------------------------
Column {
Layout.alignment: Qt.AlignTop
ScrollableListViewField {
Layout.topMargin: filter.height + ConferenceManagerStyle.columns.selector.spacing
Layout.fillHeight: true
Layout.fillWidth: true
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment