Skip to content

Commit

Permalink
Re #4303 small ui tuning
Browse files Browse the repository at this point in the history
  • Loading branch information
mdoucet committed Jan 26, 2012
1 parent 6087df6 commit 635347f
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 13 deletions.
7 changes: 5 additions & 2 deletions Code/Mantid/scripts/Interface/ui/data_catalog.ui
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,15 @@
<string>Frame</string>
</property>
<property name="frameShape">
<enum>QFrame::StyledPanel</enum>
<enum>QFrame::NoFrame</enum>
</property>
<property name="frameShadow">
<enum>QFrame::Raised</enum>
<enum>QFrame::Plain</enum>
</property>
<layout class="QVBoxLayout" name="verticalLayout">
<property name="margin">
<number>0</number>
</property>
<item>
<widget class="QTableWidget" name="data_set_table">
<property name="sizePolicy">
Expand Down
17 changes: 13 additions & 4 deletions Code/Mantid/scripts/Interface/ui/stitcher.ui
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,23 @@
<string>Frame</string>
</property>
<property name="frameShape">
<enum>QFrame::StyledPanel</enum>
<enum>QFrame::NoFrame</enum>
</property>
<property name="frameShadow">
<enum>QFrame::Raised</enum>
<enum>QFrame::Plain</enum>
</property>
<layout class="QVBoxLayout" name="verticalLayout">
<property name="margin">
<number>0</number>
</property>
<item>
<widget class="QScrollArea" name="scrollArea">
<property name="frameShape">
<enum>QFrame::NoFrame</enum>
</property>
<property name="frameShadow">
<enum>QFrame::Plain</enum>
</property>
<property name="widgetResizable">
<bool>true</bool>
</property>
Expand All @@ -30,8 +39,8 @@
<rect>
<x>0</x>
<y>0</y>
<width>1040</width>
<height>971</height>
<width>1062</width>
<height>993</height>
</rect>
</property>
<layout class="QVBoxLayout" name="verticalLayout_6">
Expand Down
7 changes: 4 additions & 3 deletions Code/Mantid/scripts/Interface/ui/ui_data_catalog.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# Form implementation generated from reading ui file 'ui/data_catalog.ui'
#
# Created: Thu Jan 5 16:52:14 2012
# Created: Thu Jan 26 12:15:05 2012
# by: PyQt4 UI code generator 4.7.4
#
# WARNING! All changes made in this file will be lost!
Expand All @@ -13,9 +13,10 @@ class Ui_Frame(object):
def setupUi(self, Frame):
Frame.setObjectName("Frame")
Frame.resize(810, 660)
Frame.setFrameShape(QtGui.QFrame.StyledPanel)
Frame.setFrameShadow(QtGui.QFrame.Raised)
Frame.setFrameShape(QtGui.QFrame.NoFrame)
Frame.setFrameShadow(QtGui.QFrame.Plain)
self.verticalLayout = QtGui.QVBoxLayout(Frame)
self.verticalLayout.setMargin(0)
self.verticalLayout.setObjectName("verticalLayout")
self.data_set_table = QtGui.QTableWidget(Frame)
sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Expanding)
Expand Down
11 changes: 7 additions & 4 deletions Code/Mantid/scripts/Interface/ui/ui_stitcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# Form implementation generated from reading ui file 'ui/stitcher.ui'
#
# Created: Wed Jan 4 13:37:50 2012
# Created: Thu Jan 26 12:14:59 2012
# by: PyQt4 UI code generator 4.7.4
#
# WARNING! All changes made in this file will be lost!
Expand All @@ -13,15 +13,18 @@ class Ui_Frame(object):
def setupUi(self, Frame):
Frame.setObjectName("Frame")
Frame.resize(1062, 993)
Frame.setFrameShape(QtGui.QFrame.StyledPanel)
Frame.setFrameShadow(QtGui.QFrame.Raised)
Frame.setFrameShape(QtGui.QFrame.NoFrame)
Frame.setFrameShadow(QtGui.QFrame.Plain)
self.verticalLayout = QtGui.QVBoxLayout(Frame)
self.verticalLayout.setMargin(0)
self.verticalLayout.setObjectName("verticalLayout")
self.scrollArea = QtGui.QScrollArea(Frame)
self.scrollArea.setFrameShape(QtGui.QFrame.NoFrame)
self.scrollArea.setFrameShadow(QtGui.QFrame.Plain)
self.scrollArea.setWidgetResizable(True)
self.scrollArea.setObjectName("scrollArea")
self.scrollAreaWidgetContents = QtGui.QWidget(self.scrollArea)
self.scrollAreaWidgetContents.setGeometry(QtCore.QRect(0, 0, 1040, 971))
self.scrollAreaWidgetContents.setGeometry(QtCore.QRect(0, 0, 1062, 993))
self.scrollAreaWidgetContents.setObjectName("scrollAreaWidgetContents")
self.verticalLayout_6 = QtGui.QVBoxLayout(self.scrollAreaWidgetContents)
self.verticalLayout_6.setObjectName("verticalLayout_6")
Expand Down

0 comments on commit 635347f

Please sign in to comment.