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. |
46 """ |
48 """ |
47 options = [\ |
49 options = [\ |
48 ("--config=configDir", |
50 ("--config=configDir", |
49 "use the given directory as the one containing the config files"), |
51 "use the given directory as the one containing the config files"), |
50 ] |
52 ] |
51 appinfo = Startup.makeAppInfo(sys.argv, |
53 appinfo = AppInfo.makeAppInfo(sys.argv, |
52 "Eric5 Unittest", |
54 "Eric5 Unittest", |
53 "file", |
55 "file", |
54 "Graphical unit test application", |
56 "Graphical unit test application", |
55 options) |
57 options) |
56 res = Startup.simpleAppStartup(sys.argv, |
58 res = Startup.simpleAppStartup(sys.argv, |