|
2010-03-21
, 09:15
|
|
Posts: 385 |
Thanked: 344 times |
Joined on Jan 2010
@ Israel
|
#2
|
|
2010-03-22
, 14:36
|
|
Posts: 385 |
Thanked: 344 times |
Joined on Jan 2010
@ Israel
|
#3
|
method call sender=:1.675 -> dest=org.freedesktop.Telepathy.Client.NotificationUI serial=374 path=/org/freedesktop/Telepathy/Client/NotificationUI; interface=com.nokia.RtcomNotificationUi; member=ClearCallNotification
|
2010-03-22
, 14:45
|
|
Posts: 3,203 |
Thanked: 1,391 times |
Joined on Nov 2009
@ Worthing, England
|
#4
|
|
2010-03-22
, 14:54
|
|
Posts: 385 |
Thanked: 344 times |
Joined on Jan 2010
@ Israel
|
#5
|
Hi Omerik, i am following this thread, but just to give it a boost i thought i'd say hi.
The only dbus i know is from Jebba's dbus pages. here
I'm not sure how i can help, but i may tinker and try what you are doing next week - if i get anywhere i'll poop back and let you know
|
2010-03-22
, 15:07
|
|
Posts: 3,203 |
Thanked: 1,391 times |
Joined on Nov 2009
@ Worthing, England
|
#6
|
Hi noobmonkey
Thank you very much for saying hi. I appreciate your help in the past and your experience with d-bus notifications (health check).
The link you mentioned talks only about send notification and not listen notifications, what make me wonder if this is possible with pymaemo at all...
I would be very grateful if you could try this next week
|
2010-03-22
, 15:17
|
|
Posts: 754 |
Thanked: 630 times |
Joined on Sep 2009
@ London
|
#7
|
The Following 2 Users Say Thank You to krk969 For This Useful Post: | ||
|
2010-03-22
, 16:05
|
Posts: 196 |
Thanked: 54 times |
Joined on Jan 2010
@ UK
|
#8
|
signal sender=:1.28 -> dest=:1.27 serial=70 path=/org/freedesktop/Notifications; interface=org.freedesktop.Notifications; member=NotificationClosed uint32 12 method call sender=:1.28 -> dest=com.nokia.HildonSVNotificationDaemon serial=71 path=/com/nokia/HildonSVNotificationDaemon; interface=com.nokia.HildonSVNotificationDaemon; member=StopEvent int32 -1
The Following User Says Thank You to fred123 For This Useful Post: | ||
|
2010-03-22
, 17:30
|
|
Posts: 385 |
Thanked: 344 times |
Joined on Jan 2010
@ Israel
|
#9
|
|
2010-03-22
, 17:32
|
|
Posts: 754 |
Thanked: 630 times |
Joined on Sep 2009
@ London
|
#10
|
But I'm trying to do that with python, and it doesn't seem like the QT DBus wrappers has any PyQt implementation yet...
apt-get install python2.5-qt4-dbus
The Following User Says Thank You to krk969 For This Useful Post: | ||
import gobject, dbus
from dbus.mainloop.glib import DBusGMainLoop
def handle_led():
print 'hi'
DBusGMainLoop(set_as_default=True)
bus = dbus.SystemBus()
#bus.add_signal_receiver(handle_led, path='/org/freedesktop/Telepathy/Client/NotificationUI', dbus_interface='com.nokia.RtcomNotificationUi', signal_name='ClearCallNotification')
bus.add_signal_receiver(handle_led, "ClearCallNotification", "org.freedesktop.Telepathy.Client.NotificationUI", "com.nokia.RtcomNotificationUi", "/org/freedesktop/Telepathy/Client/NotificationUI")
gobject.MainLoop().run()
But none works. When I run "python dbs.py", get a missed call, and view it - it doesn't print "hi" as expected.
What am I doing wrong?...
Last edited by omeriko9; 2010-03-18 at 09:03.