| Age | Commit message (Collapse) | Author |
|
Abstracts most of the input mechanisms under an InputSubsystem class
that is managed by the frontends, eliminating any static constructors
and destructors. This gets rid of global accessor functions and also
allows the frontends to have a more fine-grained control over the
lifecycle of the input subsystem.
This also makes it explicit which interfaces rely on the input subsystem
instead of making it opaque in the interface functions. All that remains
to migrate over is the factories, which can be done in a separate
change.
|
|
|
|
Supports the Left, Right, Middle, Backward and Forward mouse buttons.
|
|
|
|
Co-authored-by: James Rowe <jroweboy@gmail.com>
Co-authored-by: Its-Rei <kupfel@gmail.com>
|
|
dynarmic: Add unsafe optimizations
|
|
configuration_shared: Simplify name lookup in highlighting functions
|
|
common/fileutil: Convert namespace to Common::FS
|
|
configure_hotkeys: Don't translate empty strings
|
|
|
|
|
|
There's no need to translate an empty string. This just gives
translators unnecessary work.
|
|
Migrates a remaining common file over to the Common namespace, making it
consistent with the rest of common files.
This also allows for high-traffic FS related code to alias the
filesystem function namespace as
namespace FS = Common::FS;
for more concise typing.
|
|
We can query the given object name directly from the widget itself. This
removes any potential for forgetting to change the name if the widget
gets renamed and makes the API much simpler (just pass in the widget,
and not worry about its name).
|
|
|
|
C++20 deprecates capturing the this pointer via the '=' capture.
Instead, we replace it or extend the capture specification.
|
|
screenshots: Option to save screenshots immediately in a specified directory + Linux workaround
|
|
The introduction of multicore rendered this setting non-functional as timing code was changed.
This removes the setting entirely.
|
|
Solves an issue with restoring the value upon reloading program.
|
|
Those are already found in the Filesystem tab.
They were added back to the Debug tab by mistake in the Vulkan PR.
|
|
|
|
If the user had cancelled, it would clear the text box. That behavior was sanitized underneath, but may anyways cause inconveniences.
|
|
This adds two options to the General -> UI tab. The first disables picking a place to save the file. The second chooses a default directory for saving screenshots.
|
|
|
|
|
|
These were only kept for compatibility with old code during testing.
|
|
|
|
Also gets rid of unnecessary explicit namespace usage.
|
|
|
|
One less global variable.
|
|
Makes the code more readable
Co-Authored-By: LC <lioncash@users.noreply.github.com>
|
|
|
|
whoops
|
|
Fixes a regression where the global config takes up a lot of extra space.
|
|
The way the configurations are set up, it is not trivial to do this. I'll leave it as is, but the API selection, and the background color and volume slider selectors are kind of not following the style.
|
|
|
|
Not a catch-all, but helps clean up the code for when I do this a lot. Also fixes some bugs caught in configure_graphics.
|
|
I noticed some of the code could be reduced to just passing the function an int, since I was doing the same thing over and over. Also clang-formats configure_graphics
|
|
|
|
Let's see if I make up my mind.
|
|
Also adds trackers for graphics and advanced graphics
|
|
|
|
|
|
|
|
Prevents mass-coloring of elements later on
|
|
Fixes visibility in the built-in dark theme
|
|
|
|
Sets up initial support for implementing colored tristate functions. These functions color a QWidget blue when it's overriding a global setting, and discolor it when not. The lack of color indicates it uses the global state, replacing the Qt::CheckState::PartiallyChecked state with the global state.
|
|
|
|
Co-Authored-By: Weiyi Wang <wwylele@gmail.com>
|