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

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

parent d86be325
...@@ -192,6 +192,7 @@ ...@@ -192,6 +192,7 @@
<file>ui/modules/Common/Form/Fields/NumericField.qml</file> <file>ui/modules/Common/Form/Fields/NumericField.qml</file>
<file>ui/modules/Common/Form/Fields/PasswordField.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/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/TextAreaField.qml</file>
<file>ui/modules/Common/Form/Fields/TextField.qml</file> <file>ui/modules/Common/Form/Fields/TextField.qml</file>
<file>ui/modules/Common/Form/+linux/SearchBox.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 ...@@ -37,6 +37,7 @@ HexField 1.0 Form/Fields/HexField.qml
NumericField 1.0 Form/Fields/NumericField.qml NumericField 1.0 Form/Fields/NumericField.qml
PasswordField 1.0 Form/Fields/PasswordField.qml PasswordField 1.0 Form/Fields/PasswordField.qml
PortField 1.0 Form/Fields/PortField.qml PortField 1.0 Form/Fields/PortField.qml
ScrollableListViewField 1.0 Form/Fields/ScrollableListViewField.qml
TextAreaField 1.0 Form/Fields/TextAreaField.qml TextAreaField 1.0 Form/Fields/TextAreaField.qml
TextField 1.0 Form/Fields/TextField.qml TextField 1.0 Form/Fields/TextField.qml
......
...@@ -31,18 +31,29 @@ ConfirmDialog { ...@@ -31,18 +31,29 @@ ConfirmDialog {
// Address selector. // Address selector.
// ------------------------------------------------------------------------- // -------------------------------------------------------------------------
Column { Item {
Layout.alignment: Qt.AlignTop Layout.fillHeight: true
Layout.fillWidth: true Layout.fillWidth: true
ColumnLayout {
anchors.fill: parent
spacing: ConferenceManagerStyle.columns.selector.spacing spacing: ConferenceManagerStyle.columns.selector.spacing
TextField { TextField {
id: filter
Layout.fillWidth: true
icon: 'search' icon: 'search'
width: parent.width
onTextChanged: Logic.updateFilter(text) onTextChanged: Logic.updateFilter(text)
} }
ScrollableListViewField {
Layout.fillHeight: true
Layout.fillWidth: true
}
}
} }
// ------------------------------------------------------------------------- // -------------------------------------------------------------------------
...@@ -62,8 +73,9 @@ ConfirmDialog { ...@@ -62,8 +73,9 @@ ConfirmDialog {
// See and remove selected addresses. // See and remove selected addresses.
// ------------------------------------------------------------------------- // -------------------------------------------------------------------------
Column { ScrollableListViewField {
Layout.alignment: Qt.AlignTop Layout.topMargin: filter.height + ConferenceManagerStyle.columns.selector.spacing
Layout.fillHeight: true
Layout.fillWidth: 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