mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-09-02 23:55:52 +00:00
Qt: Implement logging settings and signals
This commit is contained in:
parent
5b733b8710
commit
962d684ca2
2 changed files with 36 additions and 0 deletions
|
@ -30,6 +30,12 @@ public:
|
|||
QVector<QString> GetProfiles(const InputConfig* config) const;
|
||||
QString GetProfileINIPath(const InputConfig* config, const QString& name) const;
|
||||
|
||||
bool IsInDevelopmentWarningEnabled() const;
|
||||
bool IsLogVisible() const;
|
||||
void SetLogVisible(bool visible);
|
||||
bool IsLogConfigVisible() const;
|
||||
void SetLogConfigVisible(bool visible);
|
||||
|
||||
// GameList
|
||||
QStringList GetPaths() const;
|
||||
void AddPath(const QString& path);
|
||||
|
@ -58,6 +64,8 @@ signals:
|
|||
void HideCursorChanged();
|
||||
void VolumeChanged(int volume);
|
||||
void NANDRefresh();
|
||||
void LogVisibilityChanged(bool visible);
|
||||
void LogConfigVisibilityChanged(bool visible);
|
||||
|
||||
private:
|
||||
Settings();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue