Beremiz.py
changeset 1914 99f8cfa80b15
parent 1881 091005ec69c4
child 1915 bdec3f1a40e7
equal deleted inserted replaced
1913:338e2f51b685 1914:99f8cfa80b15
   122 
   122 
   123         self.app.SetAppName('beremiz')
   123         self.app.SetAppName('beremiz')
   124         if wx.VERSION < (3, 0, 0):
   124         if wx.VERSION < (3, 0, 0):
   125             wx.InitAllImageHandlers()
   125             wx.InitAllImageHandlers()
   126 
   126 
   127         self.ShowSplashScreen()
       
   128         self.BackgroundInitialization()
       
   129 
       
   130     def BackgroundInitialization(self):
   127     def BackgroundInitialization(self):
   131         self.InitI18n()
   128         self.InitI18n()
   132         self.CheckUpdates()
   129         self.CheckUpdates()
   133         self.LoadExtensions()
   130         self.LoadExtensions()
   134         self.ImportModules()
   131         self.ImportModules()
   184         self.frame.Show()
   181         self.frame.Show()
   185 
   182 
   186     def PreStart(self):
   183     def PreStart(self):
   187         self.ProcessCommandLineArgs()
   184         self.ProcessCommandLineArgs()
   188         self.CreateApplication()
   185         self.CreateApplication()
       
   186         self.ShowSplashScreen()
       
   187         self.BackgroundInitialization()
   189 
   188 
   190     def MainLoop(self):
   189     def MainLoop(self):
   191         self.app.MainLoop()
   190         self.app.MainLoop()
   192 
   191 
   193     def Start(self):
   192     def Start(self):