aboutsummaryrefslogtreecommitdiff
path: root/src/qt/forms/optionsdialog.ui
Commit message (Collapse)AuthorAgeFilesLines
* really s/Doge/Dis/g this timeTomo Ueda2021-09-021-3/+3
|
* Update QT client messages and translations to Doge equivalents (#1429)Ross Nicoll2019-03-251-3/+3
| | | | Update QT client messages and translations to Doge equivalents.
* Qt: Add option to hide the system tray iconTyler Hardin2016-05-111-0/+10
| | | | | | | | | | | | | | My changes leave all tray icon and menu creation/initialization logic untouched. It only shows or hides the icon according to the setting. A new checkbox was added to the OptionsDialog under the Window tab. A bool option named "hideTrayIcon" was added to OptionsModel. This checkbox was mapped like other all options to the OptionsModel. A signal was added to the OptionsModel for broadcasting changes the the hideTrayIcon option. This signal was connected to a new slot added to BitcoinGUI named setTrayIconVisible(bool). The slot simply hides or shows the trayIcon in BitcoinGUI according to the parameter recieved.
* Unify package name to as few places as possible without major changesLuke Dashjr2015-12-141-3/+3
|
* [Qt] allow users to set -onion via GUIPhilip Kaufmann2015-07-241-1/+188
| | | | | - also allow users to see, if the default proxy (-proxy) is used for reaching peers via IPv6 or Tor
* Fix reference.Thomas Zander2014-12-281-1/+1
| | | | The text talked about "Quit" while Bitcoin uses "Exit" in its menu.
* [Qt] change some strings to reflect name change to Bitcoin CorePhilip Kaufmann2014-12-021-3/+3
|
* [Qt] explicitly call proxy in GUI settings SOCKS5 proxyPhilip Kaufmann2014-11-201-2/+2
| | | | - to ensure a consistent wording between core and GUI
* [Qt] Add Smartfee to GUICozz Lovan2014-11-191-65/+13
|
* [Qt] update form files for setting autoDefault explicitly to falsePhilip Kaufmann2014-09-051-0/+6
| | | | | | - also fixes indentation in one file (auto fixed by Qt Designer) - removes several default parameters, which are not needed in the files - related to #4840 (but not intended as fix for a no-bug)
* qt: Remove an obscure option no-one cares aboutWladimir J. van der Laan2014-07-311-10/+0
| | | | | | | Remove the "Display addresses" setting checkbox. It doesn't do what the tooltip says, and seems kind of pointless in any case. Fixes #4580.
* remove SOCKS4 support from core and GUIPhilip Kaufmann2014-07-071-20/+0
| | | | - now we support SOCKS5 only
* [Qt] allow setting listen via GUIPhilip Kaufmann2014-06-111-0/+10
| | | | | | | | | | - add DEFAULT_LISTEN in net.h and use in the code (shared setting between core and GUI) Important: This makes it obvious, that we need to re-think the settings/options handling, as GUI settings are processed before any parameter-interaction (which is mostly important for network stuff) in AppInit2()!
* [Qt] Optionally add third party links to transaction context menuCozz Lovan2014-04-251-0/+24
|
* add constant for shared (GUI/core) -par settingsPhilip Kaufmann2014-03-271-7/+1
| | | | | | | | | - introduce DEFAULT_SCRIPTCHECK_THREADS in main.h - only show values from -"MAX_HW_THREADS" up to 16 for -par, as it makes no sense to try to leave more "cores free" than the system supports anyway - use the new constant in optionsdialog and remove defaults from .ui file
* [Qt] add expert section to wallet tab in optionsdialogCozz Lovan2014-03-181-30/+29
|
* Merge pull request #3693Wladimir J. van der Laan2014-02-181-6/+9
|\ | | | | | | f05fa03 [Qt] small .ui cleanup for optionsdialog and coincontrol (Philip Kaufmann)
| * [Qt] small .ui cleanup for optionsdialog and coincontrolPhilip Kaufmann2014-02-171-6/+9
| |
* | add constants for shared (GUI/core) -dbcache settingsPhilip Kaufmann2014-02-171-11/+1
|/ | | | - adds nDefaultDbCache, nMaxDbCache and nMinDbCache in txdb.h
* qt: Add option to (not) spend unconfirmed changeWladimir J. van der Laan2014-02-161-46/+83
| | | | | | - Add a wallet tab to options dialog - Move fee setting to wallet tab - Add new setting to set -nospendzeroconfchange from UI
* [Qt] 2 minor translation changesPhilip Kaufmann2014-01-141-1/+1
|
* [Qt] massive options/settings rework (no core changes)Philip Kaufmann2014-01-061-44/+175
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - add new options for database cache and script verification threads - add label which displays options that are overridden by command-line parameters - proxy settings are not applied on-the-fly anymore and require a client restart (ApplyProxySettings() was removed and was not working very well anyway) - re-work options reset and require a client shutdown (as it is much easier to do it this way without having to mess with what can be changed on-the-fly and what needs a restart anyway) - options reset now writes default values for every single option - when changing an option which requires a client restart display a 10 second warning message in statusLabel (via a QTimer) - when applying the changes via ok change that to a persistent message, which is displayed even after closing optionsdialog and re-open it, when no client restart was made - remove dialog boxes used when changing language or proxy settings - add setRestartRequired() and isRestartRequired() to OptionsModel and use the set function when updating options to signal OptionsDialog when a restart is needed - resize optionsdialog a little and add some min sizes for certain GUI elements - remove apply button from optionsdialog - save and restore optionsdialog window position - update nTransactionFee in QSettings with a set -paytxfee value when opening optionsdialog (I'm not sure about this yet, perhaps revert to not updating QSettings and just display current -paytxfee value in optionsdialog.)
* Coincontrol cleanup (e.g. add missing license)Philip Kaufmann2013-11-181-1/+1
| | | | | | | | | - add missing license headers - make compatible with Qt5 - enforce header cleanup style - small code style cleanups - rename Coin Control dialog into Coin Control Address Selection - use default font for the windows labels (no monospace)
* Coin Control FeaturesCozz Lovan2013-11-141-0/+10
|
* fix some cosmetic glitches in the codebasePhilip Kaufmann2013-09-091-1/+1
| | | | | | | | | | | - rename URL into URI in paymentserver where correct - add some missing Qt-coding-stuff in paymentserver - change QSpinBox to QLineEdit as base for BitcoinAmountField in .ui files (as this is the result when converting the BAF back into base) - remove some c_str() and replace with QString::fromStdString() - remove several new-lines - remove unneeded spaces - indentation fixes
* qt: remove fee recommendation in settingsWladimir J. van der Laan2013-04-271-1/+1
| | | | | | | | This value gets stale really quickly, do not hardcode it into a message. Completely remove it for now. Later on, a mechanism will be added to determine fees based on the mempool. Closes #2576
* Bitcoin-Qt: add a Reset button to the options dialogPhilip Kaufmann2013-01-051-2/+32
| | | | | | | | - a click on "Reset Options" sets all options to the default values by removing all stored settings (QSettings), loading the defaults and saving them as the new settings - before the reset is executed the user is presented a confirmation dialog - special casing was needed for StartAtStartup
* Remove -detachdb and stop's detach argument.Pieter Wuille2012-11-041-10/+0
| | | | | | | | As the only BDB database left is the wallet, and it is always detached. Also remove IsChainFile() predicate and related chainfile-specific logic.
* small UX update for optionsdialogPhilip Kaufmann2012-08-021-6/+0
| | | | | | | - add enableApplyButton() and disableApplyButton() to optionsdialog.{h/cpp} - they are used to ensure the Ok button does not get disabled, when Apply needs to be disabled (standard UX should allow Ok always to dismiss the dialog and only disable it, when we have a faulty proxy IP) - disable Apply after initially loading the settings, as nothing new needs to be saved - remove orphan settings from optionsdialog.ui that are default anyway
* fix a typo in OptionsDialogPhilip Kaufmann2012-06-301-1/+1
|
* re-work optionsdialog to a tabbed UI based on an ui-filePhilip Kaufmann2012-06-131-0/+466
- extend network options with a SOCKS version selection - changing "Unit to show amounts in:" now also updates the unit used in the transaction fee box - string updates - link Apply button and OK button when enabling or disabling them - use LookupNumeric() from netbase to verify proxy address (via an EventFilter) - change proxy address field to QValidatedLineEdit and add visual feedback - add a status label used for displaying a message for invalid proxy addresses - allow usage of IPv6 address as proxy address - added warning message when enabling / disabling SOCKS proxy