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
1b11e400
Commit
1b11e400
authored
May 29, 2017
by
Ronan Abhamon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat(ui/views/App/Calls/ConferenceManager): in progress
parent
1982234f
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
27 additions
and
19 deletions
+27
-19
en.ts
linphone-desktop/assets/languages/en.ts
+1
-1
fr.ts
linphone-desktop/assets/languages/fr.ts
+1
-1
resources.qrc
linphone-desktop/resources.qrc
+1
-0
Calls.js
linphone-desktop/ui/modules/Linphone/Calls/Calls.js
+2
-0
ConferenceControls.qml
...-desktop/ui/modules/Linphone/Calls/ConferenceControls.qml
+7
-16
ConferenceControlsStyle.qml
...modules/Linphone/Styles/Calls/ConferenceControlsStyle.qml
+13
-0
qmldir
linphone-desktop/ui/modules/Linphone/Styles/qmldir
+2
-1
No files found.
linphone-desktop/assets/languages/en.ts
View file @
1b11e400
...
...
@@ -368,7 +368,7 @@ Server url not configured.</translation>
<
name
>
ConferenceControls
<
/name
>
<
message
>
<
source
>
conference
<
/source
>
<
translation
type
=
"
unfinished
"
>
<
/translation
>
<
translation
>
CONFERENCE
<
/translation
>
<
/message
>
<
/context
>
<
context
>
...
...
linphone-desktop/assets/languages/fr.ts
View file @
1b11e400
...
...
@@ -368,7 +368,7 @@ Url du serveur non configurée.</translation>
<
name
>
ConferenceControls
<
/name
>
<
message
>
<
source
>
conference
<
/source
>
<
translation
type
=
"
unfinished
"
>
<
/translation
>
<
translation
>
CONF
É
RENCE
<
/translation
>
<
/message
>
<
/context
>
<
context
>
...
...
linphone-desktop/resources.qrc
View file @
1b11e400
...
...
@@ -327,6 +327,7 @@
<file>
ui/modules/Linphone/Styles/Calls/CallControlsStyle.qml
</file>
<file>
ui/modules/Linphone/Styles/Calls/CallsStyle.qml
</file>
<file>
ui/modules/Linphone/Styles/Calls/CallStatisticsStyle.qml
</file>
<file>
ui/modules/Linphone/Styles/Calls/ConferenceControlsStyle.qml
</file>
<file>
ui/modules/Linphone/Styles/Chat/ChatStyle.qml
</file>
<file>
ui/modules/Linphone/Styles/Codecs/CodecsViewerStyle.qml
</file>
<file>
ui/modules/Linphone/Styles/Contact/AvatarStyle.qml
</file>
...
...
linphone-desktop/ui/modules/Linphone/Calls/Calls.js
View file @
1b11e400
...
...
@@ -107,6 +107,8 @@ function resetSelectedCall () {
function
setIndexWithCall
(
call
)
{
var
count
=
calls
.
count
var
model
=
calls
.
model
for
(
var
i
=
0
;
i
<
count
;
i
++
)
{
if
(
call
===
model
.
data
(
model
.
index
(
i
,
0
)))
{
updateSelectedCall
(
call
,
i
)
...
...
linphone-desktop/ui/modules/Linphone/Calls/ConferenceControls.qml
View file @
1b11e400
...
...
@@ -12,7 +12,6 @@ Rectangle {
// ---------------------------------------------------------------------------
property
alias
signIcon
:
signIcon
.
icon
property
alias
textColor
:
text
.
color
// ---------------------------------------------------------------------------
...
...
@@ -21,8 +20,8 @@ Rectangle {
// ---------------------------------------------------------------------------
color
:
C
all
ControlsStyle
.
color
height
:
C
all
ControlsStyle
.
height
color
:
C
onference
ControlsStyle
.
color
height
:
C
onference
ControlsStyle
.
height
MouseArea
{
anchors.fill
:
parent
...
...
@@ -30,22 +29,11 @@ Rectangle {
onClicked
:
callControls
.
clicked
()
}
Icon
{
id
:
signIcon
anchors
{
left
:
parent
.
left
top
:
parent
.
top
}
iconSize
:
CallControlsStyle
.
signSize
}
RowLayout
{
anchors
{
fill
:
parent
leftMargin
:
C
all
ControlsStyle
.
leftMargin
rightMargin
:
C
all
ControlsStyle
.
rightMargin
leftMargin
:
C
onference
ControlsStyle
.
leftMargin
rightMargin
:
C
onference
ControlsStyle
.
rightMargin
}
spacing
:
0
...
...
@@ -56,7 +44,10 @@ Rectangle {
Layout.fillHeight
:
true
Layout.fillWidth
:
true
font.bold
:
true
text
:
qsTr
(
'
conference
'
)
verticalAlignment
:
Text
.
AlignVCenter
}
}
}
linphone-desktop/ui/modules/Linphone/Styles/Calls/ConferenceControlsStyle.qml
0 → 100644
View file @
1b11e400
pragma
Singleton
import
QtQuick
2.7
import
Common
1.0
// =============================================================================
QtObject
{
property
color
color
:
Colors
.
e
property
int
height
:
60
property
int
leftMargin
:
12
property
int
rightMargin
:
12
}
linphone-desktop/ui/modules/Linphone/Styles/qmldir
View file @
1b11e400
...
...
@@ -11,9 +11,10 @@ singleton RequestBlockStyle 1.0 Blocks/RequestBlockStyle.qml
singleton ChatStyle 1.0 Chat/ChatStyle.qml
singleton CallsStyle 1.0 Calls/CallsStyle.qml
singleton CallControlsStyle 1.0 Calls/CallControlsStyle.qml
singleton CallsStyle 1.0 Calls/CallsStyle.qml
singleton CallStatisticsStyle 1.0 Calls/CallStatisticsStyle.qml
singleton ConferenceControlsStyle 1.0 Calls/ConferenceControlsStyle.qml
singleton CodecsViewerStyle 1.0 Codecs/CodecsViewerStyle.qml
...
...
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