Merge coin control features
[novacoin.git] / src / qt / forms / optionsdialog.ui
1 <?xml version="1.0" encoding="UTF-8"?>
2 <ui version="4.0">
3  <class>OptionsDialog</class>
4  <widget class="QDialog" name="OptionsDialog">
5   <property name="geometry">
6    <rect>
7     <x>0</x>
8     <y>0</y>
9     <width>540</width>
10     <height>380</height>
11    </rect>
12   </property>
13   <property name="windowTitle">
14    <string>Options</string>
15   </property>
16   <property name="modal">
17    <bool>true</bool>
18   </property>
19   <layout class="QVBoxLayout" name="verticalLayout">
20    <item>
21     <widget class="QTabWidget" name="tabWidget">
22      <property name="tabPosition">
23       <enum>QTabWidget::North</enum>
24      </property>
25      <property name="currentIndex">
26       <number>0</number>
27      </property>
28      <widget class="QWidget" name="tabMain">
29       <attribute name="title">
30        <string>&amp;Main</string>
31       </attribute>
32       <layout class="QVBoxLayout" name="verticalLayout_Main">
33        <item>
34         <widget class="QLabel" name="transactionFeeInfoLabel">
35          <property name="text">
36           <string>Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.01 recommended.</string>
37          </property>
38          <property name="textFormat">
39           <enum>Qt::PlainText</enum>
40          </property>
41          <property name="wordWrap">
42           <bool>true</bool>
43          </property>
44         </widget>
45        </item>
46        <item>
47         <layout class="QHBoxLayout" name="horizontalLayout_Main">
48          <item>
49           <widget class="QLabel" name="transactionFeeLabel">
50            <property name="text">
51             <string>Pay transaction &amp;fee</string>
52            </property>
53            <property name="textFormat">
54             <enum>Qt::PlainText</enum>
55            </property>
56            <property name="buddy">
57             <cstring>transactionFee</cstring>
58            </property>
59           </widget>
60          </item>
61          <item>
62           <widget class="BitcoinAmountField" name="transactionFee"/>
63          </item>
64          <item>
65           <spacer name="horizontalSpacer_Main">
66            <property name="orientation">
67             <enum>Qt::Horizontal</enum>
68            </property>
69            <property name="sizeHint" stdset="0">
70             <size>
71              <width>40</width>
72              <height>20</height>
73             </size>
74            </property>
75           </spacer>
76          </item>
77         </layout>
78        </item>
79        <item>
80         <widget class="QCheckBox" name="bitcoinAtStartup">
81          <property name="toolTip">
82           <string>Automatically start NovaCoin after logging in to the system.</string>
83          </property>
84          <property name="text">
85           <string>&amp;Start NovaCoin on system login</string>
86          </property>
87         </widget>
88        </item>
89        <item>
90         <widget class="QCheckBox" name="detachDatabases">
91          <property name="toolTip">
92           <string>Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached.</string>
93          </property>
94          <property name="text">
95           <string>&amp;Detach databases at shutdown</string>
96          </property>
97         </widget>
98        </item>
99        <item>
100         <spacer name="verticalSpacer_Main">
101          <property name="orientation">
102           <enum>Qt::Vertical</enum>
103          </property>
104          <property name="sizeHint" stdset="0">
105           <size>
106            <width>20</width>
107            <height>40</height>
108           </size>
109          </property>
110         </spacer>
111        </item>
112       </layout>
113      </widget>
114      <widget class="QWidget" name="tabNetwork">
115       <attribute name="title">
116        <string>&amp;Network</string>
117       </attribute>
118       <layout class="QVBoxLayout" name="verticalLayout_Network">
119        <item>
120         <widget class="QCheckBox" name="mapPortUpnp">
121          <property name="toolTip">
122           <string>Automatically open the NovaCoin client port on the router. This only works when your router supports UPnP and it is enabled.</string>
123          </property>
124          <property name="text">
125           <string>Map port using &amp;UPnP</string>
126          </property>
127         </widget>
128        </item>
129        <item>
130         <widget class="QCheckBox" name="connectSocks">
131          <property name="toolTip">
132           <string>Connect to the NovaCoin network through a SOCKS proxy (e.g. when connecting through Tor).</string>
133          </property>
134          <property name="text">
135           <string>&amp;Connect through SOCKS proxy:</string>
136          </property>
137         </widget>
138        </item>
139        <item>
140         <layout class="QHBoxLayout" name="horizontalLayout_Network">
141          <item>
142           <widget class="QLabel" name="proxyIpLabel">
143            <property name="text">
144             <string>Proxy &amp;IP:</string>
145            </property>
146            <property name="textFormat">
147             <enum>Qt::PlainText</enum>
148            </property>
149            <property name="buddy">
150             <cstring>proxyIp</cstring>
151            </property>
152           </widget>
153          </item>
154          <item>
155           <widget class="QValidatedLineEdit" name="proxyIp">
156            <property name="maximumSize">
157             <size>
158              <width>140</width>
159              <height>16777215</height>
160             </size>
161            </property>
162            <property name="toolTip">
163             <string>IP address of the proxy (e.g. 127.0.0.1)</string>
164            </property>
165           </widget>
166          </item>
167          <item>
168           <widget class="QLabel" name="proxyPortLabel">
169            <property name="text">
170             <string>&amp;Port:</string>
171            </property>
172            <property name="textFormat">
173             <enum>Qt::PlainText</enum>
174            </property>
175            <property name="buddy">
176             <cstring>proxyPort</cstring>
177            </property>
178           </widget>
179          </item>
180          <item>
181           <widget class="QLineEdit" name="proxyPort">
182            <property name="maximumSize">
183             <size>
184              <width>55</width>
185              <height>16777215</height>
186             </size>
187            </property>
188            <property name="toolTip">
189             <string>Port of the proxy (e.g. 9050)</string>
190            </property>
191           </widget>
192          </item>
193          <item>
194           <widget class="QLabel" name="socksVersionLabel">
195            <property name="text">
196             <string>SOCKS &amp;Version:</string>
197            </property>
198            <property name="textFormat">
199             <enum>Qt::PlainText</enum>
200            </property>
201            <property name="buddy">
202             <cstring>socksVersion</cstring>
203            </property>
204           </widget>
205          </item>
206          <item>
207           <widget class="QValueComboBox" name="socksVersion">
208            <property name="toolTip">
209             <string>SOCKS version of the proxy (e.g. 5)</string>
210            </property>
211           </widget>
212          </item>
213          <item>
214           <spacer name="horizontalSpacer_Network">
215            <property name="orientation">
216             <enum>Qt::Horizontal</enum>
217            </property>
218            <property name="sizeHint" stdset="0">
219             <size>
220              <width>40</width>
221              <height>20</height>
222             </size>
223            </property>
224           </spacer>
225          </item>
226         </layout>
227        </item>
228        <item>
229         <spacer name="verticalSpacer_Network">
230          <property name="orientation">
231           <enum>Qt::Vertical</enum>
232          </property>
233          <property name="sizeHint" stdset="0">
234           <size>
235            <width>20</width>
236            <height>40</height>
237           </size>
238          </property>
239         </spacer>
240        </item>
241       </layout>
242      </widget>
243      <widget class="QWidget" name="tabWindow">
244       <attribute name="title">
245        <string>&amp;Window</string>
246       </attribute>
247       <layout class="QVBoxLayout" name="verticalLayout_Window">
248        <item>
249         <widget class="QCheckBox" name="minimizeToTray">
250          <property name="toolTip">
251           <string>Show only a tray icon after minimizing the window.</string>
252          </property>
253          <property name="text">
254           <string>&amp;Minimize to the tray instead of the taskbar</string>
255          </property>
256         </widget>
257        </item>
258        <item>
259         <widget class="QCheckBox" name="minimizeOnClose">
260          <property name="toolTip">
261           <string>Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu.</string>
262          </property>
263          <property name="text">
264           <string>M&amp;inimize on close</string>
265          </property>
266         </widget>
267        </item>
268        <item>
269         <spacer name="verticalSpacer_Window">
270          <property name="orientation">
271           <enum>Qt::Vertical</enum>
272          </property>
273          <property name="sizeHint" stdset="0">
274           <size>
275            <width>20</width>
276            <height>40</height>
277           </size>
278          </property>
279         </spacer>
280        </item>
281       </layout>
282      </widget>
283      <widget class="QWidget" name="tabDisplay">
284       <attribute name="title">
285        <string>&amp;Display</string>
286       </attribute>
287       <layout class="QVBoxLayout" name="verticalLayout_Display">
288        <item>
289         <layout class="QHBoxLayout" name="horizontalLayout_1_Display">
290          <item>
291           <widget class="QLabel" name="langLabel">
292            <property name="text">
293             <string>User Interface &amp;language:</string>
294            </property>
295            <property name="textFormat">
296             <enum>Qt::PlainText</enum>
297            </property>
298            <property name="buddy">
299             <cstring>lang</cstring>
300            </property>
301           </widget>
302          </item>
303          <item>
304           <widget class="QValueComboBox" name="lang">
305            <property name="toolTip">
306             <string>The user interface language can be set here. This setting will take effect after restarting NovaCoin.</string>
307            </property>
308           </widget>
309          </item>
310         </layout>
311        </item>
312        <item>
313         <layout class="QHBoxLayout" name="horizontalLayout_2_Display">
314          <item>
315           <widget class="QLabel" name="unitLabel">
316            <property name="text">
317             <string>&amp;Unit to show amounts in:</string>
318            </property>
319            <property name="textFormat">
320             <enum>Qt::PlainText</enum>
321            </property>
322            <property name="buddy">
323             <cstring>unit</cstring>
324            </property>
325           </widget>
326          </item>
327          <item>
328           <widget class="QValueComboBox" name="unit">
329            <property name="toolTip">
330             <string>Choose the default subdivision unit to show in the interface and when sending coins.</string>
331            </property>
332           </widget>
333          </item>
334         </layout>
335        </item>
336        <item>
337         <widget class="QCheckBox" name="displayAddresses">
338          <property name="toolTip">
339           <string>Whether to show NovaCoin addresses in the transaction list or not.</string>
340          </property>
341          <property name="text">
342           <string>&amp;Display addresses in transaction list</string>
343          </property>
344         </widget>
345        </item>
346        <item>
347         <widget class="QCheckBox" name="coinControlFeatures">
348          <property name="toolTip">
349           <string>Whether to show coin control features or not.</string>
350          </property>
351          <property name="text">
352           <string>Display coin &amp;control features (experts only!)</string>
353          </property>
354         </widget>
355        </item>
356        <item>
357         <spacer name="verticalSpacer_Display">
358          <property name="orientation">
359           <enum>Qt::Vertical</enum>
360          </property>
361          <property name="sizeHint" stdset="0">
362           <size>
363            <width>20</width>
364            <height>40</height>
365           </size>
366          </property>
367         </spacer>
368        </item>
369       </layout>
370      </widget>
371     </widget>
372    </item>
373    <item>
374     <layout class="QHBoxLayout" name="horizontalLayout_Buttons">
375      <item>
376       <spacer name="horizontalSpacer_1">
377        <property name="orientation">
378         <enum>Qt::Horizontal</enum>
379        </property>
380        <property name="sizeHint" stdset="0">
381         <size>
382          <width>40</width>
383          <height>48</height>
384         </size>
385        </property>
386       </spacer>
387      </item>
388      <item>
389       <widget class="QLabel" name="statusLabel">
390        <property name="font">
391         <font>
392          <weight>75</weight>
393          <bold>true</bold>
394         </font>
395        </property>
396        <property name="text">
397         <string/>
398        </property>
399        <property name="textFormat">
400         <enum>Qt::PlainText</enum>
401        </property>
402        <property name="wordWrap">
403         <bool>true</bool>
404        </property>
405       </widget>
406      </item>
407      <item>
408       <spacer name="horizontalSpacer_2">
409        <property name="orientation">
410         <enum>Qt::Horizontal</enum>
411        </property>
412        <property name="sizeHint" stdset="0">
413         <size>
414          <width>40</width>
415          <height>48</height>
416         </size>
417        </property>
418       </spacer>
419      </item>
420      <item>
421       <widget class="QPushButton" name="okButton">
422        <property name="text">
423         <string>&amp;OK</string>
424        </property>
425       </widget>
426      </item>
427      <item>
428       <widget class="QPushButton" name="cancelButton">
429        <property name="text">
430         <string>&amp;Cancel</string>
431        </property>
432        <property name="autoDefault">
433         <bool>false</bool>
434        </property>
435       </widget>
436      </item>
437      <item>
438       <widget class="QPushButton" name="applyButton">
439        <property name="text">
440         <string>&amp;Apply</string>
441        </property>
442        <property name="autoDefault">
443         <bool>false</bool>
444        </property>
445       </widget>
446      </item>
447     </layout>
448    </item>
449   </layout>
450  </widget>
451  <customwidgets>
452   <customwidget>
453    <class>BitcoinAmountField</class>
454    <extends>QSpinBox</extends>
455    <header>bitcoinamountfield.h</header>
456   </customwidget>
457   <customwidget>
458    <class>QValueComboBox</class>
459    <extends>QComboBox</extends>
460    <header>qvaluecombobox.h</header>
461   </customwidget>
462   <customwidget>
463    <class>QValidatedLineEdit</class>
464    <extends>QLineEdit</extends>
465    <header>qvalidatedlineedit.h</header>
466   </customwidget>
467  </customwidgets>
468  <resources/>
469  <connections/>
470 </ui>