-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy patheric6_tray.py
86 lines (68 loc) · 2.39 KB
/
eric6_tray.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
82
83
84
85
86
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# Copyright (c) 2006 - 2016 Detlev Offenbach <[email protected]>
#
"""
Eric6 Tray.
This is the main Python script that performs the necessary initialization
of the system-tray application. This acts as a quickstarter by providing a
context menu to start the eric6 IDE and the eric6 tools.
"""
from __future__ import unicode_literals
import sys
import os
PyQt4Option = "--pyqt4" in sys.argv
SettingsDir = None
import Toolbox.PyQt4ImportHook # __IGNORE_WARNING__
try: # Only for Py2
import Globals.compatibility_fixes # __IGNORE_WARNING__
except (ImportError):
pass
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)
"""
global PyQt4Option
from Tools.TrayStarter import TrayStarter
return TrayStarter(PyQt4Option, SettingsDir)
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 Tray",
"",
"Traystarter for Pymakr",
options)
res = Startup.simpleAppStartup(sys.argv,
appinfo,
createMainWidget,
quitOnLastWindowClosed=False,
raiseIt=False)
sys.exit(res)
if __name__ == '__main__':
main()