X-Git-Url: https://git.ralfj.de/lilass.git/blobdiff_plain/7129adf1f29ada89d37adf131dbab8d3c5483408..38ae85f1535d8301498b94649ed100c88dc377a6:/gui.py diff --git a/gui.py b/gui.py index 7db44b8..998783f 100644 --- a/gui.py +++ b/gui.py @@ -1,5 +1,5 @@ # DSL - easy Display Setup for Laptops -# Copyright (C) 2012 Ralf Jung +# Copyright (C) 2012-2015 Ralf Jung # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -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, situation): from qt_dialogue import PositionSelection - return PositionSelection(internalResolutions, externalResolutions).run() + return PositionSelection(situation).run() @staticmethod def isAvailable(): @@ -61,14 +61,14 @@ class ZenityFrontend: '''Displays a fatal error to the user''' subprocess.check_call(["zenity", "--error", "--text="+message]) - def setup(self, internalResolutions, externalResolutions): + def setup(self, situation): from zenity_dialogue import run - run(internalResolutions, externalResolutions) + return run(situation.internalResolutions(), situation.externalResolutions()) @staticmethod def isAvailable(): try: - from dsl import processOutputIt + from screen import processOutputIt processOutputIt("zenity", "--version") return True except Exception: @@ -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