diff options
author | Karel Kočí <cynerd@email.cz> | 2018-01-25 17:37:34 +0100 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2018-01-25 17:37:34 +0100 |
commit | 063da67766585bd1db5e8afd83e2f9eda88119c0 (patch) | |
tree | 928c2101adc3f7c317d9f86c13e2a2d1337806fb /qtmips_gui/programdock.cpp | |
parent | 215934254c3a80d8b30858f8c273a329c817a7f9 (diff) | |
download | qtmips-063da67766585bd1db5e8afd83e2f9eda88119c0.tar.gz qtmips-063da67766585bd1db5e8afd83e2f9eda88119c0.tar.bz2 qtmips-063da67766585bd1db5e8afd83e2f9eda88119c0.zip |
Jump to pc address when program counter is double clicked
Diffstat (limited to 'qtmips_gui/programdock.cpp')
-rw-r--r-- | qtmips_gui/programdock.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/qtmips_gui/programdock.cpp b/qtmips_gui/programdock.cpp index 3d881df..70d6a83 100644 --- a/qtmips_gui/programdock.cpp +++ b/qtmips_gui/programdock.cpp @@ -45,6 +45,10 @@ void ProgramView::setup(machine::QtMipsMachine *machine) { cb_single->setCurrentIndex(cb_pipelined->currentIndex() == 0 ? 0 : 1); } +void ProgramView::jump_to_pc(std::uint32_t addr) { + set_focus(addr); +} + QList<QWidget*> ProgramView::row_widget(std::uint32_t address, QWidget *parent) { QList<QWidget*> widgs; QLabel *l; @@ -86,3 +90,7 @@ ProgramDock::ProgramDock(QWidget *parent) : QDockWidget(parent) { void ProgramDock::setup(machine::QtMipsMachine *machine) { view->setup(machine); } + +void ProgramDock::jump_to_pc(std::uint32_t addr) { + view->jump_to_pc(addr); +} |