aboutsummaryrefslogtreecommitdiff
path: root/qtmips_gui/coreview/programcounter.h
blob: 98b161dced4a660fbbd6e0391a7784c236c9dc3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#ifndef PROGRAMCOUNTER_H
#define PROGRAMCOUNTER_H

#include <QGraphicsObject>
#include <QPainter>
#include "qtmipsmachine.h"
#include "../coreview.h"
#include "connection.h"

namespace coreview {

class ProgramCounter : public QGraphicsObject {
        Q_OBJECT
public:
    ProgramCounter(QtMipsMachine *machine);

    QRectF boundingRect() const;
    void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget);

    void setPos(qreal x, qreal y);
    const Connector *connector_in() const;
    const Connector *connector_out() const;

private slots:
    void pc_update(std::uint32_t val);

private:
    QGraphicsSimpleTextItem value;
    QGraphicsSimpleTextItem name;

    Connector *con_in, *con_out;
};

}

#else

namespace coreview {
    class ProgramCounter;
};

#endif // PROGRAMCOUNTER_H