aboutsummaryrefslogtreecommitdiff
path: root/qtmips_gui/coreview/value.h
diff options
context:
space:
mode:
authorPavel Pisa <pisa@cmp.felk.cvut.cz>2019-02-07 21:57:02 +0100
committerPavel Pisa <pisa@cmp.felk.cvut.cz>2019-02-07 21:57:02 +0100
commitbad9f0780e8dfca230e0cc6c32d60e845887aaf9 (patch)
treecff91345abc173ee774f31381ab5079eab631965 /qtmips_gui/coreview/value.h
parenta0bc62d72314aa1c1946f0b1affe5bbe0dc64274 (diff)
downloadqtmips-bad9f0780e8dfca230e0cc6c32d60e845887aaf9.tar.gz
qtmips-bad9f0780e8dfca230e0cc6c32d60e845887aaf9.tar.bz2
qtmips-bad9f0780e8dfca230e0cc6c32d60e845887aaf9.zip
View register numbers in decimal notation.
Signed-off-by: Pavel Pisa <pisa@cmp.felk.cvut.cz>
Diffstat (limited to 'qtmips_gui/coreview/value.h')
-rw-r--r--qtmips_gui/coreview/value.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/qtmips_gui/coreview/value.h b/qtmips_gui/coreview/value.h
index d6cac8a..755a9b2 100644
--- a/qtmips_gui/coreview/value.h
+++ b/qtmips_gui/coreview/value.h
@@ -44,7 +44,8 @@ namespace coreview {
class Value : public QGraphicsObject {
Q_OBJECT
public:
- Value(bool vertical = false, unsigned width = 8, unsigned init_val = 0); // width is for number of character to be shown from number
+ Value(bool vertical = false, unsigned width = 8,
+ unsigned init_val = 0, unsigned base = 16); // width is for number of character to be shown from number
QRectF boundingRect() const;
void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget);
@@ -57,6 +58,7 @@ protected:
private:
unsigned wid;
+ unsigned base;
bool vertical;
};