aboutsummaryrefslogtreecommitdiff
path: root/qtmips_gui/coreview/programcounter.h
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2018-01-25 17:37:34 +0100
committerKarel Kočí <cynerd@email.cz>2018-01-25 17:37:34 +0100
commit063da67766585bd1db5e8afd83e2f9eda88119c0 (patch)
tree928c2101adc3f7c317d9f86c13e2a2d1337806fb /qtmips_gui/coreview/programcounter.h
parent215934254c3a80d8b30858f8c273a329c817a7f9 (diff)
downloadqtmips-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/coreview/programcounter.h')
-rw-r--r--qtmips_gui/coreview/programcounter.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/qtmips_gui/coreview/programcounter.h b/qtmips_gui/coreview/programcounter.h
index c60ad36..6b5772a 100644
--- a/qtmips_gui/coreview/programcounter.h
+++ b/qtmips_gui/coreview/programcounter.h
@@ -20,10 +20,19 @@ public:
const Connector *connector_in() const;
const Connector *connector_out() const;
+signals:
+ void open_program();
+ void jump_to_pc(std::uint32_t addr);
+
+protected:
+ void mouseDoubleClickEvent(QGraphicsSceneMouseEvent *event);
+
private slots:
void pc_update(std::uint32_t val);
private:
+ const machine::Registers *registers;
+
QGraphicsSimpleTextItem name;
QGraphicsSimpleTextItem value;