added dumb icon to tray
[stack/code/dboxswitch.git] / gui.py
1 #!/usr/bin/python
2 # -*- coding: utf-8 -*-
3
4 """
5 Dboxswitch dropbox profile switcher
6
7 license: Modified BSD License
8
9 Copyright (c) 2012,  <stack@inventati.org>
10 All rights reserved.
11
12 Redistribution and use in source and binary forms, with or without
13 modification, are permitted provided that the following conditions are met:
14     * Redistributions of source code must retain the above copyright
15       notice, this list of conditions and the following disclaimer.
16     * Redistributions in binary form must reproduce the above copyright
17       notice, this list of conditions and the following disclaimer in the
18       documentation and/or other materials provided with the distribution.
19     * Neither the name of the <organization> nor the
20       names of its contributors may be used to endorse or promote products
21       derived from this software without specific prior written permission.
22
23 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
24 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
25 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
26 DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
27 DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
28 (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
29 LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
30 ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
32 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33
34 """
35 import sys
36 import os
37 from PyQt4 import QtGui
38
39 from apperror import AppError
40 from settings import appconf
41
42 class Gui(QtGui.QDialog):
43     def __init__(self, prManager):
44         self.app = QtGui.QApplication(sys.argv)
45     
46         #check if system tray is avaiable on the system
47         if not QtGui.QSystemTrayIcon.isSystemTrayAvailable():
48             QtGui.QMessageBox.critical(None, "Systray",
49                     "I couldn't detect any system tray on this system.")
50             sys.exit(1)
51         
52         QtGui.QApplication.setQuitOnLastWindowClosed(False)
53     
54         super(Gui, self).__init__()
55
56         self.createActions()
57         self.createTrayIcon()
58
59         self.trayIcon.show()
60
61         self.setWindowTitle("Profile manager / Dboxswitch - dropbox profile switcher")
62         self.resize(400, 300)
63
64         self.profileManager = prManager
65
66     def main(self): 
67         sys.exit(self.app.exec_())
68
69     def closeEvent(self, event):
70         if self.trayIcon.isVisible():
71             self.hide()
72             event.ignore()
73
74     def createActions(self):
75         self.manageprofiles = QtGui.QAction("Manage &Profiles", self,
76                 triggered=self.hide)
77         self.quitAction = QtGui.QAction("&Quit", self,
78                 triggered=QtGui.qApp.quit)
79
80
81     def createTrayIcon(self):
82          self.trayIconMenu = QtGui.QMenu(self)
83          self.trayIconMenu.addAction(self.manageprofiles)
84          self.trayIconMenu.addSeparator()
85          self.trayIconMenu.addAction(self.quitAction)
86
87          self.trayIcon = QtGui.QSystemTrayIcon(QtGui.QIcon(appconf.icon), self.app)
88          self.trayIcon.setContextMenu(self.trayIconMenu)
89          #baloon on hover
90          self.trayIcon.setToolTip(appconf.appname+" "+appconf.appversion+"\nRight Click to manage profiles.")