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/viewframe.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/viewframe.h')
| -rw-r--r-- | ui/viewframe.h | 33 |
1 files changed, 32 insertions, 1 deletions
diff --git a/ui/viewframe.h b/ui/viewframe.h index 21cbc6f1..25937dfd 100644 --- a/ui/viewframe.h +++ b/ui/viewframe.h @@ -21,7 +21,16 @@ #include "action.h" #include "sidebar.h" -// this struct is used to pass selection information for cross references +/*! + + \defgroup viewframe ViewFrame + \ingroup uiapi +*/ + +/*! This struct is used to pass selection information for cross references + + \ingroup viewframe +*/ struct SelectionInfoForXref { // Check these booleans before accessing the address/type/variable info, @@ -60,6 +69,10 @@ struct SelectionInfoForXref bool isValid() const { return addrValid || typeValid || typeFieldValid || localVarValid; } }; +/*! + + \ingroup viewframe +*/ class BINARYNINJAUIAPI HistoryEntry : public BinaryNinja::RefCountObject { QString m_viewType; @@ -96,7 +109,10 @@ class TransformParameterDialog; class ViewPaneHeaderSubtypeWidget; // struct BinaryNinjaCore::LinearDisassemblyLine; +/*! + \ingroup viewframe +*/ class BINARYNINJAUIAPI View { protected: @@ -243,7 +259,10 @@ class BINARYNINJAUIAPI View static void registerLateActions(); }; +/*! + \ingroup viewframe +*/ class BINARYNINJAUIAPI ViewNavigationMode { View* m_view; @@ -260,7 +279,10 @@ class BINARYNINJAUIAPI ViewNavigationMode ~ViewNavigationMode() { m_view->setNavigationMode(m_mode); } }; +/*! + \ingroup viewframe +*/ class BINARYNINJAUIAPI ViewLocation { bool m_valid = false; @@ -312,7 +334,10 @@ class BINARYNINJAUIAPI ViewLocation bool operator!=(const ViewLocation& other) const { return !((*this) == other); } }; +/*! + \ingroup viewframe +*/ class BINARYNINJAUIAPI ViewContainer { public: @@ -324,7 +349,10 @@ class SymbolsView; class ViewFrame; class ViewPane; +/*! + \ingroup viewframe +*/ class InitialNavigation: public BinaryNinja::BinaryDataNotification { ViewFrame* m_frame; @@ -339,7 +367,10 @@ public: virtual void OnSymbolAdded(BinaryNinja::BinaryView* view, BinaryNinja::Symbol* symbol) override; }; +/*! + \ingroup viewframe +*/ class BINARYNINJAUIAPI ViewFrame : public QWidget { Q_OBJECT |
