mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-19 11:26:11 +00:00
56 lines
1.1 KiB
C++
56 lines
1.1 KiB
C++
#ifndef XREFSDIALOG_H
|
|
#define XREFSDIALOG_H
|
|
|
|
#include <QDialog>
|
|
#include <QTreeWidgetItem>
|
|
#include <memory>
|
|
#include "utils/Highlighter.h"
|
|
#include "cutter.h"
|
|
|
|
class MainWindow;
|
|
|
|
namespace Ui
|
|
{
|
|
class XrefsDialog;
|
|
}
|
|
|
|
class XrefsDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit XrefsDialog(QWidget *parent = 0);
|
|
~XrefsDialog();
|
|
|
|
void fillRefsForAddress(RVA addr, QString name, bool whole_function);
|
|
|
|
private slots:
|
|
|
|
void on_fromTreeWidget_itemDoubleClicked(QTreeWidgetItem *item, int column);
|
|
|
|
void on_toTreeWidget_itemDoubleClicked(QTreeWidgetItem *item, int column);
|
|
|
|
QString normalizeAddr(const QString& addr) const;
|
|
|
|
void highlightCurrentLine();
|
|
void on_fromTreeWidget_itemSelectionChanged();
|
|
|
|
void on_toTreeWidget_itemSelectionChanged();
|
|
|
|
private:
|
|
RVA addr;
|
|
QString func_name;
|
|
|
|
std::unique_ptr<Ui::XrefsDialog> ui;
|
|
CutterCore *core;
|
|
|
|
Highlighter *highlighter;
|
|
|
|
void fillRefs(QList<XrefDescription> refs, QList<XrefDescription> xrefs);
|
|
void updateLabels(QString name);
|
|
void updatePreview(RVA addr);
|
|
|
|
};
|
|
|
|
#endif // XREFSDIALOG_H
|