mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-09-02 15:45:58 +00:00
Qt: Implement missing settings
This commit is contained in:
parent
94ba78d717
commit
15243093c4
3 changed files with 38 additions and 4 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue