summaryrefslogtreecommitdiffstats
path: root/src/input_common/mouse (follow)
Commit message (Collapse)AuthorAgeFilesLines
* input_common: Improve SDL joystick and hide toggle optiongerman772021-08-081-0/+1
|
* input_common: Fix mouse panning behaivourgerman772021-07-171-1/+1
|
* configure_input: Use u8 for mouse sensitivityameerj2021-07-091-1/+1
|
* general: Code formatting improvementslat9nq2021-07-081-2/+2
| | | | | | | | | | | | Slight improvements to readability. Dropped suggestions for string_view (settings.h:101), pass by value (settings.h:82), reverting double to a float (config.cpp:316), and other smaller ones, some out of scope. Addresses review feedback. Co-authored-by: Ameer J <52414509+ameerj@users.noreply.github.com>
* general: Make most settings a BasicSettinglat9nq2021-06-281-1/+2
| | | | | | | | | | | Creates a new BasicSettings class in common/settings, and forces setting a default and label for each setting that uses it in common/settings. Moves defaults and labels from both frontends into common settings. Creates a helper function in each frontend to facillitate reading the settings now with the new default and label properties. Settings::Setting is also now a subclass of Settings::BasicSetting. Also adds documentation for both Setting and BasicSetting.
* Add missing includes (#6521)Chloe2021-06-241-0/+2
| | | | | * Add missing includes * Add array
* input_common/mouse_input: Fix data raceRodrigo Locatti2021-06-222-12/+10
| | | | Fix data race using std::jthread and std::stop_token.
* input_common: Release mouse buttons on out of focusgerman772021-05-032-1/+16
|
* common: Move settings to common from core.bunnei2021-04-152-2/+2
| | | | - Removes a dependency on core and input_common from common.
* Merge pull request #6040 from german77/toggleKeyboardbunnei2021-03-113-5/+56
|\ | | | | Enable toggle buttons for keyboard and mouse
| * Enable mouse toggle buttonsgerman772021-03-063-5/+56
| |
* | inputCommon: Mouse fixesgerman772021-02-282-8/+15
|/
* Improve mouse panninggerman2021-02-141-5/+21
|
* Merge pull request #5869 from german77/mousePanningbunnei2021-02-113-3/+39
|\ | | | | input_common: Add mouse panning
| * Add mouse panninggerman2021-02-083-3/+39
| |
* | Add SL SR vectors, change dual joycon view, add missing raw data from keyboard/mousegerman2021-02-061-0/+10
|/
* general: Fix various spelling errorsMorph2021-01-021-1/+1
|
* Allow to invert analog axis with right clickgerman2020-12-271-5/+20
|
* mouse_poller: Remove unused includesLioncash2020-12-031-3/+1
|
* mouse_input: Invert conditional in UpdateYuzuSettings()Lioncash2020-12-031-4/+6
| | | | Allows the struct to be constructed in place.
* mouse_input: Remove two casts and amend some formattingLioncash2020-12-031-11/+14
| | | | | Removes the use of two static casts and improves the readability of some vectors slightly.
* mouse_input: Resolve a -Wdocumentation warningLioncash2020-12-031-1/+1
|
* mouse_input: Remove unused includesLioncash2020-12-032-7/+3
|
* Fix implicit conversion in mouse inputgerman2020-12-011-6/+8
|
* Implement full mouse supportgerman2020-11-264-0/+594