Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-05-22 | COMMON: Fix button state desynchronization when warping mouse | Le Philousophe | |
2018-08-15 | BACKENDS: Mark resetQuit and getKeymapper as override | Cameron Cawley | |
2018-03-28 | BAKCENDS: Mark methods as override | Eugene Sandulenko | |
2017-11-28 | EVENTS: Delay initializing the virtual keyboard | Bastien Bouclet | |
The virtual keyboard requires the backend to be fully initialized because it needs the display size. Fixes #10338. | |||
2017-11-19 | EVENTS: Fix one ms error in repeat event generation time check | Bastien Bouclet | |
2017-11-19 | EVENTS: Allow disabling repeat event generation | Bastien Bouclet | |
2017-11-19 | EVENTS: Move key repeat handling to its own method | Bastien Bouclet | |
2017-11-19 | EVENTS: Rename synthetic to kbdRepeat | Bastien Bouclet | |
2017-10-15 | BACKENDS: Fix missing mouse events when system cursor cannot be moved | Colin Snover | |
Normally with SDL, a mouse motion event will be sent after the system mouse cursor has been moved by a call to SDL_WarpMouseInWindow, but if the system cursor cannot be moved (e.g. because the window does not have mouse focus), games still need to receive these mouse events so they can successfully update the mouse position internally. Otherwise, games continue to think the mouse is still in the original position and will continue to try to perform whatever action is associated with that mouse position. Refs Trac#9689. | |||
2014-02-18 | BACKENDS: Make GPL headers consistent in themselves. | Johannes Schickel | |
2013-09-22 | EVENTS: Initialize class variable. CID 1002944 | Eugene Sandulenko | |
2013-05-17 | RECORDER: Implement Events Recorder | Eugene Sandulenko | |
2013-04-21 | BACKENDS: Fix unitialized variables in event manager. CID 1002944 | Eugene Sandulenko | |
2012-02-20 | KEYMAPPER: Move F7 and F8 handling to DefaultEventMapper | Tarek Soliman | |
2012-02-20 | KEYMAPPER: Move CTRL-F5 handling to DefaultEventMapper | Tarek Soliman | |
2012-02-20 | KEYMAPPER: Create a DefaultEventMapper when Keymapper isn't enabled | Tarek Soliman | |
This allows migration to unconditional mapping | |||
2012-02-15 | KEYMAPPER: Add more warning signs | Tarek Soliman | |
2011-06-13 | I18N: Make many more GUI MessageDialog strings translatable | Thierry Crozat | |
2011-05-12 | GIT: Clean up: Suppress SVN tags, now useless | strangerke | |
2011-04-28 | JANITORIAL: Format forward declarations to follow convention | Ori Avtalion | |
2010-11-29 | BACKENDS: Include scummsys.h at top of all .cpp files, *before* any #ifdefs | Max Horn | |
svn-id: r54573 | |||
2010-10-03 | EVENTS: Apply backspace hack to keyrepeat too | Willem Jan Palenstijn | |
svn-id: r52993 | |||
2010-07-17 | Remove PalmOS port | Max Horn | |
svn-id: r50964 | |||
2010-02-21 | Patch for bug 2943361 by littleboy, adding full kb modifier support to all ↵ | Yotam Barnoy | |
engines + GUI and proper keypad handling svn-id: r48101 | |||
2010-01-10 | remove unneeded workaround for #47233 | Fabio Battaglia | |
svn-id: r47234 | |||
2010-01-10 | Mark the 'fix' in r47231 as a workaround for a probably deeper problem. | Fabio Battaglia | |
svn-id: r47232 | |||
2010-01-10 | Check if game engine is already paused before pausing it again to show ↵ | Fabio Battaglia | |
virtual keyboard. Fixes #2912148 svn-id: r47231 | |||
2009-09-01 | Clarified the backspace key workaround: This is not a Mac OS X issue (as the ↵ | Max Horn | |
comment used to imply) but rather an issue in some game engines. svn-id: r43880 | |||
2009-08-16 | Introduce a better fix for the Mac OS X backspace problem by adding the ↵ | Matthew Hoops | |
workaround to default-events.cpp. svn-id: r43441 | |||
2009-07-25 | Move the event recorder to its own class (EventRecoder inside ↵ | Johannes Schickel | |
common/EventRecorder.[h/cpp]). svn-id: r42751 | |||
2009-07-25 | Add enum which marks global priorites of the EventManager event dispatcher. | Johannes Schickel | |
svn-id: r42729 | |||
2009-07-25 | - EventDispatcher is no longer a singleton. | Johannes Schickel | |
- Add "getEventDispatcher" method to EventManager. svn-id: r42728 | |||
2009-07-25 | - Adapt DefaultEventManager to use Common::ArtificialEventSource | Johannes Schickel | |
- Adapt Keymapper to implement EventMapper interface svn-id: r42727 | |||
2009-07-25 | Change DefaultEventManager to use EventDispatcher. | Johannes Schickel | |
svn-id: r42725 | |||
2009-07-25 | Made DefaultEventManager a subclass of EventObserver. | Johannes Schickel | |
svn-id: r42723 | |||
2009-07-25 | Replaced "_artificialEventQueue" by an EventSource. | Johannes Schickel | |
svn-id: r42722 | |||
2009-07-25 | Got rid of EventManger::artificialEventQueue. | Johannes Schickel | |
svn-id: r42719 | |||
2009-07-25 | Replace "EventProvider" class of the DefaultEventManager implementation with ↵ | Johannes Schickel | |
"Common::EventSource". svn-id: r42718 | |||
2009-07-12 | I am re-commiting the FORCE_RTL as a temporary solution | Max Lingua | |
in trunk, so that trunk/1.0rc is au pair feature-wise with 0.13.x. svn-id: r42403 | |||
2009-06-08 | Virtual Keyboard: Move vkeybd.zip into packs folder and rename default ↵ | John Willis | |
keyboard pack to vkeybd_default(.zip) with updates to default-events.cpp. Also update vkeybdpack.py to use zlib compression if Python zlib is found. Update GP2X and GP2XWiz bundle files to get new vkeybd_default.zip. svn-id: r41373 | |||
2009-06-06 | Implement feature request #1180217: "GUI: Mute option" | Eugene Sandulenko | |
svn-id: r41233 | |||
2009-05-29 | Changed SaveFileManager methods to take Common::String params (instead of ↵ | Max Horn | |
char pointers) svn-id: r41000 | |||
2009-05-24 | Strip trailing whitespaces in the whole code base. | Johannes Schickel | |
svn-id: r40867 | |||
2009-05-21 | Attempt to bring event recoredr to life. Still crashes on exit, though. | Eugene Sandulenko | |
svn-id: r40775 | |||
2009-02-07 | Use Ctrl F5 for global main menu, since any single key would conflict with ↵ | Travis Howell | |
some games. svn-id: r36240 | |||
2009-01-30 | cleanup | Max Horn | |
svn-id: r36138 | |||
2009-01-30 | Moved default implementations for various OSystem methods into a new class ↵ | Max Horn | |
BaseBackend svn-id: r36135 | |||
2009-01-11 | Merge in Virtual Keybpard & KeyMapper branch, | Eugene Sandulenko | |
- Merge is perfromed in order to not let rotting the code - Makefile modifications were avoided Stuff to resolve: - Circular dependency of common/vkeybd from graphics/ - Make it compilable (?) - Add some keyboards - Decide on the key bindings svn-id: r35813 | |||
2009-01-02 | Prevent the 'Confirm exit' dialog from being invoked recursively | Max Horn | |
svn-id: r35660 | |||
2009-01-01 | Whoa! Removing trailing spaces. | Eugene Sandulenko | |
svn-id: r35648 |