Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
J
jami-libclient
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
savoirfairelinux
jami-libclient
Commits
c3dda3f5
Commit
c3dda3f5
authored
9 years ago
by
Alexandre Lision
Browse files
Options
Downloads
Patches
Plain Diff
qtwrapper: add peerHold event
Refs #77211 Change-Id: I524c14c57d060d93235e5492561318c2f384956b
parent
cc3b0c63
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/qtwrapper/callmanager_wrap.h
+8
-0
8 additions, 0 deletions
src/qtwrapper/callmanager_wrap.h
with
8 additions
and
0 deletions
src/qtwrapper/callmanager_wrap.h
+
8
−
0
View file @
c3dda3f5
...
...
@@ -202,6 +202,13 @@ public:
Q_EMIT
onRtcpReportReceived
(
QString
(
callID
.
c_str
()),
convertStringInt
(
report
));
});
}),
exportable_callback
<
CallSignal
::
PeerHold
>
(
[
this
]
(
const
std
::
string
&
callID
,
bool
state
)
{
QTimer
::
singleShot
(
0
,
[
this
,
callID
,
state
]
{
LOG_DRING_SIGNAL2
(
"peerHold"
,
QString
(
callID
.
c_str
()),
state
);
Q_EMIT
peerHold
(
QString
(
callID
.
c_str
()),
state
);
});
}),
exportable_callback
<
CallSignal
::
AudioMuted
>
(
[
this
]
(
const
std
::
string
&
callID
,
bool
state
)
{
QTimer
::
singleShot
(
0
,
[
this
,
callID
,
state
]
{
...
...
@@ -478,6 +485,7 @@ Q_SIGNALS: // SIGNALS
void
confirmGoClear
(
const
QString
&
callID
);
void
audioMuted
(
const
QString
&
callID
,
bool
state
);
void
videoMuted
(
const
QString
&
callID
,
bool
state
);
void
peerHold
(
const
QString
&
callID
,
bool
state
);
};
namespace
org
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment