Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-04-02 | Bitcoin-Qt: only use qApp for Q(Core)Application::instance() | Philip Kaufmann | |
2013-04-02 | Bitcoin-Qt: fix copy via context-menu broken | Philip Kaufmann | |
- as QClipboard::Selection isn't available on Windows ensure that the correct mode is called, but sill allow selection for e.g. X11 - start conversion from QCoreApplication::instance() to qApp in guiutil.cpp (I intend to harmonize this all over the source with my Qt5 compatibility pull) | |||
2013-03-29 | Merge pull request #2350 from DavidGriffith/master | Wladimir J. van der Laan | |
Also copy the address to the X11 clipboard (the one you middle-click to paste) | |||
2013-03-17 | Bitcoin-Qt: massive header and cpp cleanup | Philip Kaufmann | |
- try to enforce the same style to all Qt related files - remove unneeded includes from the files - add missing Q_OBJECT, QT_BEGIN_NAMESPACE / QT_END_NAMESPACE - prepares for a pull-req to include Qt5 compatibility | |||
2013-03-09 | Also copy the address to the X11 clipboard (the one you middle-click to paste) | David Griffith | |
2013-01-21 | Bitcoin-Qt: extend parseBitcoinURI() pre-check | Philip Kaufmann | |
- add check to verify if an URI is valid | |||
2012-10-04 | Send --help message to stdout i.s.o stderr | Wladimir J. van der Laan | |
This allows fun stuff such as `bitcoin --help | less`, and more easy piping to files. Looking at other tools such as bash, gcc, they all send their help text to stdout. | |||
2012-08-07 | Fix Qt test cases by moving address checks to parseBitcoinURI | Matt Corallo | |
Makes sense in case bitcoin URIs eventually allow invalid addresses as a part of some larger future payment scheme. | |||
2012-08-02 | fix further spelling errors / remove a tab in the source | Philip Kaufmann | |
2012-08-01 | Bugfix: Fix a variety of misspellings | Luke Dashjr | |
2012-07-19 | Update a link | fanquake | |
2012-06-14 | Show command line options as dialog when opened from debug window | Wladimir J. van der Laan | |
On Linux/Mac the command-line options were printed to stderr when the button was pressed in the debug window, resulting in confusion. This is fixed in this commit by adding a separate method. | |||
2012-06-14 | URI-handling code update: added safety checks and tray-notifications | Philip Kaufmann | |
2012-06-12 | Cross-platform "Open debug logfile" | Wladimir J. van der Laan | |
The option to open the debug logfile from the debug window was implemented only for windows. By using `QDesktopServices::openUrl` it now works on any platform. | |||
2012-06-09 | Fix Mingw64 build (missing headers according to M$ documentation) | Matt Corallo | |
2012-06-01 | move class HelpMessageBox to guiutil.cpp/.h / add button to show Bitcoin ↵ | Philip Kaufmann | |
command-line options (in RPC Console -> Information) / resize Debug window a little to allow for a non-breaking display of the welcome message with non-english translation | |||
2012-05-13 | Merge pull request #1283 from laanwj/2012_05_prevent_tooltip_infiniteloop | Wladimir J. van der Laan | |
Prevent tooltip filter from ever causing infinite loops | |||
2012-05-13 | Move GetStartOnSystemStartup and SetStartOnSystemStartup to GUI code | Wladimir J. van der Laan | |
2012-05-13 | Prevent tooltip filter from ever causing infinite loops | Wladimir J. van der Laan | |
2012-05-11 | Add missing #include for GetDataDir | Wladimir J. van der Laan | |
2012-05-11 | guiutil.cpp/.h: fix a -Wreorder compiler warning and make constructor for ↵ | Philip Kaufmann | |
ToolTipToRichTextFilter explicit | |||
2012-05-11 | add code to open (display) debug.log on Windows with the associated ↵ | Philip Kaufmann | |
application and add a button to the Information page in the Debug console | |||
2012-05-05 | Allow Qt to wrap long tooltips (fixes #1063) | Wladimir J. van der Laan | |
Implemented without having to touch any translation: by listening for QEvent::ToolTipChange events, then rewriting the tooltips to prefix `<qt/>` if it is not yet rich text. | |||
2012-04-17 | Remove headers.h | Pieter Wuille | |
2012-04-11 | Toggle main window hide on tray icon click | sje397 | |
- 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-06 | Bugfix: Replace "URL" with "URI" where we aren't actually working with URLs | Luke Dashjr | |
2012-04-04 | Code deduplication: make function in GUIUtil to get connection type to call ↵ | Wladimir J. van der Laan | |
object slot in GUI thread with invokeMethod. | |||
2012-02-22 | Merge branch '201202_guiaddsuffix' of https://github.com/laanwj/bitcoin | Gavin Andresen | |
2012-02-17 | Restructure IPC URL handling (fixes #851) | Wladimir J. van der Laan | |
2012-02-15 | fix default suffixes in save dialog in GNOME, make it more clear that PNG is ↵ | Wladimir J. van der Laan | |
used (solves #833) | |||
2012-02-10 | Add -req prefixes to comply with BIP21. | Matt Corallo | |
2011-12-23 | Copy amount to clipboard (implements #657) | Wladimir J. van der Laan | |
- Also, unify similar code related to copying transaction fields to clipboard | |||
2011-12-23 | Move HtmlEscape (escape for qt rich text controls) to qt gui utilities | Wladimir J. van der Laan | |
2011-12-21 | Revert "Use standard C99 (and Qt) types for 64-bit integers" | Wladimir J. van der Laan | |
This reverts commit 21d9f36781604e4ca9fc35dc65265593423b73e9. | |||
2011-12-20 | Use standard C99 (and Qt) types for 64-bit integers | Luke Dashjr | |
2011-08-08 | QtUI code cleanup / comment improvements | Wladimir J. van der Laan | |
2011-08-07 | add TODOs in parseBitcoinURL | Wladimir J. van der Laan | |
2011-08-07 | allow empty/missing amounts in URL | Wladimir J. van der Laan | |
2011-08-07 | Accept "bitcoin:" URL drops from browsers | Wladimir J. van der Laan | |
2011-08-03 | show last few transactions on overview page | Wladimir J. van der Laan | |
2011-07-25 | preparations for multiple unit (uBTC, mBTC, BTC) support, fix amount entry issue | Wladimir J. van der Laan | |
2011-07-03 | windows build fixes | Wladimir J. van der Laan | |
2011-06-29 | Implement filter row instead of tabs, allows for more expressive filters | Wladimir J. van der Laan | |
2011-06-25 | compile fixes by Unthinkingbit | Wladimir J. van der Laan | |
2011-06-11 | move back to original directory structure | Wladimir J. van der Laan | |