eric6/eric6_editor.py

changeset 6942
2602857055c5
parent 6645
ad476851d7e0
child 6949
a5255f1ba3f0
equal deleted inserted replaced
6941:f99d60d6b59b 6942:2602857055c5
1 #!/usr/bin/env python3
2 # -*- coding: utf-8 -*-
3
4 # Copyright (c) 2007 - 2019 Detlev Offenbach <detlev@die-offenbachs.de>
5 #
6
7 """
8 Eric6 Editor.
9
10 This is the main Python script that performs the necessary initialization
11 of the MiniEditor module and starts the Qt event loop. This is a standalone
12 version of the integrated MiniEditor module.
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 # make ThirdParty package available as a packages repository
43 sys.path.insert(2, os.path.join(os.path.dirname(__file__),
44 "ThirdParty", "Pygments"))
45 sys.path.insert(2, os.path.join(os.path.dirname(__file__),
46 "ThirdParty", "EditorConfig"))
47
48 from Globals import AppInfo
49
50 from Toolbox import Startup
51
52
53 def createMainWidget(argv):
54 """
55 Function to create the main widget.
56
57 @param argv list of commandline parameters (list of strings)
58 @return reference to the main widget (QWidget)
59 """
60 from QScintilla.MiniEditor import MiniEditor
61 if len(argv) > 1:
62 return MiniEditor(argv[1])
63 else:
64 return MiniEditor()
65
66
67 def main():
68 """
69 Main entry point into the application.
70 """
71 options = [
72 ("--config=configDir",
73 "use the given directory as the one containing the config files"),
74 ("--settings=settingsDir",
75 "use the given directory to store the settings files"),
76 ("", "name of file to edit")
77 ]
78 appinfo = AppInfo.makeAppInfo(sys.argv,
79 "Eric6 Editor",
80 "",
81 "Simplified version of the eric6 editor",
82 options)
83 res = Startup.simpleAppStartup(sys.argv,
84 appinfo,
85 createMainWidget)
86 sys.exit(res)
87
88 if __name__ == '__main__':
89 main()

eric ide

mercurial