mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-22 21:06:10 +00:00
201 lines
5.4 KiB
C++
201 lines
5.4 KiB
C++
#ifndef CLASSESWIDGET_H
|
|
#define CLASSESWIDGET_H
|
|
|
|
#include <memory>
|
|
|
|
#include "core/Cutter.h"
|
|
#include "CutterDockWidget.h"
|
|
|
|
#include <QAbstractListModel>
|
|
#include <QSortFilterProxyModel>
|
|
|
|
namespace Ui {
|
|
class ClassesWidget;
|
|
}
|
|
|
|
class QTreeWidget;
|
|
class QTreeWidgetItem;
|
|
class MainWindow;
|
|
class ClassesWidget;
|
|
|
|
/**
|
|
* @brief Common abstract base class for Bin and Anal classes models
|
|
*/
|
|
class ClassesModel: public QAbstractItemModel
|
|
{
|
|
public:
|
|
enum Columns { NAME = 0, TYPE, OFFSET, VTABLE, COUNT };
|
|
|
|
/**
|
|
* @brief values for TypeRole data
|
|
*/
|
|
enum class RowType { Class = 0, Base, VTable, Method, Field };
|
|
|
|
/**
|
|
* @brief Offset role of data for QModelIndex
|
|
*
|
|
* will contain values of type RVA
|
|
*/
|
|
static const int OffsetRole = Qt::UserRole;
|
|
|
|
/**
|
|
* @brief Name role of data for QModelIndex
|
|
*
|
|
* will contain values of QString, used for sorting,
|
|
* as well as identifying classes and methods
|
|
*/
|
|
static const int NameRole = Qt::UserRole + 1;
|
|
|
|
/**
|
|
* @brief Type role of data for QModelIndex
|
|
*
|
|
* will contain values of RowType
|
|
*/
|
|
static const int TypeRole = Qt::UserRole + 2;
|
|
|
|
explicit ClassesModel(QObject *parent = nullptr) : QAbstractItemModel(parent) {}
|
|
|
|
QVariant headerData(int section, Qt::Orientation orientation,
|
|
int role = Qt::DisplayRole) const override;
|
|
};
|
|
|
|
Q_DECLARE_METATYPE(ClassesModel::RowType)
|
|
|
|
class BinClassesModel: public ClassesModel
|
|
{
|
|
Q_OBJECT
|
|
|
|
private:
|
|
QList<BinClassDescription> classes;
|
|
|
|
QModelIndex index(int row, int column, const QModelIndex &parent = QModelIndex()) const override;
|
|
|
|
QModelIndex parent(const QModelIndex &index) const override;
|
|
int rowCount(const QModelIndex &parent = QModelIndex()) const override;
|
|
|
|
int columnCount(const QModelIndex &parent = QModelIndex()) const override;
|
|
QVariant data(const QModelIndex &index, int role) const override;
|
|
|
|
public:
|
|
explicit BinClassesModel(QObject *parent = nullptr);
|
|
void setClasses(const QList<BinClassDescription> &classes);
|
|
};
|
|
|
|
|
|
class AnalClassesModel: public ClassesModel
|
|
{
|
|
Q_OBJECT
|
|
|
|
private:
|
|
/**
|
|
* @brief List entry below a class
|
|
*
|
|
* This roughly corresponds to attributes of r2 anal classes, which means it is not an attribute in the sense of
|
|
* a class member variable, but any kind of sub-info associated with the class.
|
|
* This struct in particular is used to provide a model for the list entries below a class.
|
|
*/
|
|
struct Attribute
|
|
{
|
|
enum class Type { VTable, Base, Method };
|
|
Type type;
|
|
QVariant data;
|
|
|
|
Attribute() = default;
|
|
Attribute(Type type, const QVariant &data) : type(type), data(data) {}
|
|
};
|
|
|
|
/**
|
|
* This must always stay sorted alphabetically.
|
|
*/
|
|
QList<QString> classes;
|
|
|
|
RefreshDeferrer *refreshDeferrer;
|
|
|
|
/**
|
|
* @brief Cache for class attributes
|
|
*
|
|
* Maps class names to a list of Attributes.
|
|
* This is filled only when the attributes of a specific class are requested.
|
|
* (i.e. the user expands the class in the QTreeView)
|
|
*
|
|
* This must be a pointer instead of just a QMap, because it has to be modified
|
|
* in methods that are defined as const by QAbstractItemModel.
|
|
*/
|
|
std::unique_ptr<QMap<QString, QVector<Attribute>>> attrs;
|
|
|
|
const QVector<Attribute> &getAttrs(const QString &cls) const;
|
|
|
|
QModelIndex index(int row, int column, const QModelIndex &parent = QModelIndex()) const override;
|
|
|
|
QModelIndex parent(const QModelIndex &index) const override;
|
|
int rowCount(const QModelIndex &parent = QModelIndex()) const override;
|
|
bool hasChildren(const QModelIndex &parent = QModelIndex()) const override;
|
|
|
|
int columnCount(const QModelIndex &parent = QModelIndex()) const override;
|
|
QVariant data(const QModelIndex &index, int role) const override;
|
|
|
|
public:
|
|
explicit AnalClassesModel(CutterDockWidget *parent);
|
|
|
|
public slots:
|
|
void refreshAll();
|
|
void classNew(const QString &cls);
|
|
void classDeleted(const QString &cls);
|
|
void classRenamed(const QString &oldName, const QString &newName);
|
|
void classAttrsChanged(const QString &cls);
|
|
};
|
|
|
|
|
|
|
|
class ClassesSortFilterProxyModel : public QSortFilterProxyModel
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit ClassesSortFilterProxyModel(QObject *parent = nullptr);
|
|
|
|
protected:
|
|
bool filterAcceptsRow(int row, const QModelIndex &parent) const override;
|
|
bool lessThan(const QModelIndex &left, const QModelIndex &right) const override;
|
|
bool hasChildren(const QModelIndex &parent = QModelIndex()) const override;
|
|
};
|
|
|
|
|
|
|
|
class ClassesWidget : public CutterDockWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit ClassesWidget(MainWindow *main, QAction *action = nullptr);
|
|
~ClassesWidget();
|
|
|
|
private slots:
|
|
void on_classesTreeView_doubleClicked(const QModelIndex &index);
|
|
|
|
void on_seekToVTableAction_triggered();
|
|
void on_addMethodAction_triggered();
|
|
void on_editMethodAction_triggered();
|
|
void on_newClassAction_triggered();
|
|
void on_deleteClassAction_triggered();
|
|
void on_renameClassAction_triggered();
|
|
|
|
void showContextMenu(const QPoint &pt);
|
|
|
|
void refreshClasses();
|
|
|
|
private:
|
|
enum class Source { BIN, ANAL };
|
|
|
|
Source getSource();
|
|
|
|
std::unique_ptr<Ui::ClassesWidget> ui;
|
|
|
|
BinClassesModel *bin_model = nullptr;
|
|
AnalClassesModel *anal_model = nullptr;
|
|
ClassesSortFilterProxyModel *proxy_model;
|
|
};
|
|
|
|
|
|
#endif // CLASSESWIDGET_H
|