- wx.InitAllImageHandlers()
- from shell import ShellFrame
- self.frame = ShellFrame()
- self.frame.SetSize((750, 525))
+ from wx import py
+
+ self.SetAppName("pyshell")
+ confDir = wx.StandardPaths.Get().GetUserDataDir()
+ if not os.path.exists(confDir):
+ os.mkdir(confDir)
+ fileName = os.path.join(confDir, 'config')
+ self.config = wx.FileConfig(localFilename=fileName)
+ self.config.SetRecordDefaults(True)
+
+ self.frame = py.shell.ShellFrame(config=self.config, dataDir=confDir)