Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-05-28 | CREDITS: Update for Voyeur- and MADS-changes | Sven Hesse | |
2014-05-27 | ALL: Introduce typesafe Debugger::registerVar functions. | Johannes Schickel | |
This also adds a FIXME to SCI which registered an enum type as int... | |||
2014-05-27 | GUI: Don't endorse function naming against our guidelines in docu. | Johannes Schickel | |
2014-05-27 | ALL: Make Debugger command function names conform to our guidelines. | Johannes Schickel | |
2014-05-27 | GUI: Slight naming cleanup in Debugger. | Johannes Schickel | |
2014-05-27 | ALL: Rename Debugger::DCmd_Register to Debugger::registerCmd. | Johannes Schickel | |
2014-05-27 | ALL: Rename Debugger::DVar_Register to Debugger::registerVar. | Johannes Schickel | |
2014-05-27 | ALL: Rename Debugger::DebugPrintf to Debugger::debugPrintf. | Johannes Schickel | |
2014-05-25 | GUI: Fix compilation | Willem Jan Palenstijn | |
This adds a missing header in the case #ifndef USE_TEXT_CONSOLE_FOR_DEBUGGER | |||
2014-05-15 | GUI: Add usage for "debuglevel" command output in Debugger base class. | D G Turner | |
2014-05-13 | GUI: Clarify "debuglevel" command output in Debugger base class. | D G Turner | |
This should make it clear that -1 is used for disable. | |||
2014-05-12 | GUI: Minor further fixes to "debuglevel" command in Debugger base class. | D G Turner | |
2014-05-10 | GUI: Add "debuglevel" command to Debugger base class. | D G Turner | |
This allows the debug level to be changed at runtime from the debug console. | |||
2014-04-06 | GUI: Tab cycling handles multiple themes. | Zerophase | |
First visible tab moves up when a theme's width cannot fit another tab. | |||
2014-04-01 | GUI: Fix tab cycling when total tabs increase. | Zerophase | |
Tab cycling ignores tab width, and slides correctly for larger tab counts. | |||
2014-04-01 | GUI: Add Tab cycling to TabWidget | Zerophase | |
Tab and Shift-Tab can now cycle between each Tab of the Edit Game menu. | |||
2014-03-09 | I18N: Update translation data file | Thierry Crozat | |
2014-02-28 | IMAGE: Move all ImageDecoders to image/ | Matthew Hoops | |
2014-02-18 | GUI: Make GPL headers consistent in themselves. | Johannes Schickel | |
2014-01-15 | AVALANCHE: Repair rest of the credits. | uruk | |
2014-01-11 | GUI: Fix menu layout for low-res classic theme | Marcus Comstedt | |
Since clipping is now in place for strings, having text widgets which are 4 pixels high will no longer work. Remade the layout to set better heights, and remove some spacing instead. | |||
2014-01-02 | BUILD: Support libedit readline wrapper | Willem Jan Palenstijn | |
This is used in Mac OS X. Thanks to waltervn for pointing this out and testing. | |||
2014-01-01 | JANITORIAL: Update copyright year | Eugene Sandulenko | |
2013-11-24 | GUI: Do not draw text outside edit rect in EditableWidget. | Johannes Schickel | |
2013-11-24 | GUI: Fix undrawing caret glitch when the edit text is inversed. | Johannes Schickel | |
This is prominently visible in the list based save/load chooser since the edit string is drawn on a special green background there. When the caret is at the end of the edit string this would result in the green color missing at the place of the (undrawn) caret. To avoid this we simply draw a fake space now. | |||
2013-11-24 | GUI: Document EditableWidget::getEditRect. | Johannes Schickel | |
2013-11-24 | GUI: Draw caret over the whole height of the edit rect. | Johannes Schickel | |
This improves the look of the editable widgets. | |||
2013-11-24 | GUI: Fix out-of-bounds check in EditableWidget::drawCaret. | Johannes Schickel | |
The line "y + editRect.height() + 2" is not included in drawing anymore. Thus it is allowed to equal EditableWidget::_h. | |||
2013-11-24 | GUI: Fix character redrawing behind caret in EditTextWidgets. | Johannes Schickel | |
This fixes an ugly y position change when the caret is moved to a character in an edit text widget. | |||
2013-11-24 | GUI: Fix EditTextWidget::getEditRect's returned height. | Johannes Schickel | |
2013-11-24 | GUI: Fix ListWidget::getEditRect's returned height. | Johannes Schickel | |
2013-11-14 | GUI: Use Common::String for console history, to ensure buffer safety. | Joel Teichroeb | |
Previously, if the user enters a command that is more than 256 characters, it will overflow the history buffer. By using a Common::String, this is not possible. | |||
2013-11-14 | GUI: Fix for potential bad cursor palette access in warning case. | Joel Teichroeb | |
Previously, if the colorsFound exceeded the maximum number of cursor colors, a bad access to the cursor palette buffer could be performed before the warning was emitted. This reordering avoids that. | |||
2013-11-03 | GUI: Skip useless assignment. CID 1002117 | Eugene Sandulenko | |
2013-10-30 | CREDITS: Add credits for game translations | Thierry Crozat | |
2013-10-20 | Merge pull request #408 from lordhoto/opengl-replacement | Johannes Schickel | |
OpenGL revamp | |||
2013-10-19 | GUI: Check for screen change whenever an event is polled. | Johannes Schickel | |
This should *hopefully* really fix all GUI crashes when resizing with OpenGL. | |||
2013-10-17 | Merge branch 'zvision' | Willem Jan Palenstijn | |
This merges pull request 395 for the ZVision engine developed during GSoC2013. | |||
2013-10-17 | Merge branch 'avalanche' | Willem Jan Palenstijn | |
This merges pull request 399 for the Avalanche engine developed during GSoC2013. | |||
2013-10-14 | ZVISION: Use credits.pl to update AUTHORS and credits.h | RichieSams | |
2013-10-07 | AVALANCHE: Fix savegame patterns | Strangerke | |
2013-10-07 | AVALANCHE: Repair credits.h | uruk | |
2013-10-06 | CREDITS: Add Keith for some pegasus patches | Matthew Hoops | |
2013-10-06 | AVALANCHE: Update credit files. | uruk | |
2013-10-02 | GUI: Do not return current input on cancel in PredictiveDialog. | Johannes Schickel | |
Returning the currently displayed input when you click cancel is confusing behavior in my eyes. | |||
2013-10-02 | GUI: Initialize PredictiveDialog::_predictiveResult. | Johannes Schickel | |
This fixes garbage output when canceling the predictive dialog in AGI when nothing was entered. | |||
2013-10-02 | GUI: Clean up calloc use in PredictiveDialog. | Johannes Schickel | |
Instead of manually multiplying the entry count with the entry size we simply use both parameters of calloc as intended now. | |||
2013-10-02 | GUI: Fix compilation with clang and C++11. | Johannes Schickel | |
newDictLine is allocated with calloc in line 856 thus there is no need to initialize any entry. | |||
2013-09-30 | GUI: Fix compiler warning | Eugene Sandulenko | |
2013-09-30 | GUI: Fix missing initializers for ListWidget. CID 1002259. | D G Turner | |