Example #1
0
File: panel.py Project: sun-im/ibus
 def __show_engine_about_cb(self, langagebar):
     try:
         engine = self.__focus_ic.get_engine()
         dlg = EngineAbout(engine)
         dlg.run()
         dlg.destroy()
     except:
         pass
Example #2
0
 def __show_engine_about_cb(self, langagebar):
     try:
         engine = self.__focus_ic.get_engine()
         dlg = EngineAbout(engine)
         dlg.run()
         dlg.destroy()
     except:
         pass
Example #3
0
 def __button_engine_about_cb(self, button):
     engine = self.__treeview.get_active_engine()
     if engine:
         about = EngineAbout(engine)
         about.run()
         about.destroy()
Example #4
0
 def __button_engine_about_cb(self, button):
     engine = self.__treeview.get_active_engine()
     if engine:
         about = EngineAbout(engine=engine, transient_for=self.__window)
         about.run()
         about.destroy()
Example #5
0
 def __button_engine_about_cb(self, button):
     engine = self.__treeview.get_active_engine()
     if engine:
         about = EngineAbout(engine)
         about.run()
         about.destroy()
Example #6
0
 def __button_engine_about_cb(self, button):
     engine = self.__treeview.get_active_engine()
     if engine:
         about = EngineAbout(engine = engine, transient_for = self.__window)
         about.run()
         about.destroy()