mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 06:39:46 -06:00
Qt: Implement missing settings
This commit is contained in:
@ -75,6 +75,12 @@ public:
|
||||
void SetHideCursor(bool hide_cursor);
|
||||
bool GetHideCursor() const;
|
||||
|
||||
// Audio
|
||||
int GetVolume() const;
|
||||
void SetVolume(int volume);
|
||||
void IncreaseVolume(int volume);
|
||||
void DecreaseVolume(int volume);
|
||||
|
||||
// Columns
|
||||
bool& BannerVisible() const;
|
||||
bool& CountryVisible() const;
|
||||
@ -116,6 +122,7 @@ signals:
|
||||
void PathAdded(const QString&);
|
||||
void PathRemoved(const QString&);
|
||||
void HideCursorChanged();
|
||||
void VolumeChanged(int volume);
|
||||
|
||||
private:
|
||||
Settings();
|
||||
|
Reference in New Issue
Block a user