mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-22 04:46:11 +00:00
3545f059f1
* Use QDockWidget::toggleViewAction instead of custom solution. * Improve new dock placement.
102 lines
2.6 KiB
C++
102 lines
2.6 KiB
C++
#ifndef COMMENTSWIDGET_H
|
|
#define COMMENTSWIDGET_H
|
|
|
|
#include <memory>
|
|
#include <QAbstractItemModel>
|
|
#include <QSortFilterProxyModel>
|
|
|
|
#include "core/Cutter.h"
|
|
#include "common/AddressableItemModel.h"
|
|
#include "CutterDockWidget.h"
|
|
#include "CutterTreeWidget.h"
|
|
#include "widgets/ListDockWidget.h"
|
|
|
|
class MainWindow;
|
|
class QTreeWidgetItem;
|
|
class CommentsWidget;
|
|
|
|
struct CommentGroup
|
|
{
|
|
QString name;
|
|
RVA offset;
|
|
QList<CommentDescription> comments;
|
|
};
|
|
|
|
class CommentsModel : public AddressableItemModel<>
|
|
{
|
|
Q_OBJECT
|
|
|
|
friend CommentsWidget;
|
|
|
|
private:
|
|
QList<CommentDescription> *comments;
|
|
QList<CommentGroup> *nestedComments;
|
|
bool nested;
|
|
|
|
public:
|
|
enum Column { OffsetColumn = 0, FunctionColumn, CommentColumn, ColumnCount };
|
|
enum NestedColumn { OffsetNestedColumn = 0, CommentNestedColumn, NestedColumnCount };
|
|
enum Role { CommentDescriptionRole = Qt::UserRole, FunctionRole };
|
|
|
|
CommentsModel(QList<CommentDescription> *comments,
|
|
QList<CommentGroup> *nestedComments,
|
|
QObject *parent = nullptr);
|
|
|
|
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;
|
|
QVariant headerData(int section, Qt::Orientation orientation,
|
|
int role = Qt::DisplayRole) const override;
|
|
|
|
bool isNested() const;
|
|
void setNested(bool nested);
|
|
|
|
RVA address(const QModelIndex &index) const override;
|
|
};
|
|
|
|
class CommentsProxyModel : public AddressableFilterProxyModel
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
CommentsProxyModel(CommentsModel *sourceModel, QObject *parent = nullptr);
|
|
|
|
protected:
|
|
bool filterAcceptsRow(int row, const QModelIndex &parent) const override;
|
|
bool lessThan(const QModelIndex &left, const QModelIndex &right) const override;
|
|
};
|
|
|
|
class CommentsWidget : public ListDockWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit CommentsWidget(MainWindow *main);
|
|
~CommentsWidget() override;
|
|
|
|
private slots:
|
|
void onActionHorizontalToggled(bool checked);
|
|
void onActionVerticalToggled(bool checked);
|
|
|
|
void showTitleContextMenu(const QPoint &pt);
|
|
|
|
void refreshTree();
|
|
|
|
private:
|
|
CommentsModel *commentsModel;
|
|
CommentsProxyModel *commentsProxyModel;
|
|
QAction actionHorizontal;
|
|
QAction actionVertical;
|
|
|
|
QList<CommentDescription> comments;
|
|
QList<CommentGroup> nestedComments;
|
|
|
|
QMenu *titleContextMenu;
|
|
};
|
|
|
|
#endif // COMMENTSWIDGET_H
|