X-Git-Url: https://git.siccegge.de//index.cgi?p=frida%2Ffrida.git;a=blobdiff_plain;f=src%2Fgui%2FMainwindow.cxx;h=611f3da62822307dc1043944f944f6a079a60ed0;hp=0f2486ddc13e2ed82227107d0f791368f82bb8b6;hb=954fbc0a236ead64f568e9f591a5248c742084a0;hpb=8ab2c60ccb7a4be4119f0672c0fb51816a41d71e diff --git a/src/gui/Mainwindow.cxx b/src/gui/Mainwindow.cxx index 0f2486d..611f3da 100644 --- a/src/gui/Mainwindow.cxx +++ b/src/gui/Mainwindow.cxx @@ -4,6 +4,7 @@ #include "widgets/CFGScene.hxx" #include "dialogs/NewFunctionDialog.hxx" +#include "dialogs/RenameFunctionDialog.hxx" #include @@ -99,15 +100,15 @@ void Mainwindow::switchMainPlane(int index) { void Mainwindow::showListContextMenu(const QPoint& point) { QListWidgetItem * item = listWidget->itemAt(point); + QMenu menu(this); if (item) { - LOG4CXX_DEBUG(logger, "WOHO " << item->text().toStdString()); + QAction * act = menu.addAction("Rename Function"); + connect(act, &QAction::triggered, [=]() {this->renameFunction(item);}); } else { - QMenu menu(this); QAction * act = menu.addAction("AddFunction"); connect(act, SIGNAL(triggered()), this, SLOT(requestNewFunction())); - - menu.exec(listWidget->mapToGlobal(point)); } + menu.exec(listWidget->mapToGlobal(point)); } void Mainwindow::requestNewFunction() { @@ -121,6 +122,18 @@ void Mainwindow::requestNewFunction() { } } +void Mainwindow::renameFunction(QListWidgetItem * item) { + RenameFunctionDialog dialog; + int result = dialog.exec(); + if (QDialog::Accepted == result) { + LOG4CXX_DEBUG(logger, "renaming Function" << item->text().toStdString() + << " to " << dialog.result().toStdString()); + item->setText(dialog.result()); + } else { + LOG4CXX_DEBUG(logger, "renameFunction aborted"); + } +} + void Mainwindow::addFunction(Function* fun) { if (functions.find(fun) != functions.end()) return;