eric5_tray.py

changeset 896
f855351d5e98
parent 791
9ec2ac20e54e
child 945
8cd4d08fa9f6
child 1510
e75ecf2bd9dd
equal deleted inserted replaced
894:eab7b8d39807 896:f855351d5e98
1 #!/usr/bin/env python3
2 # -*- coding: utf-8 -*-
3
4 # Copyright (c) 2006 - 2011 Detlev Offenbach <detlev@die-offenbachs.de>
5 #
6
7 """
8 Eric5 Tray
9
10 This is the main Python script that performs the necessary initialization
11 of the system-tray application. This acts as a quickstarter by providing a
12 context menu to start the eric5 IDE and the eric5 tools.
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.TrayStarter import TrayStarter
35 return TrayStarter()
36
37 def main():
38 """
39 Main entry point into the application.
40 """
41 options = [\
42 ("--config=configDir",
43 "use the given directory as the one containing the config files"),
44 ]
45 appinfo = Startup.makeAppInfo(sys.argv,
46 "Eric5 Tray",
47 "",
48 "Traystarter for eric5",
49 options)
50 res = Startup.simpleAppStartup(sys.argv,
51 appinfo,
52 createMainWidget,
53 quitOnLastWindowClosed = False)
54 sys.exit(res)
55
56 if __name__ == '__main__':
57 main()

eric ide

mercurial