Skip to content
Snippets Groups Projects
Commit 23bf543c authored by Sébastien Blin's avatar Sébastien Blin Committed by Philippe Gorley
Browse files

call: refuse the call after 1 second when failed


When a call failed, the call should be refused automatically after some time

Change-Id: I9b4772d55a3b185f8fe5980535b6f4cdf0879a49
Reviewed-by: default avatarPhilippe Gorley <philippe.gorley@savoirfairelinux.com>
parent 98607150
No related branches found
No related tags found
No related merge requests found
......@@ -1450,6 +1450,18 @@ void CallPrivate::changeCurrentState(Call::State newState)
initTimer();
// If the call failed, start the timer for 1 second and refuse the call.
if (q_ptr->state() == Call::State::FAILURE) {
if (!m_pTimer) {
m_pTimer = new QTimer(this);
m_pTimer->setInterval(1000);
connect(m_pTimer,SIGNAL(timeout()),this,SLOT(refuseAfterFailure()));
}
if (!m_pTimer->isActive()) {
m_pTimer->start();
}
}
if (q_ptr->lifeCycleState() == Call::LifeCycleState::FINISHED)
emit q_ptr->isOver();
......@@ -2142,6 +2154,16 @@ void CallPrivate::updated()
emit q_ptr->changed();
}
void CallPrivate::refuseAfterFailure()
{
if (m_pTimer) {
m_pTimer->stop();
delete m_pTimer;
m_pTimer = nullptr;
q_ptr->performAction(Call::Action::REFUSE);
}
}
UserActionModel* Call::userActionModel() const
{
if (!d_ptr->m_pUserActionModel)
......
......@@ -264,6 +264,7 @@ private:
TemporaryContactMethod* m_pTransferNumber;
private Q_SLOTS:
void refuseAfterFailure();
void updated();
void videoStopped();
};
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment