summaryrefslogtreecommitdiff
path: root/src/yuzu/configuration/configure_input.cpp
AgeCommit message (Collapse)Author
2018-12-02yuzu/configuration/configure_input: Default destructor in the cpp fileLioncash
The previous code could potentially be a compilation issue waiting to occur, given we forward declare the type for a std::unique_ptr. If the complete definition of the forward declared type isn't visible in a translation unit that the class is used in, then it would fail to compile. Defaulting the destructor in a cpp file ensures the std::unique_ptr's destructor is only invoked where its complete type is known.
2018-11-30configure_input: Amend clang-format discrepanciesLioncash
2018-11-29Merge pull request #1768 from greggameplayer/patch-2bunnei
Uncheck automatically joycons docked when docked mode is enable
2018-11-27yuzu/configure_input: Make CallConfigureDialog a non-member template functionLioncash
This doesn't depend on any part of the private interface, so it can be made a non-member internal function.
2018-11-27yuzu/configure_input: Remove unnecessary includesLioncash
2018-11-22correct clang-formatgreggameplayer
2018-11-22Automatically disable joycons dockedgreggameplayer
when docked mode is enable
2018-11-18configure_input: Properly update UI components on removal of playerZach Hilman
2018-11-18configure_input: Make None a controller option instead of checkboxZach Hilman
2018-11-18hid: Use player-defined controller type as PREFERRED_CONTROLLERZach Hilman
2018-11-18configure_input: Add support for multiplayer and controller typesZach Hilman
This moves the actual button configuration to a separate dialog and only has the enabled and type controls in the tab.
2018-10-30global: Use std::optional instead of boost::optional (#1578)Frederic L
* get rid of boost::optional * Remove optional references * Use std::reference_wrapper for optional references * Fix clang format * Fix clang format part 2 * Adressed feedback * Fix clang format and MacOS build
2018-10-06citra_qt/configuration: misc input tab improvementszhupengfei
* Added a context menu on the buttons including Clear & Restore Default * Allow clearing (unsetting) inputs. Added a Clear All button * Allow restoring a single input to default (instead of all)
2018-10-02configure_input: Make analog mapping strings translatableLioncash
These strings are user-facing, so they should be specified as translatable with tr().
2018-09-10Port #4141 from citra: Joystick hotplug support (#1275)Tobias
* Joystick hotplug support (#4141) * use SDL_PollEvent instead of SDL_JoystickUpdate Register hot plugged controller by GUID if they were configured in a previous session * Move SDL_PollEvent into its own thread * Don't store SDLJoystick pointer in Input Device; Get pointer on each GetStatus call * Fix that joystick_list gets cleared after SDL_Quit * Add VirtualJoystick for InputDevices thats never nullptr * fixup! Add VirtualJoystick for InputDevices thats never nullptr * fixup! fixup! Add VirtualJoystick for InputDevices thats never nullptr * Remove SDL_GameController, make SDL_Joystick* unique_ptr * fixup! Remove SDL_GameController, make SDL_Joystick* unique_ptr * Adressed feedback; fixed handling of same guid reconnects * fixup! Adressed feedback; fixed handling of same guid reconnects * merge the two joystick_lists into one * make SDLJoystick a member of VirtualJoystick * fixup! make SDLJoystick a member of VirtualJoystick * fixup! make SDLJoystick a member of VirtualJoystick * fixup! fixup! make SDLJoystick a member of VirtualJoystick * SDLJoystick: Addressed review comments * Address one missed review comment
2018-07-29Port #3911 from Citra: "Optimize settings application"fearlessTobi
2018-01-20Format: Run the new clang format on everythingJames Rowe
2018-01-16Merge pull request #53 from nkatz565/nk-fixlabelsbunnei
Implement Pull #3240 from Citra: Add button labels for sdl joystick mappings
2018-01-16Use static functions instead of lambdasmuemart
2018-01-16Add translation support for button labelsmuemart
2018-01-16Add button labels for sdl joystick mappingsmuemart
2018-01-16clang-formatMerryMage
2018-01-15Adding meumart's Citra SDL Joystick support. Citra PR #3116muemart
2018-01-15configure_input: update w/ Switch buttonsshinyquagsire23
2018-01-12Remove gpu debugger and get yuzu qt to compileJames Rowe
2018-01-12Massive removal of unused modulesJames Rowe