Qt: Implement missing settings

This commit is contained in:
spycrab
2017-06-21 10:26:06 +02:00
parent 94ba78d717
commit 15243093c4
3 changed files with 38 additions and 4 deletions

View File

@ -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();