openlp-core team mailing list archive
-
openlp-core team
-
Mailing list archive
-
Message #03248
[Merge] lp:~phill-ridout/openlp/screen_overide into lp:openlp
phill has proposed merging lp:~phill-ridout/openlp/screen_overide into lp:openlp.
Requested reviews:
OpenLP Core (openlp-core)
--
https://code.launchpad.net/~phill-ridout/openlp/screen_overide/+merge/34620
Your team OpenLP Core is requested to review the proposed merge of lp:~phill-ridout/openlp/screen_overide into lp:openlp.
=== modified file 'openlp/core/ui/generaltab.py'
--- openlp/core/ui/generaltab.py 2010-08-26 16:08:26 +0000
+++ openlp/core/ui/generaltab.py 2010-09-04 16:39:43 +0000
@@ -195,6 +195,19 @@
self.currentYValueLabel.setObjectName(u'currentYValueLabel')
self.currentYLayout.addWidget(self.currentYValueLabel)
self.currentLayout.addLayout(self.currentYLayout)
+ self.currentWidthLayout = QtGui.QVBoxLayout()
+ self.currentWidthLayout.setSpacing(0)
+ self.currentWidthLayout.setMargin(0)
+ self.currentWidthLayout.setObjectName(u'currentWidthLayout')
+ self.currentWidthLabel = QtGui.QLabel(self.displayGroupBox)
+ self.currentWidthLabel.setAlignment(QtCore.Qt.AlignCenter)
+ self.currentWidthLabel.setObjectName(u'currentWidthLabel')
+ self.currentWidthLayout.addWidget(self.currentWidthLabel)
+ self.currentWidthValueLabel = QtGui.QLabel(self.displayGroupBox)
+ self.currentWidthValueLabel.setAlignment(QtCore.Qt.AlignCenter)
+ self.currentWidthValueLabel.setObjectName(u'currentWidthValueLabel')
+ self.currentWidthLayout.addWidget(self.currentWidthValueLabel)
+ self.currentLayout.addLayout(self.currentWidthLayout)
self.currentHeightLayout = QtGui.QVBoxLayout()
self.currentHeightLayout.setSpacing(0)
self.currentHeightLayout.setMargin(0)
@@ -209,19 +222,6 @@
self.currentHeightValueLabel.setObjectName(u'Height')
self.currentHeightLayout.addWidget(self.currentHeightValueLabel)
self.currentLayout.addLayout(self.currentHeightLayout)
- self.currentWidthLayout = QtGui.QVBoxLayout()
- self.currentWidthLayout.setSpacing(0)
- self.currentWidthLayout.setMargin(0)
- self.currentWidthLayout.setObjectName(u'currentWidthLayout')
- self.currentWidthLabel = QtGui.QLabel(self.displayGroupBox)
- self.currentWidthLabel.setAlignment(QtCore.Qt.AlignCenter)
- self.currentWidthLabel.setObjectName(u'currentWidthLabel')
- self.currentWidthLayout.addWidget(self.currentWidthLabel)
- self.currentWidthValueLabel = QtGui.QLabel(self.displayGroupBox)
- self.currentWidthValueLabel.setAlignment(QtCore.Qt.AlignCenter)
- self.currentWidthValueLabel.setObjectName(u'currentWidthValueLabel')
- self.currentWidthLayout.addWidget(self.currentWidthValueLabel)
- self.currentLayout.addLayout(self.currentWidthLayout)
self.displayLayout.addLayout(self.currentLayout)
self.overrideCheckBox = QtGui.QCheckBox(self.displayGroupBox)
self.overrideCheckBox.setObjectName(u'overrideCheckBox')
@@ -256,18 +256,6 @@
self.customYValueEdit.setObjectName(u'customYValueEdit')
self.customYLayout.addWidget(self.customYValueEdit)
self.customLayout.addLayout(self.customYLayout)
- self.customHeightLayout = QtGui.QVBoxLayout()
- self.customHeightLayout.setSpacing(0)
- self.customHeightLayout.setMargin(0)
- self.customHeightLayout.setObjectName(u'customHeightLayout')
- self.customHeightLabel = QtGui.QLabel(self.displayGroupBox)
- self.customHeightLabel.setAlignment(QtCore.Qt.AlignCenter)
- self.customHeightLabel.setObjectName(u'customHeightLabel')
- self.customHeightLayout.addWidget(self.customHeightLabel)
- self.customHeightValueEdit = QtGui.QLineEdit(self.displayGroupBox)
- self.customHeightValueEdit.setObjectName(u'customHeightValueEdit')
- self.customHeightLayout.addWidget(self.customHeightValueEdit)
- self.customLayout.addLayout(self.customHeightLayout)
self.customWidthLayout = QtGui.QVBoxLayout()
self.customWidthLayout.setSpacing(0)
self.customWidthLayout.setMargin(0)
@@ -281,6 +269,18 @@
self.customWidthValueEdit.setObjectName(u'customWidthValueEdit')
self.customWidthLayout.addWidget(self.customWidthValueEdit)
self.customLayout.addLayout(self.customWidthLayout)
+ self.customHeightLayout = QtGui.QVBoxLayout()
+ self.customHeightLayout.setSpacing(0)
+ self.customHeightLayout.setMargin(0)
+ self.customHeightLayout.setObjectName(u'customHeightLayout')
+ self.customHeightLabel = QtGui.QLabel(self.displayGroupBox)
+ self.customHeightLabel.setAlignment(QtCore.Qt.AlignCenter)
+ self.customHeightLabel.setObjectName(u'customHeightLabel')
+ self.customHeightLayout.addWidget(self.customHeightLabel)
+ self.customHeightValueEdit = QtGui.QLineEdit(self.displayGroupBox)
+ self.customHeightValueEdit.setObjectName(u'customHeightValueEdit')
+ self.customHeightLayout.addWidget(self.customHeightValueEdit)
+ self.customLayout.addLayout(self.customHeightLayout)
self.displayLayout.addLayout(self.customLayout)
# Bottom spacer
self.generalRightSpacer = QtGui.QSpacerItem(20, 40,
Follow ups