2017-03-29 10:18:37 +00:00
|
|
|
#include "stringswidget.h"
|
|
|
|
#include "ui_stringswidget.h"
|
|
|
|
|
|
|
|
#include "dialogs/xrefsdialog.h"
|
|
|
|
#include "mainwindow.h"
|
|
|
|
|
|
|
|
StringsWidget::StringsWidget(MainWindow *main, QWidget *parent) :
|
|
|
|
QDockWidget(parent),
|
|
|
|
ui(new Ui::StringsWidget)
|
|
|
|
{
|
|
|
|
ui->setupUi(this);
|
|
|
|
|
|
|
|
// Radare core found in:
|
|
|
|
this->main = main;
|
|
|
|
this->stringsTreeWidget = ui->stringsTreeWidget;
|
|
|
|
}
|
|
|
|
|
|
|
|
StringsWidget::~StringsWidget()
|
|
|
|
{
|
|
|
|
delete ui;
|
|
|
|
}
|
|
|
|
|
|
|
|
void StringsWidget::on_stringsTreeWidget_itemDoubleClicked(QTreeWidgetItem *item, int column)
|
|
|
|
{
|
2017-04-09 17:09:35 +00:00
|
|
|
QNOTUSED(column);
|
|
|
|
|
2017-03-29 10:18:37 +00:00
|
|
|
// Get offset and name of item double clicked
|
|
|
|
// TODO: use this info to change disasm contents
|
|
|
|
QString offset = item->text(1);
|
|
|
|
QString name = item->text(2);
|
2017-04-09 19:55:06 +00:00
|
|
|
this->main->seek(offset);
|
2017-03-31 10:23:07 +00:00
|
|
|
// Rise and shine baby!
|
|
|
|
this->main->memoryDock->raise();
|
2017-03-29 10:18:37 +00:00
|
|
|
}
|