cutter/src/widgets/functionswidget.h

136 lines
3.1 KiB
C
Raw Normal View History

#ifndef FUNCTIONSWIDGET_H
#define FUNCTIONSWIDGET_H
#include "dockwidget.h"
#include "qrcore.h"
#include <QSortFilterProxyModel>
#include <QTreeView>
class MainWindow;
class QTreeWidgetItem;
2017-04-09 19:55:06 +00:00
namespace Ui
{
class FunctionsWidget;
}
class FunctionModel : public QAbstractItemModel
{
Q_OBJECT
private:
MainWindow *main;
QList<FunctionDescription> *functions;
QSet<RVA> *import_addresses;
QFont highlight_font;
QFont default_font;
bool nested;
int current_index;
public:
static const int FunctionDescriptionRole = Qt::UserRole;
static const int IsImportRole = Qt::UserRole + 1;
FunctionModel(QList<FunctionDescription> *functions, QSet<RVA> *import_addresses, bool nested, QFont default_font, QFont highlight_font, MainWindow *main, QObject *parent = 0);
QModelIndex index(int row, int column, const QModelIndex &parent = QModelIndex()) const;
QModelIndex parent(const QModelIndex &index) const;
int rowCount(const QModelIndex &parent = QModelIndex()) const;
int columnCount(const QModelIndex &parent = QModelIndex()) const;
QVariant data(const QModelIndex &index, int role) const;
QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const;
void beginReloadFunctions();
void endReloadFunctions();
void updateCurrentIndex();
bool isNested() { return nested; }
private slots:
void cursorAddressChanged(RVA addr);
void functionRenamed(const QString &prev_name, const QString &new_name);
};
class FunctionSortFilterProxyModel : public QSortFilterProxyModel
{
Q_OBJECT
public:
FunctionSortFilterProxyModel(FunctionModel *source_model, QObject *parent = 0);
protected:
bool filterAcceptsRow(int row, const QModelIndex &parent) const override;
bool lessThan(const QModelIndex &left, const QModelIndex &right) const override;
};
class FunctionsWidget : public DockWidget
{
Q_OBJECT
public:
explicit FunctionsWidget(MainWindow *main, QWidget *parent = 0);
~FunctionsWidget();
void setup() override;
void refresh() override;
private slots:
2017-05-04 14:16:21 +00:00
void functionsTreeView_doubleClicked(const QModelIndex &index);
void showFunctionsContextMenu(const QPoint &pt);
void on_actionDisasAdd_comment_triggered();
void on_actionFunctionsRename_triggered();
void on_action_References_triggered();
void on_actionHorizontal_triggered();
void on_actionVertical_triggered();
2017-05-18 12:17:51 +00:00
void show_filter();
void clear_filter();
2017-05-18 12:17:51 +00:00
void on_closeFilterButton_clicked();
void showTitleContextMenu(const QPoint &pt);
protected:
void resizeEvent(QResizeEvent *event) override;
private:
QTreeView *getCurrentTreeView();
Ui::FunctionsWidget *ui;
MainWindow *main;
QList<FunctionDescription> functions;
QSet<RVA> import_addresses;
FunctionModel *function_model;
FunctionSortFilterProxyModel *function_proxy_model;
FunctionModel *nested_function_model;
FunctionSortFilterProxyModel *nested_function_proxy_model;
void refreshTree();
void setScrollMode();
};
#endif // FUNCTIONSWIDGET_H