optionsdialog.ui raw

   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>560</width>
  10      <height>440</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="currentIndex">
  23        <number>0</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="QCheckBox" name="limenkaAtStartup">
  32           <property name="toolTip">
  33            <string>Automatically start %1 after logging in to the system.</string>
  34           </property>
  35           <property name="text">
  36            <string>&amp;Start %1 on system login</string>
  37           </property>
  38          </widget>
  39         </item>
  40         <item>
  41          <spacer name="horizontalSpacer_0_Main">
  42           <property name="orientation">
  43            <enum>Qt::Horizontal</enum>
  44           </property>
  45           <property name="sizeHint" stdset="0">
  46            <size>
  47             <width>40</width>
  48             <height>5</height>
  49            </size>
  50           </property>
  51          </spacer>
  52         </item>
  53         <item>
  54          <layout class="QHBoxLayout" name="horizontalLayout_Main_Prune">
  55           <item>
  56            <widget class="QCheckBox" name="prune">
  57             <property name="toolTip">
  58              <string>Enabling pruning significantly reduces the disk space required to store transactions. All blocks are still fully validated. Wallets should be loaded at startup and kept active while pruning is enabled so they stay synchronized before old block data is deleted; wallets that fall behind pruned data may require a reindex. Reverting this setting requires re-downloading the entire blockchain.</string>
  59             </property>
  60             <property name="text">
  61              <string>Prune &amp;block storage to</string>
  62             </property>
  63            </widget>
  64           </item>
  65           <item>
  66            <widget class="QSpinBox" name="pruneSizeMiB"/>
  67           </item>
  68           <item>
  69            <widget class="QLabel" name="pruneSizeUnitLabel">
  70             <property name="text">
  71              <string>MiB</string>
  72             </property>
  73             <property name="textFormat">
  74              <enum>Qt::PlainText</enum>
  75             </property>
  76            </widget>
  77           </item>
  78           <item>
  79            <spacer name="horizontalSpacer_Main_Prune">
  80             <property name="orientation">
  81              <enum>Qt::Horizontal</enum>
  82             </property>
  83             <property name="sizeHint" stdset="0">
  84              <size>
  85               <width>40</width>
  86               <height>20</height>
  87              </size>
  88             </property>
  89            </spacer>
  90           </item>
  91          </layout>
  92         </item>
  93         <item>
  94          <widget class="QLabel" name="pruneWarning">
  95           <property name="text">
  96            <string>Reverting this setting requires re-downloading the entire blockchain.</string>
  97           </property>
  98           <property name="textFormat">
  99            <enum>Qt::PlainText</enum>
 100           </property>
 101          </widget>
 102         </item>
 103         <item>
 104          <layout class="QHBoxLayout" name="horizontalLayout_2_Main">
 105           <item>
 106            <widget class="QLabel" name="databaseCacheLabel">
 107             <property name="toolTip">
 108              <string extracomment="Tooltip text for Options window setting that sets the size of the database cache. Explains the corresponding effects of increasing/decreasing this value.">Maximum database cache size. Make sure you have enough RAM. A larger cache can contribute to faster sync, after which the benefit is less pronounced for most use cases. Lowering the cache size will reduce memory usage. Unused mempool memory is shared for this cache.</string>
 109             </property>
 110             <property name="text">
 111              <string>S&amp;ize of database cache</string>
 112             </property>
 113             <property name="textFormat">
 114              <enum>Qt::PlainText</enum>
 115             </property>
 116             <property name="buddy">
 117              <cstring>databaseCache</cstring>
 118             </property>
 119            </widget>
 120           </item>
 121           <item>
 122            <widget class="QSpinBox" name="databaseCache"/>
 123           </item>
 124           <item>
 125            <widget class="QLabel" name="databaseCacheUnitLabel">
 126             <property name="text">
 127              <string>MiB</string>
 128             </property>
 129             <property name="textFormat">
 130              <enum>Qt::PlainText</enum>
 131             </property>
 132            </widget>
 133           </item>
 134           <item>
 135            <spacer name="horizontalSpacer_2_Main">
 136             <property name="orientation">
 137              <enum>Qt::Horizontal</enum>
 138             </property>
 139             <property name="sizeHint" stdset="0">
 140              <size>
 141               <width>40</width>
 142               <height>20</height>
 143              </size>
 144             </property>
 145            </spacer>
 146           </item>
 147          </layout>
 148         </item>
 149         <item>
 150          <layout class="QHBoxLayout" name="horizontalLayout_Main_VerifyLabel">
 151           <item>
 152            <widget class="QLabel" name="threadsScriptVerifLabel">
 153             <property name="toolTip">
 154              <string extracomment="Tooltip text for Options window setting that sets the number of script verification threads. Explains that negative values mean to leave these many cores free to the system.">Set the number of script verification threads. Negative values correspond to the number of cores you want to leave free to the system.</string>
 155             </property>
 156             <property name="text">
 157              <string>Number of script &amp;verification threads</string>
 158             </property>
 159             <property name="textFormat">
 160              <enum>Qt::PlainText</enum>
 161             </property>
 162             <property name="buddy">
 163              <cstring>threadsScriptVerif</cstring>
 164             </property>
 165            </widget>
 166           </item>
 167           <item>
 168            <widget class="QSpinBox" name="threadsScriptVerif">
 169             <property name="toolTip">
 170              <string>(0 = auto, &lt;0 = leave that many cores free)</string>
 171             </property>
 172            </widget>
 173           </item>
 174           <item>
 175            <spacer name="horizontalSpacer_Main_Threads">
 176             <property name="orientation">
 177              <enum>Qt::Horizontal</enum>
 178             </property>
 179             <property name="sizeHint" stdset="0">
 180              <size>
 181               <width>40</width>
 182               <height>40</height>
 183              </size>
 184             </property>
 185            </spacer>
 186           </item>
 187          </layout>
 188         </item>
 189         <item>
 190          <widget class="QLabel" name="threadsWarning">
 191           <property name="text">
 192            <string>Using more threads than CPU cores may reduce performance due to context-switch overhead.</string>
 193           </property>
 194           <property name="textFormat">
 195            <enum>Qt::PlainText</enum>
 196           </property>
 197          </widget>
 198         </item>
 199         <item>
 200          <widget class="QCheckBox" name="enableServer">
 201           <property name="toolTip">
 202            <string extracomment="Tooltip text for Options window setting that enables the RPC server.">This allows you or a third party tool to communicate with the node through command-line and JSON-RPC commands.</string>
 203           </property>
 204           <property name="text">
 205            <string extracomment="An Options window setting to enable the RPC server.">Enable R&amp;PC server</string>
 206           </property>
 207          </widget>
 208         </item>
 209         <item>
 210          <spacer name="verticalSpacer_Main">
 211           <property name="orientation">
 212            <enum>Qt::Vertical</enum>
 213           </property>
 214           <property name="sizeHint" stdset="0">
 215            <size>
 216             <width>20</width>
 217             <height>40</height>
 218            </size>
 219           </property>
 220          </spacer>
 221         </item>
 222        </layout>
 223       </widget>
 224       <widget class="QWidget" name="tabWallet">
 225        <attribute name="title">
 226         <string>W&amp;allet</string>
 227        </attribute>
 228        <layout class="QVBoxLayout" name="verticalLayout_Wallet">
 229         <item>
 230          <widget class="QCheckBox" name="subFeeFromAmount">
 231           <property name="toolTip">
 232            <string extracomment="Tooltip text for Options window setting that sets subtracting the fee from a sending amount as default.">Whether to set subtract fee from amount as default or not.</string>
 233           </property>
 234           <property name="text">
 235            <string extracomment="An Options window setting to set subtracting the fee from a sending amount as default.">Subtract &amp;fee from amount by default</string>
 236           </property>
 237          </widget>
 238         </item>
 239         <item>
 240          <layout class="QHBoxLayout">
 241           <item>
 242            <widget class="QLabel">
 243             <property name="text">
 244              <string>Address type:</string>
 245             </property>
 246             <property name="buddy">
 247              <cstring>addressType</cstring>
 248             </property>
 249            </widget>
 250           </item>
 251           <item>
 252            <widget class="QValueComboBox" name="addressType">
 253             <property name="toolTip">
 254              <string>Choose the default address type to select when receiving coins.</string>
 255             </property>
 256            </widget>
 257           </item>
 258          </layout>
 259         </item>
 260         <item>
 261          <widget class="QGroupBox" name="groupBox">
 262           <property name="title">
 263            <string>Expert</string>
 264           </property>
 265           <layout class="QVBoxLayout" name="verticalLayout_2">
 266            <item>
 267             <widget class="QCheckBox" name="coinControlFeatures">
 268              <property name="toolTip">
 269               <string>Whether to show coin control features or not.</string>
 270              </property>
 271              <property name="text">
 272               <string>Enable co&amp;in control features</string>
 273              </property>
 274             </widget>
 275            </item>
 276            <item>
 277             <widget class="QCheckBox" name="spendZeroConfChange">
 278              <property name="toolTip">
 279               <string>If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed.</string>
 280              </property>
 281              <property name="text">
 282               <string>&amp;Spend unconfirmed change</string>
 283              </property>
 284             </widget>
 285            </item>
 286            <item>
 287             <widget class="QCheckBox" name="m_enable_psbt_controls">
 288              <property name="text">
 289               <string extracomment="An options window setting to enable PSBT controls.">Enable &amp;PSBT controls</string>
 290              </property>
 291              <property name="toolTip">
 292               <string extracomment="Tooltip text for options window setting that enables PSBT controls.">Whether to show PSBT controls.</string>
 293              </property>
 294             </widget>
 295            </item>
 296           </layout>
 297          </widget>
 298         </item>
 299         <item>
 300          <widget class="QGroupBox" name="groupBoxHww">
 301           <property name="title">
 302            <string>External Signer (e.g. hardware wallet)</string>
 303           </property>
 304           <layout class="QVBoxLayout" name="verticalLayoutHww">
 305            <item>
 306             <layout class="QHBoxLayout" name="horizontalLayoutHww">
 307              <item>
 308               <widget class="QLabel" name="externalSignerPathLabel">
 309                <property name="text">
 310                 <string>&amp;External signer script path</string>
 311                </property>
 312                <property name="buddy">
 313                 <cstring>externalSignerPath</cstring>
 314                </property>
 315               </widget>
 316              </item>
 317              <item>
 318               <widget class="QLineEdit" name="externalSignerPath">
 319                <property name="toolTip">
 320                 <string>Full path to a %1 compatible script (e.g. C:\Downloads\hwi.exe or /Users/you/Downloads/hwi.py). Beware: malware can steal your coins!</string>
 321                </property>
 322               </widget>
 323              </item>
 324             </layout>
 325            </item>
 326           </layout>
 327          </widget>
 328         </item>
 329         <item>
 330          <spacer name="verticalSpacer_Wallet">
 331           <property name="orientation">
 332            <enum>Qt::Vertical</enum>
 333           </property>
 334           <property name="sizeHint" stdset="0">
 335            <size>
 336             <width>20</width>
 337             <height>40</height>
 338            </size>
 339           </property>
 340          </spacer>
 341         </item>
 342        </layout>
 343       </widget>
 344       <widget class="QWidget" name="tabNetwork">
 345        <attribute name="title">
 346         <string>&amp;Network</string>
 347        </attribute>
 348        <layout class="QVBoxLayout" name="verticalLayout_Network">
 349         <item>
 350          <layout class="QHBoxLayout" name="horizontalLayout_Network_Port">
 351           <item>
 352            <widget class="QLabel" name="networkPortLabel">
 353             <property name="text">
 354              <string>Network &amp;port</string>
 355             </property>
 356             <property name="textFormat">
 357              <enum>Qt::PlainText</enum>
 358             </property>
 359             <property name="buddy">
 360              <cstring>networkPort</cstring>
 361             </property>
 362            </widget>
 363           </item>
 364           <item>
 365            <widget class="QLineEdit" name="networkPort">
 366             <property name="minimumSize">
 367              <size>
 368               <width>55</width>
 369               <height>0</height>
 370              </size>
 371             </property>
 372             <property name="maximumSize">
 373              <size>
 374               <width>55</width>
 375               <height>16777215</height>
 376              </size>
 377             </property>
 378             <property name="toolTip">
 379              <string>Network port (e.g. 8333)</string>
 380             </property>
 381            </widget>
 382           </item>
 383           <item>
 384            <spacer name="horizontalSpacer_Network_Port">
 385             <property name="orientation">
 386              <enum>Qt::Horizontal</enum>
 387             </property>
 388             <property name="sizeHint" stdset="0">
 389              <size>
 390               <width>40</width>
 391               <height>20</height>
 392              </size>
 393             </property>
 394            </spacer>
 395           </item>
 396          </layout>
 397         </item>
 398         <item>
 399          <widget class="QCheckBox" name="mapPortNatpmp">
 400           <property name="toolTip">
 401            <string>Automatically open the Limenka client port on the router. This only works when your router supports PCP or NAT-PMP and it is enabled. The external port could be random.</string>
 402           </property>
 403           <property name="text">
 404            <string>Automatically configure router(s) that support PCP or NA&amp;T-PMP</string>
 405           </property>
 406          </widget>
 407         </item>
 408         <item>
 409          <widget class="QCheckBox" name="allowIncoming">
 410           <property name="toolTip">
 411            <string>Accept connections from outside.</string>
 412           </property>
 413           <property name="text">
 414            <string>Allow incomin&amp;g connections</string>
 415           </property>
 416          </widget>
 417         </item>
 418         <item>
 419          <widget class="QCheckBox" name="connectSocks">
 420           <property name="toolTip">
 421            <string>Connect to the Limenka network through a SOCKS5 proxy.</string>
 422           </property>
 423           <property name="text">
 424            <string>Connect through &amp;SOCKS5 proxy (default proxy):</string>
 425           </property>
 426          </widget>
 427         </item>
 428         <item>
 429          <layout class="QHBoxLayout" name="horizontalLayout_1_Network">
 430           <item>
 431            <widget class="QLabel" name="proxyIpLabel">
 432             <property name="text">
 433              <string>Proxy &amp;IP:</string>
 434             </property>
 435             <property name="textFormat">
 436              <enum>Qt::PlainText</enum>
 437             </property>
 438             <property name="buddy">
 439              <cstring>proxyIp</cstring>
 440             </property>
 441            </widget>
 442           </item>
 443           <item>
 444            <widget class="QValidatedLineEdit" name="proxyIp">
 445             <property name="minimumSize">
 446              <size>
 447               <width>140</width>
 448               <height>0</height>
 449              </size>
 450             </property>
 451             <property name="maximumSize">
 452              <size>
 453               <width>140</width>
 454               <height>16777215</height>
 455              </size>
 456             </property>
 457             <property name="toolTip">
 458              <string>IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1)</string>
 459             </property>
 460            </widget>
 461           </item>
 462           <item>
 463            <widget class="QLabel" name="proxyPortLabel">
 464             <property name="text">
 465              <string>&amp;Port:</string>
 466             </property>
 467             <property name="textFormat">
 468              <enum>Qt::PlainText</enum>
 469             </property>
 470             <property name="buddy">
 471              <cstring>proxyPort</cstring>
 472             </property>
 473            </widget>
 474           </item>
 475           <item>
 476            <widget class="QLineEdit" name="proxyPort">
 477             <property name="minimumSize">
 478              <size>
 479               <width>55</width>
 480               <height>0</height>
 481              </size>
 482             </property>
 483             <property name="maximumSize">
 484              <size>
 485               <width>55</width>
 486               <height>16777215</height>
 487              </size>
 488             </property>
 489             <property name="toolTip">
 490              <string>Port of the proxy (e.g. 9050)</string>
 491             </property>
 492            </widget>
 493           </item>
 494           <item>
 495            <spacer name="horizontalSpacer_1_Network">
 496             <property name="orientation">
 497              <enum>Qt::Horizontal</enum>
 498             </property>
 499             <property name="sizeHint" stdset="0">
 500              <size>
 501               <width>40</width>
 502               <height>20</height>
 503              </size>
 504             </property>
 505            </spacer>
 506           </item>
 507          </layout>
 508         </item>
 509         <item>
 510          <layout class="QHBoxLayout" name="horizontalLayout_2_Network">
 511           <item>
 512            <widget class="QLabel" name="proxyActiveNets">
 513             <property name="text">
 514              <string>Used for reaching peers via:</string>
 515             </property>
 516             <property name="textFormat">
 517              <enum>Qt::PlainText</enum>
 518             </property>
 519            </widget>
 520           </item>
 521           <item>
 522            <widget class="QCheckBox" name="proxyReachIPv4">
 523             <property name="enabled">
 524              <bool>false</bool>
 525             </property>
 526             <property name="toolTip">
 527              <string>Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type.</string>
 528             </property>
 529             <property name="text">
 530              <string/>
 531             </property>
 532            </widget>
 533           </item>
 534           <item>
 535            <widget class="QLabel" name="proxyReachIPv4Label">
 536             <property name="text">
 537              <string>IPv4</string>
 538             </property>
 539             <property name="textFormat">
 540              <enum>Qt::PlainText</enum>
 541             </property>
 542            </widget>
 543           </item>
 544           <item>
 545            <widget class="QCheckBox" name="proxyReachIPv6">
 546             <property name="enabled">
 547              <bool>false</bool>
 548             </property>
 549             <property name="toolTip">
 550              <string>Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type.</string>
 551             </property>
 552             <property name="text">
 553              <string/>
 554             </property>
 555            </widget>
 556           </item>
 557           <item>
 558            <widget class="QLabel" name="proxyReachIPv6Label">
 559             <property name="text">
 560              <string>IPv6</string>
 561             </property>
 562             <property name="textFormat">
 563              <enum>Qt::PlainText</enum>
 564             </property>
 565            </widget>
 566           </item>
 567           <item>
 568            <widget class="QCheckBox" name="proxyReachTor">
 569             <property name="enabled">
 570              <bool>false</bool>
 571             </property>
 572             <property name="toolTip">
 573              <string>Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type.</string>
 574             </property>
 575             <property name="text">
 576              <string/>
 577             </property>
 578            </widget>
 579           </item>
 580           <item>
 581            <widget class="QLabel" name="proxyReachTorLabel">
 582             <property name="text">
 583              <string>Tor</string>
 584             </property>
 585             <property name="textFormat">
 586              <enum>Qt::PlainText</enum>
 587             </property>
 588            </widget>
 589           </item>
 590           <item>
 591            <spacer name="horizontalSpacer_2_Network">
 592             <property name="orientation">
 593              <enum>Qt::Horizontal</enum>
 594             </property>
 595             <property name="sizeHint" stdset="0">
 596              <size>
 597               <width>40</width>
 598               <height>20</height>
 599              </size>
 600             </property>
 601            </spacer>
 602           </item>
 603          </layout>
 604         </item>
 605         <item>
 606          <widget class="QCheckBox" name="connectSocksTor">
 607           <property name="toolTip">
 608            <string>Connect to the Limenka network through a separate SOCKS5 proxy for Tor onion services.</string>
 609           </property>
 610           <property name="text">
 611            <string>Use separate SOCKS&amp;5 proxy to reach peers via Tor onion services:</string>
 612           </property>
 613          </widget>
 614         </item>
 615         <item>
 616          <layout class="QHBoxLayout" name="horizontalLayout_3_Network">
 617           <item>
 618            <widget class="QLabel" name="proxyIpTorLabel">
 619             <property name="text">
 620              <string>Proxy &amp;IP:</string>
 621             </property>
 622             <property name="textFormat">
 623              <enum>Qt::PlainText</enum>
 624             </property>
 625             <property name="buddy">
 626              <cstring>proxyIpTor</cstring>
 627             </property>
 628            </widget>
 629           </item>
 630           <item>
 631            <widget class="QValidatedLineEdit" name="proxyIpTor">
 632             <property name="minimumSize">
 633              <size>
 634               <width>140</width>
 635               <height>0</height>
 636              </size>
 637             </property>
 638             <property name="maximumSize">
 639              <size>
 640               <width>140</width>
 641               <height>16777215</height>
 642              </size>
 643             </property>
 644             <property name="toolTip">
 645              <string>IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1)</string>
 646             </property>
 647            </widget>
 648           </item>
 649           <item>
 650            <widget class="QLabel" name="proxyPortTorLabel">
 651             <property name="text">
 652              <string>&amp;Port:</string>
 653             </property>
 654             <property name="textFormat">
 655              <enum>Qt::PlainText</enum>
 656             </property>
 657             <property name="buddy">
 658              <cstring>proxyPortTor</cstring>
 659             </property>
 660            </widget>
 661           </item>
 662           <item>
 663            <widget class="QLineEdit" name="proxyPortTor">
 664             <property name="minimumSize">
 665              <size>
 666               <width>55</width>
 667               <height>0</height>
 668              </size>
 669             </property>
 670             <property name="maximumSize">
 671              <size>
 672               <width>55</width>
 673               <height>16777215</height>
 674              </size>
 675             </property>
 676             <property name="toolTip">
 677              <string>Port of the proxy (e.g. 9050)</string>
 678             </property>
 679            </widget>
 680           </item>
 681           <item>
 682            <spacer name="horizontalSpacer_4_Network">
 683             <property name="orientation">
 684              <enum>Qt::Horizontal</enum>
 685             </property>
 686             <property name="sizeHint" stdset="0">
 687              <size>
 688               <width>40</width>
 689               <height>20</height>
 690              </size>
 691             </property>
 692            </spacer>
 693           </item>
 694          </layout>
 695         </item>
 696         <item>
 697          <layout class="QHBoxLayout" name="horizontalLayout_maxuploadtarget">
 698           <item>
 699            <widget class="QCheckBox" name="maxuploadtargetCheckbox">
 700             <property name="text">
 701              <string>Try to keep upload traffic under</string>
 702             </property>
 703            </widget>
 704           </item>
 705           <item>
 706            <widget class="QSpinBox" name="maxuploadtarget"/>
 707           </item>
 708           <item>
 709            <widget class="QLabel" name="maxuploadtargetUnitLabel">
 710             <property name="text">
 711              <string>MiB per day</string>
 712             </property>
 713             <property name="textFormat">
 714              <enum>Qt::PlainText</enum>
 715             </property>
 716             <property name="buddy">
 717              <cstring>maxuploadtargetCheckbox</cstring>
 718             </property>
 719            </widget>
 720           </item>
 721           <item>
 722            <spacer name="horizontalSpacer_maxuploadtarget">
 723             <property name="orientation">
 724              <enum>Qt::Horizontal</enum>
 725             </property>
 726             <property name="sizeHint" stdset="0">
 727              <size>
 728               <width>40</width>
 729               <height>20</height>
 730              </size>
 731             </property>
 732            </spacer>
 733           </item>
 734          </layout>
 735         </item>
 736         <item>
 737          <widget class="QCheckBox" name="peerbloomfilters">
 738           <property name="toolTip">
 739            <string>Support filtering of blocks and transaction with bloom filters</string>
 740           </property>
 741           <property name="text">
 742            <string>Provide search services for light clients</string>
 743           </property>
 744          </widget>
 745         </item>
 746         <item>
 747          <widget class="QCheckBox" name="peerblockfilters">
 748           <property name="toolTip">
 749            <string>Generate compact block filters and allow peers to download them</string>
 750           </property>
 751           <property name="text">
 752            <string>Provide compact block filters for light clients</string>
 753           </property>
 754          </widget>
 755         </item>
 756         <item>
 757          <spacer name="verticalSpacer_Network">
 758           <property name="orientation">
 759            <enum>Qt::Vertical</enum>
 760           </property>
 761           <property name="sizeHint" stdset="0">
 762            <size>
 763             <width>20</width>
 764             <height>40</height>
 765            </size>
 766           </property>
 767          </spacer>
 768         </item>
 769        </layout>
 770       </widget>
 771       <widget class="QWidget" name="tabWindow">
 772        <attribute name="title">
 773         <string>&amp;Window</string>
 774        </attribute>
 775        <layout class="QVBoxLayout" name="verticalLayout_Window">
 776         <item>
 777          <widget class="QCheckBox" name="showTrayIcon">
 778           <property name="toolTip">
 779            <string>Show the icon in the system tray.</string>
 780           </property>
 781           <property name="text">
 782            <string>&amp;Show tray icon</string>
 783           </property>
 784           <property name="checked">
 785            <bool>true</bool>
 786           </property>
 787          </widget>
 788         </item>
 789         <item>
 790          <widget class="QCheckBox" name="minimizeToTray">
 791           <property name="toolTip">
 792            <string>Show only a tray icon after minimizing the window.</string>
 793           </property>
 794           <property name="text">
 795            <string>Minimize to the &amp;tray instead of the taskbar</string>
 796           </property>
 797          </widget>
 798         </item>
 799         <item>
 800          <widget class="QCheckBox" name="minimizeOnClose">
 801           <property name="toolTip">
 802            <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>
 803           </property>
 804           <property name="text">
 805            <string>M&amp;inimize on close</string>
 806           </property>
 807          </widget>
 808         </item>
 809         <item>
 810          <spacer name="verticalSpacer_Window">
 811           <property name="orientation">
 812            <enum>Qt::Vertical</enum>
 813           </property>
 814           <property name="sizeHint" stdset="0">
 815            <size>
 816             <width>20</width>
 817             <height>40</height>
 818            </size>
 819           </property>
 820          </spacer>
 821         </item>
 822        </layout>
 823       </widget>
 824       <widget class="QWidget" name="tabDisplay">
 825        <attribute name="title">
 826         <string>&amp;Display</string>
 827        </attribute>
 828        <layout class="QVBoxLayout" name="verticalLayout_Display">
 829         <item>
 830          <layout class="QHBoxLayout" name="horizontalLayout_1_Display">
 831           <item>
 832            <widget class="QLabel" name="langLabel">
 833             <property name="text">
 834              <string>User Interface &amp;language:</string>
 835             </property>
 836             <property name="textFormat">
 837              <enum>Qt::PlainText</enum>
 838             </property>
 839             <property name="buddy">
 840              <cstring>lang</cstring>
 841             </property>
 842            </widget>
 843           </item>
 844           <item>
 845            <widget class="QValueComboBox" name="lang">
 846             <property name="toolTip">
 847              <string>The user interface language can be set here. This setting will take effect after restarting %1.</string>
 848             </property>
 849            </widget>
 850           </item>
 851          </layout>
 852         </item>
 853         <item>
 854          <layout class="QHBoxLayout" name="horizontalLayout_2_Display">
 855           <item>
 856            <widget class="QLabel" name="unitLabel">
 857             <property name="text">
 858              <string>&amp;Unit to show amounts in:</string>
 859             </property>
 860             <property name="textFormat">
 861              <enum>Qt::PlainText</enum>
 862             </property>
 863             <property name="buddy">
 864              <cstring>unit</cstring>
 865             </property>
 866            </widget>
 867           </item>
 868           <item>
 869            <widget class="QValueComboBox" name="unit">
 870             <property name="toolTip">
 871              <string>Choose the default subdivision unit to show in the interface and when sending coins.</string>
 872             </property>
 873            </widget>
 874           </item>
 875          </layout>
 876         </item>
 877         <item>
 878          <widget class="QCheckBox" name="displayAddresses">
 879           <property name="toolTip">
 880            <string>Whether to show Limenka addresses in the transaction list or not.</string>
 881           </property>
 882           <property name="text">
 883            <string>&amp;Display addresses in transaction list</string>
 884           </property>
 885          </widget>
 886         </item>
 887         <item>
 888          <layout class="QHBoxLayout" name="horizontalLayout_3_Display">
 889           <item>
 890            <widget class="QLabel" name="thirdPartyTxUrlsLabel">
 891             <property name="toolTip">
 892              <string>Third-party URLs (e.g. a block explorer) 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>
 893             </property>
 894             <property name="text">
 895              <string>&amp;Third-party transaction URLs:</string>
 896             </property>
 897             <property name="buddy">
 898              <cstring>thirdPartyTxUrls</cstring>
 899             </property>
 900            </widget>
 901           </item>
 902           <item>
 903            <widget class="QLineEdit" name="thirdPartyTxUrls">
 904             <property name="toolTip">
 905              <string>Third-party URLs (e.g. a block explorer) 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>
 906             </property>
 907             <property name="placeholderText">
 908              <string notr="true">https://example.com/tx/%s</string>
 909             </property>
 910            </widget>
 911           </item>
 912          </layout>
 913         </item>
 914         <item>
 915          <layout class="QHBoxLayout" name="horizontalLayout_4_Display">
 916           <item>
 917            <widget class="QLabel" name="moneyFontLabel">
 918             <property name="text">
 919              <string>Font for amounts: </string>
 920             </property>
 921             <property name="buddy">
 922              <cstring>moneyFont</cstring>
 923             </property>
 924            </widget>
 925           </item>
 926           <item>
 927            <widget class="QComboBox" name="moneyFont"/>
 928           </item>
 929           <item>
 930            <widget class="QLabel" name="moneyFont_preview">
 931             <property name="text">
 932              <string notr="true">111.11111111 BTC
 933  909.09090909 BTC</string>
 934             </property>
 935            </widget>
 936           </item>
 937          </layout>
 938         </item>
 939         <item>
 940          <layout class="QHBoxLayout" name="horizontalLayout_qrFont">
 941           <item>
 942            <widget class="QLabel" name="qrFontLabel">
 943             <property name="text">
 944              <string>Font in QR Codes: </string>
 945             </property>
 946             <property name="buddy">
 947              <cstring>qrFont</cstring>
 948             </property>
 949            </widget>
 950           </item>
 951           <item>
 952            <widget class="QComboBox" name="qrFont"/>
 953           </item>
 954           <item>
 955            <widget class="QLabel" name="qrFont_preview">
 956             <property name="text">
 957              <string notr="true">1NS17iag9jJgT…
 958  bc1p2q3rvn3gp…</string>
 959             </property>
 960            </widget>
 961           </item>
 962          </layout>
 963         </item>
 964         <item>
 965          <widget class="QCheckBox" name="peersTabAlternatingRowColors">
 966           <property name="toolTip">
 967            <string>Alternate the row colors for the &quot;Peers&quot; and &quot;Banned peers&quot; tables in the Peers tab.</string>
 968           </property>
 969           <property name="text">
 970            <string>Alternate row colors in the Peers tab</string>
 971           </property>
 972          </widget>
 973         </item>
 974         <item>
 975          <spacer name="verticalSpacer_Display">
 976           <property name="orientation">
 977            <enum>Qt::Vertical</enum>
 978           </property>
 979           <property name="sizeHint" stdset="0">
 980            <size>
 981             <width>20</width>
 982             <height>40</height>
 983            </size>
 984           </property>
 985          </spacer>
 986         </item>
 987        </layout>
 988        </widget>
 989        <widget class="QWidget" name="tabMempool">
 990         <attribute name="title">
 991          <string>&amp;Mempool</string>
 992         </attribute>
 993         <layout class="QVBoxLayout" name="verticalLayout_Mempool">
 994          <item>
 995           <widget class="QCheckBox" name="datacarrier">
 996            <property name="toolTip">
 997             <string>Relay and mine data carrier transactions (OP_RETURN)</string>
 998            </property>
 999            <property name="text">
