Qt/Debugger: Implement "Watch" window

This commit is contained in:
spycrab
2017-09-27 08:53:05 +02:00
parent ec37ce093f
commit 08716be43b
10 changed files with 397 additions and 1 deletions

View File

@ -83,6 +83,8 @@ public:
bool IsDebugModeEnabled() const;
void SetRegistersVisible(bool enabled);
bool IsRegistersVisible() const;
void SetWatchVisible(bool enabled);
bool IsWatchVisible() const;
// Other
GameListModel* GetGameListModel() const;
@ -99,6 +101,7 @@ signals:
void LogVisibilityChanged(bool visible);
void LogConfigVisibilityChanged(bool visible);
void EnableCheatsChanged(bool enabled);
void WatchVisibilityChanged(bool visible);
void DebugModeToggled(bool enabled);
private: