예제 #1
0
파일: frontend.py 프로젝트: Zaryob/wubi
 def show_installation_settings(self):
     self.accessibility_page = AccessibilityPage(self.main_window)
     self.installation_page = InstallationPage(self.main_window)
     # In non-interactive mode realize the page because there's some
     # processing done there but don't show it
     if not self.application.info.non_interactive:
         self.show_page(self.installation_page)
예제 #2
0
파일: frontend.py 프로젝트: Zaryob/wubi
 def show_cdboot_page(self):
     self.cdboot_page = CDBootPage(self.main_window)
     self.accessibility_page = AccessibilityPage(self.main_window)
     self.show_page(self.cdboot_page)
예제 #3
0
파일: frontend.py 프로젝트: Zaryob/wubi
 def show_installer_page(self):
     self.installation_page = InstallationPage(self.main_window)
     self.accessibility_page = AccessibilityPage(self.main_window)
     self.show_page(self.installation_page)