Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-06-10 | GUI: Refactor default savegame description creation. | Johannes Schickel | |
Formerly the GMM, AGI and SCI duplicated the logic for USE_SAVEGAME_TIMESTAMP. Now I added a method to SaveLoadChooser instead, which takes care of this. This might not be the best placement of such a functionality, thus I added a TODO which talks about moving it to a better place. | |||
2012-06-10 | GUI: Add helper to SaveLoadChooser, which uses the currently active target. | Johannes Schickel | |
This reduces the code duplication in all client code, which formerly duplicated the querying of the plugin, game id etc. and now simply calls the newly added method runModalWithCurrentTarget() on a SaveLoadChooser object. | |||
2012-06-10 | GUI: Get rid of SaveLoadChooser::setSaveMode. | Johannes Schickel | |
We already pass the title and process button name to the constructor of SaveLoadChooser and then do not offer any way of changing it, thus changing the edit mode of the chooser is kind of pointless and was never actually used. Instead we pass the mode on SaveLoadChooser construction now. | |||
2012-06-03 | ALL: Replace cursorTargetScale in OSystem API with a simple "do not scale" ↵ | Johannes Schickel | |
logic. All uses of the old target scale API actually wanted to disallow scaling of the mouse cursor. This commit adapts our API to this and thus simplifies backend implementations. Some backends, most notable the Wii and Android, did some implementation of the cursor target scale, which I didn't adapt yet. I added a TODO for the porters there. | |||
2012-05-27 | I18N: Regenerate translation data file | Thierry Crozat | |
2012-05-07 | GUI: Fix bug with button pressed state | Oleksiy Kurochko | |
2012-05-03 | GUI: Remove unecessary ";". | Johannes Schickel | |
2012-05-03 | GUI: Use pressed state in predictive dialog in keyboard mode. | Oleksiy Kurochko | |
This adds more visual feedback to the user. | |||
2012-05-03 | GUI: Implemented pressed state for buttons | Oleksiy Kurochko | |
2012-04-18 | I18N: Regenerate translations data file | Thierry Crozat | |
2012-04-17 | I18N: Add translations for the Loom FM Towns proficiency level | Thierry Crozat | |
Those are the official French, Spanish and Italian translations from the DOS versions of the game (thanks to Simsaw for providing them). | |||
2012-03-29 | GUI: Fixed scrollbar button highlighting and positioning. | Martin Böhm | |
Fixes bug #3493324. | |||
2012-03-29 | GUI: Move "I18N" tagged comment to matching strings. | Johannes Schickel | |
The strings are not marked for translation, so I am not sure why the comments are tagged with I18N though. | |||
2012-03-29 | GUI: Add TODO/FIXME to PredictiveDialog::handleTickle. | Johannes Schickel | |
2012-03-29 | GUI: Remove unnecessary goto in PredictiveDialog code. | Johannes Schickel | |
2012-03-29 | GUI: Take advantage of Common::String::empty. | Johannes Schickel | |
2012-03-29 | GUI: Constify some parameters/methods in PredictiveDialog. | Johannes Schickel | |
2012-03-29 | GUI: Make some static strings in PredictiveDialog static + const. | Johannes Schickel | |
2012-03-29 | GUI: Don't typedef Common::String in PredictiveDialog code. | Johannes Schickel | |
2012-03-29 | GUI: Get rid of "using namespace Common" in predictivedialog.cpp. | Johannes Schickel | |
2012-03-29 | GUI: Formatting fixes in the PredictiveDialog code. | Johannes Schickel | |
2012-03-25 | GUI: Fix for WinCE compile failure after predictive dialog changes. | D G Turner | |
This is probably due to a collision with WinCE toolchain system define, so changing the enum from all capitalised to Camel Case constant style. | |||
2012-03-25 | GUI: Corrected fix for NDS compile failure... | D G Turner | |
Header needed to be in global, not GUI namespace. | |||
2012-03-25 | GUI: Remove leftover code for the global dithering checkbox | Filippos Karapetis | |
2012-03-25 | GUI: Fix for NDS compile failure after predictive dialog changes. | D G Turner | |
2012-03-25 | GUI: Change the undithering checkbox to be an engine-specific option | Filippos Karapetis | |
2012-03-25 | GUI: convert bitmap to make compatible | Paweł Kołodziejski | |
2012-03-25 | GUI: Move predictive dialog to common gui | Oleksiy Kurochko | |
2012-03-25 | Merge pull request #211 from lordhoto/game-gui-options-v2 | Eugene Sandulenko | |
GUI: Game gui options | |||
2012-03-23 | I18N: Update Czech translation from patch #3508096 | Thierry Crozat | |
2012-03-20 | GRAPHICS: Rewrite ImageDecoder to have an improved API | Matthew Hoops | |
The new bitmap decoder class is based off the Mohawk one, and now has 8bpp decoding capability. | |||
2012-03-19 | GUI: Add per-engine and per-game options | Filippos Karapetis | |
2012-03-17 | Merge pull request #203 from fingolfin/guio-cleanup | Eugene Sandulenko | |
COMMON: GuiOptions cleanup | |||
2012-03-17 | Merge pull request #202 from tsoliman/keymapper-nonkey-inputs | Eugene Sandulenko | |
KEYMAPPER: Add Gesture Support | |||
2012-03-14 | I18N: Update Basque translation from patch #3499452 | Thierry Crozat | |
2012-03-13 | JANITORIAL: Simply use *x instead of *x.get() on smart pointers. | Christoph Mallon | |
2012-03-13 | JANITORIAL: Replace (x ? false : true) by !(x). | Christoph Mallon | |
2012-03-11 | I18N: Update translation data file | Thierry Crozat | |
2012-03-11 | CREDITS: Add credits for Basque translation | Thierry Crozat | |
2012-03-07 | I18N: Regenerate translations data file | Thierry Crozat | |
2012-03-02 | KEYMAPPER: Map non-key custom input events | Tarek Soliman | |
This also makes the keymapper be in charge of keymapping logic | |||
2012-02-29 | COMMON: Replace OptionsDialog::renderType2GUIO by API in rendermode.h | Max Horn | |
2012-02-26 | COMMON: Move RenderMode and GUIOptions functionality into separate files | Max Horn | |
2012-02-25 | GUI: Let edit text widgets use a non-bold (aka normal) font. | Johannes Schickel | |
This change was done per request of _sev. | |||
2012-02-24 | GUI: Fix "clear" buttons after theme switch (bug #3482459) | Torbjörn Andersson | |
Because the "clear" buttons are very different between themes (in the Modern theme they have a graphical symbol, while in the Classic theme they have a letter), they have to be removed and re-added when reflowing the layout. This is patterned after how the LauncherDialog class handles the larger changes in layout. Removing widgets from a tab turned out to be trickier than I first thought, so I had to move the removeWidget() method from Dialog to GuiObject. | |||
2012-02-24 | COMMON: distinguish between 256 colors and 16 colors PC-98 rendering modes | athrxx | |
KYRA 1 PC-98 supports both modes in the same target. The desired mode can now be selected in the rendering options. We did have good support for the 16 colors mode of KYRA 1 already. This mode could not really be selected though (except by manually modifying the config file or the code). | |||
2012-02-22 | ALL: Fix some signed/unsigned comparison warnings. | Johannes Schickel | |
2012-02-21 | COMMON: add gui options for rendering modes | athrxx | |
The purpose is the same as for the sound gui options: users shouldn't be offered modes that the engine doesn't support. | |||
2012-02-21 | Merge pull request #182 from fingolfin/forbid-ctype | Willem Jan Palenstijn | |
ALL: Avoid using is* macros from ctype.h | |||
2012-02-21 | KEYMAPPER: Remove automapping dead code | Tarek Soliman | |