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
74e52ac6
Commit
74e52ac6
authored
May 29, 2017
by
Ronan Abhamon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat(ui/views/App/Calls/Conference): add vu meters
parent
fd6ca7f2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
1 deletion
+24
-1
Calls.js
linphone-desktop/ui/modules/Linphone/Calls/Calls.js
+4
-0
Conference.qml
linphone-desktop/ui/views/App/Calls/Conference.qml
+20
-1
No files found.
linphone-desktop/ui/modules/Linphone/Calls/Calls.js
View file @
74e52ac6
...
...
@@ -131,6 +131,10 @@ function handleCountChanged (count) {
var
call
=
calls
.
_selectedCall
if
(
call
==
null
)
{
if
(
calls
.
conferenceModel
.
count
>
0
)
{
return
}
var
model
=
calls
.
model
var
index
=
count
-
1
updateSelectedCall
(
model
.
data
(
model
.
index
(
index
,
0
)),
index
)
...
...
linphone-desktop/ui/views/App/Calls/Conference.qml
View file @
74e52ac6
...
...
@@ -136,7 +136,10 @@ Rectangle {
}
Avatar
{
readonly
property
int
size
:
Math
.
min
(
parent
.
width
,
parent
.
height
-
contactDescription
.
height
-
parent
.
spacing
)
readonly
property
int
size
:
Math
.
min
(
parent
.
width
,
parent
.
height
-
contactDescription
.
height
-
parent
.
spacing
)
anchors.horizontalCenter
:
parent
.
horizontalCenter
...
...
@@ -158,6 +161,22 @@ Rectangle {
username
:
contactDescription
.
username
}
}
VuMeter
{
anchors
{
bottom
:
parent
.
bottom
left
:
parent
.
left
leftMargin
:
ConferenceStyle
.
grid
.
spacing
bottomMargin
:
ConferenceStyle
.
grid
.
spacing
}
Timer
{
interval
:
50
repeat
:
true
onTriggered
:
parent
.
value
=
$call
.
speakerVu
}
}
}
}
}
...
...
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