diff options
Diffstat (limited to 'qtmips_gui/programdock.cpp')
-rw-r--r-- | qtmips_gui/programdock.cpp | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/qtmips_gui/programdock.cpp b/qtmips_gui/programdock.cpp index 70d6a83..974e5ad 100644 --- a/qtmips_gui/programdock.cpp +++ b/qtmips_gui/programdock.cpp @@ -53,19 +53,24 @@ QList<QWidget*> ProgramView::row_widget(std::uint32_t address, QWidget *parent) QList<QWidget*> widgs; QLabel *l; + QFont f; + f.setStyleHint(QFont::Monospace); + l = new QLabel(" ", parent); + l->setFont(f); widgs.append(l); - l = new QLabel(QString("0x%1").arg(address, 8, 16, QChar('0')), parent); + l = new QLabel(QString("0x") + QString("%1").arg(address, 8, 16, QChar('0')).toUpper(), parent); l->setTextInteractionFlags(Qt::TextSelectableByMouse); + l->setFont(f); widgs.append(l); l = new QLabel(parent); l->setTextInteractionFlags(Qt::TextSelectableByMouse); + l->setFont(f); + l->setMinimumWidth(60); if (memory != nullptr) l->setText(machine::Instruction(memory->read_word(address)).to_str()); - else - l->setText(" "); // Just fill it in with some plain text so we don't have just addresses there widgs.append(l); return widgs; |