Thread
:
user notifications when on a call
View Single Post
kunal_the_one
2010-06-29 , 05:55
Posts: 13 | Thanked: 18 times | Joined on Jun 2009 @ India
#
2
I am not sure about playing sound, but for vibration I am using following code, You can try that out if works for you.
void Sample::enableVibration()
{
#ifdef Q_WS_MAEMO_5
mDbusInterface = new QDBusInterface(MCE_SERVICE, MCE_REQUEST_PATH,
MCE_REQUEST_IF, QDBusConnection::systemBus(),
this);
mDbusInterface->call(MCE_ENABLE_VIBRATOR);
#endif
}
void Sample::vibrate(int aTimeout)
{
#ifdef Q_WS_MAEMO_5
mDbusInterface->call(MCE_ACTIVATE_VIBRATOR_PATTERN, "PatternIncomingCall");
QTimer::singleShot(aTimeout,this,SLOT(stopVibratio n()));
#endif
}
void Sample::stopVibration()
{
#ifdef Q_WS_MAEMO_5
mDbusInterface->call(MCE_DEACTIVATE_VIBRATOR_PATTERN, "PatternIncomingCall");
#endif
}
Quote & Reply
|
The Following User Says Thank You to kunal_the_one For This Useful Post:
matrim
kunal_the_one
View Public Profile
Send a private message to kunal_the_one
Find all posts by kunal_the_one