X-Git-Url: https://git.ralfj.de/lilass.git/blobdiff_plain/7129adf1f29ada89d37adf131dbab8d3c5483408..31181130fadc461683040f1f4faac5ee78f5b34c:/gui.py diff --git a/gui.py b/gui.py index 7db44b8..50cb3a3 100644 --- a/gui.py +++ b/gui.py @@ -42,9 +42,9 @@ class QtFrontend: from PyQt4 import QtGui QtGui.QMessageBox.critical(None, 'Fatal error', message) - def setup(self, internalResolutions, externalResolutions): + def setup(self, internalResolutions, externalResolutions, commonRes): from qt_dialogue import PositionSelection - return PositionSelection(internalResolutions, externalResolutions).run() + return PositionSelection(internalResolutions, externalResolutions, commonRes).run() @staticmethod def isAvailable(): @@ -61,7 +61,7 @@ class ZenityFrontend: '''Displays a fatal error to the user''' subprocess.check_call(["zenity", "--error", "--text="+message]) - def setup(self, internalResolutions, externalResolutions): + def setup(self, internalResolutions, externalResolutions, commonRes): from zenity_dialogue import run run(internalResolutions, externalResolutions) @@ -80,7 +80,7 @@ class CLIFrontend: def error(self, message): print(message, file=sys.stderr) - def setup(self, internalResolutions, externalResolutions): + def setup(self, internalResolutions, externalResolutions, commonRes): raise Exception("Choosing the setup interactively is not supported with the CLI frontend") @staticmethod