14 |
14 |
15 import sys |
15 import sys |
16 |
16 |
17 for arg in sys.argv: |
17 for arg in sys.argv: |
18 if arg.startswith("--config="): |
18 if arg.startswith("--config="): |
19 import Utilities |
19 import Globals |
20 configDir = arg.replace("--config=", "") |
20 configDir = arg.replace("--config=", "") |
21 Utilities.setConfigDir(configDir) |
21 Globals.setConfigDir(configDir) |
22 sys.argv.remove(arg) |
22 sys.argv.remove(arg) |
23 break |
23 break |
24 |
24 |
25 from Utilities import Startup |
25 from Globals import AppInfo |
|
26 |
|
27 from Toolbox import Startup |
26 |
28 |
27 |
29 |
28 def createMainWidget(argv): |
30 def createMainWidget(argv): |
29 """ |
31 """ |
30 Function to create the main widget. |
32 Function to create the main widget. |
49 """ |
51 """ |
50 options = [\ |
52 options = [\ |
51 ("--config=configDir", |
53 ("--config=configDir", |
52 "use the given directory as the one containing the config files"), |
54 "use the given directory as the one containing the config files"), |
53 ] |
55 ] |
54 appinfo = Startup.makeAppInfo(sys.argv, |
56 appinfo = AppInfo.makeAppInfo(sys.argv, |
55 "Eric5 UI Previewer", |
57 "Eric5 UI Previewer", |
56 "file", |
58 "file", |
57 "UI file previewer", |
59 "UI file previewer", |
58 options) |
60 options) |
59 res = Startup.simpleAppStartup(sys.argv, |
61 res = Startup.simpleAppStartup(sys.argv, |