2017-10-02 16:18:40 +00:00
|
|
|
#include "SymbolsWidget.h"
|
|
|
|
#include "ui_SymbolsWidget.h"
|
2017-03-29 10:18:37 +00:00
|
|
|
|
2017-10-01 19:09:42 +00:00
|
|
|
#include "MainWindow.h"
|
|
|
|
#include "utils/Helpers.h"
|
2017-04-13 15:14:02 +00:00
|
|
|
|
|
|
|
#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
|
|
|
}
|
|
|
|
|
2017-10-02 09:41:28 +00:00
|
|
|
SymbolsWidget::~SymbolsWidget() {}
|
2017-03-29 10:18:37 +00:00
|
|
|
|
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-10-01 18:08:12 +00:00
|
|
|
Q_UNUSED(column);
|
2017-04-09 17:09:35 +00:00
|
|
|
|
2017-03-29 10:18:37 +00:00
|
|
|
// Get offset and name of item double clicked
|
2017-04-28 13:09:40 +00:00
|
|
|
SymbolDescription symbol = item->data(0, Qt::UserRole).value<SymbolDescription>();
|
2017-10-03 18:38:34 +00:00
|
|
|
this->main->seek(symbol.vaddr);
|
2017-03-29 10:18:37 +00:00
|
|
|
}
|
2017-04-13 15:14:02 +00:00
|
|
|
|
|
|
|
void SymbolsWidget::fillSymbols()
|
|
|
|
{
|
|
|
|
ui->symbolsTreeWidget->clear();
|
2017-04-28 13:09:40 +00:00
|
|
|
for (auto symbol : this->main->core->getAllSymbols())
|
2017-04-13 15:14:02 +00:00
|
|
|
{
|
2017-04-28 13:09:40 +00:00
|
|
|
QTreeWidgetItem *item = qhelpers::appendRow(ui->symbolsTreeWidget,
|
2017-06-03 12:27:23 +00:00
|
|
|
RAddressString(symbol.vaddr),
|
|
|
|
QString("%1 %2").arg(symbol.bind, symbol.type).trimmed(),
|
|
|
|
symbol.name);
|
2017-04-28 13:09:40 +00:00
|
|
|
|
|
|
|
item->setData(0, Qt::UserRole, QVariant::fromValue(symbol));
|
2017-04-13 15:14:02 +00:00
|
|
|
}
|
|
|
|
qhelpers::adjustColumns(ui->symbolsTreeWidget);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SymbolsWidget::setScrollMode()
|
|
|
|
{
|
|
|
|
qhelpers::setVerticalScrollMode(ui->symbolsTreeWidget);
|
|
|
|
}
|