diff options
author | necoro <> | 2007-04-07 22:20:25 +0000 |
---|---|---|
committer | necoro <> | 2007-04-07 22:20:25 +0000 |
commit | f6b57b91d9af93a463b9549a6977feb48169c765 (patch) | |
tree | 6ae0881f73fd970f1387515527f122de2aedfb92 /portato/gui/qt/dialogs.py | |
parent | 6fdf641424e50fb7515b843612b0625e31c4cf02 (diff) | |
download | portato-f6b57b91d9af93a463b9549a6977feb48169c765.tar.gz portato-f6b57b91d9af93a463b9549a6977feb48169c765.tar.bz2 portato-f6b57b91d9af93a463b9549a6977feb48169c765.zip |
Some more functionality for the Qt-Frontend
Diffstat (limited to '')
-rw-r--r-- | portato/gui/qt/dialogs.py | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/portato/gui/qt/dialogs.py b/portato/gui/qt/dialogs.py new file mode 100644 index 0000000..cf32439 --- /dev/null +++ b/portato/gui/qt/dialogs.py @@ -0,0 +1,38 @@ +# -*- coding: utf-8 -*- +# +# File: portato/gui/qt/dialogs.py +# This file is part of the Portato-Project, a graphical portage-frontend. +# +# Copyright (C) 2007 René 'Necoro' Neumann +# This is free software. You may redistribute copies of it under the terms of +# the GNU General Public License version 2. +# There is NO WARRANTY, to the extent permitted by law. +# +# Written by René 'Necoro' Neumann <necoro@necoro.net> + +from PyQt4.QtGui import QMessageBox + +def io_ex_dialog (parent, ex): + string = ex.strerror + if ex.filename: + string = string+": "+ex.filename + + return QMessageBox.critical(parent, "Portato", string, QMessageBox.Ok) + +def nothing_found_dialog (parent): + return QMessageBox.information(parent, "Portato", "No packages found.", QMessageBox.Ok) + +def not_root_dialog (parent): + return QMessageBox.warning(parent, "Portato", "You are not root!", QMessageBox.Ok) + +def unmask_dialog (parent, cpv): + return QMessageBox.question(parent, "Portato", cpv+" seems to be masked.\nDo you want to unmask it and its dependencies?", QMessageBox.Yes | QMessageBox.No) + +def blocked_dialog (parent, blocked, blocks): + return QMessageBox.warning(parent, "Portato", blocked+" is blocked by "+blocks+".\nPlease unmerge the blocking package.", QMessageBox.Ok) + +def remove_deps_dialog (parent): + return QMessageBox.information(parent, "Portato", "You cannot remove dependencies. :)", QMessageBox.Ok) + +def remove_queue_dialog (parent): + return QMessageBox.question(parent, "Portato", "Do you really want to clear the whole queue?", QMessageBox.Yes | QMessageBox.No) |