diff frontends/src/quick_frontend/quick_app.py @ 2036:db3bbbd745e4

frontends (xmlui): added a user_action attribute: this attribute indicate if the data is a result of a user interaction or an event from the backend (in the later case, the frontend can choose to avoid interrupting the user). Internally (in XMLUI), "FROM_BACKEND" is added to XMLUI.flags if the UI result from a backend event.
author Goffi <goffi@goffi.org>
date Sun, 21 Aug 2016 12:07:31 +0200
parents 3f745370a39a
children f607349a01a4
line wrap: on
line diff
--- a/frontends/src/quick_frontend/quick_app.py	Sun Aug 21 12:03:34 2016 +0200
+++ b/frontends/src/quick_frontend/quick_app.py	Sun Aug 21 12:07:31 2016 +0200
@@ -790,19 +790,21 @@
     def actionResultHandler(self, type, id, data, profile):
         raise NotImplementedError
 
-    def actionManager(self, action_data, callback=None, ui_show_cb=None, profile=C.PROF_KEY_NONE):
+    def actionManager(self, action_data, callback=None, ui_show_cb=None, user_action=True, profile=C.PROF_KEY_NONE):
         """Handle backend action
 
         @param action_data(dict): action dict as sent by launchAction or returned by an UI action
         @param callback(None, callback): if not None, callback to use on XMLUI answer
         @param ui_show_cb(None, callback): if not None, method to call to show the XMLUI
+        @param user_action(bool): if True, the action is a result of a user interaction
+            else the action come from backend direclty (i.e. actionNew)
         """
         try:
             xmlui = action_data.pop('xmlui')
         except KeyError:
             pass
         else:
-            ui = self.xmlui.create(self, xml_data=xmlui, callback=callback, profile=profile)
+            ui = self.xmlui.create(self, xml_data=xmlui, flags=("FROM_BACKEND",) if not user_action else None, callback=callback, profile=profile)
             if ui_show_cb is None:
                 ui.show()
             else: