Qt: Implement "Keep Window on top"

This commit is contained in:
spycrab
2018-04-22 10:56:15 +02:00
parent c1dccdc0e5
commit caa18edc79
6 changed files with 33 additions and 4 deletions

View File

@ -74,6 +74,8 @@ public:
// Graphics
void SetHideCursor(bool hide_cursor);
bool GetHideCursor() const;
void SetKeepWindowOnTop(bool top);
bool IsKeepWindowOnTopEnabled() const;
// Audio
int GetVolume() const;
@ -126,6 +128,7 @@ signals:
void DefaultGameChanged(const QString&);
void PathReloadRequested(const QString&);
void HideCursorChanged();
void KeepWindowOnTopChanged(bool top);
void VolumeChanged(int volume);
void NANDRefresh();
void RegistersVisibilityChanged(bool visible);