mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-23 05:45:35 +08:00
IsMuted method
This commit is contained in:
@@ -110,6 +110,14 @@ namespace BlackCore
|
|||||||
this->m_dBusInterface->callDBus(QLatin1Literal("setVolumes"), com1, com2);
|
this->m_dBusInterface->callDBus(QLatin1Literal("setVolumes"), com1, com2);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Muted?
|
||||||
|
*/
|
||||||
|
bool IContextVoice::isMuted() const
|
||||||
|
{
|
||||||
|
return this->m_dBusInterface->callDBusRet<bool>(QLatin1Literal("isMuted"));
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Logging
|
* Logging
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -163,6 +163,12 @@ namespace BlackCore
|
|||||||
*/
|
*/
|
||||||
virtual void setVolumes(const BlackMisc::Aviation::CComSystem &com1, const BlackMisc::Aviation::CComSystem &com2);
|
virtual void setVolumes(const BlackMisc::Aviation::CComSystem &com1, const BlackMisc::Aviation::CComSystem &com2);
|
||||||
|
|
||||||
|
/*!
|
||||||
|
* \brief Is muted?
|
||||||
|
* \return
|
||||||
|
*/
|
||||||
|
virtual bool isMuted() const;
|
||||||
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user