Remove UPNP support & do some cleanup.
[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="QWidget" name="OptionsDialog">
5   <property name="geometry">
6    <rect>
7     <x>0</x>
8     <y>0</y>
9     <width>550</width>
10     <height>380</height>
11    </rect>
12   </property>
13   <property name="windowTitle">
14    <string>Options</string>
15   </property>
16   <layout class="QVBoxLayout" name="verticalLayout">
17    <item>
18     <widget class="QTabWidget" name="tabWidget">
19      <property name="tabPosition">
20       <enum>QTabWidget::North</enum>
21      </property>
22      <property name="currentIndex">
23       <number>1</number>
24      </property>
25      <widget class="QWidget" name="tabMain">
26       <attribute name="title">
27        <string>&amp;Main</string>
28       </attribute>
29       <layout class="QVBoxLayout" name="verticalLayout_Main">
30        <item>
31         <widget class="QLabel" name="transactionFeeInfoLabel">
32          <property name="text">
33           <string>Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 0.001 recommended.</string>
34          </property>
35          <property name="textFormat">
36           <enum>Qt::PlainText</enum>
37          </property>
38          <property name="wordWrap">
39           <bool>true</bool>
40          </property>
41         </widget>
42        </item>
43        <item>
44         <layout class="QHBoxLayout" name="horizontalLayout_Main">
45          <item>
46           <widget class="QLabel" name="transactionFeeLabel">
47            <property name="text">
48             <string>Pay transaction &amp;fee</string>
49            </property>
50            <property name="textFormat">
51             <enum>Qt::PlainText</enum>
52            </property>
53            <property name="buddy">
54             <cstring>transactionFee</cstring>
55            </property>
56           </widget>
57          </item>
58          <item>
59           <widget class="BitcoinAmountField" name="transactionFee"/>
60          </item>
61          <item>
62           <widget class="QLabel" name="label">
63            <property name="text">
64             <string>per kilobyte</string>
65            </property>
66           </widget>
67          </item>
68          <item>
69           <spacer name="horizontalSpacer_Main">
70            <property name="orientation">
71             <enum>Qt::Horizontal</enum>
72            </property>
73            <property name="sizeHint" stdset="0">
74             <size>
75              <width>40</width>
76              <height>20</height>
77             </size>
78            </property>
79           </spacer>
80          </item>
81         </layout>
82        </item>
83        <item>
84         <widget class="QCheckBox" name="bitcoinAtStartup">
85          <property name="toolTip">
86           <string>Automatically start NovaCoin after logging in to the system.</string>
87          </property>
88          <property name="text">
89           <string>&amp;Start NovaCoin on system login</string>
90          </property>
91         </widget>
92        </item>
93        <item>
94         <widget class="QCheckBox" name="detachDatabases">
95          <property name="toolTip">
96           <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>
97          </property>
98          <property name="text">
99           <string>&amp;Detach databases at shutdown</string>
100          </property>
101         </widget>
102        </item>
103        <item>
104         <spacer name="verticalSpacer_Main">
105          <property name="orientation">
106           <enum>Qt::Vertical</enum>
107          </property>
108          <property name="sizeHint" stdset="0">
109           <size>
110            <width>17</width>
111            <height>153</height>
112           </size>
113          </property>
114         </spacer>
115        </item>
116       </layout>
117      </widget>
118      <widget class="QWidget" name="tabNetwork">
119       <attribute name="title">
120        <string>&amp;Network</string>
121       </attribute>
122       <layout class="QVBoxLayout" name="verticalLayout_Network">
123        <item>
124         <widget class="QCheckBox" name="connectSocks">
125          <property name="toolTip">
126           <string>Connect to the NovaCoin network through a SOCKS proxy (e.g. when connecting through Tor).</string>
127          </property>
128          <property name="text">
129           <string>&amp;Connect through SOCKS proxy:</string>
130          </property>
131         </widget>
132        </item>
133        <item>
134         <layout class="QHBoxLayout" name="horizontalLayout_Network">
135          <item>
136           <widget class="QLabel" name="proxyIpLabel">
137            <property name="text">
138             <string>Proxy &amp;IP:</string>
139            </property>
140            <property name="textFormat">
141             <enum>Qt::PlainText</enum>
142            </property>
143            <property name="buddy">
144             <cstring>proxyIp</cstring>
145            </property>
146           </widget>
147          </item>
148          <item>
149           <widget class="QValidatedLineEdit" name="proxyIp">
150            <property name="maximumSize">
151             <size>
152              <width>140</width>
153              <height>16777215</height>
154             </size>
155            </property>
156            <property name="toolTip">
157             <string>IP address of the proxy (e.g. 127.0.0.1)</string>
158            </property>
159           </widget>
160          </item>
161          <item>
162           <widget class="QLabel" name="proxyPortLabel">
163            <property name="text">
164             <string>&amp;Port:</string>
165            </property>
166            <property name="textFormat">
167             <enum>Qt::PlainText</enum>
168            </property>
169            <property name="buddy">
170             <cstring>proxyPort</cstring>
171            </property>
172           </widget>
173          </item>
174          <item>
175           <widget class="QLineEdit" name="proxyPort">
176            <property name="maximumSize">
177             <size>
178              <width>55</width>
179              <height>16777215</height>
180             </size>
181            </property>
182            <property name="toolTip">
183             <string>Port of the proxy (e.g. 9050)</string>
184            </property>
185           </widget>
186          </item>
187          <item>
188           <widget class="QLabel" name="socksVersionLabel">
189            <property name="text">
190             <string>SOCKS &amp;Version:</string>
191            </property>
192            <property name="textFormat">
193             <enum>Qt::PlainText</enum>
194            </property>
195            <property name="buddy">
196             <cstring>socksVersion</cstring>
197            </property>
198           </widget>
199          </item>
200          <item>
201           <widget class="QValueComboBox" name="socksVersion">
202            <property name="toolTip">
203             <string>SOCKS version of the proxy (e.g. 5)</string>
204            </property>
205           </widget>
206          </item>
207          <item>
208           <spacer name="horizontalSpacer_Network">
209            <property name="orientation">
210             <enum>Qt::Horizontal</enum>
211            </property>
212            <property name="sizeHint" stdset="0">
213             <size>
214              <width>40</width>
215              <height>20</height>
216             </size>
217            </property>
218           </spacer>
219          </item>
220         </layout>
221        </item>
222        <item>
223         <widget class="QCheckBox" name="connectTor">
224          <property name="text">
225           <string>Connect through &amp;Tor:</string>
226          </property>
227         </widget>
228        </item>
229        <item>
230         <layout class="QHBoxLayout" name="horizontalLayout_Tor">
231          <item>
232           <widget class="QLabel" name="torIpLabel">
233            <property name="minimumSize">
234             <size>
235              <width>60</width>
236              <height>0</height>
237             </size>
238            </property>
239            <property name="text">
240             <string>Tor IP:</string>
241            </property>
242           </widget>
243          </item>
244          <item>
245           <widget class="QValidatedLineEdit" name="torIp">
246            <property name="maximumSize">
247             <size>
248              <width>115</width>
249              <height>16777215</height>
250             </size>
251            </property>
252           </widget>
253          </item>
254          <item>
255           <widget class="QLabel" name="torPortLabel">
256            <property name="text">
257             <string>Port:</string>
258            </property>
259           </widget>
260          </item>
261          <item>
262           <widget class="QLineEdit" name="torPort">
263            <property name="maximumSize">
264             <size>
265              <width>55</width>
266              <height>16777215</height>
267             </size>
268            </property>
269           </widget>
270          </item>
271          <item>
272           <widget class="QCheckBox" name="TorOnly">
273            <property name="text">
274             <string>Use Tor only</string>
275            </property>
276           </widget>
277          </item>
278          <item>
279           <spacer name="horizontalSpacer">
280            <property name="orientation">
281             <enum>Qt::Horizontal</enum>
282            </property>
283            <property name="sizeHint" stdset="0">
284             <size>
285              <width>40</width>
286              <height>20</height>
287             </size>
288            </property>
289           </spacer>
290          </item>
291         </layout>
292        </item>
293        <item>
294         <layout class="QHBoxLayout" name="horizontalLayout">
295          <item>
296           <widget class="QLabel" name="torNameLabel">
297            <property name="text">
298             <string>Tor name:</string>
299            </property>
300            <property name="textFormat">
301             <enum>Qt::PlainText</enum>
302            </property>
303            <property name="buddy">
304             <cstring>torName</cstring>
305            </property>
306           </widget>
307          </item>
308          <item>
309           <widget class="QLineEdit" name="torName"/>
310          </item>
311          <item>
312           <spacer name="horizontalSpacer_3">
313            <property name="orientation">
314             <enum>Qt::Horizontal</enum>
315            </property>
316            <property name="sizeHint" stdset="0">
317             <size>
318              <width>40</width>
319              <height>20</height>
320             </size>
321            </property>
322           </spacer>
323          </item>
324         </layout>
325        </item>
326        <item>
327         <spacer name="verticalSpacer_Network">
328          <property name="orientation">
329           <enum>Qt::Vertical</enum>
330          </property>
331          <property name="sizeHint" stdset="0">
332           <size>
333            <width>20</width>
334            <height>40</height>
335           </size>
336          </property>
337         </spacer>
338        </item>
339       </layout>
340      </widget>
341      <widget class="QWidget" name="tabWindow">
342       <attribute name="title">
343        <string>&amp;Window</string>
344       </attribute>
345       <layout class="QVBoxLayout" name="verticalLayout_Window">
346        <item>
347         <widget class="QCheckBox" name="minimizeToTray">
348          <property name="toolTip">
349           <string>Show only a tray icon after minimizing the window.</string>
350          </property>
351          <property name="text">
352           <string>&amp;Minimize to the tray instead of the taskbar</string>
353          </property>
354         </widget>
355        </item>
356        <item>
357         <widget class="QCheckBox" name="minimizeOnClose">
358          <property name="toolTip">
359           <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 Exit in the menu.</string>
360          </property>
361          <property name="text">
362           <string>M&amp;inimize on close</string>
363          </property>
364         </widget>
365        </item>
366        <item>
367         <spacer name="verticalSpacer_Window">
368          <property name="orientation">
369           <enum>Qt::Vertical</enum>
370          </property>
371          <property name="sizeHint" stdset="0">
372           <size>
373            <width>20</width>
374            <height>40</height>
375           </size>
376          </property>
377         </spacer>
378        </item>
379       </layout>
380      </widget>
381      <widget class="QWidget" name="tabDisplay">
382       <attribute name="title">
383        <string>&amp;Display</string>
384       </attribute>
385       <layout class="QVBoxLayout" name="verticalLayout_Display">
386        <item>
387         <layout class="QHBoxLayout" name="horizontalLayout_1_Display">
388          <item>
389           <widget class="QLabel" name="langLabel">
390            <property name="text">
391             <string>User Interface &amp;language:</string>
392            </property>
393            <property name="textFormat">
394             <enum>Qt::PlainText</enum>
395            </property>
396            <property name="buddy">
397             <cstring>lang</cstring>
398            </property>
399           </widget>
400          </item>
401          <item>
402           <widget class="QValueComboBox" name="lang">
403            <property name="toolTip">
404             <string>The user interface language can be set here. This setting will take effect after restarting NovaCoin.</string>
405            </property>
406           </widget>
407          </item>
408         </layout>
409        </item>
410        <item>
411         <layout class="QHBoxLayout" name="horizontalLayout_2_Display">
412          <item>
413           <widget class="QLabel" name="unitLabel">
414            <property name="text">
415             <string>&amp;Unit to show amounts in:</string>
416            </property>
417            <property name="textFormat">
418             <enum>Qt::PlainText</enum>
419            </property>
420            <property name="buddy">
421             <cstring>unit</cstring>
422            </property>
423           </widget>
424          </item>
425          <item>
426           <widget class="QValueComboBox" name="unit">
427            <property name="toolTip">
428             <string>Choose the default subdivision unit to show in the interface and when sending coins.</string>
429            </property>
430           </widget>
431          </item>
432         </layout>
433        </item>
434        <item>
435         <widget class="QCheckBox" name="displayAddresses">
436          <property name="toolTip">
437           <string>Whether to show NovaCoin addresses in the transaction list or not.</string>
438          </property>
439          <property name="text">
440           <string>&amp;Display addresses in transaction list</string>
441          </property>
442         </widget>
443        </item>
444        <item>
445         <widget class="QCheckBox" name="coinControlFeatures">
446          <property name="toolTip">
447           <string>Whether to show coin control features or not.</string>
448          </property>
449          <property name="text">
450           <string>Display coin &amp;control features (experts only!)</string>
451          </property>
452         </widget>
453        </item>
454        <item>
455         <layout class="QHBoxLayout" name="horizontalLayout_3_Display">
456          <item>
457           <widget class="QLabel" name="thirdPartyTxUrlsLabel">
458            <property name="toolTip">
459             <string>Third party URLs (e.g. explorer.novaco.in) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |.</string>
460            </property>
461            <property name="text">
462             <string>Third party transaction URLs</string>
463            </property>
464            <property name="buddy">
465             <cstring>thirdPartyTxUrls</cstring>
466            </property>
467           </widget>
468          </item>
469          <item>
470           <widget class="QLineEdit" name="thirdPartyTxUrls">
471            <property name="toolTip">
472             <string>Third party URLs (e.g. explorer.novaco.in) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |.</string>
473            </property>
474           </widget>
475          </item>
476         </layout>
477        </item>
478        <item>
479         <spacer name="verticalSpacer_Display">
480          <property name="orientation">
481           <enum>Qt::Vertical</enum>
482          </property>
483          <property name="sizeHint" stdset="0">
484           <size>
485            <width>20</width>
486            <height>40</height>
487           </size>
488          </property>
489         </spacer>
490        </item>
491       </layout>
492      </widget>
493     </widget>
494    </item>
495    <item>
496     <layout class="QHBoxLayout" name="horizontalLayout_Buttons">
497      <item>
498       <spacer name="horizontalSpacer_1">
499        <property name="orientation">
500         <enum>Qt::Horizontal</enum>
501        </property>
502        <property name="sizeHint" stdset="0">
503         <size>
504          <width>40</width>
505          <height>48</height>
506         </size>
507        </property>
508       </spacer>
509      </item>
510      <item>
511       <widget class="QLabel" name="statusLabel">
512        <property name="font">
513         <font>
514          <weight>75</weight>
515          <bold>true</bold>
516         </font>
517        </property>
518        <property name="text">
519         <string/>
520        </property>
521        <property name="textFormat">
522         <enum>Qt::PlainText</enum>
523        </property>
524        <property name="wordWrap">
525         <bool>true</bool>
526        </property>
527       </widget>
528      </item>
529      <item>
530       <spacer name="horizontalSpacer_2">
531        <property name="orientation">
532         <enum>Qt::Horizontal</enum>
533        </property>
534        <property name="sizeHint" stdset="0">
535         <size>
536          <width>40</width>
537          <height>48</height>
538         </size>
539        </property>
540       </spacer>
541      </item>
542      <item>
543       <widget class="QPushButton" name="okButton">
544        <property name="text">
545         <string>&amp;OK</string>
546        </property>
547       </widget>
548      </item>
549      <item>
550       <widget class="QPushButton" name="cancelButton">
551        <property name="text">
552         <string>&amp;Cancel</string>
553        </property>
554        <property name="autoDefault">
555         <bool>false</bool>
556        </property>
557       </widget>
558      </item>
559      <item>
560       <widget class="QPushButton" name="applyButton">
561        <property name="text">
562         <string>&amp;Apply</string>
563        </property>
564        <property name="autoDefault">
565         <bool>false</bool>
566        </property>
567       </widget>
568      </item>
569     </layout>
570    </item>
571   </layout>
572  </widget>
573  <customwidgets>
574   <customwidget>
575    <class>BitcoinAmountField</class>
576    <extends>QSpinBox</extends>
577    <header>bitcoinamountfield.h</header>
578   </customwidget>
579   <customwidget>
580    <class>QValueComboBox</class>
581    <extends>QComboBox</extends>
582    <header>qvaluecombobox.h</header>
583   </customwidget>
584   <customwidget>
585    <class>QValidatedLineEdit</class>
586    <extends>QLineEdit</extends>
587    <header>qvalidatedlineedit.h</header>
588   </customwidget>
589  </customwidgets>
590  <resources/>
591  <connections/>
592 </ui>