X-Git-Url: https://git.siccegge.de//index.cgi?p=frida%2Ffrida.git;a=blobdiff_plain;f=src%2Fgui%2Fwidgets%2FBasicBlockWidget.cxx;h=5dc27ce40efc5760e736dcd3241292e6bd047b7d;hp=282eab27c53b0e869f4a3241445397bfabf77891;hb=8ab2c60ccb7a4be4119f0672c0fb51816a41d71e;hpb=d80925a9bd94f07a119acefc8b71d10f41ab81be diff --git a/src/gui/widgets/BasicBlockWidget.cxx b/src/gui/widgets/BasicBlockWidget.cxx index 282eab2..5dc27ce 100644 --- a/src/gui/widgets/BasicBlockWidget.cxx +++ b/src/gui/widgets/BasicBlockWidget.cxx @@ -1,36 +1,64 @@ #include "BasicBlockWidget.hxx" +#include "gui/Mainwindow.hxx" -BasicBlockWidget::BasicBlockWidget(const QString& name, BasicBlock * block) +BasicBlockWidget::BasicBlockWidget(const QString& name, BasicBlock * block, + Mainwindow * mainwindow) : width(270), height(45) - , name(name), block(block) { + , _proxy(this), name(name) + , block(block), mainwindow(mainwindow) { next[0] = NULL; next[1] = NULL; - _widget.move(5, 20); + _widget.setStyleSheet("QWidget { background-color : #ddddff; }"); + _widget.setLayout(&_layout); + _layout.setContentsMargins(0, 0, 0, 0); + _proxy.setWidget(&_widget); + _proxy.setPos(5, 20); - if (width < 270) width = 270; + if (width < 250) width = 250; } void BasicBlockWidget::addItem(uint8_t* bytes, size_t num_bytes, - const QString& line) { - QString bytestring; - - for (size_t i(0); i < num_bytes; ++i) { - const char * hexdigits = "0123456789ABCDEF"; - bytestring += hexdigits[(bytes[i] >> 4) & 0xF]; - bytestring += hexdigits[bytes[i] & 0xF]; - bytestring += ' '; - } - - QString old_text = _widget.text(); - QString new_text = - old_text.remove("") + - "" + bytestring + - "" + line + - "" + "" + - ""; - - _widget.setText(new_text); - width = 12 + _widget.sizeHint().width(); - height = 25 + _widget.sizeHint().height(); - - if (width < 250) width = 250; + QString line, const QString& href) { + QString bytestring; + + for (size_t i(0); i < num_bytes; ++i) { + const char * hexdigits = "0123456789ABCDEF"; + bytestring += hexdigits[(bytes[i] >> 4) & 0xF]; + bytestring += hexdigits[bytes[i] & 0xF]; + bytestring += ' '; + } + + int current_row = _layout.rowCount(); + QLabel * bytestring_label = new QLabel(bytestring); + bytestring_label->setTextInteractionFlags(Qt::TextSelectableByMouse| + Qt::LinksAccessibleByMouse); + bytestring_label->setWordWrap(false); + _layout.addWidget(bytestring_label, current_row, 0); + bytestring_label->setVisible(true); + + line = line.replace('\t', ' ').toHtmlEscaped(); + if (href != "") { + line = "" + line + ""; + } + QLabel * instruction_label = new QLabel(line); + instruction_label->setTextInteractionFlags(Qt::TextSelectableByMouse| + Qt::LinksAccessibleByMouse); + instruction_label->setWordWrap(false); + instruction_label->setFocusPolicy(Qt::StrongFocus); + if (href != "") { + QObject::connect(instruction_label, &QLabel::linkActivated, + [=](QString str) { + if (str.startsWith("function:")) { + QString address = str.remove("function:"); + mainwindow->switchMainPlaneToAddress(address.toInt(NULL, 16)); + } + }); + } + _layout.addWidget(instruction_label, current_row, 1); + instruction_label->setVisible(true); + + width = 12 + _widget.childrenRect().width(); + height = 25 + _widget.childrenRect().height(); + + if (width < 250) width = 250; + _widget.resize(width - 12, height - 25); }