Exemplo n.º 1
0
 def __init__(self, iface, settings, controller, plugin_dir):
     """ Class to control toolbar 'basic' """
     self.minor_version = "3.0"
     self.search_plus = None
     ParentAction.__init__(self, iface, settings, controller, plugin_dir)
     self.logged = False
     self.login_file = os.path.join(self.plugin_dir, 'config', 'login.auth')
Exemplo n.º 2
0
 def __init__(self, iface, settings, controller, plugin_dir):
     """ Class to control toolbar 'edit' """
             
     ParentAction.__init__(self, iface, settings, controller, plugin_dir)
     self.manage_document = ManageDocument(iface, settings, controller, plugin_dir)
     self.manage_element = ManageElement(iface, settings, controller, plugin_dir)
     self.manage_workcat_end = ManageWorkcatEnd(iface, settings, controller, plugin_dir)
Exemplo n.º 3
0
    def __init__(self, iface, settings, controller, plugin_dir):
        """ Class to control toolbar 'om_ws' """
        ParentAction.__init__(self, iface, settings, controller, plugin_dir)
        self.manage_visit = ManageVisit(iface, settings, controller, plugin_dir)
        self.manage_new_psector = ManageNewPsector(iface, settings, controller, plugin_dir)

        # Set project user
        self.current_user = self.controller.get_project_user()
Exemplo n.º 4
0
 def close_dialog(self, dlg):
     ParentAction.close_dialog(self, dlg)
     try:
         self.search_plus.refresh_data()
     except:
         pass
Exemplo n.º 5
0
 def __init__(self, iface, settings, controller, plugin_dir):
     """ Class to control toolbar 'go2epa' """
     ParentAction.__init__(self, iface, settings, controller, plugin_dir)
Exemplo n.º 6
0
 def __init__(self, iface, settings, controller, plugin_dir):
     """ Class to control toolbar 'master' """
     self.config_dict = {}
     ParentAction.__init__(self, iface, settings, controller, plugin_dir)
     self.manage_new_psector = ManageNewPsector(iface, settings, controller,
                                                plugin_dir)