aboutsummaryrefslogtreecommitdiff
path: root/gui
AgeCommit message (Collapse)Author
2011-05-08I18N: Update translations data fileThierry Crozat
2011-05-08I18N: Update translations data fileThierry Crozat
2011-05-07GUI: Allow .zip files with case differing from ".zip" as theme files too.Johannes Schickel
Formerly our code used "hasSuffix" to check for a ".zip" suffix. Since hasSuffix does a case-sensitive match that would not work, in case the file was called "scummmodern.ZIP" instead of "scummmodern.zip" for example. To fix that I am using a case-insensitive matchString instead now.
2011-05-05GUI: Clean up localized font filename generation.Johannes Schickel
2011-05-02I18N: Update translations data fileThierry Crozat
2011-05-02I18N: Update translations data fileThierry Crozat
2011-05-02GUI: Inform use about ignored games when mass addingMax Horn
2011-05-01I18N: Update translations data file.Thierry Crozat
2011-05-01I18N: Update translations data file.Thierry Crozat
2011-05-01Merge pull request #16 "Add a PixelFormat to Graphics::Surface.".Johannes Schickel
For further discussion check here: https://github.com/scummvm/scummvm/pull/16 Conflicts: graphics/png.cpp
2011-04-28JANITORIAL: Reduce header dependencies in shared codeOri Avtalion
Some backends may break as I only compiled SDL
2011-04-28JANITORIAL: Format forward declarations to follow conventionOri Avtalion
2011-04-27I18N: Update translations data file.Thierry Crozat
2011-04-26GUI: Fix warning on systems where char is unsignedMax Horn
2011-04-25I18N: Update translations data file.Thierry Crozat
2011-04-25Merged pull request #25 from Littleboy/corrupted_theme.Max Horn
ZipArchive and corrupted themes
2011-04-25GUI: Make git revision string fit in the modern theme's launcher again.Johannes Schickel
2011-04-24GUI: Add basic validity check to ThemeEngine::themeConfigParseHeader ↵Littleboy
(workaround for #3103051) When loading a corrupted zip, the data returned for THEMERC will be garbage, which will cause an assert in isspace() when trying to trim the data. This checks that the first character of the header is in the range [0;127] and bails out if not.
2011-04-24I18N: Update translations data file.Thierry Crozat
2011-04-24I18N: Update translations data file.Thierry Crozat
2011-04-22I18N: Update translation data file.Thierry Crozat
2011-04-18COMMON: Rename Error to ErrorCode, introduce new Error classMax Horn
2011-04-17Merge branch 'master' of https://github.com/enginmanap/scummvmJohannes Schickel
2011-04-17GUI: Do not access Surface::bytesPerPixel anymore.Johannes Schickel
2011-04-17GUI: Prefer Surface::create taking a PixelFormat over the one taking a byte ↵Johannes Schickel
depth.
2011-04-17GUI: Fix indentation problems. Remove unwanted space.Engin Manap
All cosmetic changes, nothing changed.
2011-04-17CREDITS: Add buildbot skin to billwashere crontibutionsThierry Crozat
2011-04-17GUI: Fix apply old theme even if theme is not changed.Engin Manap
There was no control if theme was changed. If you click cancel, it always changes theme to which options panel opened with. This is unneccessery if theme is not changed so a if statement added before applying old theme.
2011-04-17GUI: Fix theme change ignores cancel on options window.Engin Manap
add new protected value _oldTheme. It keeps theme at the init of options window, and cancel button reapplies old theme.
2011-04-16CREDITS: Update credits files.Johannes Schickel
2011-04-16GUI: Let EditTextWidget notify when the editing is finishedEugene Sandulenko
2011-04-14CREDITS: Added credits for TsAGEPaul Gilbert
2011-04-12CREDITS: Add credits for WebOS backendKlaus Reimer
2011-04-05I18N: Update Ukrainian translationThierry Crozat
2011-04-05GUI: Update the screen after handling eventsdhewg
Fixes crash on droid: game -> gmm -> save -> click entry (EVENT_SCREEN_CHANGED due to vkeybd beeing shown) -> delete -> confirm another EVENT_SCREEN_CHANGED gets in simultaneously (due vkeybd being deactivated) and the parent dialog updated Rects out of bounds.
2011-04-03GUI: ThemeEngine.cpp/.h formatting fixes.Johannes Schickel
2011-04-02CREDITS: Pull Jerome Fisher out of retirement (for one final mission, etc.).Jerome Fisher
2011-03-28CREDITS: Update Mohawk credits.Alyssa Milburn
2011-03-22I18N: Update translation data fileThierry Crozat
2011-03-22CREDITS: Add credits for Swedish translationThierry Crozat
2011-03-22I18N: Regenerate translation data fileThierry Crozat
2011-03-09CREDITS: Fix typo in previous commitThierry Crozat
2011-03-09CREDITS: Add credits for web sites maintainer and new skinsThierry Crozat
Also add Andre in the credits for Android port.
2011-03-01CREDITS: Credit madmoose Smacker video decodermadmoose
2011-03-01GUI: Increment theme version.Johannes Schickel
With 50a682e7e1c69082735a07b2261d1c0c61ac12c9 we changed the resolution string in a way which is incompatible with old resolution strings, thus all old theme files are not usable anymore and will cause problems. To avoid that we just increase the version string and thus it is not possible to use them anymore.
2011-02-25Revert "GUI: Properly clear the screen buffer"dhewg
This reverts commit c8551b80dd917c35d367c1f15f4b9c2618da3684. Turns out the flicking comes from an updateScreen() call in android's clearScreen(). Besides, this broke GMM... a little
2011-02-24GUI: Fix two-step renderingdhewg
This is used when changing directories in the 'add game' dialog or when choosing another tab in the option dialog. Only blit to the overlay on the final pass. Gets rid of highly annoying flickers on androids
2011-02-24GUI: Properly clear the screen bufferdhewg
Don't operate on the overlay, it might be a pointer to a texture used by the hardware. This get's rid of some annoying flickers on androids
2011-02-24GUI: Make the ThemeParser less dumbdhewg
Instead of running into assert()s due to dumb parser decisions, use 'less than' and 'greater than' width/height conditions on the 'resolution' tags. Seems better than listing >9000 different android resolutions.
2011-02-14GUI: Update cursor palette handling for RGBA->RGB change.Johannes Schickel