mirror of
https://github.com/rizinorg/cutter.git
synced 2025-01-06 03:55:27 +00:00
2d7b6d15c0
* Added bins dialog box * Bins dialog box working * Add size column * Add newline * Make code more readable * Make headers better * Add tooltip for bins widget * Added easy access to detailed chunk info from bins dialog * Experimenting with CutterGraphView * Added Basic Graph View for bins using `simpleTextgraphView` * Added Bins button * Bug fix * Add bin message to the last chunk in the list * Add addresses and addressablecontextmenu to graphs * Add support multi line graph blocks * Fix indent * Dont clear dialog box * Add `detailed chunk info` in Graphs context menu * Minor changes * Update Rizin
64 lines
1.5 KiB
C++
64 lines
1.5 KiB
C++
#ifndef GLIBCHEAPBINSDIALOG_H
|
|
#define GLIBCHEAPBINSDIALOG_H
|
|
|
|
#include <QDialog>
|
|
#include <QAbstractTableModel>
|
|
#include "core/Cutter.h"
|
|
#include <MainWindow.h>
|
|
#include <HeapBinsGraphView.h>
|
|
|
|
namespace Ui {
|
|
class GlibcHeapBinsDialog;
|
|
}
|
|
|
|
class BinsModel : public QAbstractTableModel
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit BinsModel(RVA arena_addr, QObject *parent = nullptr);
|
|
enum Column {
|
|
TypeColumn = 0,
|
|
BinNumColumn,
|
|
FdColumn,
|
|
BkColumn,
|
|
CountColumn,
|
|
SizeColumn,
|
|
ColumnCount
|
|
};
|
|
void reload();
|
|
int rowCount(const QModelIndex &parent) const override;
|
|
int columnCount(const QModelIndex &parent) const override;
|
|
void clearData();
|
|
QVariant data(const QModelIndex &index, int role) const override;
|
|
QVariant headerData(int section, Qt::Orientation orientation, int role) const override;
|
|
RVA arena_addr = 0;
|
|
RzList *getChunks(int index);
|
|
QString getBinMessage(int index);
|
|
QVector<RzHeapBin *> values;
|
|
|
|
private:
|
|
};
|
|
|
|
class GlibcHeapBinsDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit GlibcHeapBinsDialog(RVA i, MainWindow *main, QWidget *parent);
|
|
~GlibcHeapBinsDialog();
|
|
void onCurrentChanged(const QModelIndex ¤t, const QModelIndex &prev);
|
|
void setChainInfo(int index);
|
|
void setGraphView(int index);
|
|
private slots:
|
|
void showHeapInfoDialog();
|
|
|
|
private:
|
|
Ui::GlibcHeapBinsDialog *ui;
|
|
RVA m_state;
|
|
BinsModel *binsModel {};
|
|
HeapBinsGraphView *graphView;
|
|
MainWindow *main;
|
|
};
|
|
|
|
#endif // GLIBCHEAPBINSDIALOG_H
|