summaryrefslogtreecommitdiffstats
path: root/src/context.h
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2013-12-07 12:51:18 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2013-12-12 19:13:33 (GMT)
commit6d118eec7474550f26b4b3b3cb05dc86bb3f3fc9 (patch)
tree908ad8672ace6a87823c609122b4fc61f77ee3d4 /src/context.h
parent6dbf32d505d5c9e628474fb83e379b2646d24d3f (diff)
downloadDoxygen-6d118eec7474550f26b4b3b3cb05dc86bb3f3fc9.zip
Doxygen-6d118eec7474550f26b4b3b3cb05dc86bb3f3fc9.tar.gz
Doxygen-6d118eec7474550f26b4b3b3cb05dc86bb3f3fc9.tar.bz2
Added more info to the context
Diffstat (limited to 'src/context.h')
-rw-r--r--src/context.h46
1 files changed, 45 insertions, 1 deletions
diff --git a/src/context.h b/src/context.h
index 9f88b69..6ae2c28 100644
--- a/src/context.h
+++ b/src/context.h
@@ -31,6 +31,9 @@ struct Argument;
class ArgumentList;
class MemberNameInfoSDict;
struct MemberInfo;
+class MemberGroup;
+class MemberGroupSDict;
+class MemberGroupList;
//----------------------------------------------------
@@ -650,6 +653,7 @@ class InheritanceListContext : public TemplateListIntf
class MemberListContext : public TemplateListIntf
{
public:
+ MemberListContext();
MemberListContext(const MemberList *ml);
MemberListContext(MemberSDict *ml,bool doSort);
~MemberListContext();
@@ -666,10 +670,48 @@ class MemberListContext : public TemplateListIntf
//----------------------------------------------------
+class MemberGroupInfoContext : public TemplateStructIntf
+{
+ public:
+ MemberGroupInfoContext(Definition *def,const QCString &relPath,const MemberGroup *mg);
+ ~MemberGroupInfoContext();
+
+ // TemplateStructIntf methods
+ virtual TemplateVariant get(const char *name) const;
+
+ private:
+ class Private;
+ Private *p;
+};
+
+//----------------------------------------------------
+
+class MemberGroupListContext : public TemplateListIntf
+{
+ public:
+ MemberGroupListContext();
+ MemberGroupListContext(Definition *def,const QCString &relPath,const MemberGroupList *list);
+ MemberGroupListContext(Definition *def,const QCString &relPath,const MemberGroupSDict *mgDict,bool subGrouping);
+ ~MemberGroupListContext();
+
+ // TemplateListIntf
+ virtual int count() const;
+ virtual TemplateVariant at(int index) const;
+ virtual TemplateListIntf::ConstIterator *createIterator() const;
+
+ private:
+ class Private;
+ Private *p;
+};
+
+
+//----------------------------------------------------
+
class MemberListInfoContext : public TemplateStructIntf
{
public:
- MemberListInfoContext(const MemberList *ml,const QCString &title,
+ MemberListInfoContext(Definition *def,const QCString &relPath,
+ const MemberList *ml,const QCString &title,
const QCString &subtitle=QCString());
~MemberListInfoContext();
@@ -702,6 +744,7 @@ class MemberInfoContext : public TemplateStructIntf
class AllMembersListContext : public TemplateListIntf
{
public:
+ AllMembersListContext();
AllMembersListContext(const MemberNameInfoSDict *ml);
~AllMembersListContext();
@@ -736,6 +779,7 @@ class ArgumentContext : public TemplateStructIntf
class ArgumentListContext : public TemplateListIntf
{
public:
+ ArgumentListContext();
ArgumentListContext(const ArgumentList *al,Definition *def,const QCString &relPath);
~ArgumentListContext();