sample/app: Allow to start applications
[apps/onscreenapp.git] / sample / app / main.qml
index 2979d88..2feab6d 100644 (file)
@@ -342,17 +342,21 @@ ApplicationWindow {
             postmsg += "}"
 
        if (!onscreen_role_set) {
-               eventHandler.set_window_poup(onsId, 0, 218)
+               console.log("onscreen_role_set is not set")
+               eventHandler.set_window_popup(onsId, 0, 218)
+               console.log("setting for popup for " + onsId)
                onscreen_role_set = true
        }
 
        // if the application is not already started, start it
-       if (pid == -1) {
+       if (pid === -1) {
                // if the application is not started, then the first time
                // we start we also display it using the default policy engine
                pid = eventHandler.start(onsId, postmsg)
+               console.log("calling eventHandler.start for " + onsId + " with pid " + pid)
        } else {
                // we just need to display it
+               console.log("calling eventHandler.showWindow for " + onsId)
                eventHandler.showWindow(onsId, postmsg)
        }
     }