summaryrefslogtreecommitdiffstats
path: root/FusionIcon/interface_qt4/main.py
blob: 91fb63faa1364de6ac003ba0b812859cbeda6570 (plain)
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
# This file is part of Fusion-icon.

# Fusion-icon is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# Fusion-icon is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

# Author(s): xsacha

import sys, os, time
from PyQt4 import QtGui, QtCore
from FusionIcon.start import wms, apps, options, decorators, init

class Build(QtGui.QApplication):
	def reload_wm(self):
		wms.restart()
	def toggleWM(self, wm):
		if wms.active != wm:
			wms.active = wm
			wms.start()
	def toggleOP(self, option):
		options[option].enabled = not options[option].enabled
		if wms.active == 'compiz':
			wms.start()
	def toggleWD(self, decorator):
		decorators[decorator].kill_others()
		time.sleep(0.5)
		decorators.active = decorator
	def __init__(self, parent=None):
		QtCore.QObject.__init__(self, parent)
		# Qt sucks (I'm aware this breaks if prefix != /usr...)
		self.Tray = QtGui.QSystemTrayIcon(QtGui.QIcon('/usr/share/icons/hicolor/22x22/apps/fusion-icon.png'))
		self.Tray.setToolTip('Compiz Fusion Icon')
		self.Tray.managerMenu = QtGui.QMenu()
		self.Tray.optionsMenu = QtGui.QMenu()
		self.Tray.decoratorMenu = QtGui.QMenu()
		self.groupManager = QtGui.QActionGroup(self.Tray.managerMenu)
		self.groupDecorator = QtGui.QActionGroup(self.Tray.decoratorMenu)
		for wm in wms.ordered_list:
			actionWM = self.groupManager.addAction(self.Tray.managerMenu.addAction(wms[wm].label, lambda val=wm : self.toggleWM(val)))
			actionWM.setCheckable(True)
			if wms.active == wm:
				actionWM.setChecked(True)
		for option in options:
			actionOP = self.Tray.optionsMenu.addAction(options[option].label, lambda val=option: self.toggleOP(val))
			actionOP.setCheckable(True)
			if not options[option].sensitive:
				actionOP.setEnabled(False)
			actionOP.setChecked(options[option].enabled)
		for decorator in decorators:
			actionWD = self.groupDecorator.addAction(self.Tray.decoratorMenu.addAction(decorators[decorator].label, lambda val=decorator: self.toggleWD(val)))
			actionWD.setCheckable(True)
			if decorators.active == decorator:
				actionWD.setChecked(True)
		self.Tray.menu = QtGui.QMenu()
		if 'ccsm' in apps:
			self.Tray.menu.addAction(apps['ccsm'].label, lambda: run(['ccsm']))
		if 'emerald theme manager' in apps:
			self.Tray.menu.addAction(apps['emerald theme manager'].label, lambda: run(apps['emerald theme manager'].command))
		if 'ccsm' in apps or 'emerald theme manager' in apps:
			self.Tray.menu.addSeparator()
		self.Tray.menu.addAction("Reload Window Manager", self.reload_wm)
		self.Tray.menu.addAction("Select Window Manager").setMenu(self.Tray.managerMenu)
		self.Tray.menu.addAction("Compiz Options").setMenu(self.Tray.optionsMenu)
		self.Tray.menu.addAction("Select Window Decorator").setMenu(self.Tray.decoratorMenu)
		self.Tray.menu.addSeparator()
		self.Tray.menu.addAction("Quit", self.quit)
		self.Tray.setContextMenu(self.Tray.menu)
		self.Tray.show()
		init()
Build(sys.argv).exec_()