Skip to content

Commit

Permalink
Refs #9041 UI file modified
Browse files Browse the repository at this point in the history
The UI has had the extra column added to the table. Nothing extra done to it yet
  • Loading branch information
keithnbrown committed Feb 21, 2014
1 parent 24228ac commit 9a73cba
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
9 changes: 6 additions & 3 deletions Code/Mantid/scripts/Interface/ui/reflectometer/refl_window.py
Expand Up @@ -2,7 +2,7 @@

# Form implementation generated from reading ui file 'D:\mantid\windows\Code\Mantid\scripts\Interface\ui\reflectometer/refl_window.ui'
#
# Created: Tue Jan 28 18:18:03 2014
# Created: Thu Feb 20 09:50:27 2014
# by: PyQt4 UI code generator 4.8.3
#
# WARNING! All changes made in this file will be lost!
Expand Down Expand Up @@ -136,9 +136,9 @@ def setupUi(self, windowRefl):
self.tableMain.setFont(font)
self.tableMain.setAlternatingRowColors(True)
self.tableMain.setRowCount(100)
self.tableMain.setColumnCount(18)
self.tableMain.setColumnCount(19)
self.tableMain.setObjectName(_fromUtf8("tableMain"))
self.tableMain.setColumnCount(18)
self.tableMain.setColumnCount(19)
self.tableMain.setRowCount(100)
item = QtGui.QTableWidgetItem()
self.tableMain.setHorizontalHeaderItem(0, item)
Expand Down Expand Up @@ -176,6 +176,8 @@ def setupUi(self, windowRefl):
self.tableMain.setHorizontalHeaderItem(16, item)
item = QtGui.QTableWidgetItem()
self.tableMain.setHorizontalHeaderItem(17, item)
item = QtGui.QTableWidgetItem()
self.tableMain.setHorizontalHeaderItem(18, item)
self.tableMain.horizontalHeader().setCascadingSectionResizes(True)
self.tableMain.horizontalHeader().setDefaultSectionSize(60)
self.tableMain.horizontalHeader().setMinimumSectionSize(20)
Expand Down Expand Up @@ -313,6 +315,7 @@ def retranslateUi(self, windowRefl):
self.tableMain.horizontalHeaderItem(15).setText(QtGui.QApplication.translate("windowRefl", "dq/q", None, QtGui.QApplication.UnicodeUTF8))
self.tableMain.horizontalHeaderItem(16).setText(QtGui.QApplication.translate("windowRefl", "Scale", None, QtGui.QApplication.UnicodeUTF8))
self.tableMain.horizontalHeaderItem(17).setText(QtGui.QApplication.translate("windowRefl", "Stitch?", None, QtGui.QApplication.UnicodeUTF8))
self.tableMain.horizontalHeaderItem(18).setText(QtGui.QApplication.translate("windowRefl", "Plot?", None, QtGui.QApplication.UnicodeUTF8))
self.buttonProcess.setText(QtGui.QApplication.translate("windowRefl", "Process", None, QtGui.QApplication.UnicodeUTF8))
self.buttonClear.setText(QtGui.QApplication.translate("windowRefl", "Clear all", None, QtGui.QApplication.UnicodeUTF8))
self.menuFile.setTitle(QtGui.QApplication.translate("windowRefl", "File", None, QtGui.QApplication.UnicodeUTF8))
Expand Down
Expand Up @@ -338,7 +338,7 @@
<number>100</number>
</property>
<property name="columnCount">
<number>18</number>
<number>19</number>
</property>
<attribute name="horizontalHeaderCascadingSectionResizes">
<bool>true</bool>
Expand Down Expand Up @@ -542,6 +542,11 @@
<string>Stitch?</string>
</property>
</column>
<column>
<property name="text">
<string>Plot?</string>
</property>
</column>
</widget>
</item>
<item>
Expand Down

0 comments on commit 9a73cba

Please sign in to comment.