From 2e74d0a19579c8f5dee38c5b8a7660549746146b Mon Sep 17 00:00:00 2001 From: kat Date: Sun, 23 Oct 2022 05:27:30 -0400 Subject: 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 --- ui/memorymap.h | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) (limited to 'ui/memorymap.h') 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: -- cgit v1.3.1