/****************************************************************************** * * * * Copyright (C) 1997-2006 by Dimitri van Heesch. * * Permission to use, copy, modify, and distribute this software and its * documentation under the terms of the GNU General Public License is hereby * granted. No representations are made about the suitability of this software * for any purpose. It is provided "as is" without express or implied warranty. * See the GNU General Public License for more details. * * Documents produced by Doxygen are derivative works derived from the * input used in their production; they are not affected by this license. * */ #ifndef NAMESPACEDEF_H #define NAMESPACEDEF_H #include "qtbc.h" #include #include #include "sortdict.h" #include "definition.h" #include "memberlist.h" class ClassDef; class ClassList; class OutputList; class ClassSDict; class MemberDef; class NamespaceList; class MemberGroupSDict; class NamespaceSDict; class NamespaceDef : public Definition { public: NamespaceDef(const char *defFileName,int defLine, const char *name,const char *ref=0, const char *refFile=0); ~NamespaceDef(); DefType definitionType() const { return TypeNamespace; } QCString getOutputFileBase() const; void insertUsedFile(const char *fname); void writeDetailedDocumentation(OutputList &ol); void writeDocumentation(OutputList &ol); void writeMemberDocumentation(OutputList &ol); void writeMemberPages(OutputList &ol); void writeQuickMemberLinks(OutputList &ol,MemberDef *currentMd) const; void insertClass(ClassDef *cd); void insertNamespace(NamespaceDef *nd); void insertMember(MemberDef *md); void computeAnchors(); int countMembers(); void addUsingDirective(NamespaceDef *nd); NamespaceSDict *getUsedNamespaces() const { return usingDirList; } void addUsingDeclaration(Definition *def); SDict *getUsedClasses() const { return usingDeclList; } void combineUsingRelations(); QCString displayName() const; bool isLinkableInProject() const; bool isLinkable() const; void addMembersToMemberGroup(); void distributeMemberGroupDocumentation(); void findSectionsInDocumentation(); virtual Definition *findInnerCompound(const char *name); void addInnerCompound(Definition *d); void addListReferences(); MemberList *getMemberList(MemberList::ListType lt) const; const QList &getMemberLists() const { return m_memberLists; } /*! Returns the user defined member groups */ MemberGroupSDict *getMemberGroupSDict() const { return memberGroupSDict; } /*! Returns the classes contained in this namespace */ ClassSDict *getClassSDict() const { return classSDict; } /*! Returns the namespaces contained in this namespace */ NamespaceSDict *getNamespaceSDict() const { return namespaceSDict; } bool visited; private: MemberList *createMemberList(MemberList::ListType lt); void addMemberToList(MemberList::ListType lt,MemberDef *md); void writeMemberDeclarations(OutputList &ol,MemberList::ListType lt,const QCString &title); void writeMemberDocumentation(OutputList &ol,MemberList::ListType lt,const QCString &title); QCString fileName; QStrList files; NamespaceSDict *usingDirList; SDict *usingDeclList; SDict *m_innerCompounds; MemberList *allMemberList; QList m_memberLists; MemberGroupSDict *memberGroupSDict; ClassSDict *classSDict; NamespaceSDict *namespaceSDict; }; class NamespaceList : public QList { public: ~NamespaceList() {} int compareItems(GCI item1,GCI item2) { return stricmp(((NamespaceDef *)item1)->name(), ((NamespaceDef *)item2)->name() ); } }; class NamespaceListIterator : public QListIterator { public: NamespaceListIterator(const NamespaceList &l) : QListIterator(l) {} }; class NamespaceDict : public QDict { public: NamespaceDict(int size) : QDict(size) {} ~NamespaceDict() {} }; class NamespaceSDict : public SDict { public: NamespaceSDict(int size=17) : SDict(size) {} ~NamespaceSDict() {} int compareItems(GCI item1,GCI item2) { return stricmp(((NamespaceDef *)item1)->name(), ((NamespaceDef *)item2)->name() ); } void writeDeclaration(OutputList &ol,bool localName=FALSE); }; #endif