Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-01-28 | CREDITS: Added Tom Frost as contributor to WebOS port. | Klaus Reimer | |
2012-01-14 | MACOSX: Replace use of a 10.4 only API by one available since 10.0 | Max Horn | |
2012-01-08 | GUI: Make eraser.bmp a Windows v3 bitmap | Matthew Hoops | |
We don't have proper support for v4 bitmaps | |||
2012-01-07 | KEYMAPPER: Add failsafe code for popping into Keymapper itself | Tarek Soliman | |
Thanks LordHoto | |||
2012-01-07 | KEYMAPPER: Only push/pop the gui keymap once per gui session | Tarek Soliman | |
The removes a bit of waste when gui dialogs are opened. Multiple gui keymaps were being pushed. | |||
2012-01-07 | GUI: Rework how the default localized font is managed. | Johannes Schickel | |
Now we set the default localized font to the "text_default" font of the currently active theme and default to the big GUI font in case none is specified properly. | |||
2012-01-07 | GUI: Simplify font loading a bit more. | Johannes Schickel | |
2012-01-06 | GUI: Do an case-insensitive filename comparison. | Johannes Schickel | |
Should be a bit safer, in case there's files with different cases, which match by chance. | |||
2012-01-06 | GUI: Slight cleanup for font/image loading. | Johannes Schickel | |
2012-01-06 | GRAPHICS: Rework BDF font code. | Johannes Schickel | |
2012-01-03 | I18N: Regenerate translations data file | Thierry Crozat | |
2012-01-01 | MISC: This is year 2012 | Strangerke | |
2011-12-30 | KEYMAPPER: Simplify calling getKeymap | Tarek Soliman | |
2011-12-26 | GUI: Update translation files. | Johannes Schickel | |
2011-12-26 | SCUMM: Add a difficulty selection dialog for Loom FM-Towns. | Johannes Schickel | |
It is in spirit of the DOS version's selection dialog, but it has the description above the buttons instead of below it. | |||
2011-12-13 | GUI: Handle adding clear buttons that don't exist in layouts | Tarek Soliman | |
The buttons in the keymapper are dynamically generated and don't exist in the layout; They have no name. | |||
2011-12-13 | GUI: Move addClearButton() from options.cpp to widget.cpp | Tarek Soliman | |
This is so it can be used outside options.cpp | |||
2011-12-12 | CREDITS: Mark Cyx as retired | Strangerke | |
2011-12-07 | GUI: Fix and regenerate theme files for y==400 case. | Alyssa Milburn | |
2011-12-07 | GUI: Regenerated theme files for new arrow look | Eugene Sandulenko | |
2011-12-07 | GUI: Improved pop up and scrollbar arrows look | MaximRussia | |
Previous triangle drawing was all wrong, rewrote it from the scratch. Added padding to drawsteps in stx files | |||
2011-12-05 | GUI: Add new line to error string in debugger. | Johannes Schickel | |
2011-12-05 | GUI: Simplify boolean parsing in our debugger. | Johannes Schickel | |
2011-12-05 | COMMON: Fix styling | Filippos Karapetis | |
2011-12-05 | COMMON: Handle boolean types in the debugger | Filippos Karapetis | |
2011-11-27 | I18N: Update Swedish translation from patch #3443449 | Thierry Crozat | |
2011-11-22 | I18N: Update Hungarian translation from patch #3440606 | Thierry Crozat | |
2011-11-20 | I18N: Update Czech translation from patch #3440467 | Thierry Crozat | |
2011-11-20 | GUI: Update translations by using "make update-translations". | Johannes Schickel | |
2011-11-20 | M4: Removed the M4/MADS engine from trunk | Paul Gilbert | |
2011-11-18 | GUI: Disable speech volume slider in subtitle only mode. | Johannes Schickel | |
2011-11-17 | Merge pull request #114 from tsoliman/keymapper2 | Eugene Sandulenko | |
KEYMAPPER: Keymapper improvements 2 | |||
2011-11-17 | CREDITS: Mark whoozle as retired | Torbjörn Andersson | |
He announced on scummvm-devel that he's leaving. | |||
2011-11-17 | CREDITS: Add myself for Composer. | Alyssa Milburn | |
2011-10-31 | KEYMAPPER: Put the gui keymap pushing/popping back in GuiManager::runLoop | Tarek Soliman | |
This because theoretically the GUI could be run without a dialog. This also fixes the situations where the GUI keymap gets popped more times than pushed. Thanks sev | |||
2011-10-27 | KEYMAPPER: Make sure GuiManager only pops gui keymaps | Tarek Soliman | |
2011-10-27 | KEYMAPPER: Skip GUI keymap when displaying active keymap in keymapper dialog | Tarek Soliman | |
This fixes a problem where opening the keymapper dialog would cause the current game keymap to be displayed as the active keymap but then changing the keymap selection back to it would cause the GUI keymap to be displayed as the active one. The GUI keymap was indeed at the top of the stack but that's not the desired effect. Also move the pushing and popping of the keymap to Dialog::Open/Close Also constantify the GUI keymap name | |||
2011-10-27 | GUI: Slight formatting fix. | Johannes Schickel | |
2011-10-25 | GUI: Fix search clear button when switching themes or resolution. | Johannes Schickel | |
This only fixes the clear button of the launcher's search. For the other clear buttons this is would be a bit more work since they are embedded in tabs. | |||
2011-10-25 | LAUNCHER: Fix MIDI override setting | Eugene Sandulenko | |
2011-10-25 | GUI: Show empty savepath as 'Default', not 'None' | Eugene Sandulenko | |
2011-10-25 | LAUNCHER: Turned erase icon white | Eugene Sandulenko | |
2011-10-25 | GUI: Refactor clear buttons | Eugene Sandulenko | |
2011-10-25 | GUI: Added clear button to paths | Eugene Sandulenko | |
2011-10-25 | LAUNCHER: Improved clear soundfont button | Eugene Sandulenko | |
2011-10-25 | LAUNCHER: benefit from PicButton being derivative of Button | Eugene Sandulenko | |
2011-10-25 | GUI: Made PicButtonWidget derivative of ButtonWidget | Eugene Sandulenko | |
2011-10-25 | LAUNCHER: Do not show clear image in classic theme | Eugene Sandulenko | |
2011-10-24 | I18N: Regenerate translations data file | Thierry Crozat | |
2011-10-24 | GUI: Fix missing audio drivers in Edit Game dialog. | Johannes Schickel | |
This is a regression from 77c65648b1db8f8b7b245510681eafd856798d26. Formerly the code used strtok to check for any audio related GUIO flag to be present in _guioptions. Since strtok tokenizes the string this won't really work. I changed it to use strpbrk, which searches a string for any character from a set of characters (in our case flags). The code should now have the same semantics as of before the above mentioned commit. This also gets rid of copying the gui options into a char array and a strncpy call. |