Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 | |
2013-09-09 | RECORDER: Fix warning | Eugene Sandulenko | |
2013-08-22 | Merge pull request #361 from rundfunk47/guiimprovements | Eugene Sandulenko | |
GUI: Various GUI Improvements | |||
2013-08-22 | THEME: Add back entry for color when hovering over button | Narek Mailian | |
2013-08-20 | MORTEVIELLE: Add credits | Strangerke | |
2013-08-20 | CREDITS: Add credits for The Neverhood engine | Filippos Karapetis | |
2013-08-19 | GUI: Clear dirty rects when initializing ThemeEngine. | Johannes Schickel | |
This avoids nasty invalid writes to the overlay when the overlay is being resized. | |||
2013-08-16 | GRAPHICS: Gradient blending on borders of rounded squares | Narek Mailian | |
2013-08-16 | GRAPHICS: Add support for Soft Shadows with rounded squares | Narek Mailian | |
2013-08-16 | GRAPHICS: Added changes and improved code from inisider/scummvm (partial text) | Narek Mailian | |
Includes code from https://github.com/inisider/scummvm/ , which has been squashed and bugfixed | |||
2013-08-16 | GUI: Add code to default theme generation to reduce string length. | D G Turner | |
The additional code skips the extraneous spaces after the end of an XML close brace (>) reducing the string literal by 3106 characters, thus bringing it within the limit for C++ string literals. Have regenerated the default.inc from scummclassic with this change. | |||
2013-08-16 | GUI: Add too long string literal warning code to theme generation tool. | D G Turner | |
This has the same effect as clang's -Woverlength-strings warning of string literals longer than C++ compilers are specified to work with. | |||
2013-08-12 | Merge pull request #377 from lordhoto/config-manager-cleanup | Johannes Schickel | |
Config Manager Cleanup | |||
2013-08-12 | Merge pull request #359 from rundfunk47/32bitguioverlay | Eugene Sandulenko | |
GUI: Add option to render GUI in 32-bits | |||
2013-08-10 | GUI: Initialise _hotkey in ButtonWidget constructor | Thierry Crozat | |
One of the two ButtonWidget constructor did not initialise _hotkey when given a non-null value. This caused valgrind to report an access to uninitialised variable in Dialog::handleKeyDown(). | |||
2013-08-08 | GRAPHICS: Allow VectorRenderer and ThemeEngine to init with 4BPP | Narek Mailian | |
2013-08-08 | GUI: Change name of GUI-renderers to remove "16-bit" | Narek Mailian | |
2013-08-08 | GUI: Allow GUI cursor creation to work with abitrary 2/4Bpp formats. | Johannes Schickel | |
2013-08-08 | GUI: Use Domain::const_iterator in EventRecorder code when possible. | Johannes Schickel | |
2013-08-03 | GUI: Take advantage of Surface::getPixels. | Johannes Schickel | |
2013-08-03 | GUI: Prefer getBasePtr instead of direct Surface::pixels access. | Johannes Schickel | |
2013-07-18 | Merge pull request #353 from clone2727/eventrec_timer_fix | Eugene Sandulenko | |
ALL: Don't use EventRecorder at all when not compiled in | |||
2013-07-15 | GUI: Mark some intentional fall throughs in switches. | Johannes Schickel | |
All of these are for handling kCloseCmd. |