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="toolTip">
<string>Names of the dimensions in the workspace</string>
</property>
<property name="text">
<string>Dim:</string>
</property>
</widget>
</item>
<item row="1" column="0">
<widget class="QLabel" name="lblStart">
<property name="toolTip">
<string>Coordinates of the start point of the line</string>
</property>
<property name="text">
<string>Start:</string>
</property>
</widget>
</item>
<item row="2" column="0">
<widget class="QLabel" name="lblEnd">
<property name="toolTip">
<string>Coordinates of the end point of the line</string>
</property>
<property name="text">
<string>End:</string>
</property>
</widget>
</item>
<item row="3" column="0">
<widget class="QLabel" name="lblWidth1">
<property name="toolTip">
<string>Integration thickness (above and below plane) in each dimension</string>
</property>
<string>Thickness:</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>
97
98
99
100
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
</spacer>
</item>
</layout>
</item>
<item>
<layout class="QHBoxLayout" name="horizontalLayout">
<item>
<widget class="QLabel" name="lblWidth">
<property name="text">
<string>Width in Plane:</string>
</property>
</widget>
</item>
<item>
<widget class="QLineEdit" name="textPlaneWidth">
<property name="maximumSize">
<size>
<width>100</width>
<height>16777215</height>
</size>
</property>
<property name="toolTip">
<string>Width of the integration in the plane, perpendicular to the line</string>
</property>
<property name="text">
<string>0</string>
</property>
</widget>
</item>
<item>
<widget class="QLabel" name="lblPlaneWidth">
<property name="text">
<string>(in X-Y plane)</string>
</property>
</widget>
</item>
<item>
<spacer name="horizontalSpacer_3">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>20</height>
</size>
</property>
</item>
</layout>
</item>
<item>
<layout class="QHBoxLayout" name="layoutNumBins">
<widget class="QRadioButton" name="radNumBins">
<string>Keep a fixed number of bins</string>
<property name="text">
<string># of bins:</string>
</property>
<property name="checked">
<bool>true</bool>
</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">
<property name="value">
<number>100</number>
</property>
</widget>
</item>
<item>
<widget class="QRadioButton" name="radBinWidth">
<property name="toolTip">
<string>Keep a fixed bin width, adjusting the number of bins
from the length of the line being drawn</string>
</property>
<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>
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
</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>
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
<item>
<layout class="QHBoxLayout" name="horizontalLayout_2">
<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>
<item>
<spacer name="horizontalSpacer_4">
<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>
<widget class="QFrame" name="frmBottom">
</property>
<property name="frameShadow">
<enum>QFrame::Raised</enum>
</property>
<layout class="QVBoxLayout" name="verticalLayout_3">
<property name="spacing">
<number>4</number>
</property>
<property name="margin">
<number>2</number>
</property>
<item>
<widget class="QFrame" name="frmPlot">
<property name="frameShape">
<enum>QFrame::NoFrame</enum>
</property>
<property name="frameShadow">
<enum>QFrame::Raised</enum>
</property>
</widget>
</item>
</layout>