Ejemplo n.º 1
0
 def _activateCb(self, unused_app):
     if self.gui:
         # The app is already started and the window already created.
         # Present the already existing window.
         # TODO: Use present() instead of present_with_time() when
         # https://bugzilla.gnome.org/show_bug.cgi?id=688830 is fixed.
         x11_server_time = GdkX11.x11_get_server_time(self.gui.get_window())
         self.gui.present_with_time(x11_server_time)
         # No need to show the welcome wizard.
         return
     self.createMainWindow()
     self.welcome_wizard = StartUpWizard(self)
     self.welcome_wizard.show()
Ejemplo n.º 2
0
 def _activateCb(self, unused_app):
     if self.gui:
         # The app is already started and the window already created.
         # Present the already existing window.
         try:
             # TODO: Use present() instead of present_with_time() when
             # https://bugzilla.gnome.org/show_bug.cgi?id=688830 is fixed.
             from gi.repository import GdkX11
             x11_server_time = GdkX11.x11_get_server_time(
                 self.gui.get_window())
             self.gui.present_with_time(x11_server_time)
         except ImportError:
             # On Wayland or Quartz (Mac OS X) backend there is no GdkX11,
             # so just use present() directly here.
             self.gui.present()
         # No need to show the welcome wizard.
         return
     self.createMainWindow()
     self.welcome_wizard = StartUpWizard(self)
     self.welcome_wizard.show()
Ejemplo n.º 3
0
 def welcome_wizard(self):
     if not self.__welcome_wizard:
         self.__welcome_wizard = StartUpWizard(self)
     return self.__welcome_wizard
Ejemplo n.º 4
0
 def _showGui(self):
     GuiPitivi._showGui(self)
     self.wizard = StartUpWizard(self)
     self.wizard.show()