Newer
Older
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>LineViewerClass</class>
<widget class="QWidget" name="LineViewerClass">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<height>527</height>
</rect>
</property>
<property name="windowTitle">
<string>LineViewer</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout_2">
<item>
<widget class="QSplitter" name="splitter">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<widget class="QFrame" name="frmTop">
<property name="frameShape">
</property>
<property name="frameShadow">
<enum>QFrame::Raised</enum>
</property>
<layout class="QVBoxLayout" name="verticalLayout">
<item>
<layout class="QHBoxLayout" name="horizontalLayoutTopTop" stretch="0,0,1">
<item>
<layout class="QGridLayout" name="gridLayout">
<item row="0" column="0">
<widget class="QLabel" name="lblDim">
<property name="text">
<string>Dim:</string>
</property>
</widget>
</item>
<item row="1" column="0">
<widget class="QLabel" name="lblStart">
<property name="text">
<string>Start:</string>
</property>
</widget>
</item>
<item row="2" column="0">
<widget class="QLabel" name="lblEnd">
<property name="text">
<string>End:</string>
</property>
</widget>
</item>
<item row="3" column="0">
<widget class="QLabel" name="lblWidth">
<property name="text">
<string>Width:</string>
</property>
</widget>
</item>
</layout>
<item>
<widget class="QFrame" name="frmTopRight">
<property name="frameShape">
<enum>QFrame::NoFrame</enum>
<property name="frameShadow">
<enum>QFrame::Raised</enum>
</property>
</widget>
</item>
<item>
<spacer name="horizontalSpacer_2">
<property name="orientation">
<enum>Qt::Horizontal</enum>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
</layout>
</item>
<item>
<layout class="QHBoxLayout" name="layoutNumBins">
<item>
<widget class="QPushButton" name="btnApply">
<property name="toolTip">
<string>Apply the 1D slice and calculate the full slice</string>
</property>
<property name="text">
<string>Apply</string>
</property>
</widget>
</item>
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<item>
<widget class="QLabel" name="lblBins">
<property name="text">
<string># of bins:</string>
</property>
</widget>
</item>
<item>
<widget class="QSpinBox" name="spinNumBins">
<property name="toolTip">
<string>Number of regularly-spaced bins to use in the range</string>
</property>
<property name="minimum">
<number>1</number>
</property>
<property name="maximum">
<number>10000</number>
</property>
</widget>
</item>
<item>
<widget class="QLabel" name="lblBinWidth">
<property name="text">
<string>Bin Width:</string>
</property>
</widget>
</item>
<item>
<widget class="QLineEdit" name="textBinWidth">
<property name="maximumSize">
<size>
<width>100</width>
</size>
</property>
<property name="toolTip">
<string>Width of each bin (will set the # of bins)</string>
</property>
<property name="maxLength">
<number>50</number>
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
</property>
</widget>
</item>
<item>
<widget class="QCheckBox" name="chkAdaptiveBins">
<property name="toolTip">
<string>Use adaptive mesh refinement instead of regular bins</string>
</property>
<property name="text">
<string>Adaptive</string>
</property>
</widget>
</item>
<item>
<spacer name="horizontalSpacer">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
</layout>
</item>
</layout>
</widget>
<widget class="QFrame" name="frmPlot">
<property name="frameShape">
</property>
<property name="frameShadow">
<enum>QFrame::Raised</enum>
</property>
</widget>
</widget>
</item>
</layout>
</widget>
<layoutdefault spacing="6" margin="11"/>
<resources/>
<connections/>
</ui>