#ifndef SECTIONSWIDGET_H #define SECTIONSWIDGET_H #include #include #include #include "Cutter.h" #include "CutterDockWidget.h" class QTreeView; class QAbstractItemView; class MainWindow; class SectionsModel : public QAbstractListModel { Q_OBJECT private: QList *sections; public: enum Column { NameColumn = 0, SizeColumn, AddressColumn, EndAddressColumn, EntropyColumn, ColumnCount }; enum Role { SectionDescriptionRole = Qt::UserRole }; SectionsModel(QList *sections, QObject *parent = nullptr); 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 beginReloadSections(); void endReloadSections(); }; class SectionsProxyModel : public QSortFilterProxyModel { Q_OBJECT public: SectionsProxyModel(SectionsModel *sourceModel, QObject *parent = nullptr); protected: bool lessThan(const QModelIndex &left, const QModelIndex &right) const override; }; class SectionsWidget : public CutterDockWidget { Q_OBJECT public: explicit SectionsWidget(MainWindow *main, QAction *action = nullptr); ~SectionsWidget(); private slots: void refreshSections(); void onSectionsDoubleClicked(const QModelIndex &index); private: QList sections; SectionsModel *sectionsModel; QTreeView *sectionsTable; MainWindow *main; }; #endif // SECTIONSWIDGET_H