|
1 #!/usr/bin/env python3 |
|
2 # -*- coding: utf-8 -*- |
|
3 |
|
4 # Copyright (c) 2004 - 2011 Detlev Offenbach <detlev@die-offenbachs.de> |
|
5 # |
|
6 |
|
7 """ |
|
8 Eric5 UI Previewer |
|
9 |
|
10 This is the main Python script that performs the necessary initialization |
|
11 of the ui previewer and starts the Qt event loop. This is a standalone version |
|
12 of the integrated ui previewer. |
|
13 """ |
|
14 |
|
15 import sys |
|
16 |
|
17 for arg in sys.argv: |
|
18 if arg.startswith("--config="): |
|
19 import Utilities |
|
20 configDir = arg.replace("--config=", "") |
|
21 Utilities.setConfigDir(configDir) |
|
22 sys.argv.remove(arg) |
|
23 break |
|
24 |
|
25 from Utilities import Startup |
|
26 |
|
27 def createMainWidget(argv): |
|
28 """ |
|
29 Function to create the main widget. |
|
30 |
|
31 @param argv list of commandline parameters (list of strings) |
|
32 @return reference to the main widget (QWidget) |
|
33 """ |
|
34 from Tools.UIPreviewer import UIPreviewer |
|
35 |
|
36 if len(argv) > 1: |
|
37 fn = argv[1] |
|
38 else: |
|
39 fn = None |
|
40 |
|
41 previewer = UIPreviewer(fn, None, 'UIPreviewer') |
|
42 return previewer |
|
43 |
|
44 def main(): |
|
45 """ |
|
46 Main entry point into the application. |
|
47 """ |
|
48 options = [\ |
|
49 ("--config=configDir", |
|
50 "use the given directory as the one containing the config files"), |
|
51 ] |
|
52 appinfo = Startup.makeAppInfo(sys.argv, |
|
53 "Eric5 UI Previewer", |
|
54 "file", |
|
55 "UI file previewer", |
|
56 options) |
|
57 res = Startup.simpleAppStartup(sys.argv, |
|
58 appinfo, |
|
59 createMainWidget) |
|
60 sys.exit(res) |
|
61 |
|
62 if __name__ == '__main__': |
|
63 main() |