1000             <string>&amp;Enable data carrier relay</string>
1001            </property>
1002           </widget>
1003          </item>
1004          <item>
1005           <layout class="QHBoxLayout" name="horizontalLayout_DataCarrierSize">
1006            <item>
1007             <widget class="QLabel" name="datacarrierSizeLabel">
1008              <property name="toolTip">
1009               <string>Maximum size in bytes of a single OP_RETURN output</string>
1010              </property>
1011              <property name="text">
1012               <string>OP_RETURN &amp;size limit:</string>
1013              </property>
1014              <property name="textFormat">
1015               <enum>Qt::PlainText</enum>
1016              </property>
1017              <property name="buddy">
1018               <cstring>datacarrierSize</cstring>
1019              </property>
1020             </widget>
1021            </item>
1022            <item>
1023             <widget class="QSpinBox" name="datacarrierSize">
1024              <property name="toolTip">
1025               <string>Maximum size in bytes of a single OP_RETURN output</string>
1026              </property>
1027              <property name="suffix">
1028               <string> bytes</string>
1029              </property>
1030             </widget>
1031            </item>
1032            <item>
1033             <spacer name="horizontalSpacer_DataCarrierSize">
1034              <property name="orientation">
1035               <enum>Qt::Horizontal</enum>
1036              </property>
1037              <property name="sizeHint" stdset="0">
1038               <size>
1039                <width>40</width>
1040                <height>20</height>
1041               </size>
1042              </property>
1043             </spacer>
1044            </item>
1045           </layout>
1046          </item>
1047          <item>
1048           <layout class="QHBoxLayout" name="horizontalLayout_MaxOpReturnRelay">
1049            <item>
1050             <widget class="QLabel" name="maxOpReturnRelayLabel">
1051              <property name="toolTip">
1052               <string>Maximum number of OP_RETURN outputs per transaction</string>
1053              </property>
1054              <property name="text">
1055               <string>Max OP_RETURN &amp;outputs:</string>
1056              </property>
1057              <property name="textFormat">
1058               <enum>Qt::PlainText</enum>
1059              </property>
1060              <property name="buddy">
1061               <cstring>maxOpReturnRelay</cstring>
1062              </property>
1063             </widget>
1064            </item>
1065            <item>
1066             <widget class="QSpinBox" name="maxOpReturnRelay">
1067              <property name="toolTip">
1068               <string>Maximum number of OP_RETURN outputs per transaction</string>
1069              </property>
1070             </widget>
1071            </item>
1072            <item>
1073             <spacer name="horizontalSpacer_MaxOpReturnRelay">
1074              <property name="orientation">
1075               <enum>Qt::Horizontal</enum>
1076              </property>
1077              <property name="sizeHint" stdset="0">
1078               <size>
1079                <width>40</width>
1080                <height>20</height>
1081               </size>
1082              </property>
1083             </spacer>
1084            </item>
1085           </layout>
1086          </item>
1087          <item>
1088           <widget class="QCheckBox" name="permitBareMultisig">
1089            <property name="toolTip">
1090             <string>Relay non-P2SH multisig outputs (bare multisig)</string>
1091            </property>
1092            <property name="text">
1093             <string>Permit &amp;bare multisig</string>
1094            </property>
1095           </widget>
1096          </item>
1097          <item>
1098           <layout class="QHBoxLayout" name="horizontalLayout_TaprootWitnessLimit">
1099            <item>
1100             <widget class="QLabel" name="taprootWitnessLimitLabel">
1101              <property name="toolTip">
1102               <string>Maximum witness bytes per taproot input (0 = unlimited)</string>
1103              </property>
1104              <property name="text">
1105               <string>Taproot &amp;witness limit:</string>
1106              </property>
1107              <property name="textFormat">
1108               <enum>Qt::PlainText</enum>
1109              </property>
1110              <property name="buddy">
1111               <cstring>taprootWitnessLimit</cstring>
1112              </property>
1113             </widget>
1114            </item>
1115            <item>
1116             <widget class="QSpinBox" name="taprootWitnessLimit">
1117              <property name="toolTip">
1118               <string>Maximum witness bytes per taproot input. Set to 0 for unlimited. Default 98 restricts to simple key-path spends.</string>
1119              </property>
1120              <property name="suffix">
1121               <string> bytes</string>
1122              </property>
1123              <property name="specialValueText">
1124               <string>Unlimited</string>
1125              </property>
1126             </widget>
1127            </item>
1128            <item>
1129             <spacer name="horizontalSpacer_TaprootWitnessLimit">
1130              <property name="orientation">
1131               <enum>Qt::Horizontal</enum>
1132              </property>
1133              <property name="sizeHint" stdset="0">
1134               <size>
1135                <width>40</width>
1136                <height>20</height>
1137               </size>
1138              </property>
1139             </spacer>
1140            </item>
1141           </layout>
1142          </item>
1143          <item>
1144           <widget class="QCheckBox" name="rejectTaproot">
1145            <property name="toolTip">
1146             <string>Reject taproot transactions in the mempool. After Jan 1 2027, this defaults to true.</string>
1147            </property>
1148            <property name="text">
1149             <string>&amp;Reject taproot transactions</string>
1150            </property>
1151           </widget>
1152          </item>
1153          <item>
1154           <layout class="QHBoxLayout" name="horizontalLayout_BytesPerSigOp">
1155            <item>
1156             <widget class="QLabel" name="bytesPerSigOpLabel">
1157              <property name="toolTip">
1158               <string>Equivalent bytes per sigop in transactions for relay and mining</string>
1159              </property>
1160              <property name="text">
1161               <string>&amp;Bytes per sigop:</string>
1162              </property>
1163              <property name="textFormat">
1164               <enum>Qt::PlainText</enum>
1165              </property>
1166              <property name="buddy">
1167               <cstring>bytesPerSigOp</cstring>
1168              </property>
1169             </widget>
1170            </item>
1171            <item>
1172             <widget class="QSpinBox" name="bytesPerSigOp">
1173              <property name="toolTip">
1174               <string>Equivalent bytes per sigop in transactions for relay and mining</string>
1175              </property>
1176             </widget>
1177            </item>
1178            <item>
1179             <spacer name="horizontalSpacer_BytesPerSigOp">
1180              <property name="orientation">
1181               <enum>Qt::Horizontal</enum>
1182              </property>
1183              <property name="sizeHint" stdset="0">
1184               <size>
1185                <width>40</width>
1186                <height>20</height>
1187               </size>
1188              </property>
1189             </spacer>
1190            </item>
1191           </layout>
1192          </item>
1193          <item>
1194           <spacer name="verticalSpacer_Mempool">
1195            <property name="orientation">
1196             <enum>Qt::Vertical</enum>
1197            </property>
1198            <property name="sizeHint" stdset="0">
1199             <size>
1200              <width>20</width>
1201              <height>40</height>
1202             </size>
1203            </property>
1204           </spacer>
1205          </item>
1206         </layout>
1207        </widget>
1208       </widget>
1209     </item>
1210     <item>
1211      <widget class="QFrame" name="frame">
1212       <layout class="QVBoxLayout" name="verticalLayout_Bottom">
1213        <item>
1214         <layout class="QHBoxLayout" name="horizontalLayout_Bottom">
1215          <item>
1216           <widget class="QLabel" name="overriddenByCommandLineInfoLabel">
1217            <property name="text">
1218             <string>Options set in this dialog are overridden by the command line:</string>
1219            </property>
1220            <property name="textFormat">
1221             <enum>Qt::PlainText</enum>
1222            </property>
1223           </widget>
1224          </item>
1225          <item>
1226           <spacer name="horizontalSpacer_Bottom">
1227            <property name="orientation">
1228             <enum>Qt::Horizontal</enum>
1229            </property>
1230            <property name="sizeHint" stdset="0">
1231             <size>
1232              <width>40</width>
1233              <height>20</height>
1234             </size>
1235            </property>
1236           </spacer>
1237          </item>
1238         </layout>
1239        </item>
1240        <item>
1241         <widget class="QLabel" name="overriddenByCommandLineLabel">
1242          <property name="text">
1243           <string/>
1244          </property>
1245          <property name="textFormat">
1246           <enum>Qt::PlainText</enum>
1247          </property>
1248          <property name="wordWrap">
1249           <bool>true</bool>
1250          </property>
1251         </widget>
1252        </item>
1253       </layout>
1254      </widget>
1255     </item>
1256     <item>
1257      <layout class="QHBoxLayout" name="horizontalLayout_Buttons">
1258       <item>
1259        <layout class="QVBoxLayout" name="verticalLayout_Buttons">
1260         <item>
1261          <widget class="QPushButton" name="openLimenkaConfButton">
1262           <property name="toolTip">
1263            <string>Open the %1 configuration file from the working directory.</string>
1264           </property>
1265           <property name="text">
1266            <string>Open Configuration File</string>
1267           </property>
1268           <property name="autoDefault">
1269            <bool>false</bool>
1270           </property>
1271          </widget>
1272         </item>
1273         <item>
1274          <widget class="QPushButton" name="resetButton">
1275           <property name="toolTip">
1276            <string>Reset all client options to default.</string>
1277           </property>
1278           <property name="text">
1279            <string>&amp;Reset Options</string>
1280           </property>
1281           <property name="autoDefault">
1282            <bool>false</bool>
1283           </property>
1284          </widget>
1285         </item>
1286        </layout>
1287       </item>
1288       <item>
1289        <spacer name="horizontalSpacer_1">
1290         <property name="orientation">
1291          <enum>Qt::Horizontal</enum>
1292         </property>
1293         <property name="sizeHint" stdset="0">
1294          <size>
1295           <width>40</width>
1296           <height>48</height>
1297          </size>
1298         </property>
1299        </spacer>
1300       </item>
1301       <item>
1302        <widget class="QLabel" name="statusLabel">
1303         <property name="minimumSize">
1304          <size>
1305           <width>200</width>
1306           <height>0</height>
1307          </size>
1308         </property>
1309         <property name="font">
1310          <font>
1311           <weight>75</weight>
1312           <bold>true</bold>
1313          </font>
1314         </property>
1315         <property name="text">
1316          <string/>
1317         </property>
1318         <property name="textFormat">
1319          <enum>Qt::PlainText</enum>
1320         </property>
1321         <property name="wordWrap">
1322          <bool>true</bool>
1323         </property>
1324        </widget>
1325       </item>
1326       <item>
1327        <spacer name="horizontalSpacer_2">
1328         <property name="orientation">
1329          <enum>Qt::Horizontal</enum>
1330         </property>
1331         <property name="sizeHint" stdset="0">
1332          <size>
1333           <width>40</width>
1334           <height>48</height>
1335          </size>
1336         </property>
1337        </spacer>
1338       </item>
1339       <item>
1340        <layout class="QVBoxLayout" name="verticalLayout_4">
1341         <item>
1342          <spacer name="verticalSpacer">
1343           <property name="orientation">
1344            <enum>Qt::Vertical</enum>
1345           </property>
1346           <property name="sizeHint" stdset="0">
1347            <size>
1348             <width>20</width>
1349             <height>40</height>
1350            </size>
1351           </property>
1352          </spacer>
1353         </item>
1354         <item>
1355          <layout class="QHBoxLayout" name="horizontalLayout">
1356           <item>
1357            <widget class="QPushButton" name="okButton">
1358             <property name="text">
1359              <string>&amp;OK</string>
1360             </property>
1361             <property name="autoDefault">
1362              <bool>false</bool>
1363             </property>
1364             <property name="default">
1365              <bool>true</bool>
1366             </property>
1367            </widget>
1368           </item>
1369           <item>
1370            <widget class="QPushButton" name="cancelButton">
1371             <property name="text">
1372              <string>&amp;Cancel</string>
1373             </property>
1374             <property name="autoDefault">
1375              <bool>false</bool>
1376             </property>
1377            </widget>
1378           </item>
1379          </layout>
1380         </item>
1381        </layout>
1382       </item>
1383      </layout>
1384     </item>
1385    </layout>
1386   </widget>
1387   <customwidgets>
1388    <customwidget>
1389     <class>QValidatedLineEdit</class>
1390     <extends>QLineEdit</extends>
1391     <header>qt/qvalidatedlineedit.h</header>
1392    </customwidget>
1393    <customwidget>
1394     <class>QValueComboBox</class>
1395     <extends>QComboBox</extends>
1396     <header>qt/qvaluecombobox.h</header>
1397    </customwidget>
1398   </customwidgets>
1399   <resources/>
1400   <connections/>
1401  </ui>
1402