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
}
}
...@@ -6,78 +6,79 @@ module Common ...@@ -6,78 +6,79 @@ module Common
# Constants -------------------------------------------------------------------- # Constants --------------------------------------------------------------------
singleton Colors 1.0 Constants/Colors.qml singleton Colors 1.0 Constants/Colors.qml
singleton Constants 1.0 Constants/Constants.qml singleton Constants 1.0 Constants/Constants.qml
# Components ------------------------------------------------------------------- # Components -------------------------------------------------------------------
BusyIndicator 1.0 Animations/BusyIndicator.qml BusyIndicator 1.0 Animations/BusyIndicator.qml
ConfirmDialog 1.0 Dialog/ConfirmDialog.qml ConfirmDialog 1.0 Dialog/ConfirmDialog.qml
DialogPlus 1.0 Dialog/DialogPlus.qml DialogPlus 1.0 Dialog/DialogPlus.qml
ActionBar 1.0 Form/ActionBar.qml ActionBar 1.0 Form/ActionBar.qml
ActionButton 1.0 Form/ActionButton.qml ActionButton 1.0 Form/ActionButton.qml
ActionSwitch 1.0 Form/ActionSwitch.qml ActionSwitch 1.0 Form/ActionSwitch.qml
CheckBoxText 1.0 Form/CheckBoxText.qml CheckBoxText 1.0 Form/CheckBoxText.qml
ComboBox 1.0 Form/ComboBox.qml ComboBox 1.0 Form/ComboBox.qml
DroppableTextArea 1.0 Form/DroppableTextArea.qml DroppableTextArea 1.0 Form/DroppableTextArea.qml
ListForm 1.0 Form/ListForm.qml ListForm 1.0 Form/ListForm.qml
SearchBox 1.0 Form/SearchBox.qml SearchBox 1.0 Form/SearchBox.qml
StaticListForm 1.0 Form/StaticListForm.qml StaticListForm 1.0 Form/StaticListForm.qml
Switch 1.0 Form/Switch.qml Switch 1.0 Form/Switch.qml
TransparentTextInput 1.0 Form/TransparentTextInput.qml TransparentTextInput 1.0 Form/TransparentTextInput.qml
ExclusiveButtons 1.0 Form/Buttons/ExclusiveButtons.qml ExclusiveButtons 1.0 Form/Buttons/ExclusiveButtons.qml
FileChooserButton 1.0 Form/Buttons/FileChooserButton.qml FileChooserButton 1.0 Form/Buttons/FileChooserButton.qml
TextButtonA 1.0 Form/Buttons/TextButtonA.qml TextButtonA 1.0 Form/Buttons/TextButtonA.qml
TextButtonB 1.0 Form/Buttons/TextButtonB.qml TextButtonB 1.0 Form/Buttons/TextButtonB.qml
HexField 1.0 Form/Fields/HexField.qml 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
TextAreaField 1.0 Form/Fields/TextAreaField.qml ScrollableListViewField 1.0 Form/Fields/ScrollableListViewField.qml
TextField 1.0 Form/Fields/TextField.qml TextAreaField 1.0 Form/Fields/TextAreaField.qml
TextField 1.0 Form/Fields/TextField.qml
Form 1.0 Form/Placements/Form.qml
FormEmptyLine 1.0 Form/Placements/FormEmptyLine.qml Form 1.0 Form/Placements/Form.qml
FormGroup 1.0 Form/Placements/FormGroup.qml FormEmptyLine 1.0 Form/Placements/FormEmptyLine.qml
FormLine 1.0 Form/Placements/FormLine.qml FormGroup 1.0 Form/Placements/FormGroup.qml
FormTable 1.0 Form/Placements/FormTable.qml FormLine 1.0 Form/Placements/FormLine.qml
FormTableEntry 1.0 Form/Placements/FormTableEntry.qml FormTable 1.0 Form/Placements/FormTable.qml
FormTableLine 1.0 Form/Placements/FormTableLine.qml FormTableEntry 1.0 Form/Placements/FormTableEntry.qml
FormTableLine 1.0 Form/Placements/FormTableLine.qml
TabBar 1.0 Form/Tab/TabBar.qml
TabButton 1.0 Form/Tab/TabButton.qml TabBar 1.0 Form/Tab/TabBar.qml
TabContainer 1.0 Form/Tab/TabContainer.qml TabButton 1.0 Form/Tab/TabButton.qml
TabContainer 1.0 Form/Tab/TabContainer.qml
DragBox 1.0 Helpers/DragBox.qml
InvertedMouseArea 1.0 Helpers/InvertedMouseArea.qml DragBox 1.0 Helpers/DragBox.qml
InvertedMouseArea 1.0 Helpers/InvertedMouseArea.qml
Icon 1.0 Image/Icon.qml
RoundedImage 1.0 Image/RoundedImage.qml Icon 1.0 Image/Icon.qml
RoundedImage 1.0 Image/RoundedImage.qml
VuMeter 1.0 Indicators/VuMeter.qml
VuMeter 1.0 Indicators/VuMeter.qml
ActionMenu 1.0 Menus/ActionMenu.qml
ActionMenuEntry 1.0 Menus/ActionMenuEntry.qml ActionMenu 1.0 Menus/ActionMenu.qml
Menu 1.0 Menus/Menu.qml ActionMenuEntry 1.0 Menus/ActionMenuEntry.qml
Menu 1.0 Menus/Menu.qml
Borders 1.0 Misc/Borders.qml
Collapse 1.0 Misc/Collapse.qml Borders 1.0 Misc/Borders.qml
ForceScrollBar 1.0 Misc/ForceScrollBar.qml Collapse 1.0 Misc/Collapse.qml
Paned 1.0 Misc/Paned.qml ForceScrollBar 1.0 Misc/ForceScrollBar.qml
Paned 1.0 Misc/Paned.qml
AbstractDropDownMenu 1.0 Popup/AbstractDropDownMenu.qml
DesktopPopup 1.0 Popup/DesktopPopup.qml AbstractDropDownMenu 1.0 Popup/AbstractDropDownMenu.qml
DropDownDynamicMenu 1.0 Popup/DropDownDynamicMenu.qml DesktopPopup 1.0 Popup/DesktopPopup.qml
DropDownMenu 1.0 Popup/DropDownMenu.qml DropDownDynamicMenu 1.0 Popup/DropDownDynamicMenu.qml
PopupShadow 1.0 Popup/PopupShadow.qml DropDownMenu 1.0 Popup/DropDownMenu.qml
PopupShadow 1.0 Popup/PopupShadow.qml
TooltipArea 1.0 Tooltip/TooltipArea.qml
TooltipArea 1.0 Tooltip/TooltipArea.qml
ScrollableListView 1.0 View/ScrollableListView.qml
ScrollableListView 1.0 View/ScrollableListView.qml
ApplicationWindow 1.0 Window/ApplicationWindow.qml
Window 1.0 Window/Window.qml ApplicationWindow 1.0 Window/ApplicationWindow.qml
Window 1.0 Window/Window.qml
...@@ -31,17 +31,28 @@ ConfirmDialog { ...@@ -31,17 +31,28 @@ ConfirmDialog {
// Address selector. // Address selector.
// ------------------------------------------------------------------------- // -------------------------------------------------------------------------
Column { Item {
Layout.alignment: Qt.AlignTop Layout.fillHeight: true
Layout.fillWidth: true Layout.fillWidth: true
spacing: ConferenceManagerStyle.columns.selector.spacing ColumnLayout {
anchors.fill: parent
spacing: ConferenceManagerStyle.columns.selector.spacing
TextField {
id: filter
Layout.fillWidth: true
TextField { 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