mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-19 11:26:11 +00:00
56 lines
1.4 KiB
C++
56 lines
1.4 KiB
C++
#include "EntrypointWidget.h"
|
|
#include "ui_EntrypointWidget.h"
|
|
|
|
#include "MainWindow.h"
|
|
#include "utils/Helpers.h"
|
|
|
|
#include <QTreeWidget>
|
|
#include <QPen>
|
|
|
|
|
|
/*
|
|
* Entrypoint Widget
|
|
*/
|
|
|
|
EntrypointWidget::EntrypointWidget(MainWindow *main, QAction *action) :
|
|
CutterDockWidget(main, action),
|
|
ui(new Ui::EntrypointWidget)
|
|
{
|
|
ui->setupUi(this);
|
|
|
|
setScrollMode();
|
|
|
|
connect(Core(), SIGNAL(refreshAll()), this, SLOT(fillEntrypoint()));
|
|
}
|
|
|
|
EntrypointWidget::~EntrypointWidget() {}
|
|
|
|
void EntrypointWidget::fillEntrypoint()
|
|
{
|
|
ui->entrypointTreeWidget->clear();
|
|
for (auto i : Core()->getAllEntrypoint()) {
|
|
QTreeWidgetItem *item = new QTreeWidgetItem();
|
|
item->setText(0, RAddressString(i.vaddr));
|
|
item->setText(1, i.type);
|
|
item->setData(0, Qt::UserRole, QVariant::fromValue(i));
|
|
ui->entrypointTreeWidget->addTopLevelItem(item);
|
|
}
|
|
|
|
qhelpers::adjustColumns(ui->entrypointTreeWidget, 0, 10);
|
|
}
|
|
|
|
void EntrypointWidget::setScrollMode()
|
|
{
|
|
qhelpers::setVerticalScrollMode(ui->entrypointTreeWidget);
|
|
}
|
|
|
|
void EntrypointWidget::on_entrypointTreeWidget_itemDoubleClicked(QTreeWidgetItem *item,
|
|
int column)
|
|
{
|
|
if (column < 0)
|
|
return;
|
|
|
|
EntrypointDescription ep = item->data(0, Qt::UserRole).value<EntrypointDescription>();
|
|
Core()->seek(ep.vaddr);
|
|
}
|