X-Git-Url: https://git.ralfj.de/lilass.git/blobdiff_plain/1161113dec7126bdc08ebc90637591b54282082f..7c604e2f650be4b97209babf741b9c23141a0ad1:/selector_window.py diff --git a/selector_window.py b/selector_window.py index 0041dd7..7df0a44 100644 --- a/selector_window.py +++ b/selector_window.py @@ -1,38 +1,58 @@ #!/usr/bin/python from PyQt4 import QtCore, QtGui -def makeLayout(parent, layout, widgets): - for w in widgets: - layout.addWidget(w) - parent.setLayout(layout) +def makeLayout(layout, members): + for m in members: + if isinstance(m, QtGui.QLayout): + layout.addLayout(m) + else: + layout.addWidget(m) + return layout class PositionSelection(QtGui.QDialog): LEFT = 10 RIGHT = 20 EXTERNAL_ONLY = 30 - def __init__(self, externalResolutions): + def __init__(self, externalName, internalResolutions, externalResolutions): # set up main window super(PositionSelection, self).__init__() - self.setWindowTitle('External screen setup') + self.setWindowTitle('External screen setup (connector: %s)' % externalName) - # first box: position selection + # position selection posBox = QtGui.QGroupBox('Position of external screen', self) self.posLeft = QtGui.QRadioButton('Left of internal screen', posBox) self.posRight = QtGui.QRadioButton('Right of internal screen', posBox) self.posRight.setChecked(True) self.posRight.setFocus() self.extOnly = QtGui.QRadioButton('Use external screen exclusively', posBox) - makeLayout(posBox, QtGui.QVBoxLayout(), [self.posLeft, self.posRight, self.extOnly]) + posBox.setLayout(makeLayout(QtGui.QVBoxLayout(), [self.posLeft, self.posRight, self.extOnly])) + + # primary screen + primBox = QtGui.QGroupBox('Which should be the primary screen?', self) + self.extOnly.toggled.connect(primBox.setDisabled) # disable the box if there's just one screen in use + self.primExt = QtGui.QRadioButton('The external screen', primBox) + self.primInt = QtGui.QRadioButton('The internal screen', primBox) + self.primInt.setChecked(True) + primBox.setLayout(makeLayout(QtGui.QVBoxLayout(), [self.primExt, self.primInt])) - # second box: resolution selection - resBox = QtGui.QGroupBox('Resolution of external screen', self) - resLabel = QtGui.QLabel('Select the resolution of the external screen:', resBox) - self.resolutions = QtGui.QComboBox(resBox) + # resolution selection + resBox = QtGui.QGroupBox('Screen resolutions', self) + extResLabel = QtGui.QLabel('Resolution of external screen:', resBox) + self.extResolutions = QtGui.QComboBox(resBox) for res in externalResolutions: - self.resolutions.addItem(res) - self.resolutions.setCurrentIndex(0) # select first resolution - makeLayout(resBox, QtGui.QHBoxLayout(), [resLabel, self.resolutions]) + self.extResolutions.addItem(res) + self.extResolutions.setCurrentIndex(0) # select first resolution + extRow = makeLayout(QtGui.QHBoxLayout(), [extResLabel, self.extResolutions]) + intResLabel = QtGui.QLabel('Resolution of internal screen:', resBox) + self.extOnly.toggled.connect(intResLabel.setDisabled) # disable the label if there's just one screen in use + self.intResolutions = QtGui.QComboBox(resBox) + for res in internalResolutions: + self.intResolutions.addItem(res) + self.intResolutions.setCurrentIndex(0) # select first resolution + self.extOnly.toggled.connect(self.intResolutions.setDisabled) # disable the box if there's just one screen in use + intRow = makeLayout(QtGui.QHBoxLayout(), [intResLabel, self.intResolutions]) + resBox.setLayout(makeLayout(QtGui.QVBoxLayout(), [extRow, intRow])) # last row: buttons buttons = QtGui.QDialogButtonBox(QtGui.QDialogButtonBox.Ok | QtGui.QDialogButtonBox.Cancel, QtCore.Qt.Horizontal, self) @@ -40,16 +60,4 @@ class PositionSelection(QtGui.QDialog): buttons.rejected.connect(self.reject) # add them all to the window - makeLayout(self, QtGui.QVBoxLayout(), [posBox, resBox, buttons]) - - def accept(self): - # store return values - if self.posLeft.isChecked(): - self.position = PositionSelection.LEFT - elif self.posRight.isChecked(): - self.position = PositionSelection.RIGHT - else: - self.position = PositionSelection.EXTERNAL_ONLY - self.resolution = str(self.resolutions.currentText()) - # go on with default behaviour - super(PositionSelection, self).accept() + self.setLayout(makeLayout(QtGui.QVBoxLayout(), [posBox, primBox, resBox, buttons]))