1 |
<?xml version="1.0" encoding="UTF-8"?> |
2 |
<ui version="4.0"> |
3 |
<class>exposureDialog</class> |
4 |
<widget class="QDialog" name="exposureDialog"> |
5 |
<property name="geometry"> |
6 |
<rect> |
7 |
<x>0</x> |
8 |
<y>0</y> |
9 |
<width>303</width> |
10 |
<height>197</height> |
11 |
</rect> |
12 |
</property> |
13 |
<property name="windowTitle"> |
14 |
<string>Exposure</string> |
15 |
</property> |
16 |
<property name="toolTip"> |
17 |
<string>adjust exposure here</string> |
18 |
</property> |
19 |
<layout class="QGridLayout" name="gridLayout"> |
20 |
<item row="0" column="0"> |
21 |
<widget class="QLabel" name="exposureValueLabel"> |
22 |
<property name="text"> |
23 |
<string>Current value:</string> |
24 |
</property> |
25 |
</widget> |
26 |
</item> |
27 |
<item row="0" column="1"> |
28 |
<widget class="QLabel" name="exposureValue"> |
29 |
<property name="text"> |
30 |
<string>1</string> |
31 |
</property> |
32 |
</widget> |
33 |
</item> |
34 |
<item row="1" column="0"> |
35 |
<widget class="QLabel" name="exposureModeLabel"> |
36 |
<property name="text"> |
37 |
<string>Mode:</string> |
38 |
</property> |
39 |
</widget> |
40 |
</item> |
41 |
<item row="1" column="1"> |
42 |
<widget class="QRadioButton" name="relative"> |
43 |
<property name="text"> |
44 |
<string>Relative</string> |
45 |
</property> |
46 |
<property name="checked"> |
47 |
<bool>true</bool> |
48 |
</property> |
49 |
<attribute name="buttonGroup"> |
50 |
<string>modeGroup</string> |
51 |
</attribute> |
52 |
</widget> |
53 |
</item> |
54 |
<item row="1" column="2"> |
55 |
<widget class="QRadioButton" name="absolute"> |
56 |
<property name="text"> |
57 |
<string>Absolute</string> |
58 |
</property> |
59 |
<attribute name="buttonGroup"> |
60 |
<string>modeGroup</string> |
61 |
</attribute> |
62 |
</widget> |
63 |
</item> |
64 |
<item row="2" column="1"> |
65 |
<widget class="QRadioButton" name="fstop"> |
66 |
<property name="text"> |
67 |
<string>F-stop</string> |
68 |
</property> |
69 |
<attribute name="buttonGroup"> |
70 |
<string>modeGroup</string> |
71 |
</attribute> |
72 |
</widget> |
73 |
</item> |
74 |
<item row="2" column="2"> |
75 |
<widget class="QRadioButton" name="natural"> |
76 |
<property name="text"> |
77 |
<string>Natural</string> |
78 |
</property> |
79 |
<attribute name="buttonGroup"> |
80 |
<string>modeGroup</string> |
81 |
</attribute> |
82 |
</widget> |
83 |
</item> |
84 |
<item row="3" column="0"> |
85 |
<widget class="QLabel" name="exposureBasedLabel"> |
86 |
<property name="text"> |
87 |
<string>Based on:</string> |
88 |
</property> |
89 |
</widget> |
90 |
</item> |
91 |
<item row="3" column="1"> |
92 |
<widget class="QRadioButton" name="average"> |
93 |
<property name="text"> |
94 |
<string>Average</string> |
95 |
</property> |
96 |
<property name="checked"> |
97 |
<bool>true</bool> |
98 |
</property> |
99 |
<attribute name="buttonGroup"> |
100 |
<string>basedGroup</string> |
101 |
</attribute> |
102 |
</widget> |
103 |
</item> |
104 |
<item row="3" column="2"> |
105 |
<widget class="QRadioButton" name="point"> |
106 |
<property name="text"> |
107 |
<string>Point</string> |
108 |
</property> |
109 |
<attribute name="buttonGroup"> |
110 |
<string>basedGroup</string> |
111 |
</attribute> |
112 |
</widget> |
113 |
</item> |
114 |
<item row="4" column="0"> |
115 |
<widget class="QLabel" name="exposureSettingLabel"> |
116 |
<property name="text"> |
117 |
<string>Setting:</string> |
118 |
</property> |
119 |
</widget> |
120 |
</item> |
121 |
<item row="4" column="1"> |
122 |
<widget class="QLineEdit" name="exposureSetting"> |
123 |
<property name="text"> |
124 |
<string>1</string> |
125 |
</property> |
126 |
</widget> |
127 |
</item> |
128 |
<item row="5" column="0" colspan="3"> |
129 |
<widget class="QDialogButtonBox" name="exposureButtonBox"> |
130 |
<property name="orientation"> |
131 |
<enum>Qt::Horizontal</enum> |
132 |
</property> |
133 |
<property name="standardButtons"> |
134 |
<set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set> |
135 |
</property> |
136 |
</widget> |
137 |
</item> |
138 |
</layout> |
139 |
</widget> |
140 |
<resources/> |
141 |
<connections> |
142 |
<connection> |
143 |
<sender>exposureButtonBox</sender> |
144 |
<signal>accepted()</signal> |
145 |
<receiver>exposureDialog</receiver> |
146 |
<slot>accept()</slot> |
147 |
<hints> |
148 |
<hint type="sourcelabel"> |
149 |
<x>248</x> |
150 |
<y>254</y> |
151 |
</hint> |
152 |
<hint type="destinationlabel"> |
153 |
<x>157</x> |
154 |
<y>274</y> |
155 |
</hint> |
156 |
</hints> |
157 |
</connection> |
158 |
<connection> |
159 |
<sender>exposureButtonBox</sender> |
160 |
<signal>rejected()</signal> |
161 |
<receiver>exposureDialog</receiver> |
162 |
<slot>reject()</slot> |
163 |
<hints> |
164 |
<hint type="sourcelabel"> |
165 |
<x>316</x> |
166 |
<y>260</y> |
167 |
</hint> |
168 |
<hint type="destinationlabel"> |
169 |
<x>286</x> |
170 |
<y>274</y> |
171 |
</hint> |
172 |
</hints> |
173 |
</connection> |
174 |
</connections> |
175 |
<buttongroups> |
176 |
<buttongroup name="basedGroup"/> |
177 |
<buttongroup name="modeGroup"/> |
178 |
</buttongroups> |
179 |
</ui> |