2017-03-29 10:18:37 +00:00
|
|
|
#ifndef XREFSDIALOG_H
|
|
|
|
#define XREFSDIALOG_H
|
|
|
|
|
|
|
|
#include <QDialog>
|
|
|
|
#include <QTreeWidgetItem>
|
2017-10-02 09:41:28 +00:00
|
|
|
#include <memory>
|
2017-10-01 19:09:42 +00:00
|
|
|
#include "utils/Highlighter.h"
|
2018-03-04 17:42:02 +00:00
|
|
|
#include "Cutter.h"
|
2017-03-29 10:18:37 +00:00
|
|
|
|
|
|
|
class MainWindow;
|
|
|
|
|
2018-03-21 20:32:32 +00:00
|
|
|
namespace Ui {
|
|
|
|
class XrefsDialog;
|
2017-03-29 10:18:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
class XrefsDialog : public QDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2018-05-04 07:58:32 +00:00
|
|
|
explicit XrefsDialog(QWidget *parent = nullptr);
|
2017-03-29 10:18:37 +00:00
|
|
|
~XrefsDialog();
|
|
|
|
|
2017-06-08 22:40:43 +00:00
|
|
|
void fillRefsForAddress(RVA addr, QString name, bool whole_function);
|
2017-03-29 10:18:37 +00:00
|
|
|
|
|
|
|
private slots:
|
|
|
|
void on_fromTreeWidget_itemDoubleClicked(QTreeWidgetItem *item, int column);
|
|
|
|
void on_toTreeWidget_itemDoubleClicked(QTreeWidgetItem *item, int column);
|
|
|
|
|
2018-03-21 20:32:32 +00:00
|
|
|
QString normalizeAddr(const QString &addr) const;
|
2017-03-29 10:18:37 +00:00
|
|
|
|
2017-11-20 20:11:56 +00:00
|
|
|
void setupPreviewFont();
|
|
|
|
void setupPreviewColors();
|
|
|
|
|
2017-03-29 10:18:37 +00:00
|
|
|
void highlightCurrentLine();
|
|
|
|
void on_fromTreeWidget_itemSelectionChanged();
|
|
|
|
|
|
|
|
void on_toTreeWidget_itemSelectionChanged();
|
|
|
|
|
|
|
|
private:
|
2017-06-07 19:35:38 +00:00
|
|
|
RVA addr;
|
|
|
|
QString func_name;
|
|
|
|
|
2017-10-02 09:41:28 +00:00
|
|
|
std::unique_ptr<Ui::XrefsDialog> ui;
|
2017-10-09 18:08:35 +00:00
|
|
|
CutterCore *core;
|
2017-03-29 10:18:37 +00:00
|
|
|
|
2017-06-07 19:35:38 +00:00
|
|
|
void fillRefs(QList<XrefDescription> refs, QList<XrefDescription> xrefs);
|
2017-06-07 15:48:36 +00:00
|
|
|
void updateLabels(QString name);
|
2017-06-07 19:35:38 +00:00
|
|
|
void updatePreview(RVA addr);
|
2017-06-07 15:48:36 +00:00
|
|
|
|
2017-11-27 11:18:47 +00:00
|
|
|
QString xrefTypeString(const QString &type);
|
|
|
|
|
2017-03-29 10:18:37 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // XREFSDIALOG_H
|