Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linphone-desktop
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
linphone-desktop
Commits
4a495b42
Commit
4a495b42
authored
May 12, 2017
by
Ronan Abhamon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat(ui/views/App/Calls/ConferenceManager): in progress
parent
d86be325
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
115 additions
and
81 deletions
+115
-81
resources.qrc
linphone-desktop/resources.qrc
+1
-0
ScrollableListViewField.qml
...ui/modules/Common/Form/Fields/ScrollableListViewField.qml
+20
-0
qmldir
linphone-desktop/ui/modules/Common/qmldir
+73
-72
ConferenceManager.qml
linphone-desktop/ui/views/App/Calls/ConferenceManager.qml
+21
-9
No files found.
linphone-desktop/resources.qrc
View file @
4a495b42
...
...
@@ -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>
...
...
linphone-desktop/ui/modules/Common/Form/Fields/ScrollableListViewField.qml
0 → 100644
View file @
4a495b42
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
}
}
linphone-desktop/ui/modules/Common/qmldir
View file @
4a495b42
...
...
@@ -6,78 +6,79 @@ module Common
# Constants --------------------------------------------------------------------
singleton Colors 1.0 Constants/Colors.qml
singleton Constants 1.0 Constants/Constants.qml
singleton Colors
1.0 Constants/Colors.qml
singleton Constants
1.0 Constants/Constants.qml
# Components -------------------------------------------------------------------
BusyIndicator 1.0 Animations/BusyIndicator.qml
ConfirmDialog 1.0 Dialog/ConfirmDialog.qml
DialogPlus 1.0 Dialog/DialogPlus.qml
ActionBar 1.0 Form/ActionBar.qml
ActionButton 1.0 Form/ActionButton.qml
ActionSwitch 1.0 Form/ActionSwitch.qml
CheckBoxText 1.0 Form/CheckBoxText.qml
ComboBox 1.0 Form/ComboBox.qml
DroppableTextArea 1.0 Form/DroppableTextArea.qml
ListForm 1.0 Form/ListForm.qml
SearchBox 1.0 Form/SearchBox.qml
StaticListForm 1.0 Form/StaticListForm.qml
Switch 1.0 Form/Switch.qml
TransparentTextInput 1.0 Form/TransparentTextInput.qml
ExclusiveButtons 1.0 Form/Buttons/ExclusiveButtons.qml
FileChooserButton 1.0 Form/Buttons/FileChooserButton.qml
TextButtonA 1.0 Form/Buttons/TextButtonA.qml
TextButtonB 1.0 Form/Buttons/TextButtonB.qml
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
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
FormGroup 1.0 Form/Placements/FormGroup.qml
FormLine 1.0 Form/Placements/FormLine.qml
FormTable 1.0 Form/Placements/FormTable.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
TabContainer 1.0 Form/Tab/TabContainer.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
VuMeter 1.0 Indicators/VuMeter.qml
ActionMenu 1.0 Menus/ActionMenu.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
ForceScrollBar 1.0 Misc/ForceScrollBar.qml
Paned 1.0 Misc/Paned.qml
AbstractDropDownMenu 1.0 Popup/AbstractDropDownMenu.qml
DesktopPopup 1.0 Popup/DesktopPopup.qml
DropDownDynamicMenu 1.0 Popup/DropDownDynamicMenu.qml
DropDownMenu 1.0 Popup/DropDownMenu.qml
PopupShadow 1.0 Popup/PopupShadow.qml
TooltipArea 1.0 Tooltip/TooltipArea.qml
ScrollableListView 1.0 View/ScrollableListView.qml
ApplicationWindow 1.0 Window/ApplicationWindow.qml
Window 1.0 Window/Window.qml
BusyIndicator 1.0 Animations/BusyIndicator.qml
ConfirmDialog 1.0 Dialog/ConfirmDialog.qml
DialogPlus 1.0 Dialog/DialogPlus.qml
ActionBar 1.0 Form/ActionBar.qml
ActionButton 1.0 Form/ActionButton.qml
ActionSwitch 1.0 Form/ActionSwitch.qml
CheckBoxText 1.0 Form/CheckBoxText.qml
ComboBox 1.0 Form/ComboBox.qml
DroppableTextArea 1.0 Form/DroppableTextArea.qml
ListForm 1.0 Form/ListForm.qml
SearchBox 1.0 Form/SearchBox.qml
StaticListForm 1.0 Form/StaticListForm.qml
Switch 1.0 Form/Switch.qml
TransparentTextInput 1.0 Form/TransparentTextInput.qml
ExclusiveButtons 1.0 Form/Buttons/ExclusiveButtons.qml
FileChooserButton 1.0 Form/Buttons/FileChooserButton.qml
TextButtonA 1.0 Form/Buttons/TextButtonA.qml
TextButtonB 1.0 Form/Buttons/TextButtonB.qml
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
Form 1.0 Form/Placements/Form.qml
FormEmptyLine 1.0 Form/Placements/FormEmptyLine.qml
FormGroup 1.0 Form/Placements/FormGroup.qml
FormLine 1.0 Form/Placements/FormLine.qml
FormTable 1.0 Form/Placements/FormTable.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
TabContainer 1.0 Form/Tab/TabContainer.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
VuMeter 1.0 Indicators/VuMeter.qml
ActionMenu 1.0 Menus/ActionMenu.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
ForceScrollBar 1.0 Misc/ForceScrollBar.qml
Paned 1.0 Misc/Paned.qml
AbstractDropDownMenu 1.0 Popup/AbstractDropDownMenu.qml
DesktopPopup 1.0 Popup/DesktopPopup.qml
DropDownDynamicMenu 1.0 Popup/DropDownDynamicMenu.qml
DropDownMenu 1.0 Popup/DropDownMenu.qml
PopupShadow 1.0 Popup/PopupShadow.qml
TooltipArea 1.0 Tooltip/TooltipArea.qml
ScrollableListView 1.0 View/ScrollableListView.qml
ApplicationWindow 1.0 Window/ApplicationWindow.qml
Window 1.0 Window/Window.qml
linphone-desktop/ui/views/App/Calls/ConferenceManager.qml
View file @
4a495b42
...
...
@@ -31,17 +31,28 @@ ConfirmDialog {
// Address selector.
// -------------------------------------------------------------------------
Column
{
Layout.
alignment
:
Qt
.
AlignTop
Item
{
Layout.
fillHeight
:
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
'
width
:
parent
.
width
icon
:
'
search
'
onTextChanged
:
Logic
.
updateFilter
(
text
)
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
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment