|
1 #!/usr/bin/env python3 |
|
2 # -*- coding: utf-8 -*- |
|
3 |
|
4 # Copyright (c) 2004 - 2019 Detlev Offenbach <detlev@die-offenbachs.de> |
|
5 # |
|
6 |
|
7 """ |
|
8 Eric6 QRegExp. |
|
9 |
|
10 This is the main Python script that performs the necessary initialization |
|
11 of the QRegExp wizard module and starts the Qt event loop. This is a standalone |
|
12 version of the integrated QRegExp wizard. |
|
13 """ |
|
14 |
|
15 from __future__ import unicode_literals |
|
16 |
|
17 import Toolbox.PyQt4ImportHook # __IGNORE_WARNING__ |
|
18 |
|
19 try: # Only for Py2 |
|
20 import Globals.compatibility_fixes # __IGNORE_WARNING__ |
|
21 except (ImportError): |
|
22 pass |
|
23 |
|
24 import sys |
|
25 import os |
|
26 |
|
27 for arg in sys.argv[:]: |
|
28 if arg.startswith("--config="): |
|
29 import Globals |
|
30 configDir = arg.replace("--config=", "") |
|
31 Globals.setConfigDir(configDir) |
|
32 sys.argv.remove(arg) |
|
33 elif arg.startswith("--settings="): |
|
34 from PyQt5.QtCore import QSettings |
|
35 settingsDir = os.path.expanduser(arg.replace("--settings=", "")) |
|
36 if not os.path.isdir(settingsDir): |
|
37 os.makedirs(settingsDir) |
|
38 QSettings.setPath(QSettings.IniFormat, QSettings.UserScope, |
|
39 settingsDir) |
|
40 sys.argv.remove(arg) |
|
41 |
|
42 from Globals import AppInfo |
|
43 |
|
44 from Toolbox import Startup |
|
45 |
|
46 |
|
47 def createMainWidget(argv): |
|
48 """ |
|
49 Function to create the main widget. |
|
50 |
|
51 @param argv list of commandline parameters (list of strings) |
|
52 @return reference to the main widget (QWidget) |
|
53 """ |
|
54 from Plugins.WizardPlugins.QRegExpWizard.QRegExpWizardDialog import \ |
|
55 QRegExpWizardWindow |
|
56 return QRegExpWizardWindow() |
|
57 |
|
58 |
|
59 def main(): |
|
60 """ |
|
61 Main entry point into the application. |
|
62 """ |
|
63 options = [ |
|
64 ("--config=configDir", |
|
65 "use the given directory as the one containing the config files"), |
|
66 ("--settings=settingsDir", |
|
67 "use the given directory to store the settings files"), |
|
68 ] |
|
69 appinfo = AppInfo.makeAppInfo(sys.argv, |
|
70 "Eric6 QRegExp", |
|
71 "", |
|
72 "Regexp editor for Qt's QRegExp class", |
|
73 options) |
|
74 res = Startup.simpleAppStartup(sys.argv, |
|
75 appinfo, |
|
76 createMainWidget) |
|
77 sys.exit(res) |
|
78 |
|
79 if __name__ == '__main__': |
|
80 main() |