aboutsummaryrefslogtreecommitdiff
path: root/qtmips_gui/coreview/latch.h
blob: 0148b67c73ecba86c0b5c27a5692bb945c066c34 (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
43
44
45
#ifndef LATCH_H
#define LATCH_H

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

namespace coreview {

class Latch : public QGraphicsObject {
    Q_OBJECT
public:
    Latch(machine::QtMipsMachine *machine, qreal height);

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

    void setPos(qreal x, qreal y);

    struct ConnectorPair { Connector *in, *out; };

    struct ConnectorPair new_connector(qreal y); // Create new connectors pair that is given y from top of latch

private slots:
    void tick();

private:
    qreal height;
    QList<ConnectorPair> connectors;
    QList<qreal> connectors_off;

};

}

#else

namespace coreview {
    class Latch;
};

#endif // LATCH_H