aboutsummaryrefslogtreecommitdiff
path: root/src/qt/bitcoingui.cpp
AgeCommit message (Collapse)Author
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-12Fix OSX build errors.Gavin Andresen
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-06Bugfix: Replace "URL" with "URI" where we aren't actually working with URLsLuke Dashjr
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-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-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
2012-04-03clarified comment why we use an own progressbar style / included "~" in the ↵Philip Kaufmann
tr() call
2012-04-03changed percentage done in tooltip to float to be more precise / allowed ↵Philip Kaufmann
plurals in translation for "x block(s) remaining"
2012-04-02Merge pull request #1026 from laanwj/2012_04_increase_up_to_date_timeGregory Maxwell
Increase time ago of last block for "up to date" status from 30 to 90 minutes
2012-04-02polished code and fixed progress display (was very jerky at the end of a sync)Philip Kaufmann
2012-04-02color update for progress barPhilip Kaufmann
2012-04-02implemented OS independent progress bar style / moved one-time functions ↵Philip Kaufmann
used on the bar to a better code location
2012-04-02changed progressbar text to "~n blocks remaining"Philip Kaufmann
2012-04-02removed relative progressbar display and moved re-worked network detection ↵Philip Kaufmann
code to setNumBlocks()
2012-04-02modified block DL progressbar to be dynamic and more precisePhilip Kaufmann
2012-04-02Increase time ago of last block for "up to date" status from 30 to 90 minutesWladimir J. van der Laan
It was too hyperactive. gmaxwell: I mean that right now when the block gap goes over an hour it starts showing synchronizing. Increasing that to 90 minutes or so would make it only happen about 6.4 times per year
2012-03-29made tray icon tooltip translatablePhilip Kaufmann
2012-03-26make sure Window is shown when clicking bitcoin: Links to get user attentionPhilip Kaufmann
2012-03-16Yet another attempt at implementing "minimize to tray" that works on all OSesWladimir J. van der Laan
2012-02-26Merge pull request #853 from laanwj/2012_02_altminimizetrayWladimir J. van der Laan
Yet another alternative "minimize to tray" implementation Fixes problems with window positioning.
2012-02-26Move 'Backup Wallet' to file menuPieter Wuille
2012-02-25In UI, handle cases in which the last received block was generated in the ↵Wladimir J. van der Laan
future (secs<0) Fixes #874.
2012-02-19Hide tray icon in destructor, as deleting will let it linger until quit (on ↵Wladimir J. van der Laan
Ubuntu)
2012-02-17Do show/showNormal only when needed.Wladimir J. van der Laan
2012-02-17Merge pull request #854 from laanwj/2012_02_qtipcWladimir J. van der Laan
Restructure IPC URL handling (fixes #851)
2012-02-17Hide window from taskbar when "minimize to tray" active by making window ↵Wladimir J. van der Laan
into Tool window
2012-02-17Restructure IPC URL handling (fixes #851)Wladimir J. van der Laan
2012-02-15Added 'Backup Wallet' menu optionsje397
- icon from the LGPL Nuvola set (like the tick) - http://www.icon-king.com/projects/nuvola/ - include 'boost/version.hpp' in db.cpp so that the overwrite version of copy can be used - catch exceptions in BackupWallet (e.g. filesystem_error thrown when trying to overwrite without the overwrite flag set) - include db.h in walletmodel.cpp for BackupWallet function - updated doc/assets-attribution.txt and contrib/debian/copyright with copyright info for new icon
2012-02-12Add export action to file menu (as long as we have a file menu, export ↵Wladimir J. van der Laan
certainly should be there)
2012-02-11Fix Minimize to the tray instead of the taskbarJanne Pulkkinen
2012-02-07Update all copyrights to 2012Gavin Andresen
2012-01-27Bitcoin-Qt signmessage GUI (pull request #582)Luke Dashjr
2012-01-26Merge pull request #593 (Full URL Support in bitcoin-qt)Wladimir J. van der Laan
2012-01-17Revert to global progress indication (see #753)Wladimir J. van der Laan
2012-01-05Add support for opening bitcoin: URIs directly.Matt Corallo
2011-12-23Comments updateWladimir J. van der Laan
2011-12-21Revert "Use standard C99 (and Qt) types for 64-bit integers"Wladimir J. van der Laan
This reverts commit 21d9f36781604e4ca9fc35dc65265593423b73e9.
2011-12-20Use standard C99 (and Qt) types for 64-bit integersLuke Dashjr
2011-12-19Merge pull request #699 from laanwj/about_qtGavin Andresen
Add "About Qt" menu option to show built-in Qt About dialog
2011-12-13Fix status bar not displaying Alerts.Matt Corallo
2011-12-13Add "About Qt" menu option to show built-in Qt About dialogWladimir J. van der Laan
- Most Qt programs do this, and it can be useful to find out what version of Qt was built against.
2011-12-09Prevent window from being shown momentarily when using -minWladimir J. van der Laan
- In a previous patch, show() was added to all the page switcher functions. As the contructor calls showOverviewPage(), this means the window is shown in the constructor. - This change prevents this by connecting show() to the signal instead.
2011-11-13Add model null pointer check (solves issue #595 and ↵Wladimir J. van der Laan
https://github.com/laanwj/bitcoin-qt/issues/29) Missed this one before, which can be triggered in race condition if window event arrives before model is set
2011-11-08Add robustness against null modelsWladimir J. van der Laan
2011-10-09Add alt-1..alt-5 shortcut to switch between tabsWladimir J. van der Laan
2011-10-09Improved Mac experience; QDoubleSpinBox for BitcoinAmountFieldp2k
Now it can't be told if this is was a Windows App before. All Mac design principles are fulfilled and some cosmetics have been applied to suit the native look and feel. The biggest change there is the proper use of the Dock icon which takes the role of the Tray icon on Mac. The QDoubleSpinBox improves entering of Bitcoin amounts, no two separate fields are required anymore. All functionality and validation effects have been retained; pressing the comma key will be internally translated to a period to keep it consistent throughout the application and eases entering in countries which use the comma as decimal separator. Additionally, Notificator now supports Growl, Mac's native notification system. This is provided via Apple Script in order to avoid linking to Growl on compile time. Other changes involve encapsulation of Toolbar and Menubar creation, loading of Qt's own translation and some clean up.