aboutsummaryrefslogtreecommitdiff
path: root/src/yuzu/configuration/configure_per_general.cpp
AgeCommit message (Collapse)Author
2019-08-09yuzu/CMakeLists: Remove qt5_wrap_ui macro usageLioncash
We can simply enable CMAKE_AUTOUIC and let CMake take care of handling the UI code generation for targets. As part of letting CMake automatically handle the header file parsing, we must not name includes with "ui_*" unless they're related to the output of the Qt UIC compiler. Because of this, we need to rename ui_settings, given it would conflict with this restriction.
2019-06-05yuzu/configuration: Make all widgets and dialogs aware of language changesLioncash
To prepare for translation support, this makes all of the widgets cognizant of the language change event that occurs whenever installTranslator() is called and automatically retranslates their text where necessary. This is important as calling the backing UI's retranslateUi() is often not enough, particularly in cases where we add our own strings that aren't controlled by it. In that case we need to manually refresh the strings ourselves.
2019-06-05yuzu/configuration: Make function naming consistentLioncash
2019-05-26yuzu: Clear partial/full game list cache when data is updatedZach Hilman
2019-05-19yuzu/configuration/configure_per_general: Specify string conversions explicitlyLioncash
Allows the per-game configuration to be successfully built with implicit string conversions disabled.
2019-01-17yuzu/configuration/configure_per_general: Remove unused header inclusionsLioncash
2018-12-31yuzu/configure_general: Silence truncation warnings in loadConfiguration()Lioncash
The QPixmap API expects an unsigned int.
2018-12-27am: Implement GetSaveDataSize and ExtendSaveDataZach Hilman
These functions come in a pair and are needed by Smash Ultimate, Minecraft, and Skyrim, amongst others.
2018-12-26configure_per_general: Mark UI strings as translatable in the constructorLioncash
These are user-facing strings, so they should be translatable.
2018-12-04qt: Add Properties menu to game list right-clickZach Hilman
2018-12-03qt: Add UI to display game properties and disable add-onsZach Hilman