+ Both arguments are lists of (width, height) tuples of resolutions. You can use dsl.res2user to obtain a user-readable representation of a resolution tuple.
+ The user should be asked about his display setup preferences.
+ The function returns None if the user cancelled, and an instance of dsl.ScreenSetup otherwise.
+'''
+
+# frontend detectors
+def qtAvailable():
+ try:
+ import PyQt4
+ return True
+ except ImportError:
+ return False
+
+def zenityAvailable():
+ return True # FIXME
+
+# actual frontends
+if qtAvailable():
+ from PyQt4 import QtGui
+ from qt_dialogue import PositionSelection
+ app = QtGui.QApplication(sys.argv)
+
+ def error(message):
+ QtGui.QMessageBox.critical(None, 'Fatal error', message)
+
+ def setup(internalResolutions, externalResolutions):