mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-22 12:56:11 +00:00
bebc2ec36d
* Replace 0 and Q_NULLPTR with nullptr * Use c++11 foreach
56 lines
1.2 KiB
C++
56 lines
1.2 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 = nullptr);
|
|
~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 setupPreviewFont();
|
|
void setupPreviewColors();
|
|
|
|
void highlightCurrentLine();
|
|
void on_fromTreeWidget_itemSelectionChanged();
|
|
|
|
void on_toTreeWidget_itemSelectionChanged();
|
|
|
|
private:
|
|
RVA addr;
|
|
QString func_name;
|
|
|
|
std::unique_ptr<Ui::XrefsDialog> ui;
|
|
CutterCore *core;
|
|
|
|
void fillRefs(QList<XrefDescription> refs, QList<XrefDescription> xrefs);
|
|
void updateLabels(QString name);
|
|
void updatePreview(RVA addr);
|
|
|
|
QString xrefTypeString(const QString &type);
|
|
|
|
};
|
|
|
|
#endif // XREFSDIALOG_H
|