2017-03-29 10:18:37 +00:00
|
|
|
#include "symbolswidget.h"
|
|
|
|
#include "ui_symbolswidget.h"
|
|
|
|
|
|
|
|
#include "mainwindow.h"
|
2017-04-13 15:14:02 +00:00
|
|
|
#include "helpers.h"
|
|
|
|
|
|
|
|
#include <QTreeWidget>
|
|
|
|
|
2017-03-29 10:18:37 +00:00
|
|
|
|
|
|
|
SymbolsWidget::SymbolsWidget(MainWindow *main, QWidget *parent) :
|
2017-04-13 15:14:02 +00:00
|
|
|
DockWidget(parent),
|
|
|
|
ui(new Ui::SymbolsWidget),
|
|
|
|
main(main)
|
2017-03-29 10:18:37 +00:00
|
|
|
{
|
|
|
|
ui->setupUi(this);
|
2017-04-13 15:14:02 +00:00
|
|
|
|
|
|
|
ui->symbolsTreeWidget->hideColumn(0);
|
2017-03-29 10:18:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SymbolsWidget::~SymbolsWidget()
|
|
|
|
{
|
|
|
|
delete ui;
|
|
|
|
}
|
|
|
|
|
2017-04-13 15:14:02 +00:00
|
|
|
void SymbolsWidget::setup()
|
2017-04-09 19:55:06 +00:00
|
|
|
{
|
2017-04-13 15:14:02 +00:00
|
|
|
setScrollMode();
|
|
|
|
|
|
|
|
fillSymbols();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SymbolsWidget::refresh()
|
|
|
|
{
|
|
|
|
setup();
|
2017-03-29 10:18:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SymbolsWidget::on_symbolsTreeWidget_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(3);
|
|
|
|
//qDebug() << "Item Text: " << name;
|
|
|
|
this->main->seek(offset, name);
|
|
|
|
//ui->memDock->setWindowTitle(name);
|
|
|
|
}
|
2017-04-13 15:14:02 +00:00
|
|
|
|
|
|
|
void SymbolsWidget::fillSymbols()
|
|
|
|
{
|
|
|
|
ui->symbolsTreeWidget->clear();
|
|
|
|
for (auto i : this->main->core->getList("bin", "symbols"))
|
|
|
|
{
|
|
|
|
QStringList pieces = i.split(",");
|
|
|
|
if (pieces.length() == 3)
|
|
|
|
qhelpers::appendRow(ui->symbolsTreeWidget, pieces[0], pieces[1], pieces[2]);
|
|
|
|
}
|
|
|
|
qhelpers::adjustColumns(ui->symbolsTreeWidget);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SymbolsWidget::setScrollMode()
|
|
|
|
{
|
|
|
|
qhelpers::setVerticalScrollMode(ui->symbolsTreeWidget);
|
|
|
|
}
|