aboutsummaryrefslogtreecommitdiff
path: root/src/qt
AgeCommit message (Collapse)Author
2012-04-29Merge pull request #1139 from Diapolo/messagepageWladimir J. van der Laan
change button tooltip on sign message page for copy to clipboard...
2012-04-29Fix critical UI performance issue (#1154)Wladimir J. van der Laan
2012-04-26Make lsn_reset ("detach databases") optional and off by default.Pieter Wuille
Add an option -detachdb (and entry in OptionDialog), without which no lsn_reset is called on addr.dat and blkindex.dat. That means these files cannot be moved to a new environment, but shutdown can be significantly faster. The wallet file is always lsn_reset'ed. -detachdb corresponds to the old behaviour, though it is off by default now to speed up shutdowns.
2012-04-22change button tooltip on sign message page for copy to clipboard as it was ↵Philip Kaufmann
missleading
2012-04-22Make GetDataDir return absolute pathsPieter Wuille
2012-04-21Remove no-longer used UI hints in bitcoin coreWladimir J. van der Laan
The Qt UI has its own associated structures for temporary transaction state / cache.
2012-04-17Add missing breaks in optionmodel's switch casePieter Wuille
2012-04-17Further reduce header dependenciesPieter Wuille
This commit removes the dependency of serialize.h on PROTOCOL_VERSION, and makes this parameter required instead of implicit. This is much saner, as it makes the places where changing a version number can have an influence obvious.
2012-04-17Move CWalletDB code to new walletdb module.Jeff Garzik
In addition to standard code separation, this change opens the door to fixing several include inter-dependencies.
2012-04-17Remove headers.hPieter Wuille
2012-04-17Remove unused and unreachable codeWladimir J. van der Laan
2012-04-17Add forgotten initializerWladimir J. van der Laan
2012-04-16Merge pull request #1092 from laanwj/2012_04_sendcoins_setlabelfixWladimir J. van der Laan
When sending coins, set label when selecting address that already has a label
2012-04-16Merge pull request #1091 from Diapolo/GUI-BlockDLWladimir J. van der Laan
revert to default OS theme for progressbar (fix #1071)
2012-04-15Merge pull request #1104 from laanwj/2012_04_clangJeff Garzik
Enable and fix most compilation warnings
2012-04-15Merge pull request #1097 from laanwj/2012_04_runawayexceptionWladimir J. van der Laan
Show a message box when runaway exception happens
2012-04-15fix warnings: unused variable 'XX' [-Wunused-variable]Wladimir J. van der Laan
2012-04-15fix warnings: enumeration values 'XX' not handled in switch [-Wswitch-enum]Wladimir J. van der Laan
2012-04-15fix warnings: 'XX' defined as a struct here but previously declared as a ↵Wladimir J. van der Laan
class [-Wmismatched-tags]
2012-04-14Bugfix: Check that QRcode_encodeString didn't return NULL (error)Luke Dashjr
Without this, any error will segfault Bitcoin-Qt
2012-04-14Show a message box when runaway exception happensWladimir J. van der Laan
This is more clear to users than when the program simply disappears (usually during initialization). It still logs the message to the console and debug log as well.
2012-04-13Merge pull request #1089 from laanwj/2012_04_translationupdateWladimir J. van der Laan
Update translations for bitcoin core
2012-04-14Update translations for bitcoin coreWladimir J. van der Laan
- Move scripts/qt to share/qt, to clean up toplevel directories - Update english ts file which is used to source messages for Transifex - In extract_strings_qt.py use a glob *.h *.cpp, this is safe now that the Wx UI files are removed
2012-04-14Do not show green tick unless all known blocks are downloaded (fixes #921)Wladimir J. van der Laan
2012-04-13Set label when selecting an address that already has a label. Fixes #1080.Wladimir J. van der Laan
2012-04-13revert to default OS theme for progressbar / fix small glitches in ↵Philip Kaufmann
bitcoingui.cpp
2012-04-13Add missing tooltip and key shortcut in settings dialog (#1088 without line ↵Wladimir J. van der Laan
break part)
2012-04-12make text in about box selectable (fixes #1055)Wladimir J. van der Laan
2012-04-12enable wordWrap on lblQRCode / small code comment changePhilip Kaufmann
2012-04-12limit length of generated URI to 255 chars to prevent a DoS against the ↵Philip Kaufmann
QR-Code dialog
2012-04-12updated to reflect pull-request suggestions / renamed some GUI elementsPhilip Kaufmann
2012-04-12fixed amount part of URI in QR-Codes / removed (no label) string if we have ↵Philip Kaufmann
NO label / coding style updates / removed an unused variable
2012-04-12Fix OSX build errors.Gavin Andresen
2012-04-11Merge pull request #855 from sje397/ToggleHideWladimir J. van der Laan
Toggle UI hide
2012-04-11by popular request, make 4th bar of connection icon greenWladimir J. van der Laan
2012-04-10Merge pull request #1054 from sipa/buildinfoPieter Wuille
Build identification strings
2012-04-10Build identification stringsPieter Wuille
All client version information is moved to version.cpp, which optionally (-DHAVE_BUILD_INFO) includes build.h. build.h is automatically generated on supporting platforms via contrib/genbuild.sh, using git describe. The git export-subst attribute is used to put the commit id statically in version.cpp inside generated archives, and this value is used if no build.h is present. The gitian descriptors are modified to use git archive instead of a copy, to create the src/ directory in the output. This way, src/src/version.cpp will contain the static commit id. To prevent gitian builds from getting the "-dirty" marker in their git-describe generated identifiers, no touching of files or running sed on the makefile is performed anymore. This does not seem to influence determinism.
2012-04-11Toggle main window hide on tray icon clicksje397
- converted openBictoinAction to toggleHideAction - put GUIUtil functions into a namespace instead of a class - put window-related functions together in optionsdialog Reasoning: - toggle is more typical behaviour - it's more functional - better UX The typical issue with toggling visibility is that when a window is obscured by other windows but in the 'shown' state, hiding it isn't what you want. I've added an 'isObscured' function to GUIUtil that checks several pixels in the window to see if they are visible on the desktop so that an obscured but shown window can be raised. Conflicts: src/qt/guiutil.cpp src/qt/guiutil.h
2012-04-09Use scoped locks instead of CRITICAL_BLOCKPieter Wuille
2012-04-06Bugfix: Replace "URL" with "URI" where we aren't actually working with URLsLuke Dashjr
2012-04-06Change sign message bitcoin address tooltip to "The address to sign the ↵graingert
message with" Closes #1050
2012-04-05removed an unused / obsolete tag from bitcoin.qrcPhilip Kaufmann
2012-04-04Merge pull request #1019 from laanwj/2012_03_uirefactorPieter Wuille
Streamline UI ↔ Core interface
2012-04-04Merge pull request #1025 from Diapolo/GUI-BlockDLWladimir J. van der Laan
modified block DL progressbar to be more informative and precise
2012-04-04Move from noui.h / ui.h to one ui_interface.h with dummy implementation for ↵Wladimir J. van der Laan
the daemon.
2012-04-04qtui.h/noui.h interface cleanupWladimir J. van der Laan
- rename wxMessageBox, remove redundant arguments to noui/qtui calls - also, add flag to force blocking, modal dialog box for disk space warning etc - clarify function naming - no more special MessageBox needed from AppInit2, as window object is created before calling AppInit2
2012-04-04support RPC stop and encryptwallet with UIWladimir J. van der Laan
2012-04-04remove dependency on serialize.h and util.h for SecureStringWladimir J. van der Laan
2012-04-04remove unused CalledSetStatusBar and UIThreadCall notificationsWladimir J. van der Laan
2012-04-04Update UI through async calls MainFrameRepaint and AddressBookRepaint ↵Wladimir J. van der Laan
instead of a timer. - Overall, this is better design - This fixes problems with the address book UI not updating when the address book is changed through RPC - Move Statusbar change detection responsibility to ClientModel