summaryrefslogtreecommitdiff
path: root/src/yuzu/configuration/shared_widget.h
AgeCommit message (Collapse)Author
2024-12-31chore: update project branding to citronZephyron
2023-09-14shared_widget: Use default literals morelat9nq
2023-09-13shared_widget: Forward-port Citra changeslat9nq
Seemed like a good time to move these over. Also remove usage of std::sto{l,ll,ul,f,d}
2023-08-22shared_widget: Implement radio groupslat9nq
2023-07-21common,qt-config: Remove usage of forward_listlat9nq
2023-07-21settings,configuration: Add a default suffixlat9nq
2023-07-21configuration: Use a builder to create widgetslat9nq
This gets rid of some repeated code and sets us up to send more information to the new widget.
2023-07-21shared_widget: Some documentation, add shorter constructorlat9nq
The shorter constructor enables us to specify some options without needing to specify the default values of multiplier which wasn't always appropriate and could be confusing.
2023-07-21configuration/shared: Clean up includes [IWYU]lat9nq
2023-07-21shared_widget: Add SPDX headerlat9nq
2023-07-21shared_widget: Complete refactoringlat9nq
Reduces code bloat a good bit by moving code specific to each sub widget to their own functions.
2023-07-21shared_widget: Refactor againlat9nq
Starting with combobox Putting code specific to the sub-widget in their own function.
2023-07-21configuration: Use a mapping of setting value to namelat9nq
Makes comboboxes always correspond to the value of the setting they're modifying.
2023-07-21configure_audio: Implement ui generationlat9nq
Needs a considerable amount of management specific to some of the comoboboxes due to the audio engine configuration. general: Partial audio config implmentation configure_audio: Implement ui generation Needs a considerable amount of management specific to some of the comoboboxes due to the audio engine configuration. general: Partial audio config implmentation settings: Make audio settings as enums
2023-07-21shared_widget: Refactor helperslat9nq
Makes checkbox creation an option as opposed to a label.
2023-07-21configure_system: Implement with for looplat9nq
2023-07-21shared_widget: Internalize extra setting configurationlat9nq
2023-07-21shared_widget: Support checkbox + spinboxlat9nq
2023-07-21shared_widget: Make button creation staticlat9nq
2023-07-21shared_widget: Fix headerlat9nq
2023-07-21configuration: Move CreateWidget to a classlat9nq
We were passing so many objects between the function and the caller that it needed to be redesigned.