diff options
author | Pavel Pisa <pisa@cmp.felk.cvut.cz> | 2019-02-07 21:57:02 +0100 |
---|---|---|
committer | Pavel Pisa <pisa@cmp.felk.cvut.cz> | 2019-02-07 21:57:02 +0100 |
commit | bad9f0780e8dfca230e0cc6c32d60e845887aaf9 (patch) | |
tree | cff91345abc173ee774f31381ab5079eab631965 /qtmips_gui/coreview/value.cpp | |
parent | a0bc62d72314aa1c1946f0b1affe5bbe0dc64274 (diff) | |
download | qtmips-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.cpp')
-rw-r--r-- | qtmips_gui/coreview/value.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/qtmips_gui/coreview/value.cpp b/qtmips_gui/coreview/value.cpp index 12f7a55..9a3ab09 100644 --- a/qtmips_gui/coreview/value.cpp +++ b/qtmips_gui/coreview/value.cpp @@ -41,9 +41,11 @@ using namespace coreview; #define LETWIDTH 7 // TODO orientation -Value::Value(bool vertical, unsigned width, std::uint32_t init_val) : QGraphicsObject(nullptr) { +Value::Value(bool vertical, unsigned width, std::uint32_t init_val, + unsigned a_base) : QGraphicsObject(nullptr) { wid = width; val = init_val; + base = a_base; this->vertical = vertical; } @@ -68,7 +70,7 @@ void Value::paint(QPainter *painter, const QStyleOptionGraphicsItem *option __at painter->setBackgroundMode(Qt::OpaqueMode); painter->drawRect(rect); painter->setBackgroundMode(Qt::TransparentMode); - QString str = QString("%1").arg(val, wid, 16, QChar('0')); + QString str = QString("%1").arg(val, wid, base, QChar('0')); if (vertical) { rect.setHeight(HEIGHT + 1); for (unsigned i = 0; i < wid; i++) { |