diff options
| author | kat <katherine@vector35.com> | 2022-10-23 05:27:30 -0400 |
|---|---|---|
| committer | Peter LaFosse <peter@vector35.com> | 2022-11-10 16:19:13 -0500 |
| commit | 2e74d0a19579c8f5dee38c5b8a7660549746146b (patch) | |
| tree | db478b838d1d02bfce2d0cdac19150e1f42fccfe /ui/memorymap.h | |
| parent | ef840b45be92f50fc9e708977efd6b2dcc259ba0 (diff) | |
Several documentation improvements and fixes
- Reduce file count, add minifier script
- Group UI and group Core C
- Add more items to groups
- Add Tranform docs
Diffstat (limited to 'ui/memorymap.h')
| -rw-r--r-- | ui/memorymap.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/ui/memorymap.h b/ui/memorymap.h index 544cf2a3..7b831c0c 100644 --- a/ui/memorymap.h +++ b/ui/memorymap.h @@ -15,7 +15,16 @@ #include "uitypes.h" #include "fontsettings.h" +/*! + \defgroup memorymap MemoryMap + \ingroup uiapi +*/ + +/*! + + \ingroup memorymap +*/ class BINARYNINJAUIAPI DataComparedTableItem : public QTableWidgetItem { public: @@ -23,7 +32,10 @@ public: bool operator<(const QTableWidgetItem& other) const; }; +/*! + \ingroup memorymap +*/ class BINARYNINJAUIAPI MemoryMapItemDelegate : public QStyledItemDelegate { public: @@ -31,7 +43,10 @@ public: virtual void paint(QPainter* painter, const QStyleOptionViewItem& option, const QModelIndex& index) const override; }; +/*! + \ingroup memorymap +*/ class BINARYNINJAUIAPI SegmentDialog : public QDialog { @@ -53,7 +68,10 @@ public: SegmentDialog(QWidget* parent, BinaryViewRef data, SegmentRef segment = nullptr); }; +/*! + \ingroup memorymap +*/ class BINARYNINJAUIAPI SectionDialog : public QDialog { @@ -72,7 +90,10 @@ public: SectionDialog(QWidget* parent, BinaryViewRef data, SectionRef section = nullptr); }; +/*! + \ingroup memorymap +*/ class BINARYNINJAUIAPI SegmentWidget : public QWidget, public BinaryNinja::BinaryDataNotification { Q_OBJECT @@ -114,7 +135,10 @@ Q_SIGNALS: void addressDoubleClicked(uint64_t address); }; +/*! + \ingroup memorymap +*/ class BINARYNINJAUIAPI SectionWidget : public QWidget, public BinaryNinja::BinaryDataNotification { Q_OBJECT @@ -155,7 +179,10 @@ Q_SIGNALS: void addressDoubleClicked(uint64_t address); }; +/*! + \ingroup memorymap +*/ class BINARYNINJAUIAPI MemoryMapSidebarWidget : public SidebarWidget { Q_OBJECT @@ -175,7 +202,10 @@ class BINARYNINJAUIAPI MemoryMapSidebarWidget : public SidebarWidget QWidget* headerWidget() override { return m_header; } }; +/*! + \ingroup memorymap +*/ class BINARYNINJAUIAPI MemoryMapSidebarWidgetType : public SidebarWidgetType { public: |
