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