X-Git-Url: https://v.licheni.net/stack/code/dboxswitch.git/blobdiff_plain/86b7bff5277f8681b1dcb4d722481e5173fe590f..ed21cea32a80572106e5776a44e1b1edd7baa580:/gui.py diff --git a/gui.py b/gui.py old mode 100755 new mode 100644 index 5f16273..a0c10f5 --- a/gui.py +++ b/gui.py @@ -1,4 +1,3 @@ -#!/usr/bin/python # -*- coding: utf-8 -*- """ @@ -34,8 +33,9 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. """ import sys import os -from PyQt4 import QtGui +from PyQt4 import QtGui, QtCore from PyQt4.QtCore import SIGNAL +from qmenutooltip import QMenuToolTip from apperror import AppError from settings import appconf @@ -58,20 +58,21 @@ class Gui(QtGui.QDialog): super(Gui, self).__init__() + self.profiles = [] + self.createActions() self.createTrayIcon() + self.createMainDialog() self.trayIcon.show() - - self.setWindowTitle("Profile manager / Dboxswitch - dropbox profile switcher") - self.resize(200, 200) - + self.profileManager = prManager def main(self): """ Like Gtk application this main executes the app, thi is somewhat writed for compatibility in porting the app """ + self.show() sys.exit(self.app.exec_()) def closeEvent(self, event): @@ -85,10 +86,59 @@ class Gui(QtGui.QDialog): """ Create actions for the various components """ self.manageprofiles = QtGui.QAction("Manage &Profiles", self, - triggered=self.hide) + triggered=self.show) self.quitAction = QtGui.QAction("&Quit", self, triggered=QtGui.qApp.quit) + #profile manager component + self.addProfile = QtGui.QAction(" Add &Profile ", self, + triggered=self.addProfile) + + def createMainDialog(self): + """ Build the main dialog layout """ + + self.setWindowTitle("Profile manager / Dboxswitch - dropbox profile switcher") + + self.la = QtGui.QFormLayout() + self.la.sizePolicy = QtGui.QSizePolicy.Expanding + self.la.setVerticalSpacing(15) + self.la.setHorizontalSpacing(15) + self.formGroupBox = QtGui.QGroupBox("Manage profiles:") + self.formGroupBox.setLayout(self.la) + mainLayout = QtGui.QVBoxLayout() + mainLayout.addWidget(self.formGroupBox) + self.setLayout(mainLayout) + + + def show(self): + """ Show the main dialog for dealing with profiles """ + + profiles = self.profileManager.getProfilesList() + + for pr in profiles: + prname = self.profileManager.getBaseProfileName(pr) + delButton = QtGui.QToolButton() + label = QtGui.QLabel(prname) + self.la.addRow(label, delButton) + delAction = QtGui.QAction(QtGui.QIcon(appconf.delpicon),"Delete", self, + triggered=self.deleteProfileAction(prname, (label, delButton))) + delButton.setDefaultAction(delAction) + self.profiles.append((label, delButton)) + + self.sizeHint() + super(Gui, self).show() + + def hide(self): + """ Hides the main dialog """ + + #Hides all the profiles in the Dialog + #User can deal with profiles like removing the dir manually + + for ws in self.profiles: + for w in ws: + w.setParent(None) + w.close() + super(Gui, self).hide() def createTrayIcon(self): """ Builds a new tray icon with a context menu and an action for the profile manager menu """ @@ -114,32 +164,62 @@ class Gui(QtGui.QDialog): action to add a new One """ if reason in (QtGui.QSystemTrayIcon.Trigger, QtGui.QSystemTrayIcon.DoubleClick): - self.menuProfiles = QtGui.QMenu() + self.menuProfiles = QMenuToolTip() self.menuProfiles.setTitle("Profiles") + QtCore.QCoreApplication.setAttribute(QtCore.Qt.AA_DontShowIconsInMenus, False) #Get profiles from the ProfHandler embedded in the gui profiles = self.profileManager.getProfilesList() - for pr in profiles: - pr = os.path.basename(pr) + for prpath in profiles: + pr = self.profileManager.getBaseProfileName(prpath) + receiver = self.activateProfileAction(prpath) menuItem_Profile = self.menuProfiles.addAction(pr) - + if self.profileManager.isCurrentProfile(prpath): + menuItem_Profile.setIcon(QtGui.QIcon(appconf.cpicon)) + #Using lambda function to pass additional arguments to the function, in this case the path of the profile - receiver = lambda pr=pr: self.profileManager.activateProfile(pr) self.connect(menuItem_Profile, SIGNAL('triggered()'), receiver) + #set menu item ToolTip + menuItem_Profile.setToolTip("Activate profile: "+pr) self.menuProfiles.addAction(menuItem_Profile) - #menuItem_Profile = self.menuProfiles.addAction("") - #self.menuProfiles.addAction(menuItem_Profile) self.menuProfiles.addSeparator() - menuItem_Profile = QtGui.QAction(" Add &Profile ", self, - triggered=self.addProfile, icon=QtGui.QIcon(appconf.icon)) - self.menuProfiles.addAction(menuItem_Profile) + #action and menu item for adding a New Profile + self.menuProfiles.addAction(self.addProfile) self.menuProfiles.activateWindow() self.menuProfiles.popup(QtGui.QCursor.pos()) + def activateProfileAction(self, pr): + """ Returns a callable to be passed as an action for the switching profile mechanism + to self.connect(menuItem_Profile... + It compiles a function with a profile name as argument and also handle the displaying of errors.""" + + def f(): + try: + self.profileManager.activateProfile(pr) + except AppError, e: + self.showError(str(e)) + return f + + def deleteProfileAction(self, pr, prWidgets): + """ Returns a callable to be passed as an action for the profile manager mechanism + to self.connect(menuItem_Profile... + It compiles a function with a profile name as argument and also handle the displaying of errors.""" + + def f(): + try: + #self.profileManager.delProfile(pr) + for w in prWidgets: + w.setParent(None) + w.close() + except AppError, e: + self.showError(str(e)) + return f + + def addProfile(self): """ Gui frontend to add a new Profile, it requests the user a profile name through a QInputDialog and creates a new profile with the help of the ProfHandler embedded in the Gui """