mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-15 23:08:51 +00:00
Qt/Debugger: Implement "Code" widget
This commit is contained in:
parent
b289be43eb
commit
0a5f0efe18
21 changed files with 1696 additions and 13 deletions
|
@ -32,8 +32,16 @@ signals:
|
|||
void ControllersPressed();
|
||||
void GraphicsPressed();
|
||||
|
||||
void StepPressed();
|
||||
void StepOverPressed();
|
||||
void StepOutPressed();
|
||||
void SkipPressed();
|
||||
void ShowPCPressed();
|
||||
void SetPCPressed();
|
||||
|
||||
private:
|
||||
void OnEmulationStateChanged(Core::State state);
|
||||
void OnDebugModeToggled(bool enabled);
|
||||
|
||||
void MakeActions();
|
||||
void UpdateIcons();
|
||||
|
@ -47,4 +55,11 @@ private:
|
|||
QAction* m_config_action;
|
||||
QAction* m_controllers_action;
|
||||
QAction* m_graphics_action;
|
||||
|
||||
QAction* m_step_action;
|
||||
QAction* m_step_over_action;
|
||||
QAction* m_step_out_action;
|
||||
QAction* m_skip_action;
|
||||
QAction* m_show_pc_action;
|
||||
QAction* m_set_pc_action;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue