zenity:
authorConstantin <commit.suicide.enormator@xoxy.net>
Tue, 16 Oct 2012 22:20:12 +0000 (00:20 +0200)
committerConstantin <commit.suicide.enormator@xoxy.net>
Tue, 16 Oct 2012 22:20:12 +0000 (00:20 +0200)
default behaviour: no resolution selected -> take highest (the one at [0])
error handling implemented

gui.py
zenity_dialogue.py

diff --git a/gui.py b/gui.py
index 0f83c2396d28967d539af1d916493f3f9bf97014..7c9979d86fdf61905b1f601dbb556b2d7c9de1cd 100644 (file)
--- a/gui.py
+++ b/gui.py
@@ -24,12 +24,16 @@ try:
        from qt_dialogue import PositionSelection
        app = QtGui.QApplication(sys.argv)
 except Exception, e:
        from qt_dialogue import PositionSelection
        app = QtGui.QApplication(sys.argv)
 except Exception, e:
+       import subprocess
        from zenity_dialogue import run as zenity_run
        qt_available = False
 
 def error(message):
        '''Displays a fatal error to the user'''
        from zenity_dialogue import run as zenity_run
        qt_available = False
 
 def error(message):
        '''Displays a fatal error to the user'''
-       QtGui.QMessageBox.critical(None, 'Fatal error', message)
+       if qt_available:
+               QtGui.QMessageBox.critical(None, 'Fatal error', message)
+       else:
+               subprocess.Popen(["zenity", "--error", "--text="+message], stdout=subprocess.PIPE)
 
 def setup(internalResolutions, externalResolutions):
        '''Returns a ScreenSetup instance, or None if the user canceled'''
 
 def setup(internalResolutions, externalResolutions):
        '''Returns a ScreenSetup instance, or None if the user canceled'''
index 33f31778583f3349a7a2432e2c9d35d6d43d2bcc..2d523fec65f8ba1fafd6168ccca0b74c9601b699 100644 (file)
 import subprocess
 from dsl import RelativeScreenPosition, ScreenSetup, res2user
 
 import subprocess
 from dsl import RelativeScreenPosition, ScreenSetup, res2user
 
-def userChoose (title, choices, returns):
+def userChoose (title, choices, returns, fallback):
        assert len(choices) == len(returns)
        p = subprocess.Popen(["zenity", "--list", "--text="+title, "--column="]+choices, stdout=subprocess.PIPE)
        switch = dict (zip (choices,returns))
        for line in p.stdout:
        assert len(choices) == len(returns)
        p = subprocess.Popen(["zenity", "--list", "--text="+title, "--column="]+choices, stdout=subprocess.PIPE)
        switch = dict (zip (choices,returns))
        for line in p.stdout:
-               return switch.get(line.strip(), None)
+               return switch.get(line.strip(), fallback)
+       return fallback
 
 def run (internalResolutions, externalResolutions):
 
 def run (internalResolutions, externalResolutions):
-       relpos = userChoose ("Position of external screen", ["Left of internal screen", "Right of internal screen", "Use external screen only"], [RelativeScreenPosition.LEFT, RelativeScreenPosition.RIGHT, RelativeScreenPosition.EXTERNAL_ONLY])
+       relpos = userChoose ("Position of external screen", ["Left of internal screen", "Right of internal screen", "Use external screen only"], [RelativeScreenPosition.LEFT, RelativeScreenPosition.RIGHT, RelativeScreenPosition.EXTERNAL_ONLY], None)
        if relpos == None:
                return None
        intres = internalResolutions[0]
        if relpos != RelativeScreenPosition.EXTERNAL_ONLY:
        if relpos == None:
                return None
        intres = internalResolutions[0]
        if relpos != RelativeScreenPosition.EXTERNAL_ONLY:
-               intres = userChoose ("internal display resolution", map(res2user,internalResolutions), internalResolutions)
-       if intres == None:
-               return None
-       extres = userChoose ("external display resolution", map(res2user,externalResolutions), externalResolutions)
-       if extres == None:
-               return None
-       extprim = userChoose ("Which display should be the primary display?", ["internal display", "external display"], [False, True])
+               intres = userChoose ("internal display resolution", map(res2user,internalResolutions), internalResolutions, internalResolutions[0])
+       extres = userChoose ("external display resolution", map(res2user,externalResolutions), externalResolutions, externalResolutions[0])
+       extprim = userChoose ("Which display should be the primary display?", ["internal display", "external display"], [False, True], None)
        if extprim == None:
                return None
        return ScreenSetup(relpos,intres,extres,extprim)
        if extprim == None:
                return None
        return ScreenSetup(relpos,intres,extres,extprim)