maemo.org - Talk

maemo.org - Talk (https://talk.maemo.org/index.php)
-   Development (https://talk.maemo.org/forumdisplay.php?f=13)
-   -   Be noticed when an application start, stop, brought to top (https://talk.maemo.org/showthread.php?t=38635)

miniscalope 2009-12-28 15:52

Be noticed when an application start, stop, brought to top
 
Hi there.
Is there a way to be noticed when an application is launching or bringing to the top. (With DBUS or by another way)

When an application is closing?

I would be able de listening dbus in the background and doing somethig when worldclock is launched (brought to the top) or closed for exemple...

Thank you.

PS: Doe's a Dbus messages documentation exist? with ALL signals and method calls available sorted by app path?

pH5 2009-12-29 08:50

Re: Be noticed when an application start, stop, brought to top
 
No idea, but you can use dbus-monitor to see the messages flying around.
In general, the top_application method is called on the application D-Bus object (in this case com.nokia.worldclock, path=/com/nokia/worldclock, interface=com.nokia.worldclock). You can listen for that on the session bus.
For the shutdown, you can listen to the NameOwnerChanged calls as worldclock detaches from the bus.

miniscalope 2010-01-16 22:27

Re: Be noticed when an application start, stop, brought to top
 
thank you for the answer. i didn't checked it so i waste a lot of time to find all that by myself.

I used nameOwnerChanged signal to know when an app starts or stops.
The problem is that hildon-desktop pre starts some apps and effectively call the top_application method to popup the app

I think i can catch method_calls with low level dbus lib
Code:

dbus_bus_add_match (buss, "type='method_call', member='top_application'",...)
dbus_connection_add_filter (...)

but im using glib bindings is it possible match whatever we want with glib binding?

An other solution is to disable (temporarily...) prestarting...

pH5 2010-01-18 07:44

Re: Be noticed when an application start, stop, brought to top
 
The NameOwnerChanged signals are broadcast, so you can just connect to them on the D-Bus object (org.freedesktop.DBus, path="/org/freedesktop/DBus", interface="org.freedesktop.DBus") with dbus-glib.


All times are GMT. The time now is 11:08.

vBulletin® Version 3.8.8