-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSetUnitDialog.ui
96 lines (96 loc) · 2.02 KB
/
SetUnitDialog.ui
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>SetUnitDialog</class>
<widget class="QDialog" name="SetUnitDialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>173</width>
<height>126</height>
</rect>
</property>
<property name="windowTitle">
<string>Dialog</string>
</property>
<widget class="QComboBox" name="pixVal">
<property name="geometry">
<rect>
<x>20</x>
<y>20</y>
<width>73</width>
<height>22</height>
</rect>
</property>
<property name="editable">
<bool>true</bool>
</property>
<property name="currentText">
<string>1.00</string>
</property>
</widget>
<widget class="QLabel" name="label">
<property name="geometry">
<rect>
<x>100</x>
<y>20</y>
<width>55</width>
<height>16</height>
</rect>
</property>
<property name="text">
<string>pixels</string>
</property>
</widget>
<widget class="QDoubleSpinBox" name="unitVal">
<property name="geometry">
<rect>
<x>20</x>
<y>50</y>
<width>73</width>
<height>22</height>
</rect>
</property>
<property name="decimals">
<number>3</number>
</property>
<property name="minimum">
<double>0.001000000000000</double>
</property>
<property name="maximum">
<double>1000.000000000000000</double>
</property>
<property name="value">
<double>1.000000000000000</double>
</property>
</widget>
<widget class="QLineEdit" name="unitName">
<property name="geometry">
<rect>
<x>100</x>
<y>50</y>
<width>51</width>
<height>22</height>
</rect>
</property>
<property name="text">
<string>units</string>
</property>
</widget>
<widget class="QPushButton" name="setButton">
<property name="geometry">
<rect>
<x>20</x>
<y>80</y>
<width>131</width>
<height>28</height>
</rect>
</property>
<property name="text">
<string>Set</string>
</property>
</widget>
</widget>
<resources/>
<connections/>
</ui>