Skip to content
This repository was archived by the owner on Apr 1, 2026. It is now read-only.

Commit a09110b

Browse files
peak bounds gui for adjusting params
1 parent 3919bc9 commit a09110b

1 file changed

Lines changed: 122 additions & 0 deletions

File tree

Lines changed: 122 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,122 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<ui version="4.0">
3+
<class>MainWindow</class>
4+
<widget class="QMainWindow" name="MainWindow">
5+
<property name="geometry">
6+
<rect>
7+
<x>0</x>
8+
<y>0</y>
9+
<width>359</width>
10+
<height>600</height>
11+
</rect>
12+
</property>
13+
<property name="windowTitle">
14+
<string>MainWindow</string>
15+
</property>
16+
<widget class="QWidget" name="centralwidget">
17+
<layout class="QGridLayout" name="gridLayout">
18+
<item row="0" column="0">
19+
<layout class="QVBoxLayout" name="verticalLayout">
20+
<item>
21+
<widget class="QLabel" name="label">
22+
<property name="font">
23+
<font>
24+
<pointsize>15</pointsize>
25+
</font>
26+
</property>
27+
<property name="text">
28+
<string>Peak Center</string>
29+
</property>
30+
</widget>
31+
</item>
32+
<item>
33+
<widget class="QLabel" name="label_2">
34+
<property name="font">
35+
<font>
36+
<pointsize>12</pointsize>
37+
</font>
38+
</property>
39+
<property name="text">
40+
<string>Minimum (nm)</string>
41+
</property>
42+
</widget>
43+
</item>
44+
<item>
45+
<widget class="QDoubleSpinBox" name="cent_min_doubleSpinBox">
46+
<property name="font">
47+
<font>
48+
<pointsize>12</pointsize>
49+
</font>
50+
</property>
51+
<property name="minimum">
52+
<double>300.000000000000000</double>
53+
</property>
54+
<property name="maximum">
55+
<double>1000.000000000000000</double>
56+
</property>
57+
<property name="value">
58+
<double>500.000000000000000</double>
59+
</property>
60+
</widget>
61+
</item>
62+
<item>
63+
<widget class="QLabel" name="label_3">
64+
<property name="font">
65+
<font>
66+
<pointsize>12</pointsize>
67+
</font>
68+
</property>
69+
<property name="text">
70+
<string>Maximum (nm)</string>
71+
</property>
72+
</widget>
73+
</item>
74+
<item>
75+
<widget class="QDoubleSpinBox" name="cent_max_doubleSpinBox">
76+
<property name="font">
77+
<font>
78+
<pointsize>12</pointsize>
79+
</font>
80+
</property>
81+
<property name="minimum">
82+
<double>300.000000000000000</double>
83+
</property>
84+
<property name="maximum">
85+
<double>1000.000000000000000</double>
86+
</property>
87+
<property name="value">
88+
<double>600.000000000000000</double>
89+
</property>
90+
</widget>
91+
</item>
92+
</layout>
93+
</item>
94+
<item row="1" column="0">
95+
<widget class="QPushButton" name="pushButton">
96+
<property name="font">
97+
<font>
98+
<pointsize>15</pointsize>
99+
</font>
100+
</property>
101+
<property name="text">
102+
<string>Done!</string>
103+
</property>
104+
</widget>
105+
</item>
106+
</layout>
107+
</widget>
108+
<widget class="QMenuBar" name="menubar">
109+
<property name="geometry">
110+
<rect>
111+
<x>0</x>
112+
<y>0</y>
113+
<width>359</width>
114+
<height>38</height>
115+
</rect>
116+
</property>
117+
</widget>
118+
<widget class="QStatusBar" name="statusbar"/>
119+
</widget>
120+
<resources/>
121+
<connections/>
122+
</ui>

0 commit comments

Comments
 (0)