aboutsummaryrefslogtreecommitdiff
path: root/gui/saveload-dialog.cpp
AgeCommit message (Collapse)Author
2016-06-01GUI: Cleanup class initializationEugene Sandulenko
2014-12-29GUI: Do not overwrite write protected saves in grid based save dialog.Johannes Schickel
This fixes overwriting of, for example, autosaves in the grid based save load dialog when using "New Save".
2014-08-22GUI: s/savegame/saved game/Ben Castricum
Makes it consistant throughout the GUI
2014-02-18GUI: Make GPL headers consistent in themselves.Johannes Schickel
2013-07-15GUI: Mark some intentional fall throughs in switches.Johannes Schickel
All of these are for handling kCloseCmd.
2012-10-28GUI: Check for screen changes in the saveload chooser selection code.Johannes Schickel
2012-09-26GUI: Support for page restoring for non-continuous save lists in the grid ↵Johannes Schickel
chooser.
2012-09-26JANITORIAL: Remove trailing whitespaces.Johannes Schickel
Powered by: git ls-files "*.cpp" "*.h" "*.m" "*.mm" | xargs sed -i -e 's/[ \t]*$//'
2012-09-26GUI: Fix maximum page number calculation in grid chooser.Johannes Schickel
This avoids a off by one error in some cases.
2012-09-26GUI: Save/restore last scroll position in the list save/load dialog.Johannes Schickel
This should give a better user experience, since the user will not have to scroll back to where he was when he used the dialog last. Thanks to wjp for suggesting this.
2012-09-26GUI: Save/restore the last used page in the grid save/load dialog.Johannes Schickel
This allows opening the dialog on (nearly) the same page again as when it was closed. Sadly due to the different number of entries in the save and load version this is not always exactly the same page as before. Same goes for resolution changes. Thanks to wjp for suggesting this.
2012-08-14GUI: Fix out-of-bounds in new chooser.Alyssa Milburn
2012-08-12GUI: Mark parts of the grid based chooser layout code as HACK.Johannes Schickel
2012-08-12GUI: Remove left-over code from theme based fill color in thumbnail display.Johannes Schickel
2012-08-12Merge pull request #260 from lordhoto/new-chooser.Johannes Schickel
New save/load chooser Conflicts: gui/saveload.cpp
2012-07-25GUI: Use "OK" instead of "Ok" in SavenameDialog.Johannes Schickel
2012-07-24GUI: Add possibility to disable the grid based chooser via ↵Johannes Schickel
DISABLE_SAVELOADCHOOSER_GRID.
2012-07-24GUI: Strip a trailing whitespace.Johannes Schickel
2012-07-24GUI: Remove unecessary explicit GUI namespace uses.Johannes Schickel
2012-07-24GUI: Remove an unnecessary empty line.Johannes Schickel
2012-07-24GUI: Also disable the switch-to-list button in the choosers, when the grid ↵Johannes Schickel
one isn't available.
2012-07-24GUI: Rename LoadChooserThumbnailed to SaveLoadChooserGrid.Johannes Schickel
2012-07-24GUI: Implement saving in the grid based save/load chooser.Johannes Schickel
2012-07-09GUI: Fix missing button background in grid based chooser.Johannes Schickel
Now the thumbnail button and the descriptions are sub widgets of the container widget.
2012-07-01GUI: Fix small memory leak in grid based load chooser.Johannes Schickel
2012-07-01GUI: Add page display to grid based load chooser.Johannes Schickel
2012-07-01GUI: Clean up save load chooser selection code.Johannes Schickel
2012-07-01GUI: Automatically switch to list based save/load chooser when changing ↵Johannes Schickel
resolution below 640x400.
2012-06-29GUI: Use a slightly bigger vertical spacing in the thumbnail load chooser.Johannes Schickel
2012-06-29GUI: Use a black rect when no thumbnail is available in the thumbnail load ↵Johannes Schickel
chooser.
2012-06-29GUI: Fix memory leaks in LoadChooserThumbnailed::destroyButtons.Johannes Schickel
GuiObject::removeWidget only removes the widget from the widget list, but doesn't delete it. Oops.
2012-06-29GUI: Allow the user to switch between list and thumbnail based load chooser.Johannes Schickel
2012-06-29GUI: Only update save list when the dialog opens in thumbnail load chooser.Johannes Schickel
2012-06-29GUI: Fix copy&paste error affecting vertical spacing in thumbnail load chooser.Johannes Schickel
2012-06-29GUI: Don't distribute vertical space between buttons in the thumbnail load ↵Johannes Schickel
chooser.
2012-06-20GUI: Show additional meta data in the thumbnail load chooser via tooltip.Johannes Schickel
2012-06-15GUI: Implement a new load chooser, which displays a list of thumbnails.Johannes Schickel
2012-06-15GUI: Create an interface for save/load dialogs.Johannes Schickel