X-Git-Url: https://git.siccegge.de//index.cgi?a=blobdiff_plain;f=src%2Fgui%2Fwidgets%2FFunctionWidget.cxx;h=0d931adc202b29d049baadfbdc5e13db856be56d;hb=1975fc2d8d5f1a2a7bf71717c0ca7cef6dd57566;hp=d717171755e0b223b171cde61f543d6594f64c33;hpb=0e4b70a5cbbb548d6c6d64b56d6db0c53819b3e7;p=frida%2Ffrida.git diff --git a/src/gui/widgets/FunctionWidget.cxx b/src/gui/widgets/FunctionWidget.cxx index d717171..0d931ad 100644 --- a/src/gui/widgets/FunctionWidget.cxx +++ b/src/gui/widgets/FunctionWidget.cxx @@ -18,42 +18,46 @@ namespace { FunctionWidget::FunctionWidget(Function* function, Mainwindow* mainwindow) : function(function) , mainwindow(mainwindow) + , layouted(false) , logger(log4cxx::Logger::getLogger("gui.Mainwindow")) { - // CFG - CFGScene * scene = new CFGScene; - InformationManager* manager = function->getManager(); - - BasicBlock * block = manager->getBasicBlock(function->getStartAddress()); - LOG4CXX_DEBUG(logger, "Building widget for functionction " << function->getName()); - for (auto i : function->blocks()) { - LOG4CXX_DEBUG(logger, "Functionction contains Block " << i.second->getName()); - } - - uint64_t start_address(std::numeric_limits::max()); - for (auto b : function->blocks()) { - if (b.first < start_address) - start_address = b.first; - } +} - std::map _blocks; - local__add_basic_block(block, mainwindow, - manager, _blocks, scene, start_address, 100); +void FunctionWidget::showEvent(QShowEvent* event) { + if (!layouted) { + CFGScene * scene = new CFGScene; + InformationManager* manager = function->getManager(); - QGraphicsView * view = new QGraphicsView(scene); - view->setDragMode(QGraphicsView::ScrollHandDrag); - addTab(view, "CFG"); + BasicBlock * block = manager->getBasicBlock(function->getStartAddress()); + LOG4CXX_DEBUG(logger, "Building widget for functionction " << function->getName()); + for (auto i : function->blocks()) { + LOG4CXX_DEBUG(logger, "Functionction contains Block " << i.second->getName()); + } - // Listing - QTableWidget * t = new QTableWidget(); - t->setColumnCount(3); - t->horizontalHeader()->setSectionResizeMode(QHeaderView::ResizeToContents); + uint64_t start_address(std::numeric_limits::max()); + for (auto b : function->blocks()) { + if (b.first < start_address) + start_address = b.first; + } - addTab(t, "Listing"); -} + std::map _blocks; + BasicBlockWidget* firstblock = local__add_basic_block(block, mainwindow, + manager, _blocks, scene, 3*start_address, 100); + QGraphicsView * view = new QGraphicsView(scene); + view->setDragMode(QGraphicsView::ScrollHandDrag); + addTab(view, "CFG"); + // Listing + QTableWidget * t = new QTableWidget(); + t->setColumnCount(3); + t->horizontalHeader()->setSectionResizeMode(QHeaderView::ResizeToContents); + addTab(t, "Listing"); + view->ensureVisible(firstblock); + layouted = true; + } +} namespace { BasicBlockWidget * @@ -77,7 +81,7 @@ namespace { scene->addItem(widget); widget->setFlag(QGraphicsItem::ItemIsMovable, true); - widget->moveBy(100*startx, block->getStartAddress() - starty); + widget->moveBy(100*startx, 3*block->getStartAddress() - starty); BasicBlockWidget *tmp, *nextl(NULL), *nextr(NULL); BasicBlock * tmpblock;