Commit 0c6e5ac9 authored by dimitri's avatar dimitri

Release-1.2.9.1

parent 071e3925
...@@ -110,7 +110,7 @@ COMPACT_LATEX = NO ...@@ -110,7 +110,7 @@ COMPACT_LATEX = NO
PAPER_TYPE = a4wide PAPER_TYPE = a4wide
EXTRA_PACKAGES = EXTRA_PACKAGES =
LATEX_HEADER = LATEX_HEADER =
PDF_HYPERLINKS = NO PDF_HYPERLINKS = YES
USE_PDFLATEX = NO USE_PDFLATEX = NO
LATEX_BATCHMODE = NO LATEX_BATCHMODE = NO
#--------------------------------------------------------------------------- #---------------------------------------------------------------------------
......
DOXYGEN Version 1.2.9 DOXYGEN Version 1.2.9.1
Please read the installation section of the manual for instructions. Please read the installation section of the manual for instructions.
-------- --------
Dimitri van Heesch (01 August 2001) Dimitri van Heesch (05 August 2001)
DOXYGEN Version 1.2.9 DOXYGEN Version 1.2.9.1
Please read INSTALL for compilation instructions. Please read INSTALL for compilation instructions.
...@@ -17,4 +17,4 @@ to subscribe to the lists or to visit the archives. ...@@ -17,4 +17,4 @@ to subscribe to the lists or to visit the archives.
Enjoy, Enjoy,
Dimitri van Heesch (dimitri@stack.nl) (01 August 2001) Dimitri van Heesch (dimitri@stack.nl) (05 August 2001)
...@@ -62,7 +62,7 @@ static bool loadConfig( QString loadFile ) ...@@ -62,7 +62,7 @@ static bool loadConfig( QString loadFile )
// parse the config file // parse the config file
// this will initialize the various Config data members // this will initialize the various Config data members
if (Config::instance()->parse(loadFile)) if (!Config::instance()->parse(loadFile))
{ {
QMessageBox::warning(0, QMessageBox::warning(0,
"Warning","Cannot open or read input "+loadFile+"!", "Warning","Cannot open or read input "+loadFile+"!",
...@@ -89,7 +89,7 @@ static bool saveConfig( QString saveFile ) ...@@ -89,7 +89,7 @@ static bool saveConfig( QString saveFile )
return FALSE; // failure return FALSE; // failure
} }
Config::instance()->writeTemplate(&f,TRUE,TRUE); // write brief config file Config::instance()->writeTemplate(&f,TRUE,FALSE); // write brief config file
return TRUE; // success return TRUE; // success
} }
......
/******************************************************************************
*
* $Id$
*
*
* Copyright (C) 1997-2001 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.
*
*/
#ifndef _BASEHANDLER_H #ifndef _BASEHANDLER_H
#define _BASEHANDLER_H #define _BASEHANDLER_H
......
/******************************************************************************
*
* $Id$
*
*
* Copyright (C) 1997-2001 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.
*
*/
#include "mainhandler.h" #include "mainhandler.h"
#include "compoundhandler.h" #include "compoundhandler.h"
#include "dochandler.h" #include "dochandler.h"
......
/******************************************************************************
*
* $Id$
*
*
* Copyright (C) 1997-2001 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.
*
*/
#ifndef _COMPOUNDHANDLER_H #ifndef _COMPOUNDHANDLER_H
#define _COMPOUNDHANDLER_H #define _COMPOUNDHANDLER_H
......
/******************************************************************************
*
* $Id$
*
*
* Copyright (C) 1997-2001 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.
*
*/
#include "dochandler.h" #include "dochandler.h"
//---------------------------------------------------------------------- //----------------------------------------------------------------------
...@@ -217,6 +232,37 @@ void ListHandler::startListItem(const QXmlAttributes& attrib) ...@@ -217,6 +232,37 @@ void ListHandler::startListItem(const QXmlAttributes& attrib)
m_children.append(liHandler); m_children.append(liHandler);
} }
//----------------------------------------------------------------------
// ParameterHandler
//----------------------------------------------------------------------
//----------------------------------------------------------------------
// ParameterListHandler
//----------------------------------------------------------------------
ParameterListHandler::ParameterListHandler(IBaseHandler *parent)
: DocNode(ParameterList), m_parent(parent)
{
addEndHandler("parameterlist",this,&ParameterListHandler::endParameterList);
m_parameters.setAutoDelete(TRUE);
m_curParam=0;
}
ParameterListHandler::~ParameterListHandler()
{
}
void ParameterListHandler::startParameterList(const QXmlAttributes& /*attrib*/)
{
m_parent->setDelegate(this);
}
void ParameterListHandler::endParameterList()
{
m_parent->setDelegate(0);
}
//---------------------------------------------------------------------- //----------------------------------------------------------------------
// ParagraphHandler // ParagraphHandler
//---------------------------------------------------------------------- //----------------------------------------------------------------------
...@@ -268,6 +314,14 @@ void ParagraphHandler::startOrderedList(const QXmlAttributes& attrib) ...@@ -268,6 +314,14 @@ void ParagraphHandler::startOrderedList(const QXmlAttributes& attrib)
m_children.append(listHandler); m_children.append(listHandler);
} }
void ParagraphHandler::startParameterList(const QXmlAttributes& attrib)
{
addTextNode();
ParameterListHandler *parListHandler = new ParameterListHandler(this);
parListHandler->startParameterList(attrib);
m_children.append(parListHandler);
}
void ParagraphHandler::addTextNode() void ParagraphHandler::addTextNode()
{ {
if (!m_curString.isEmpty()) if (!m_curString.isEmpty())
......
/******************************************************************************
*
* $Id$
*
*
* Copyright (C) 1997-2001 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.
*
*/
#ifndef _DOCHANDLER_H #ifndef _DOCHANDLER_H
#define _DOCHANDLER_H #define _DOCHANDLER_H
...@@ -7,6 +22,13 @@ ...@@ -7,6 +22,13 @@
#include "basehandler.h" #include "basehandler.h"
class ParagraphHandler;
//-----------------------------------------------------------------------------
/*! \brief Node of a structured documentation tree.
*
*/
class DocNode class DocNode
{ {
public: public:
...@@ -28,7 +50,8 @@ class DocNode ...@@ -28,7 +50,8 @@ class DocNode
MarkupModifier, MarkupModifier,
ItemizedList, ItemizedList,
OrderedList, OrderedList,
ListItem ListItem,
ParameterList
}; };
DocNode(NodeKind k) : m_kind(k) {} DocNode(NodeKind k) : m_kind(k) {}
virtual ~DocNode() {} virtual ~DocNode() {}
...@@ -37,6 +60,12 @@ class DocNode ...@@ -37,6 +60,12 @@ class DocNode
NodeKind m_kind; NodeKind m_kind;
}; };
//-----------------------------------------------------------------------------
/*! \brief Node representing a piece of text.
*
*/
class TextNode : public DocNode class TextNode : public DocNode
{ {
public: public:
...@@ -48,6 +77,11 @@ class TextNode : public DocNode ...@@ -48,6 +77,11 @@ class TextNode : public DocNode
int m_markup; int m_markup;
}; };
//-----------------------------------------------------------------------------
/*! \brief Node representing a change in the markup style.
*
*/
class MarkupModifierNode : public DocNode class MarkupModifierNode : public DocNode
{ {
public: public:
...@@ -59,6 +93,12 @@ class MarkupModifierNode : public DocNode ...@@ -59,6 +93,12 @@ class MarkupModifierNode : public DocNode
bool m_enabled; bool m_enabled;
}; };
//-----------------------------------------------------------------------------
/*! \brief Handles markup commands in the XML input.
*
*/
class MarkupHandler : public BaseFallBackHandler<MarkupHandler> class MarkupHandler : public BaseFallBackHandler<MarkupHandler>
{ {
public: public:
...@@ -90,6 +130,12 @@ class MarkupHandler : public BaseFallBackHandler<MarkupHandler> ...@@ -90,6 +130,12 @@ class MarkupHandler : public BaseFallBackHandler<MarkupHandler>
int m_curMarkup; int m_curMarkup;
}; };
//-----------------------------------------------------------------------------
/*! \brief Node representing a list item.
*
*/
class ListItemHandler : public DocNode, public BaseHandler<ListItemHandler> class ListItemHandler : public DocNode, public BaseHandler<ListItemHandler>
{ {
public: public:
...@@ -104,6 +150,12 @@ class ListItemHandler : public DocNode, public BaseHandler<ListItemHandler> ...@@ -104,6 +150,12 @@ class ListItemHandler : public DocNode, public BaseHandler<ListItemHandler>
QList<DocNode> m_children; QList<DocNode> m_children;
}; };
//-----------------------------------------------------------------------------
/*! \brief Node representing list of items.
*
*/
class ListHandler : public DocNode, public BaseHandler<ListHandler> class ListHandler : public DocNode, public BaseHandler<ListHandler>
{ {
public: public:
...@@ -118,6 +170,53 @@ class ListHandler : public DocNode, public BaseHandler<ListHandler> ...@@ -118,6 +170,53 @@ class ListHandler : public DocNode, public BaseHandler<ListHandler>
QList<DocNode> m_children; QList<DocNode> m_children;
}; };
//-----------------------------------------------------------------------------
/*! \brief Node representing a parameter.
*
*/
class ParameterHandler : public DocNode,
public BaseHandler<ParameterHandler>
{
public:
ParameterHandler(IBaseHandler *parent);
virtual ~ParameterHandler();
virtual void startParameterList(const QXmlAttributes& attrib);
virtual void endParameterList();
private:
IBaseHandler *m_parent;
QString m_name;
ParagraphHandler *m_description;
};
//-----------------------------------------------------------------------------
/* \brief Node representing a parameter list.
*
*/
class ParameterListHandler : public DocNode,
public BaseHandler<ParameterListHandler>
{
public:
ParameterListHandler(IBaseHandler *parent);
virtual ~ParameterListHandler();
virtual void startParameterList(const QXmlAttributes& attrib);
virtual void endParameterList();
private:
IBaseHandler *m_parent;
QList<ParameterHandler> m_parameters;
ParameterHandler *m_curParam;
};
//-----------------------------------------------------------------------------
/*! \brief Node representing a paragraph of text and commands.
*
*/
class ParagraphHandler : public DocNode, public BaseHandler<ParagraphHandler> class ParagraphHandler : public DocNode, public BaseHandler<ParagraphHandler>
{ {
public: public:
...@@ -125,6 +224,7 @@ class ParagraphHandler : public DocNode, public BaseHandler<ParagraphHandler> ...@@ -125,6 +224,7 @@ class ParagraphHandler : public DocNode, public BaseHandler<ParagraphHandler>
virtual void endParagraph(); virtual void endParagraph();
virtual void startItemizedList(const QXmlAttributes& attrib); virtual void startItemizedList(const QXmlAttributes& attrib);
virtual void startOrderedList(const QXmlAttributes& attrib); virtual void startOrderedList(const QXmlAttributes& attrib);
virtual void startParameterList(const QXmlAttributes& attrib);
ParagraphHandler(IBaseHandler *parent); ParagraphHandler(IBaseHandler *parent);
virtual ~ParagraphHandler(); virtual ~ParagraphHandler();
...@@ -136,7 +236,11 @@ class ParagraphHandler : public DocNode, public BaseHandler<ParagraphHandler> ...@@ -136,7 +236,11 @@ class ParagraphHandler : public DocNode, public BaseHandler<ParagraphHandler>
MarkupHandler *m_markupHandler; MarkupHandler *m_markupHandler;
}; };
//-----------------------------------------------------------------------------
/*! \brief Node representing a documentation block.
*
*/
class DocHandler : public BaseHandler<DocHandler> class DocHandler : public BaseHandler<DocHandler>
{ {
public: public:
......
/******************************************************************************
*
* $Id$
*
*
* Copyright (C) 1997-2001 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.
*
*/
#include "mainhandler.h" #include "mainhandler.h"
#include <qstring.h> #include <qstring.h>
......
/******************************************************************************
*
* $Id$
*
*
* Copyright (C) 1997-2001 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.
*
*/
#include "mainhandler.h" #include "mainhandler.h"
void MainHandler::startCompound(const QXmlAttributes& attrib) void MainHandler::startCompound(const QXmlAttributes& attrib)
......
/******************************************************************************
*
* $Id$
*
*
* Copyright (C) 1997-2001 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.
*
*/
#ifndef _MAINHANDLER_H #ifndef _MAINHANDLER_H
#define _MAINHANDLER_H #define _MAINHANDLER_H
......
/******************************************************************************
*
* $Id$
*
*
* Copyright (C) 1997-2001 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.
*
*/
#include "memberhandler.h" #include "memberhandler.h"
#include "sectionhandler.h" #include "sectionhandler.h"
#include "dochandler.h" #include "dochandler.h"
......
/******************************************************************************
*
* $Id$
*
*
* Copyright (C) 1997-2001 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.
*
*/
#ifndef _MEMBERHANDLER_H #ifndef _MEMBERHANDLER_H
#define _MEMBERHANDLER_H #define _MEMBERHANDLER_H
......
/******************************************************************************
*
* $Id$
*
*
* Copyright (C) 1997-2001 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.
*
*/
#include "paramhandler.h" #include "paramhandler.h"
#include "memberhandler.h" #include "memberhandler.h"
......
/******************************************************************************
*
* $Id$
*
*
* Copyright (C) 1997-2001 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.
*
*/
#ifndef _PARAMHANDLER_H #ifndef _PARAMHANDLER_H
#define _PARAMHANDLER_H #define _PARAMHANDLER_H
......
/******************************************************************************
*
* $Id$
*
*
* Copyright (C) 1997-2001 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.
*
*/
#include "compoundhandler.h" #include "compoundhandler.h"
#include "sectionhandler.h" #include "sectionhandler.h"
......
/******************************************************************************
*
* $Id$
*
*
* Copyright (C) 1997-2001 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.
*
*/
#ifndef _SECTIONHANDLER_H #ifndef _SECTIONHANDLER_H
#define _SECTIONHANDLER_H #define _SECTIONHANDLER_H
......
...@@ -62,6 +62,8 @@ documentation: ...@@ -62,6 +62,8 @@ documentation:
<li> \refitem cmddeprecated \deprecated <li> \refitem cmddeprecated \deprecated
<li> \refitem cmddontinclude \dontinclude <li> \refitem cmddontinclude \dontinclude
<li> \refitem cmde \e <li> \refitem cmde \e
<li> \refitem cmdelse \else
<li> \refitem cmdelseif \elseif
<li> \refitem cmdem \em <li> \refitem cmdem \em
<li> \refitem cmdendcode \endcode <li> \refitem cmdendcode \endcode
<li> \refitem cmdendhtmlonly \endhtmlonly <li> \refitem cmdendhtmlonly \endhtmlonly
...@@ -81,6 +83,7 @@ documentation: ...@@ -81,6 +83,7 @@ documentation:
<li> \refitem cmdhtmlinclude \htmlinclude <li> \refitem cmdhtmlinclude \htmlinclude
<li> \refitem cmdhtmlonly \htmlonly <li> \refitem cmdhtmlonly \htmlonly
<li> \refitem cmdif \if <li> \refitem cmdif \if
<li> \refitem cmdifnot \\ifnot
<li> \refitem cmdimage \image <li> \refitem cmdimage \image
<li> \refitem cmdinclude \include <li> \refitem cmdinclude \include
<li> \refitem cmdingroup \ingroup <li> \refitem cmdingroup \ingroup
...@@ -663,15 +666,40 @@ Public/Protected/Private/... section. ...@@ -663,15 +666,40 @@ Public/Protected/Private/... section.
a deprecated entity. Can be used to describe alternatives, a deprecated entity. Can be used to describe alternatives,
expected life span, etc. expected life span, etc.
<hr>
\subsection cmdelse \else
\addindex \else
Starts a conditional section if the previous conditional section
was not enabled. The previous section should have been started with
a \c \\if, \c \\ifnot, or \c \\elseif command.
\sa \ref cmdif "\\if", \ref cmdifnot "\\ifnot", \ref cmdelseif "\\elseif",
\ref cmdendif "\\endif."
<hr>
\subsection cmdelseif \elseif <section-label>
\addindex \elseif
Starts a conditional documentation section if the previous section
was not enabled. A conditional section is
disabled by default. To enable it you must put the
section-label after the \ref cfg_enabled_sections "ENABLED_SECTIONS"
tag in the configuration
file. Conditional blocks can be nested. A nested section is
only enabled if all enclosing sections are enabled as well.
\sa sections \ref cmdendif "\\endif", \ref cmdifnot "\\ifnot",
\ref cmdelse "\\else", and \ref cmdelseif "\\elseif".
<hr> <hr>
\subsection cmdendif \endif \subsection cmdendif \endif
\addindex \endif \addindex \\endif
Ends a conditional section that was started with \c \if. Ends a conditional section that was started with \c \\if or \c \\ifnot
For each \c \if one and only one matching \c \endif must follow. For each \c \\if or \c \\ifnot one and only one matching \c \\endif must follow.
\sa \ref cmdif "\\if" \sa \ref cmdif "\\if", and \ref cmdifnot "\\ifnot".
<hr> <hr>
\subsection cmdexception \exception <exception-object> { exception description } \subsection cmdexception \exception <exception-object> { exception description }
...@@ -694,9 +722,9 @@ Public/Protected/Private/... section. ...@@ -694,9 +722,9 @@ Public/Protected/Private/... section.
<hr> <hr>
\subsection cmdif \if <section-label> \subsection cmdif \if <section-label>
\addindex \if \addindex \\if
Starts a conditional documentation section. The section ends Starts a conditional documentation section. The section ends
with a matching \c \endif command. A conditional section is with a matching \c \\endif command. A conditional section is
disabled by default. To enable it you must put the disabled by default. To enable it you must put the
section-label after the \ref cfg_enabled_sections "ENABLED_SECTIONS" section-label after the \ref cfg_enabled_sections "ENABLED_SECTIONS"
tag in the configuration tag in the configuration
...@@ -720,7 +748,22 @@ Public/Protected/Private/... section. ...@@ -720,7 +748,22 @@ Public/Protected/Private/... section.
*/ */
\endverbatim \endverbatim
\sa section \ref cmdendif "\\endif". \sa sections \ref cmdendif "\\endif", \ref cmdifnot "\\ifnot",
\ref cmdelse "\\else", and \ref cmdelseif "\\elseif".
<hr>
\subsection cmdifnot \ifnot <section-label>
\addindex \ifnot
Starts a conditional documentation section. The section ends
with a matching \c \\endif command. This conditional section is
enabled by default. To disable it you must put the
section-label after the \ref cfg_enabled_sections "ENABLED_SECTIONS"
tag in the configuration
file.
\sa sections \ref cmdendif "\\endif", \ref cmdif "\\if",
\ref cmdelse "\\else", and \ref cmdelseif "\\elseif".
<hr> <hr>
\subsection cmdinvariant \invariant { description of invariant } \subsection cmdinvariant \invariant { description of invariant }
......
Name: doxygen Name: doxygen
Version: 1.2.9 Version: 1.2.9.1
Summary: documentation system for C, C++ and IDL Summary: documentation system for C, C++ and IDL
Release: 4 Release: 4
Source: doxygen-%{version}.src.tar.gz Source: doxygen-%{version}.src.tar.gz
...@@ -41,7 +41,7 @@ Autor: ...@@ -41,7 +41,7 @@ Autor:
%setup -n doxygen-%{version} %setup -n doxygen-%{version}
%build %build
CFLAGS="$RPM_OPT_FLAGS" ./configure --with-doxywizard --with-xmlgen CFLAGS="$RPM_OPT_FLAGS" ./configure --with-doxywizard
# the next path is Suse specific # the next path is Suse specific
QTDIR=/usr/lib/qt2 QTDIR=/usr/lib/qt2
PATH=${QTDIR}/bin:$PATH PATH=${QTDIR}/bin:$PATH
......
...@@ -88,15 +88,15 @@ ClassDef::ClassDef( ...@@ -88,15 +88,15 @@ ClassDef::ClassDef(
m_memberGroupList->setAutoDelete(TRUE); m_memberGroupList->setAutoDelete(TRUE);
m_memberGroupDict = new MemberGroupDict(17); m_memberGroupDict = new MemberGroupDict(17);
m_innerClasses = new ClassSDict(17); m_innerClasses = new ClassSDict(17);
int i=name().findRev("::"); //int i=name().findRev("::"); // TODO: broken if A<N::C> is the class name
if (i==-1) //if (i==-1)
{ //{
m_scopelessName=name(); // m_scopelessName=name();
} //}
else //else
{ //{
m_scopelessName=name().right(name().length()-i-2); // m_scopelessName=name().right(name().length()-i-2);
} //}
m_subGrouping=TRUE; m_subGrouping=TRUE;
m_isTemplBaseClass=-1; m_isTemplBaseClass=-1;
m_templateInstances = 0; m_templateInstances = 0;
...@@ -415,7 +415,7 @@ void ClassDef::insertMember(MemberDef *md) ...@@ -415,7 +415,7 @@ void ClassDef::insertMember(MemberDef *md)
enumValMembers.append(md); enumValMembers.append(md);
break; break;
case MemberDef::Function: case MemberDef::Function:
if (md->name()==m_scopelessName || // constructor if (md->name()==localName() || // constructor
(md->name().find('~')!=-1 && // hack to detect destructor (md->name().find('~')!=-1 && // hack to detect destructor
md->name().find("operator")==-1 md->name().find("operator")==-1
) )
...@@ -2232,6 +2232,7 @@ void ClassDef::getTemplateParameterLists(QList<ArgumentList> &lists) const ...@@ -2232,6 +2232,7 @@ void ClassDef::getTemplateParameterLists(QList<ArgumentList> &lists) const
QCString ClassDef::qualifiedNameWithTemplateParameters( QCString ClassDef::qualifiedNameWithTemplateParameters(
QList<ArgumentList> *actualParams) const QList<ArgumentList> *actualParams) const
{ {
//printf("qualifiedNameWithTemplateParameters() localName=%s\n",localName().data());
QCString scName; QCString scName;
Definition *d=getOuterScope(); Definition *d=getOuterScope();
if (d) if (d)
...@@ -2268,7 +2269,7 @@ QCString ClassDef::qualifiedNameWithTemplateParameters( ...@@ -2268,7 +2269,7 @@ QCString ClassDef::qualifiedNameWithTemplateParameters(
} }
} }
} }
//printf("scope=%s qualifiedName=%s\n",name().data(),scName.data()); //printf("qualifiedNameWithTemplateParameters: scope=%s qualifiedName=%s\n",name().data(),scName.data());
return scName; return scName;
} }
......
...@@ -325,7 +325,7 @@ class ClassDef : public Definition ...@@ -325,7 +325,7 @@ class ClassDef : public Definition
/*! Bare name of the class without any scoping prefixes /*! Bare name of the class without any scoping prefixes
* (like for nested classes and classes inside namespaces) * (like for nested classes and classes inside namespaces)
*/ */
QCString m_scopelessName; //QCString m_scopelessName;
/*! List of base class (or super-classes) from which this class derives /*! List of base class (or super-classes) from which this class derives
* directly. * directly.
......
...@@ -35,8 +35,8 @@ int ClassList::compareItems(GCI item1, GCI item2) ...@@ -35,8 +35,8 @@ int ClassList::compareItems(GCI item1, GCI item2)
{ {
ClassDef *c1=(ClassDef *)item1; ClassDef *c1=(ClassDef *)item1;
ClassDef *c2=(ClassDef *)item2; ClassDef *c2=(ClassDef *)item2;
return stricmp(c1->name().data()+getPrefixIndex(c1->name()), return stricmp(c1->name().data()+getPrefixIndex(c1->localName()),
c2->name().data()+getPrefixIndex(c2->name()) c2->name().data()+getPrefixIndex(c2->localName())
); );
} }
...@@ -44,8 +44,8 @@ int ClassSDict::compareItems(GCI item1, GCI item2) ...@@ -44,8 +44,8 @@ int ClassSDict::compareItems(GCI item1, GCI item2)
{ {
ClassDef *c1=(ClassDef *)item1; ClassDef *c1=(ClassDef *)item1;
ClassDef *c2=(ClassDef *)item2; ClassDef *c2=(ClassDef *)item2;
return stricmp(c1->name().data()+getPrefixIndex(c1->name()), return stricmp(c1->name().data()+getPrefixIndex(c1->localName()),
c2->name().data()+getPrefixIndex(c2->name()) c2->name().data()+getPrefixIndex(c2->localName())
); );
} }
......
...@@ -23,7 +23,6 @@ ...@@ -23,7 +23,6 @@
extern void parseFuncDecl(const QCString &decl, extern void parseFuncDecl(const QCString &decl,
QCString &clName, QCString &clName,
QCString &classTempList,
QCString &type, QCString &type,
QCString &name, QCString &name,
QCString &args, QCString &args,
......
...@@ -206,7 +206,7 @@ ID ([a-z_A-Z][a-z_A-Z0-9]*)|(@[0-9]+) ...@@ -206,7 +206,7 @@ ID ([a-z_A-Z][a-z_A-Z0-9]*)|(@[0-9]+)
/*@ ---------------------------------------------------------------------------- /*@ ----------------------------------------------------------------------------
*/ */
void parseFuncDecl(const QCString &decl,QCString &cl,QCString &ctl,QCString &t, void parseFuncDecl(const QCString &decl,QCString &cl,QCString &t,
QCString &n,QCString &a,QCString &ftl,QCString &exc) QCString &n,QCString &a,QCString &ftl,QCString &exc)
{ {
inputString = decl; inputString = decl;
...@@ -256,9 +256,11 @@ void parseFuncDecl(const QCString &decl,QCString &cl,QCString &ctl,QCString &t, ...@@ -256,9 +256,11 @@ void parseFuncDecl(const QCString &decl,QCString &cl,QCString &ctl,QCString &t,
cl+=c; cl+=c;
} }
} }
#endif
cl=stripTemplateSpecifiersFromScope(removeRedundantWhiteSpace(scope),FALSE); cl=stripTemplateSpecifiersFromScope(removeRedundantWhiteSpace(scope),FALSE);
ctl.resize(0); ctl.resize(0);
#endif
cl=scope;
n=removeRedundantWhiteSpace(name); n=removeRedundantWhiteSpace(name);
int il,ir; int il,ir;
if ((il=n.find('<'))!=-1 && (ir=n.findRev('>'))!=-1) if ((il=n.find('<'))!=-1 && (ir=n.findRev('>'))!=-1)
......
...@@ -34,12 +34,7 @@ Definition::Definition(const char *df,int dl, ...@@ -34,12 +34,7 @@ Definition::Definition(const char *df,int dl,
m_defFileName = df; m_defFileName = df;
m_defLine = dl; m_defLine = dl;
m_name=name; m_name=name;
m_localName=name; m_localName=stripScope(name);
int i=m_localName.findRev("::");
if (i!=-1)
{
m_localName=m_localName.right(m_localName.length()-i-2);
}
m_brief=b; m_brief=b;
m_doc=d; m_doc=d;
m_sectionDict=0, m_sectionDict=0,
...@@ -451,7 +446,7 @@ void Definition::addInnerCompound(Definition *) ...@@ -451,7 +446,7 @@ void Definition::addInnerCompound(Definition *)
QCString Definition::qualifiedName() const QCString Definition::qualifiedName() const
{ {
//printf("start Definition::qualifiedName()\n"); //printf("start Definition::qualifiedName() localName=%s\n",m_localName.data());
if (m_outerScope==0) if (m_outerScope==0)
{ {
if (m_localName=="<globalScope>") return ""; if (m_localName=="<globalScope>") return "";
......
...@@ -892,7 +892,6 @@ OPMASK ({B}*{OPNORM}({OPARG}?))|({OPCAST}{OPARG}) ...@@ -892,7 +892,6 @@ OPMASK ({B}*{OPNORM}({OPARG}?))|({OPCAST}{OPARG})
%x DocEmphasis %x DocEmphasis
%x DocBold %x DocBold
%x DocCode %x DocCode
%x DocIf
%x DocCodeBlock %x DocCodeBlock
%x DocInternal %x DocInternal
%x DocLink %x DocLink
...@@ -1506,9 +1505,7 @@ OPMASK ({B}*{OPNORM}({OPARG}?))|({OPCAST}{OPARG}) ...@@ -1506,9 +1505,7 @@ OPMASK ({B}*{OPNORM}({OPARG}?))|({OPCAST}{OPARG})
inParamBlock=TRUE; inParamBlock=TRUE;
currentListIndent.push("D"); currentListIndent.push("D");
outDoc->startParamList(); outDoc->startParamList();
outDoc->startBold();
scanString(theTranslator->trParameters()+": "); scanString(theTranslator->trParameters()+": ");
outDoc->endBold();
outDoc->endDescTitle(); outDoc->endDescTitle();
outDoc->writeDescItem(); outDoc->writeDescItem();
outDoc->startDescTable(); outDoc->startDescTable();
...@@ -1532,9 +1529,7 @@ OPMASK ({B}*{OPNORM}({OPARG}?))|({OPCAST}{OPARG}) ...@@ -1532,9 +1529,7 @@ OPMASK ({B}*{OPNORM}({OPARG}?))|({OPCAST}{OPARG})
inRetValBlock=TRUE; inRetValBlock=TRUE;
currentListIndent.push("D"); currentListIndent.push("D");
outDoc->startParamList(); outDoc->startParamList();
outDoc->startBold();
scanString(theTranslator->trReturnValues()+": "); scanString(theTranslator->trReturnValues()+": ");
outDoc->endBold();
outDoc->endDescTitle(); outDoc->endDescTitle();
outDoc->writeDescItem(); outDoc->writeDescItem();
outDoc->startDescTable(); outDoc->startDescTable();
...@@ -1558,9 +1553,7 @@ OPMASK ({B}*{OPNORM}({OPARG}?))|({OPCAST}{OPARG}) ...@@ -1558,9 +1553,7 @@ OPMASK ({B}*{OPNORM}({OPARG}?))|({OPCAST}{OPARG})
inExceptionBlock=TRUE; inExceptionBlock=TRUE;
currentListIndent.push("D"); currentListIndent.push("D");
outDoc->startParamList(); outDoc->startParamList();
outDoc->startBold();
scanString(theTranslator->trExceptions()+": "); scanString(theTranslator->trExceptions()+": ");
outDoc->endBold();
outDoc->endDescTitle(); outDoc->endDescTitle();
outDoc->writeDescItem(); outDoc->writeDescItem();
outDoc->startDescTable(); outDoc->startDescTable();
...@@ -1574,18 +1567,14 @@ OPMASK ({B}*{OPNORM}({OPARG}?))|({OPCAST}{OPARG}) ...@@ -1574,18 +1567,14 @@ OPMASK ({B}*{OPNORM}({OPARG}?))|({OPCAST}{OPARG})
<DocScan>"\\capt".* <DocScan>"\\capt".*
<DocParam>({DOCPARAM}{BN}*","{BN}*)*{DOCPARAM}{BSEP}* { <DocParam>({DOCPARAM}{BN}*","{BN}*)*{DOCPARAM}{BSEP}* {
outDoc->startDescTableTitle(); outDoc->startDescTableTitle();
outDoc->startEmphasis();
outDoc->docify(substitute(yytext,"\"","").stripWhiteSpace()); outDoc->docify(substitute(yytext,"\"","").stripWhiteSpace());
outDoc->endEmphasis();
outDoc->endDescTableTitle(); outDoc->endDescTableTitle();
outDoc->startDescTableData(); outDoc->startDescTableData();
BEGIN(DocScan); BEGIN(DocScan);
} }
<DocException>{SCOPENAME} { <DocException>{SCOPENAME} {
outDoc->startDescTableTitle(); outDoc->startDescTableTitle();
outDoc->startEmphasis();
outDoc->docify(yytext); outDoc->docify(yytext);
outDoc->endEmphasis();
outDoc->endDescTableTitle(); outDoc->endDescTableTitle();
outDoc->startDescTableData(); outDoc->startDescTableData();
BEGIN(DocScan); BEGIN(DocScan);
...@@ -1646,6 +1635,7 @@ OPMASK ({B}*{OPNORM}({OPARG}?))|({OPCAST}{OPARG}) ...@@ -1646,6 +1635,7 @@ OPMASK ({B}*{OPNORM}({OPARG}?))|({OPCAST}{OPARG})
<DocScan>{CMD}"refitem"/{BN} { <DocScan>{CMD}"refitem"/{BN} {
BEGIN(DocRefItem); BEGIN(DocRefItem);
} }
/*
<DocScan>{CMD}"if"/{BN} { <DocScan>{CMD}"if"/{BN} {
outDoc->pushGeneratorState(); outDoc->pushGeneratorState();
depthIf++; depthIf++;
...@@ -1671,6 +1661,7 @@ OPMASK ({B}*{OPNORM}({OPARG}?))|({OPCAST}{OPARG}) ...@@ -1671,6 +1661,7 @@ OPMASK ({B}*{OPNORM}({OPARG}?))|({OPCAST}{OPARG})
} }
BEGIN(DocScan); BEGIN(DocScan);
} }
*/
<DocRefName>{SCOPENAME}|{FILE} { <DocRefName>{SCOPENAME}|{FILE} {
QCString ref=yytext; QCString ref=yytext;
SectionInfo *sec; SectionInfo *sec;
......
...@@ -353,6 +353,7 @@ static void addRefItem(int todoId,int testId,int bugId,const char *prefix, ...@@ -353,6 +353,7 @@ static void addRefItem(int todoId,int testId,int bugId,const char *prefix,
doc += "</dt>\n<dd>"; doc += "</dt>\n<dd>";
doc += item->text; doc += item->text;
doc += "</dd></dl>\n"; doc += "</dd></dl>\n";
//printf("Test page: %s\n",doc.data());
addRelatedPage("test",theTranslator->trTestList(),doc,0,"generated",1,0,0,0); addRelatedPage("test",theTranslator->trTestList(),doc,0,"generated",1,0,0,0);
item->written=TRUE; item->written=TRUE;
...@@ -675,34 +676,29 @@ static Definition *findScope(Entry *root,int level=0) ...@@ -675,34 +676,29 @@ static Definition *findScope(Entry *root,int level=0)
static Definition *findScopeFromQualifiedName(Definition *startScope,const QCString &n) static Definition *findScopeFromQualifiedName(Definition *startScope,const QCString &n)
{ {
//printf("findScopeFromQualifiedName(%s,%s)\n",startScope ? startScope->name().data() : 0, n.data()); //printf("findScopeFromQualifiedName(%s,%s)\n",startScope ? startScope->name().data() : 0, n.data());
QCString name(n); Definition *resultScope=startScope;
if (startScope==0) startScope=Doxygen::globalScope; if (resultScope==0) resultScope=Doxygen::globalScope;
int i = name.find("::"); QCString scope=stripTemplateSpecifiersFromScope(n,FALSE);
if (i==-1) int l1=0,i1;
{ i1=getScopeFragment(scope,0,&l1);
return startScope; if (i1==-1) return resultScope;
} int p=i1+l1,l2=0,i2;
while ((i2=getScopeFragment(scope,p,&l2))!=-1)
QCString scope=stripTemplateSpecifiersFromScope(name,FALSE); {
//printf("name=%s -> scope=%s\n",name.data(),scope.data()); QCString nestedNameSpecifier = scope.mid(i1,l1);
while ((i = scope.find("::"))!=-1) //Definition *oldScope = resultScope;
{ resultScope = resultScope->findInnerCompound(nestedNameSpecifier);
//int ti = name.find('<'); if (resultScope==0)
//if (ti!=-1 && ti<i) i=ti; // strip template specifiers
QCString nestedNameSpecifier = scope.left(i);
//Definition *oldScope = startScope;
startScope = startScope->findInnerCompound(nestedNameSpecifier);
//printf("Trying %s result=%p\n",nestedNameSpecifier.data(),startScope);
if (startScope==0)
{ {
//printf("name %s not found in scope %s\n",nestedNameSpecifier.data(),oldScope->name().data()); //printf("name %s not found in scope %s\n",nestedNameSpecifier.data(),oldScope->name().data());
return 0; return 0;
} }
scope = scope.right(scope.length()-i-2); i1=i2;
//printf("scope=%s\n",scope.data()); l1=l2;
p=i2+l2;
} }
//printf("findScopeFromQualifiedName() result=%s\n",startScope ? startScope->name().data() : 0); //printf("scope %s\n",resultScope->name().data());
return startScope; return resultScope;
} }
ArgumentList *getTemplateArgumentsFromName( ArgumentList *getTemplateArgumentsFromName(
...@@ -834,6 +830,15 @@ static void buildClassList(Entry *root) ...@@ -834,6 +830,15 @@ static void buildClassList(Entry *root)
addClassToGroups(root,cd); addClassToGroups(root,cd);
cd->setRefItems(root->todoId,root->testId,root->bugId); cd->setRefItems(root->todoId,root->testId,root->bugId);
if (!root->subGrouping) cd->setSubGrouping(FALSE); if (!root->subGrouping) cd->setSubGrouping(FALSE);
if (cd->templateArguments()==0)
{
// this happens if a template class declared with @class is found
// before the actual definition.
ArgumentList *tArgList =
getTemplateArgumentsFromName(fullName,root->tArgLists);
cd->setTemplateArguments(tArgList);
}
} }
else // new class else // new class
{ {
...@@ -1981,6 +1986,7 @@ static void buildMemberList(Entry *root) ...@@ -1981,6 +1986,7 @@ static void buildMemberList(Entry *root)
addMemberToGroups(root,md); addMemberToGroups(root,md);
root->section = Entry::EMPTY_SEC; root->section = Entry::EMPTY_SEC;
md->setRefItems(root->todoId,root->testId,root->bugId);
} }
else if (root->parent && else if (root->parent &&
!(root->parent->section & Entry::COMPOUND_MASK) && !(root->parent->section & Entry::COMPOUND_MASK) &&
...@@ -2015,10 +2021,12 @@ static void buildMemberList(Entry *root) ...@@ -2015,10 +2021,12 @@ static void buildMemberList(Entry *root)
QCString nsName,rnsName; QCString nsName,rnsName;
if (nd) nsName = nd->name().copy(); if (nd) nsName = nd->name().copy();
if (rnd) rnsName = rnd->name().copy(); if (rnd) rnsName = rnd->name().copy();
//printf("matching arguments for %s\n",md->name().data());
if ( if (
matchArguments(md->argumentList(),root->argList,0,nsName) matchArguments(md->argumentList(),root->argList,0,nsName)
) )
{ {
//printf("match!\n");
// see if we need to create a new member // see if we need to create a new member
found=(nd && rnd && nsName==rnsName) || // members are in the same namespace found=(nd && rnd && nsName==rnsName) || // members are in the same namespace
((fd!=0 && // no external reference and ((fd!=0 && // no external reference and
...@@ -3206,8 +3214,96 @@ static void computeMemberReferences() ...@@ -3206,8 +3214,96 @@ static void computeMemberReferences()
//---------------------------------------------------------------------- //----------------------------------------------------------------------
static void addClassMemberTodoTestBufReferences(Definition *compound)
{
MemberNameListIterator mnli(Doxygen::memberNameList);
MemberName *mn=0;
for (mnli.toFirst();(mn=mnli.current());++mnli)
{
MemberNameIterator mni(*mn);
MemberDef *md=0;
for (mni.toFirst();(md=mni.current());++mni)
{
Definition *d=md->getClassDef();
QCString scopeName;
if (d) scopeName=d->name();
if (d==0) d=md->getGroupDef();
if (d==0) d=md->getFileDef();
if (compound==d || (compound==0 && d!=0 && !md->visited))
{
QCString memLabel;
md->visited=TRUE;
if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C"))
{
memLabel=theTranslator->trField(TRUE,TRUE);
}
else
{
memLabel=theTranslator->trMember(TRUE,TRUE);
}
addRefItem(md->todoId(),md->testId(),md->bugId(),memLabel,d->getOutputFileBase()+":"+md->anchor(),scopeName+"::"+md->name(),md->argsString());
}
}
}
}
static void addFileMemberTodoTestBufReferences(Definition *compound)
{
MemberNameListIterator fnli(Doxygen::functionNameList);
MemberName *mn=0;
for (fnli.toFirst();(mn=fnli.current());++fnli)
{
MemberNameIterator mni(*mn);
MemberDef *md=0;
for (mni.toFirst();(md=mni.current());++mni)
{
Definition *d=md->getNamespaceDef();
QCString scopeName;
if (d) scopeName=d->name();
if (d==0) d=md->getGroupDef();
if (d==0) d=md->getFileDef();
if (compound==d || (compound==0 && d!=0 && !md->visited))
{
QCString memLabel;
md->visited=TRUE;
if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C"))
{
memLabel=theTranslator->trGlobal(TRUE,TRUE);
}
else
{
memLabel=theTranslator->trMember(TRUE,TRUE);
}
addRefItem(md->todoId(),md->testId(),md->bugId(),memLabel,d->getOutputFileBase()+":"+md->anchor(),md->name(),md->argsString());
}
}
}
}
static void addTodoTestBugReferences() static void addTodoTestBugReferences()
{ {
MemberNameListIterator mnli(Doxygen::memberNameList);
MemberName *mn=0;
for (mnli.toFirst();(mn=mnli.current());++mnli)
{
MemberNameIterator mni(*mn);
MemberDef *md=0;
for (mni.toFirst();(md=mni.current());++mni)
{
md->visited=FALSE;
}
}
MemberNameListIterator fnli(Doxygen::functionNameList);
for (fnli.toFirst();(mn=fnli.current());++fnli)
{
MemberNameIterator mni(*mn);
MemberDef *md=0;
for (mni.toFirst();(md=mni.current());++mni)
{
md->visited=FALSE;
}
}
ClassSDict::Iterator cli(Doxygen::classSDict); ClassSDict::Iterator cli(Doxygen::classSDict);
ClassDef *cd=0; ClassDef *cd=0;
for (cli.toFirst();(cd=cli.current());++cli) for (cli.toFirst();(cd=cli.current());++cli)
...@@ -3216,6 +3312,7 @@ static void addTodoTestBugReferences() ...@@ -3216,6 +3312,7 @@ static void addTodoTestBugReferences()
theTranslator->trClass(TRUE,TRUE), theTranslator->trClass(TRUE,TRUE),
cd->getOutputFileBase(),cd->name() cd->getOutputFileBase(),cd->name()
); );
addClassMemberTodoTestBufReferences(cd);
} }
FileName *fn=Doxygen::inputNameList.first(); FileName *fn=Doxygen::inputNameList.first();
while (fn) while (fn)
...@@ -3226,6 +3323,7 @@ static void addTodoTestBugReferences() ...@@ -3226,6 +3323,7 @@ static void addTodoTestBugReferences()
addRefItem(fd->todoId(),fd->testId(),fd->bugId(), addRefItem(fd->todoId(),fd->testId(),fd->bugId(),
theTranslator->trFile(TRUE,TRUE), theTranslator->trFile(TRUE,TRUE),
fd->getOutputFileBase(),fd->name()); fd->getOutputFileBase(),fd->name());
addFileMemberTodoTestBufReferences(fd);
fd=fn->next(); fd=fn->next();
} }
fn=Doxygen::inputNameList.next(); fn=Doxygen::inputNameList.next();
...@@ -3236,6 +3334,7 @@ static void addTodoTestBugReferences() ...@@ -3236,6 +3334,7 @@ static void addTodoTestBugReferences()
addRefItem(nd->todoId(),nd->testId(),nd->bugId(), addRefItem(nd->todoId(),nd->testId(),nd->bugId(),
theTranslator->trNamespace(TRUE,TRUE), theTranslator->trNamespace(TRUE,TRUE),
nd->getOutputFileBase(),nd->name()); nd->getOutputFileBase(),nd->name());
addFileMemberTodoTestBufReferences(nd);
nd=Doxygen::namespaceList.next(); nd=Doxygen::namespaceList.next();
} }
GroupDef *gd=Doxygen::groupList.first(); GroupDef *gd=Doxygen::groupList.first();
...@@ -3244,6 +3343,7 @@ static void addTodoTestBugReferences() ...@@ -3244,6 +3343,7 @@ static void addTodoTestBugReferences()
addRefItem(gd->todoId(),gd->testId(),gd->bugId(), addRefItem(gd->todoId(),gd->testId(),gd->bugId(),
theTranslator->trGroup(TRUE,TRUE), theTranslator->trGroup(TRUE,TRUE),
gd->getOutputFileBase(),gd->groupTitle()); gd->getOutputFileBase(),gd->groupTitle());
addFileMemberTodoTestBufReferences(gd);
gd=Doxygen::groupList.next(); gd=Doxygen::groupList.next();
} }
PageSDictIterator pdi(*Doxygen::pageSDict); PageSDictIterator pdi(*Doxygen::pageSDict);
...@@ -3254,62 +3354,8 @@ static void addTodoTestBugReferences() ...@@ -3254,62 +3354,8 @@ static void addTodoTestBugReferences()
theTranslator->trPage(TRUE,TRUE), theTranslator->trPage(TRUE,TRUE),
pi->name,pi->title); pi->name,pi->title);
} }
MemberNameListIterator mnli(Doxygen::memberNameList); addClassMemberTodoTestBufReferences(0);
MemberName *mn=0; addFileMemberTodoTestBufReferences(0);
for (mnli.toFirst();(mn=mnli.current());++mnli)
{
MemberNameIterator mni(*mn);
MemberDef *md=0;
for (mni.toFirst();(md=mni.current());++mni)
{
Definition *d=md->getClassDef();
QCString scopeName;
if (d) scopeName=d->name();
if (d==0) d=md->getGroupDef();
if (d==0) d=md->getFileDef();
// TODO: i18n this
QCString memLabel;
if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C"))
{
memLabel=theTranslator->trField(TRUE,TRUE);
}
else
{
memLabel=theTranslator->trMember(TRUE,TRUE);
}
if (d)
{
addRefItem(md->todoId(),md->testId(),md->bugId(),memLabel,d->getOutputFileBase()+":"+md->anchor(),scopeName+"::"+md->name(),md->argsString());
}
}
}
MemberNameListIterator fnli(Doxygen::functionNameList);
for (fnli.toFirst();(mn=fnli.current());++fnli)
{
MemberNameIterator mni(*mn);
MemberDef *md=0;
for (mni.toFirst();(md=mni.current());++mni)
{
Definition *d=md->getNamespaceDef();
QCString scopeName;
if (d) scopeName=d->name();
if (d==0) d=md->getGroupDef();
if (d==0) d=md->getFileDef();
QCString memLabel;
if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C"))
{
memLabel=theTranslator->trGlobal(TRUE,TRUE);
}
else
{
memLabel=theTranslator->trMember(TRUE,TRUE);
}
if (d)
{
addRefItem(md->todoId(),md->testId(),md->bugId(),memLabel,d->getOutputFileBase()+":"+md->anchor(),md->name(),md->argsString());
}
}
}
} }
...@@ -3458,29 +3504,10 @@ static void addMemberDocs(Entry *root, ...@@ -3458,29 +3504,10 @@ static void addMemberDocs(Entry *root,
// find a class definition given the scope name and (optionally) a // find a class definition given the scope name and (optionally) a
// template list specifier // template list specifier
static ClassDef *findSimpleClassDefinition(const char *scopeName,const char *classTempList)
{
ClassDef *tcd=0;
if (classTempList) // try to find the correct specialization
{
tcd=getClass(
insertTemplateSpecifierInScope(
scopeName,
classTempList
)
); // try specialization
}
if (tcd==0)
{
tcd=getClass(scopeName); // try general class
}
return tcd;
}
static ClassDef *findClassDefinition(FileDef *fd,NamespaceDef *nd, static ClassDef *findClassDefinition(FileDef *fd,NamespaceDef *nd,
const char *scopeName,const char *classTempList) const char *scopeName)
{ {
ClassDef *tcd = findSimpleClassDefinition(scopeName,classTempList); ClassDef *tcd = getClass(scopeName);
if (tcd==0) // try using declaration if (tcd==0) // try using declaration
{ {
ClassList *cl = 0; ClassList *cl = 0;
...@@ -3507,7 +3534,7 @@ static ClassDef *findClassDefinition(FileDef *fd,NamespaceDef *nd, ...@@ -3507,7 +3534,7 @@ static ClassDef *findClassDefinition(FileDef *fd,NamespaceDef *nd,
if (rightScopeMatch(cd->name(),scope)) if (rightScopeMatch(cd->name(),scope))
{ {
//printf("Trying to find `%s'\n",(cd->name()+scName.right(scName.length()-scopeOffset)).data()); //printf("Trying to find `%s'\n",(cd->name()+scName.right(scName.length()-scopeOffset)).data());
tcd = findSimpleClassDefinition(cd->name()+scName.right(scName.length()-scopeOffset),classTempList); tcd = getClass(cd->name()+scName.right(scName.length()-scopeOffset));
} }
scopeOffset=scName.findRev("::",scopeOffset-1); scopeOffset=scName.findRev("::",scopeOffset-1);
} while (scopeOffset>=0 && tcd==0); } while (scopeOffset>=0 && tcd==0);
...@@ -3532,7 +3559,7 @@ static ClassDef *findClassDefinition(FileDef *fd,NamespaceDef *nd, ...@@ -3532,7 +3559,7 @@ static ClassDef *findClassDefinition(FileDef *fd,NamespaceDef *nd,
for (;(nd=nli.current()) && tcd==0;++nli) for (;(nd=nli.current()) && tcd==0;++nli)
{ {
//printf("Trying with scope=%s\n",nd->name().data()); //printf("Trying with scope=%s\n",nd->name().data());
tcd = findSimpleClassDefinition(nd->name()+"::"+scopeName,classTempList); tcd = getClass(nd->name()+"::"+scopeName);
} }
} }
} }
...@@ -3708,34 +3735,6 @@ static void substituteTemplatesInArgList( ...@@ -3708,34 +3735,6 @@ static void substituteTemplatesInArgList(
} }
static QCString mergeScopes(const QCString &leftScope,const QCString &rightScope)
{
// case leftScope=="A" rightScope=="A::B" => result = "A::B"
if (leftScopeMatch(rightScope,leftScope)) return rightScope;
QCString result;
int i=0,p=leftScope.length();
// case leftScope=="A::B" rightScope=="B::C" => result = "A::B::C"
// case leftScope=="A::B" rightScope=="B" => result = "A::B"
bool found=FALSE;
while ((i=leftScope.findRev("::",p))!=-1)
{
if (leftScopeMatch(rightScope,leftScope.right(leftScope.length()-i-2)))
{
result = leftScope.left(i+2)+rightScope;
found=TRUE;
}
p=i-1;
}
if (found) return result;
// case leftScope=="A" rightScope=="B" => result = "A::B"
result=leftScope.copy();
if (!result.isEmpty() && !rightScope.isEmpty()) result+="::";
result+=rightScope;
return result;
}
/*! This function tries to find a member (in a documented class/file/namespace) /*! This function tries to find a member (in a documented class/file/namespace)
* that corresponds to the function/variable declaration given in \a funcDecl. * that corresponds to the function/variable declaration given in \a funcDecl.
...@@ -3774,7 +3773,7 @@ static void findMember(Entry *root, ...@@ -3774,7 +3773,7 @@ static void findMember(Entry *root,
QCString scopeName; QCString scopeName;
QCString className; QCString className;
QCString namespaceName; QCString namespaceName;
QCString classTempList; //QCString classTempList;
QCString funcType; QCString funcType;
QCString funcName; QCString funcName;
QCString funcArgs; QCString funcArgs;
...@@ -3816,7 +3815,19 @@ static void findMember(Entry *root, ...@@ -3816,7 +3815,19 @@ static void findMember(Entry *root,
done=FALSE; done=FALSE;
} }
} while (!done); } while (!done);
if (isFriend)
{
if (funcDecl.left(6)=="class ")
{
funcDecl=funcDecl.right(funcDecl.length()-6);
}
else if (funcDecl.left(7)=="struct ")
{
funcDecl=funcDecl.right(funcDecl.length()-7);
}
}
// delete any ; from the function declaration // delete any ; from the function declaration
int sep; int sep;
while ((sep=funcDecl.find(';'))!=-1) while ((sep=funcDecl.find(';'))!=-1)
...@@ -3837,12 +3848,12 @@ static void findMember(Entry *root, ...@@ -3837,12 +3848,12 @@ static void findMember(Entry *root,
); );
// extract information from the declarations // extract information from the declarations
parseFuncDecl(funcDecl,scopeName,classTempList,funcType,funcName, parseFuncDecl(funcDecl,scopeName,funcType,funcName,
funcArgs,funcTempList,exceptions funcArgs,funcTempList,exceptions
); );
//printf("scopeName=`%s' funcType=`%s' funcName=`%s'\n", //printf("scopeName=`%s' funcType=`%s' funcName=`%s'\n",
// scopeName.data(),funcType.data(),funcName.data()); // scopeName.data(),funcType.data(),funcName.data());
// the class name can also be a namespace name, we decide this later. // the class name can also be a namespace name, we decide this later.
// if a related class name is specified and the class name could // if a related class name is specified and the class name could
// not be derived from the function declaration, then use the // not be derived from the function declaration, then use the
...@@ -3852,11 +3863,10 @@ static void findMember(Entry *root, ...@@ -3852,11 +3863,10 @@ static void findMember(Entry *root,
if (!related.isEmpty() && !isRelated) if (!related.isEmpty() && !isRelated)
{ // related member, prefix user specified scope { // related member, prefix user specified scope
isRelated=TRUE; isRelated=TRUE;
//scopeName=resolveDefines(related); if (getClass(related)==0 && !scopeName.isEmpty())
if (!scopeName.isEmpty() && scopeName!=related) scopeName= mergeScopes(scopeName,related);
scopeName+="::"+related;
else else
scopeName=related.copy(); scopeName = related.copy();
} }
if (related.isEmpty() && root->parent && if (related.isEmpty() && root->parent &&
...@@ -3864,8 +3874,9 @@ static void findMember(Entry *root, ...@@ -3864,8 +3874,9 @@ static void findMember(Entry *root,
!root->parent->name.isEmpty()) !root->parent->name.isEmpty())
{ {
scopeName = mergeScopes(root->parent->name,scopeName); scopeName = mergeScopes(root->parent->name,scopeName);
scopeName = stripTemplateSpecifiersFromScope(scopeName);
} }
scopeName=stripTemplateSpecifiersFromScope(
removeRedundantWhiteSpace(scopeName),FALSE);
// split scope into a namespace and a class part // split scope into a namespace and a class part
extractNamespaceName(scopeName,className,namespaceName); extractNamespaceName(scopeName,className,namespaceName);
...@@ -3966,7 +3977,6 @@ static void findMember(Entry *root, ...@@ -3966,7 +3977,6 @@ static void findMember(Entry *root,
"findMember() Parse results:\n" "findMember() Parse results:\n"
" namespaceName=`%s'\n" " namespaceName=`%s'\n"
" className=`%s`\n" " className=`%s`\n"
" classTempList=`%s'\n"
" funcType=`%s'\n" " funcType=`%s'\n"
" funcName=`%s'\n" " funcName=`%s'\n"
" funcArgs=`%s'\n" " funcArgs=`%s'\n"
...@@ -3977,7 +3987,7 @@ static void findMember(Entry *root, ...@@ -3977,7 +3987,7 @@ static void findMember(Entry *root,
" isRelated=%d\n" " isRelated=%d\n"
" isFriend=%d\n" " isFriend=%d\n"
" isFunc=%d\n\n", " isFunc=%d\n\n",
namespaceName.data(),className.data(),classTempList.data(), namespaceName.data(),className.data(),
funcType.data(),funcName.data(),funcArgs.data(),funcTempList.data(), funcType.data(),funcName.data(),funcArgs.data(),funcTempList.data(),
funcDecl.data(),related.data(),exceptions.data(),isRelated,isFriend, funcDecl.data(),related.data(),exceptions.data(),isRelated,isFriend,
isFunc isFunc
...@@ -4019,7 +4029,7 @@ static void findMember(Entry *root, ...@@ -4019,7 +4029,7 @@ static void findMember(Entry *root,
NamespaceDef *nd=0; NamespaceDef *nd=0;
if (!namespaceName.isEmpty()) nd=getResolvedNamespace(namespaceName); if (!namespaceName.isEmpty()) nd=getResolvedNamespace(namespaceName);
ClassDef *tcd=findClassDefinition(fd,nd,scopeName,classTempList); ClassDef *tcd=findClassDefinition(fd,nd,scopeName);
if (cd && tcd==cd) // member's classes match if (cd && tcd==cd) // member's classes match
{ {
...@@ -4241,6 +4251,7 @@ static void findMember(Entry *root, ...@@ -4241,6 +4251,7 @@ static void findMember(Entry *root,
{ {
if (className.isEmpty()) className=related.copy(); if (className.isEmpty()) className=related.copy();
ClassDef *cd; ClassDef *cd;
//printf("scopeName=`%s'\n",scopeName.data());
if ((cd=getClass(scopeName))) if ((cd=getClass(scopeName)))
{ {
bool newMember=TRUE; // assume we have a new member bool newMember=TRUE; // assume we have a new member
......
...@@ -209,9 +209,9 @@ class HtmlGenerator : public OutputGenerator ...@@ -209,9 +209,9 @@ class HtmlGenerator : public OutputGenerator
void endDescTable() void endDescTable()
{ t << "</table>" << endl; } { t << "</table>" << endl; }
void startDescTableTitle() void startDescTableTitle()
{ t << "<tr><td valign=top>"; } { t << "<tr><td valign=top><em>"; }
void endDescTableTitle() void endDescTableTitle()
{ t << endl << "&nbsp;</td>"; } { t << endl << "</em>&nbsp;</td>"; }
void startDescTableData() void startDescTableData()
{ t << "<td>" << endl; } { t << "<td>" << endl; }
void endDescTableData() void endDescTableData()
......
...@@ -1194,7 +1194,7 @@ void writeAlphabeticalClassList(OutputList &ol) ...@@ -1194,7 +1194,7 @@ void writeAlphabeticalClassList(OutputList &ol)
{ {
if (cd->isLinkableInProject() && cd->templateMaster()==0) if (cd->isLinkableInProject() && cd->templateMaster()==0)
{ {
int index = getPrefixIndex(cd->name()); int index = getPrefixIndex(cd->localName());
if (toupper(cd->name().at(index))!=startLetter) // new begin letter => new header if (toupper(cd->name().at(index))!=startLetter) // new begin letter => new header
{ {
startLetter=toupper(cd->name().at(index)); startLetter=toupper(cd->name().at(index));
...@@ -1227,7 +1227,7 @@ void writeAlphabeticalClassList(OutputList &ol) ...@@ -1227,7 +1227,7 @@ void writeAlphabeticalClassList(OutputList &ol)
{ {
if (cd->isLinkableInProject() && cd->templateMaster()==0) if (cd->isLinkableInProject() && cd->templateMaster()==0)
{ {
int index = getPrefixIndex(cd->name()); int index = getPrefixIndex(cd->localName());
if (toupper(cd->name().at(index))!=startLetter) if (toupper(cd->name().at(index))!=startLetter)
{ {
// insert a new header using a dummy class pointer. // insert a new header using a dummy class pointer.
...@@ -1275,7 +1275,7 @@ void writeAlphabeticalClassList(OutputList &ol) ...@@ -1275,7 +1275,7 @@ void writeAlphabeticalClassList(OutputList &ol)
if (cd) if (cd)
{ {
//printf("head ClassDef=%p %s\n",cd,cd ? cd->name().data() : "<none>"); //printf("head ClassDef=%p %s\n",cd,cd ? cd->name().data() : "<none>");
int index = getPrefixIndex(cd->name()); int index = getPrefixIndex(cd->localName());
startLetter=toupper(cd->name().at(index)); startLetter=toupper(cd->name().at(index));
char s[2]; s[0]=startLetter; s[1]=0; char s[2]; s[0]=startLetter; s[1]=0;
ol.writeIndexHeading(s); ol.writeIndexHeading(s);
......
...@@ -540,7 +540,7 @@ void LatexGenerator::startIndexSection(IndexSections is) ...@@ -540,7 +540,7 @@ void LatexGenerator::startIndexSection(IndexSections is)
bool found=FALSE; bool found=FALSE;
for (cli.toFirst();(cd=cli.current()) && !found;++cli) for (cli.toFirst();(cd=cli.current()) && !found;++cli)
{ {
if (cd->isLinkableInProject()) if (cd->isLinkableInProject() && cd->templateMaster()==0)
{ {
if (compactLatex) t << "\\section"; else t << "\\chapter"; if (compactLatex) t << "\\section"; else t << "\\chapter";
t << "{"; //Compound Documentation}\n"; t << "{"; //Compound Documentation}\n";
...@@ -711,7 +711,7 @@ void LatexGenerator::endIndexSection(IndexSections is) ...@@ -711,7 +711,7 @@ void LatexGenerator::endIndexSection(IndexSections is)
bool found=FALSE; bool found=FALSE;
for (cli.toFirst();(cd=cli.current()) && !found;++cli) for (cli.toFirst();(cd=cli.current()) && !found;++cli)
{ {
if (cd->isLinkableInProject()) if (cd->isLinkableInProject() && cd->templateMaster()==0)
{ {
t << "}\n\\input{" << cd->getOutputFileBase() << "}\n"; t << "}\n\\input{" << cd->getOutputFileBase() << "}\n";
found=TRUE; found=TRUE;
...@@ -719,7 +719,7 @@ void LatexGenerator::endIndexSection(IndexSections is) ...@@ -719,7 +719,7 @@ void LatexGenerator::endIndexSection(IndexSections is)
} }
for (;(cd=cli.current());++cli) for (;(cd=cli.current());++cli)
{ {
if (cd->isLinkableInProject()) if (cd->isLinkableInProject() && cd->templateMaster()==0)
{ {
if (compactLatex) t << "\\input"; else t << "\\include"; if (compactLatex) t << "\\input"; else t << "\\include";
t << "{" << cd->getOutputFileBase() << "}\n"; t << "{" << cd->getOutputFileBase() << "}\n";
......
...@@ -217,9 +217,9 @@ class LatexGenerator : public OutputGenerator ...@@ -217,9 +217,9 @@ class LatexGenerator : public OutputGenerator
void endDescTable() void endDescTable()
{ t << "\\end{description}" << endl; } { t << "\\end{description}" << endl; }
void startDescTableTitle() void startDescTableTitle()
{ t << "\\item[" << endl; } { t << "\\item[{\\em " << endl; }
void endDescTableTitle() void endDescTableTitle()
{ t << "]"; } { t << "}]"; }
void startDescTableData() {} void startDescTableData() {}
void endDescTableData() {} void endDescTableData() {}
void lastIndexPage() {} void lastIndexPage() {}
......
...@@ -201,8 +201,8 @@ class ManGenerator : public OutputGenerator ...@@ -201,8 +201,8 @@ class ManGenerator : public OutputGenerator
void startDescTable() {} void startDescTable() {}
void endDescTable() {} void endDescTable() {}
void startDescTableTitle() { writeListItem(); startBold(); } void startDescTableTitle() { writeListItem(); startBold(); startEmphasis(); }
void endDescTableTitle() { endBold(); } void endDescTableTitle() { endEmphasis(); endBold(); }
void startDescTableData() { t << endl; firstCol=TRUE; } void startDescTableData() { t << endl; firstCol=TRUE; }
void endDescTableData() {} void endDescTableData() {}
......
...@@ -553,7 +553,8 @@ bool MemberDef::isBriefSectionVisible() const ...@@ -553,7 +553,8 @@ bool MemberDef::isBriefSectionVisible() const
// only include members that are non-private unless EXTRACT_PRIVATE is // only include members that are non-private unless EXTRACT_PRIVATE is
// set to YES or the member is part of a group // set to YES or the member is part of a group
bool visibleIfPrivate = (protection()!=Private || bool visibleIfPrivate = (protection()!=Private ||
Config_getBool("EXTRACT_PRIVATE") Config_getBool("EXTRACT_PRIVATE") ||
mtype==Friend
); );
bool visible = visibleIfStatic && visibleIfDocumented && bool visible = visibleIfStatic && visibleIfDocumented &&
...@@ -666,7 +667,7 @@ void MemberDef::writeDeclaration(OutputList &ol, ...@@ -666,7 +667,7 @@ void MemberDef::writeDeclaration(OutputList &ol,
if (tArgList) if (tArgList)
{ {
writeTemplatePrefix(ol,tArgList); writeTemplatePrefix(ol,tArgList);
ol.lineBreak(); //ol.lineBreak();
} }
QCString ltype(type); QCString ltype(type);
...@@ -879,7 +880,8 @@ bool MemberDef::isDetailedSectionLinkable() const ...@@ -879,7 +880,8 @@ bool MemberDef::isDetailedSectionLinkable() const
// only include members that are non-private unless EXTRACT_PRIVATE is // only include members that are non-private unless EXTRACT_PRIVATE is
// set to YES or the member is part of a group // set to YES or the member is part of a group
bool privateFilter = (protection()!=Private || bool privateFilter = (protection()!=Private ||
Config_getBool("EXTRACT_PRIVATE") Config_getBool("EXTRACT_PRIVATE") ||
mtype==Friend
); );
// member is part of an anonymous scope that is the type of // member is part of an anonymous scope that is the type of
...@@ -1198,9 +1200,7 @@ void MemberDef::writeDocumentation(MemberList *ml,OutputList &ol, ...@@ -1198,9 +1200,7 @@ void MemberDef::writeDocumentation(MemberList *ml,OutputList &ol,
if (a->hasDocumentation()) if (a->hasDocumentation())
{ {
ol.startDescTableTitle(); ol.startDescTableTitle();
ol.startEmphasis();
ol.docify(a->name); ol.docify(a->name);
ol.endEmphasis();
ol.endDescTableTitle(); ol.endDescTableTitle();
ol.startDescTableData(); ol.startDescTableData();
parseDoc(ol,m_defFileName,m_defLine,scopeName,name(),a->docs+"\n"); parseDoc(ol,m_defFileName,m_defLine,scopeName,name(),a->docs+"\n");
...@@ -1475,7 +1475,8 @@ bool MemberDef::isLinkableInProject() const ...@@ -1475,7 +1475,8 @@ bool MemberDef::isLinkableInProject() const
return !name().isEmpty() && name().at(0)!='@' && return !name().isEmpty() && name().at(0)!='@' &&
((hasDocumentation() && !isReference()) ((hasDocumentation() && !isReference())
) && ) &&
(prot!=Private || Config_getBool("EXTRACT_PRIVATE")) && // not a private class member (prot!=Private || Config_getBool("EXTRACT_PRIVATE") ||
mtype==Friend) && // not a hidden member due to protection
(classDef!=0 || Config_getBool("EXTRACT_STATIC") || (classDef!=0 || Config_getBool("EXTRACT_STATIC") ||
!isStatic()); // not a static file/namespace member !isStatic()); // not a static file/namespace member
} }
......
...@@ -231,6 +231,7 @@ class MemberDef : public Definition ...@@ -231,6 +231,7 @@ class MemberDef : public Definition
ArgumentList *actualArgs); ArgumentList *actualArgs);
void setTemplateMaster(MemberDef *mt) { m_templateMaster=mt; } void setTemplateMaster(MemberDef *mt) { m_templateMaster=mt; }
bool visited;
private: private:
ClassDef *classDef; // member of or related to ClassDef *classDef; // member of or related to
......
...@@ -1005,7 +1005,7 @@ void RTFGenerator::startIndexSection(IndexSections is) ...@@ -1005,7 +1005,7 @@ void RTFGenerator::startIndexSection(IndexSections is)
bool found=FALSE; bool found=FALSE;
for (cli.toFirst();(cd=cli.current()) && !found;++cli) for (cli.toFirst();(cd=cli.current()) && !found;++cli)
{ {
if (cd->isLinkableInProject()) if (cd->isLinkableInProject() && cd->templateMaster()==0)
{ {
beginRTFChapter(); beginRTFChapter();
found=TRUE; found=TRUE;
...@@ -1238,7 +1238,7 @@ void RTFGenerator::endIndexSection(IndexSections is) ...@@ -1238,7 +1238,7 @@ void RTFGenerator::endIndexSection(IndexSections is)
t << "{\\tc \\v " << theTranslator->trClassDocumentation() << "}"<< endl; t << "{\\tc \\v " << theTranslator->trClassDocumentation() << "}"<< endl;
for (cli.toFirst();(cd=cli.current()) && !found;++cli) for (cli.toFirst();(cd=cli.current()) && !found;++cli)
{ {
if (cd->isLinkableInProject()) if (cd->isLinkableInProject() && cd->templateMaster()==0)
{ {
t << "\\par " << Rtf_Style_Reset << endl; t << "\\par " << Rtf_Style_Reset << endl;
t << "{\\field\\fldedit{\\*\\fldinst INCLUDETEXT \""; t << "{\\field\\fldedit{\\*\\fldinst INCLUDETEXT \"";
...@@ -1249,7 +1249,7 @@ void RTFGenerator::endIndexSection(IndexSections is) ...@@ -1249,7 +1249,7 @@ void RTFGenerator::endIndexSection(IndexSections is)
} }
for (;(cd=cli.current());++cli) for (;(cd=cli.current());++cli)
{ {
if (cd->isLinkableInProject()) if (cd->isLinkableInProject() && cd->templateMaster()==0)
{ {
t << "\\par " << Rtf_Style_Reset << endl; t << "\\par " << Rtf_Style_Reset << endl;
beginRTFSection(); beginRTFSection();
...@@ -2230,11 +2230,13 @@ void RTFGenerator::startDescTableTitle() ...@@ -2230,11 +2230,13 @@ void RTFGenerator::startDescTableTitle()
//t << Rtf_BList_DepthStyle() << endl; //t << Rtf_BList_DepthStyle() << endl;
DBG_RTF(t << "{\\comment (startDescTableTitle) }" << endl) DBG_RTF(t << "{\\comment (startDescTableTitle) }" << endl)
startBold(); startBold();
startEmphasis();
} }
void RTFGenerator::endDescTableTitle() void RTFGenerator::endDescTableTitle()
{ {
DBG_RTF(t << "{\\comment (endDescTableTitle) }" << endl) DBG_RTF(t << "{\\comment (endDescTableTitle) }" << endl)
endEmphasis();
endBold(); endBold();
t << " "; t << " ";
} }
......
...@@ -76,6 +76,7 @@ static int lastAnchorContext; ...@@ -76,6 +76,7 @@ static int lastAnchorContext;
static int lastInitializerContext; static int lastInitializerContext;
static int lastClassTemplSpecContext; static int lastClassTemplSpecContext;
static int lastSkipHtmlCommentContext; static int lastSkipHtmlCommentContext;
static int lastIfContext;
static int nextDefContext; static int nextDefContext;
static int overloadContext; static int overloadContext;
static Protection protection; static Protection protection;
...@@ -84,7 +85,6 @@ static int sharpCount = 0 ; ...@@ -84,7 +85,6 @@ static int sharpCount = 0 ;
static int roundCount = 0 ; static int roundCount = 0 ;
static int curlyCount = 0 ; static int curlyCount = 0 ;
static int squareCount = 0 ; static int squareCount = 0 ;
static int ifCount = 0 ;
static int padCount = 0 ; static int padCount = 0 ;
static int todoStartContext = 0; static int todoStartContext = 0;
static QCString todoString; static QCString todoString;
...@@ -148,6 +148,8 @@ static Grouping lastDefGroup( "", Grouping::GROUPING_LOWEST ); ...@@ -148,6 +148,8 @@ static Grouping lastDefGroup( "", Grouping::GROUPING_LOWEST );
static bool insideFormula; static bool insideFormula;
static bool insideTryBlock=FALSE; static bool insideTryBlock=FALSE;
static int depthIf;
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
static void initParser() static void initParser()
...@@ -161,7 +163,6 @@ static void initParser() ...@@ -161,7 +163,6 @@ static void initParser()
sharpCount = 0; sharpCount = 0;
roundCount = 0; roundCount = 0;
curlyCount = 0; curlyCount = 0;
ifCount = 0;
memberGroupId = NOGROUP; memberGroupId = NOGROUP;
mtype = Method; mtype = Method;
gstat = FALSE; gstat = FALSE;
...@@ -171,6 +172,8 @@ static void initParser() ...@@ -171,6 +172,8 @@ static void initParser()
autoGroupStack.clear(); autoGroupStack.clear();
insideTryBlock = FALSE; insideTryBlock = FALSE;
insideIDL = FALSE; insideIDL = FALSE;
autoGroupStack.setAutoDelete(TRUE);
lastDefGroup.groupname.resize(0);
} }
static void initEntry() static void initEntry()
...@@ -481,6 +484,9 @@ TITLE [tT][iI][tT][lL][eE] ...@@ -481,6 +484,9 @@ TITLE [tT][iI][tT][lL][eE]
%x SkipSharp %x SkipSharp
%x SkipRound %x SkipRound
%x SkipSquare %x SkipSquare
%x SkipSection
%x IfGuard
%x IfNotGuard
%x TypedefName %x TypedefName
%x TryFunctionBlock %x TryFunctionBlock
%x TryFunctionBlockEnd %x TryFunctionBlockEnd
...@@ -1297,7 +1303,7 @@ TITLE [tT][iI][tT][lL][eE] ...@@ -1297,7 +1303,7 @@ TITLE [tT][iI][tT][lL][eE]
BEGIN(AfterDoc); BEGIN(AfterDoc);
} }
} }
<FindMembers,FindFields>"//"([!/]?){B}*{CMD}"{"|"/*"([!*]?){B}*{CMD}"{" { <FindMembers,FindFields>("//"([!/]?){B}*{CMD}"{")|("/*"([!*]?){B}*{CMD}"{") {
startGroup(); startGroup();
tmpDocType=-1; tmpDocType=-1;
if (current_root->section & Entry::SCOPE_MASK) if (current_root->section & Entry::SCOPE_MASK)
...@@ -2624,7 +2630,9 @@ TITLE [tT][iI][tT][lL][eE] ...@@ -2624,7 +2630,9 @@ TITLE [tT][iI][tT][lL][eE]
current->inside = current_root->name+"::"; current->inside = current_root->name+"::";
BEGIN( LineDoc ); BEGIN( LineDoc );
} }
<FindMembers>"extern"{BN}+"\"C"("++")?"\""{BN}*("{")? <FindMembers>"extern"{BN}+"\"C"("++")?"\""{BN}*("{")? {
lineCount();
}
<FindMembers>"{" { <FindMembers>"{" {
current->type.resize(0); current->type.resize(0);
current->name.resize(0); current->name.resize(0);
...@@ -3411,6 +3419,102 @@ TITLE [tT][iI][tT][lL][eE] ...@@ -3411,6 +3419,102 @@ TITLE [tT][iI][tT][lL][eE]
<PageDocTitle>\n { yyLineNr++; current->args+=" "; } <PageDocTitle>\n { yyLineNr++; current->args+=" "; }
<PageDocTitle>[^\n\<] { current->args+=yytext; } <PageDocTitle>[^\n\<] { current->args+=yytext; }
<PageDocTitle>"</"{TITLE}">" { BEGIN( PageDoc ); } <PageDocTitle>"</"{TITLE}">" { BEGIN( PageDoc ); }
/* escaped versions of the conditional commands (for putting them in the docs) */
<ClassDoc,Doc,AfterDoc,PageDoc,ExampleDoc>{CMD}{CMD}"if"/[^a-z_A-Z0-9] { current->doc+=&yytext[1]; }
<ClassDoc,Doc,AfterDoc,PageDoc,ExampleDoc>{CMD}{CMD}"ifnot"/[^a-z_A-Z0-9] { current->doc+=&yytext[1]; }
<ClassDoc,Doc,AfterDoc,PageDoc,ExampleDoc>{CMD}{CMD}"elseif"/[^a-z_A-Z0-9] { current->doc+=&yytext[1]; }
<ClassDoc,Doc,AfterDoc,PageDoc,ExampleDoc>{CMD}{CMD}"else"/[^a-z_A-Z0-9] { current->doc+=&yytext[1]; }
<ClassDoc,Doc,AfterDoc,PageDoc,ExampleDoc>{CMD}{CMD}"endif"/[^a-z_A-Z0-9] { current->doc+=&yytext[1]; }
<LineDoc,JavaDoc>{CMD}{CMD}"if"/[^a-z_A-Z0-9] { current->brief+=&yytext[1]; }
<LineDoc,JavaDoc>{CMD}{CMD}"ifnot"/[^a-z_A-Z0-9] { current->brief+=&yytext[1]; }
<LineDoc,JavaDoc>{CMD}{CMD}"elseif"/[^a-z_A-Z0-9] { current->brief+=&yytext[1]; }
<LineDoc,JavaDoc>{CMD}{CMD}"else"/[^a-z_A-Z0-9] { current->brief+=&yytext[1]; }
<LineDoc,JavaDoc>{CMD}{CMD}"endif"/[^a-z_A-Z0-9] { current->brief+=&yytext[1]; }
/* conditional commands */
<ClassDoc,LineDoc,Doc,JavaDoc,AfterDoc,PageDoc,ExampleDoc>{CMD}"if"{B}+ {
lastIfContext = YY_START;
BEGIN(IfGuard);
}
<ClassDoc,LineDoc,Doc,JavaDoc,AfterDoc,PageDoc,ExampleDoc>{CMD}"ifnot"{B}+ {
lastIfContext = YY_START;
BEGIN(IfNotGuard);
}
<ClassDoc,LineDoc,Doc,JavaDoc,AfterDoc,PageDoc,ExampleDoc>{CMD}"if"(\r?)\n |
<IfGuard>\n {
warn(yyFileName,yyLineNr,"Missing guard for if statement!");
yyLineNr++;
}
<IfGuard>[^\n\t ]+ {
if (Config_getList("ENABLED_SECTIONS").find(yytext)==-1) // not enabled
{
BEGIN(SkipSection);
depthIf=1;
}
else // section enabled
{
BEGIN(lastIfContext);
}
}
<IfNotGuard>\n {
warn(yyFileName,yyLineNr,"Missing guard for ifnot statement!");
yyLineNr++;
}
<IfNotGuard>[^\n\t ]+ {
if (Config_getList("ENABLED_SECTIONS").find(yytext)==-1) // not enabled
{
BEGIN(lastIfContext);
}
else // section enabled
{
depthIf=1;
BEGIN(SkipSection);
}
}
<SkipSection>{CMD}"if"/[^a-z_A-Z0-9] {
depthIf++;
}
<SkipSection>{CMD}"endif"/[^a-z_A-Z0-9] {
if (--depthIf<=0)
{
BEGIN(lastIfContext);
}
}
<SkipSection>{CMD}"else"/[^a-z_A-Z0-9] {
if (depthIf==1)
{
depthIf=0;
BEGIN(lastIfContext);
}
}
<SkipSection>{CMD}"elseif"/[^a-z_A-Z0-9] {
if (depthIf==1)
{
BEGIN(IfGuard);
}
}
<SkipSection>"*/" {
unput('/');unput('*');
BEGIN( lastIfContext );
}
<SkipSection>\n {
yyLineNr++;
}
<SkipSection>"//"|"*/"
<ClassDoc,Doc,JavaDoc,AfterDoc,PageDoc,ExampleDoc>{CMD}"elseif"/[^a-z_A-Z0-9] {
// previous section enabled => absorb else
}
<ClassDoc,Doc,JavaDoc,AfterDoc,PageDoc,ExampleDoc>{CMD}"else"/[^a-z_A-Z0-9] {
// section was enable => skip now
depthIf=1;
BEGIN(SkipSection);
}
<ClassDoc,Doc,JavaDoc,AfterDoc,PageDoc,ExampleDoc>{CMD}"endif"/[^a-z_A-Z0-9] {
// section enabled => absorb endif
}
<ClassDoc,LineDoc,Doc,JavaDoc,AfterDoc>{CMD}"ingroup"{B}+ { <ClassDoc,LineDoc,Doc,JavaDoc,AfterDoc>{CMD}"ingroup"{B}+ {
lastGroupContext = YY_START; lastGroupContext = YY_START;
lineCount(); lineCount();
...@@ -3868,7 +3972,9 @@ static void parseCompounds(Entry *rt) ...@@ -3868,7 +3972,9 @@ static void parseCompounds(Entry *rt)
// ce->name.data(),ce->program.data()); // ce->name.data(),ce->program.data());
// init scanner state // init scanner state
padCount=0; padCount=0;
depthIf = 0;
inputString = ce->program; inputString = ce->program;
lastDefGroup.groupname.resize(0);
inputPosition = 0; inputPosition = 0;
scanYYrestart( scanYYin ) ; scanYYrestart( scanYYin ) ;
if (ce->section==Entry::ENUM_SEC) if (ce->section==Entry::ENUM_SEC)
...@@ -3900,6 +4006,11 @@ static void parseCompounds(Entry *rt) ...@@ -3900,6 +4006,11 @@ static void parseCompounds(Entry *rt)
scanYYlex() ; scanYYlex() ;
delete current; current=0; delete current; current=0;
ce->program.resize(0); ce->program.resize(0);
if (depthIf>0)
{
warn(yyFileName,yyLineNr,"Documentation block ended in the middle of a conditional section!");
}
} }
parseCompounds(ce); parseCompounds(ce);
} }
...@@ -3911,6 +4022,7 @@ void parseMain(Entry *rt) ...@@ -3911,6 +4022,7 @@ void parseMain(Entry *rt)
{ {
initParser(); initParser();
anonCount = 0; anonCount = 0;
depthIf = 0;
protection = Public; protection = Public;
mtype = Method; mtype = Method;
gstat = FALSE; gstat = FALSE;
...@@ -3920,10 +4032,13 @@ void parseMain(Entry *rt) ...@@ -3920,10 +4032,13 @@ void parseMain(Entry *rt)
current = new Entry; current = new Entry;
inputString = rt->program; inputString = rt->program;
inputPosition = 0; inputPosition = 0;
ifCount=0;
scanYYrestart( scanYYin ); scanYYrestart( scanYYin );
BEGIN( FindMembers ); BEGIN( FindMembers );
scanYYlex(); scanYYlex();
if (depthIf>0)
{
warn(yyFileName,yyLineNr,"Documentation block ended in the middle of a conditional section!");
}
rt->program.resize(0); rt->program.resize(0);
delete current; current=0; delete current; current=0;
parseCompounds(rt); parseCompounds(rt);
......
...@@ -557,7 +557,7 @@ QCString removeRedundantWhiteSpace(const QCString &s) ...@@ -557,7 +557,7 @@ QCString removeRedundantWhiteSpace(const QCString &s)
{ {
result+=" >"; // insert extra space for layouting (nested) templates result+=" >"; // insert extra space for layouting (nested) templates
} }
else if (i>0 && i<l-1 && c==',' && isId(s.at(i-1)) && isId(s.at(i+1))) else if (i>0 && i<l-1 && c==',' && !isspace(s.at(i-1)) && isId(s.at(i+1)))
{ {
result+=", "; result+=", ";
} }
...@@ -1014,28 +1014,71 @@ int minClassDistance(ClassDef *cd,ClassDef *bcd,int level) ...@@ -1014,28 +1014,71 @@ int minClassDistance(ClassDef *cd,ClassDef *bcd,int level)
//} //}
// strip any template specifiers that follow className in string s // strip any template specifiers that follow className in string s
static QCString trimTemplateSpecifiers(const QCString &className,const QCString &s) static QCString trimTemplateSpecifiers(
const QCString &namespaceName,
const QCString &className,
const QCString &s
)
{ {
//printf("trimTemplateSpecifiers(%s,%s)\n",className.data(),s.data()); //printf("trimTemplateSpecifiers(%s,%s,%s)\n",namespaceName.data(),className.data(),s.data());
ClassDef *cd=getClass(className); QCString scopeName=mergeScopes(namespaceName,className);
if (cd==0) return s; ClassDef *cd=getClass(scopeName);
if (cd==0) return s; // should not happen, but guard anyway.
QCString result=s;
int i=className.length()-1;
if (className.at(i)=='>') // template specialization
{
// replace unspecialized occurrences in s, with their specialized versions.
int count=1;
int cl=i+1;
while (i>=0)
{
char c=className.at(i);
if (c=='>') count++,i--;
else if (c=='<') { count--; if (count==0) break; }
else i--;
}
QCString unspecClassName=className.left(i);
int l=i;
int p=0;
while ((i=result.find(unspecClassName,p))!=-1)
{
if (result.at(i+l)!='<') // unspecialized version
{
result=result.left(i)+className+result.right(result.length()-i-l);
l=cl;
}
p=i+l;
}
}
//printf("result after specialization: %s\n",result.data());
QCString qualName=cd->qualifiedNameWithTemplateParameters(); QCString qualName=cd->qualifiedNameWithTemplateParameters();
//printf("QualifiedName = %s\n",qualName.data()); //printf("QualifiedName = %s\n",qualName.data());
// We strip the template arguments following className (if any) // We strip the template arguments following className (if any)
QCString result=s;
if (!qualName.isEmpty()) // there is a class name if (!qualName.isEmpty()) // there is a class name
{ {
int i,p=0; int is,ps=0;
// TODO: also try smaller parts of the qualName, since we int p=0,l,i;
// could be inside a namespace or class.
while ((i=result.find(qualName,p))!=-1) // class name is in the argument type while ((is=getScopeFragment(qualName,ps,&l))!=-1)
{ {
int ql=qualName.length(); QCString qualNamePart = qualName.right(qualName.length()-is);
result=result.left(i)+cd->name()+result.right(result.length()-i-ql); //printf("qualNamePart=%s\n",qualNamePart.data());
p=i+cd->name().length(); while ((i=result.find(qualNamePart,p))!=-1)
{
int ql=qualNamePart.length();
result=result.left(i)+cd->name()+result.right(result.length()-i-ql);
p=i+cd->name().length();
}
ps=is+l;
} }
} }
//printf("result=%s\n",result.data());
return result; return result;
} }
...@@ -1203,9 +1246,9 @@ static bool matchArgument(const Argument *srcA,const Argument *dstA, ...@@ -1203,9 +1246,9 @@ static bool matchArgument(const Argument *srcA,const Argument *dstA,
// before matching. This should use className and namespaceName // before matching. This should use className and namespaceName
// and usingNamespaces and usingClass to determine which typedefs // and usingNamespaces and usingClass to determine which typedefs
// are in-scope, so it will not be very efficient :-( // are in-scope, so it will not be very efficient :-(
QCString srcAType=trimTemplateSpecifiers(className,srcA->type); QCString srcAType=trimTemplateSpecifiers(namespaceName,className,srcA->type);
QCString dstAType=trimTemplateSpecifiers(className,dstA->type); QCString dstAType=trimTemplateSpecifiers(namespaceName,className,dstA->type);
if (srcAType.left(6)=="class ") srcAType=srcAType.right(srcAType.length()-6); if (srcAType.left(6)=="class ") srcAType=srcAType.right(srcAType.length()-6);
if (dstAType.left(6)=="class ") dstAType=dstAType.right(dstAType.length()-6); if (dstAType.left(6)=="class ") dstAType=dstAType.right(dstAType.length()-6);
...@@ -1235,6 +1278,9 @@ static bool matchArgument(const Argument *srcA,const Argument *dstA, ...@@ -1235,6 +1278,9 @@ static bool matchArgument(const Argument *srcA,const Argument *dstA,
stripIrrelevantConstVolatile(srcAType); stripIrrelevantConstVolatile(srcAType);
stripIrrelevantConstVolatile(dstAType); stripIrrelevantConstVolatile(dstAType);
srcAType = removeRedundantWhiteSpace(srcAType);
dstAType = removeRedundantWhiteSpace(dstAType);
//srcAType=stripTemplateSpecifiersFromScope(srcAType,FALSE); //srcAType=stripTemplateSpecifiersFromScope(srcAType,FALSE);
//dstAType=stripTemplateSpecifiersFromScope(dstAType,FALSE); //dstAType=stripTemplateSpecifiersFromScope(dstAType,FALSE);
...@@ -1446,9 +1492,23 @@ static void mergeArgument(Argument *srcA,Argument *dstA, ...@@ -1446,9 +1492,23 @@ static void mergeArgument(Argument *srcA,Argument *dstA,
dstA->type+=dstA->name; dstA->type+=dstA->name;
dstA->name.resize(0); dstA->name.resize(0);
} }
if (srcA->name=="const" || srcA->name=="volatile")
{
srcA->type+=" ";
srcA->type+=srcA->name;
srcA->type=removeRedundantWhiteSpace(srcA->type);
srcA->name.resize(0);
}
if (dstA->name=="const" || dstA->name=="volatile")
{
dstA->type+=" ";
dstA->type+=dstA->name;
dstA->type=removeRedundantWhiteSpace(dstA->type);
dstA->name.resize(0);
}
QCString srcAType=trimTemplateSpecifiers(className,srcA->type); QCString srcAType=trimTemplateSpecifiers(namespaceName,className,srcA->type);
QCString dstAType=trimTemplateSpecifiers(className,dstA->type); QCString dstAType=trimTemplateSpecifiers(namespaceName,className,dstA->type);
if (srcAType.left(6)=="class ") srcAType=srcAType.right(srcAType.length()-6); if (srcAType.left(6)=="class ") srcAType=srcAType.right(srcAType.length()-6);
if (dstAType.left(6)=="class ") dstAType=dstAType.right(dstAType.length()-6); if (dstAType.left(6)=="class ") dstAType=dstAType.right(dstAType.length()-6);
...@@ -1617,10 +1677,16 @@ static void mergeArgument(Argument *srcA,Argument *dstA, ...@@ -1617,10 +1677,16 @@ static void mergeArgument(Argument *srcA,Argument *dstA,
if (i>0 && i<(int)srcAType.length()-1 && srcAType.at(i)!=':') if (i>0 && i<(int)srcAType.length()-1 && srcAType.at(i)!=':')
// there is (probably) a name // there is (probably) a name
{ {
srcA->name=srcAType.right(srcAType.length()-i-1); QCString srcAName=srcAType.right(srcAType.length()-i-1);
srcA->type=srcAType.left(i+1).stripWhiteSpace(); QCString dstAName=dstAType.right(dstAType.length()-i-1);
dstA->name=dstAType.right(dstAType.length()-i-1); if (srcAName!="const" && srcAName!="volatile" &&
dstA->type=dstAType.left(i+1).stripWhiteSpace(); dstAName!="const" && dstAName!="volatile")
{
srcA->name=srcAName;
srcA->type=srcAType.left(i+1).stripWhiteSpace();
dstA->name=dstAName;
dstA->type=dstAType.left(i+1).stripWhiteSpace();
}
} }
} }
else if (!dstA->name.isEmpty()) else if (!dstA->name.isEmpty())
...@@ -1655,11 +1721,11 @@ bool matchArguments(ArgumentList *srcAl,ArgumentList *dstAl, ...@@ -1655,11 +1721,11 @@ bool matchArguments(ArgumentList *srcAl,ArgumentList *dstAl,
QCString namespaceName=ns; QCString namespaceName=ns;
// strip template specialization from class name if present // strip template specialization from class name if present
int til=className.find('<'),tir=className.find('>'); //int til=className.find('<'),tir=className.find('>');
if (til!=-1 && tir!=-1 && tir>til) //if (til!=-1 && tir!=-1 && tir>til)
{ //{
className=className.left(til)+className.right(className.length()-tir-1); // className=className.left(til)+className.right(className.length()-tir-1);
} //}
//printf("matchArguments(%s,%s) className=%s namespaceName=%s checkCV=%d usingNamespaces=%d usingClasses=%d\n", //printf("matchArguments(%s,%s) className=%s namespaceName=%s checkCV=%d usingNamespaces=%d usingClasses=%d\n",
// srcAl ? argListToString(srcAl).data() : "", // srcAl ? argListToString(srcAl).data() : "",
...@@ -2670,24 +2736,22 @@ QCString substituteKeywords(const QCString &s,const char *title) ...@@ -2670,24 +2736,22 @@ QCString substituteKeywords(const QCString &s,const char *title)
*/ */
int getPrefixIndex(const QCString &name) int getPrefixIndex(const QCString &name)
{ {
int ni = name.findRev("::");
if (ni==-1) ni=0; else ni+=2;
//printf("getPrefixIndex(%s) ni=%d\n",name.data(),ni); //printf("getPrefixIndex(%s) ni=%d\n",name.data(),ni);
QStrList &sl = Config_getList("IGNORE_PREFIX"); QStrList &sl = Config_getList("IGNORE_PREFIX");
char *s = sl.first(); char *s = sl.first();
while (s) while (s)
{ {
const char *ps=s; const char *ps=s;
const char *pd=name.data()+ni; const char *pd=name.data();
int i=0; int i=0;
while (*ps!=0 && *pd!=0 && *ps==*pd) ps++,pd++,i++; while (*ps!=0 && *pd!=0 && *ps==*pd) ps++,pd++,i++;
if (*ps==0 && *pd!=0) if (*ps==0 && *pd!=0)
{ {
return ni+i; return i;
} }
s = sl.next(); s = sl.next();
} }
return ni; return 0;
} }
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
...@@ -2868,17 +2932,52 @@ QCString insertTemplateSpecifierInScope(const QCString &scope,const QCString &te ...@@ -2868,17 +2932,52 @@ QCString insertTemplateSpecifierInScope(const QCString &scope,const QCString &te
return result; return result;
} }
/*! Strips the scope from a name. Examples: A::B will return A
* and A<T>::B<N::C<D> > will return A<T>.
* \todo deal with cases like A< s<<2 >::B
*/
QCString stripScope(const char *name) QCString stripScope(const char *name)
{ {
QCString result = name; QCString result = name;
int ti=result.find('<'); // find start of template int l=result.length();
if (ti==-1) ti=result.length(); int p=l-1;
int i = ti>2 ? result.findRev("::",ti-2) : -1; // find scope just before template bool done;
if (i!=-1) // found scope int count;
while (p>=0)
{ {
result=result.right(result.length()-i-2); char c=result.at(p);
switch (c)
{
case ':':
//printf("stripScope(%s)=%s\n",name,result.right(l-p-1).data());
return result.right(l-p-1);
case '>':
count=1;
done=FALSE;
//printf("pos < = %d\n",p);
p--;
while (p>=0 && !done)
{
c=result.at(p--);
switch (c)
{
case '>': count++; break;
case '<': count--; if (count<=0) done=TRUE; break;
default:
//printf("c=%c count=%d\n",c,count);
break;
}
}
//printf("pos > = %d\n",p+1);
break;
default:
p--;
}
} }
return result; //printf("stripScope(%s)=%s\n",name,name);
return name;
} }
/*! Converts a string to an XML-encoded string */ /*! Converts a string to an XML-encoded string */
...@@ -3015,6 +3114,8 @@ bool extractClassNameFromType(const QCString &type,int &pos,QCString &name,QCStr ...@@ -3015,6 +3114,8 @@ bool extractClassNameFromType(const QCString &type,int &pos,QCString &name,QCStr
QCString substituteTemplateArgumentsInString( QCString substituteTemplateArgumentsInString(
const QCString &name,ArgumentList *formalArgs,ArgumentList *actualArgs) const QCString &name,ArgumentList *formalArgs,ArgumentList *actualArgs)
{ {
//printf("substituteTemplateArgumentsInString(name=%s formal=%s actualArg=%s)\n",
// name.data(),argListToString(formalArgs).data(),argListToString(actualArgs).data());
if (formalArgs==0) return name; if (formalArgs==0) return name;
QCString result; QCString result;
static QRegExp re("[a-z_A-Z][a-z_A-Z0-9]*"); static QRegExp re("[a-z_A-Z][a-z_A-Z0-9]*");
...@@ -3036,16 +3137,19 @@ QCString substituteTemplateArgumentsInString( ...@@ -3036,16 +3137,19 @@ QCString substituteTemplateArgumentsInString(
++formAli,actArg=actualArgs->next() ++formAli,actArg=actualArgs->next()
) )
{ {
if (formArg->name==n && actArg && !actArg->type.isEmpty()) // base class is a template argument if (formArg->type=="class" || formArg->type=="typename")
{
// replace formal argument with the actual argument of the instance
result += actArg->type;
found=TRUE;
}
else if (formArg->name==n && actArg==0 && !formArg->defval.isEmpty())
{ {
result += formArg->defval; if (formArg->name==n && actArg && !actArg->type.isEmpty()) // base class is a template argument
found=TRUE; {
// replace formal argument with the actual argument of the instance
result += actArg->type;
found=TRUE;
}
else if (formArg->name==n && actArg==0 && !formArg->defval.isEmpty())
{
result += formArg->defval;
found=TRUE;
}
} }
} }
if (!found) result += n; if (!found) result += n;
...@@ -3109,10 +3213,8 @@ QCString stripTemplateSpecifiersFromScope(const QCString &fullName, ...@@ -3109,10 +3213,8 @@ QCString stripTemplateSpecifiersFromScope(const QCString &fullName,
int p=0; int p=0;
int l=fullName.length(); int l=fullName.length();
int i=fullName.find('<'); int i=fullName.find('<');
int si= i==-1 ? -1 : fullName.find("::",i); while (i!=-1)
while (i!=-1 && (!parentOnly || i<si))
{ {
result+=fullName.mid(p,i-p);
//printf("1:result+=%s\n",fullName.mid(p,i-p).data()); //printf("1:result+=%s\n",fullName.mid(p,i-p).data());
int e=i+1; int e=i+1;
bool done=FALSE; bool done=FALSE;
...@@ -3130,18 +3232,112 @@ QCString stripTemplateSpecifiersFromScope(const QCString &fullName, ...@@ -3130,18 +3232,112 @@ QCString stripTemplateSpecifiersFromScope(const QCString &fullName,
done = count==0; done = count==0;
} }
} }
int si= fullName.find("::",e);
if (parentOnly && si==-1) break;
// we only do the parent scope, so we stop here if needed
result+=fullName.mid(p,i-p);
//printf(" trying %s\n",(result+fullName.mid(i,e-i)).data()); //printf(" trying %s\n",(result+fullName.mid(i,e-i)).data());
if (getClass(result+fullName.mid(i,e-i))!=0) if (getClass(result+fullName.mid(i,e-i))!=0)
{ {
result+=fullName.mid(i,e-i); result+=fullName.mid(i,e-i);
//printf("2:result+=%s\n",fullName.mid(i,e-i-1).data()); //printf("2:result+=%s\n",fullName.mid(i,e-i-1).data());
} }
p=e; p=e;
i=fullName.find('<',p); i=fullName.find('<',p);
si= i==-1 ? -1 : fullName.find("::",i);
} }
result+=fullName.right(l-p); result+=fullName.right(l-p);
//printf("3:result+=%s\n",fullName.right(l-p).data()); //printf("3:result+=%s\n",fullName.right(l-p).data());
return result; return result;
} }
/*! Merges two scope parts together. The parts may (partially) overlap.
* Example1: \c A::B and \c B::C will result in \c A::B::C <br>
* Example2: \c A and \c B will be \c A::B <br>
* Example3: \c A::B and B will be \c A::B
*
* @param leftScope the left hand part of the scope.
* @param rightScope the right hand part of the scope.
* @returns the merged scope.
*/
QCString mergeScopes(const QCString &leftScope,const QCString &rightScope)
{
// case leftScope=="A" rightScope=="A::B" => result = "A::B"
if (leftScopeMatch(rightScope,leftScope)) return rightScope;
QCString result;
int i=0,p=leftScope.length();
// case leftScope=="A::B" rightScope=="B::C" => result = "A::B::C"
// case leftScope=="A::B" rightScope=="B" => result = "A::B"
bool found=FALSE;
while ((i=leftScope.findRev("::",p))!=-1)
{
if (leftScopeMatch(rightScope,leftScope.right(leftScope.length()-i-2)))
{
result = leftScope.left(i+2)+rightScope;
found=TRUE;
}
p=i-1;
}
if (found) return result;
// case leftScope=="A" rightScope=="B" => result = "A::B"
result=leftScope.copy();
if (!result.isEmpty() && !rightScope.isEmpty()) result+="::";
result+=rightScope;
return result;
}
/*! Returns a fragment from scope \a s, starting at position \a p.
*
* @param s the scope name as a string.
* @param p the start position (0 is the first).
* @param l the resulting length of the fragment.
* @returns the location of the fragment, or -1 if non is found.
*/
int getScopeFragment(const QCString &s,int p,int *l)
{
int sl=s.length();
int sp=p;
int count=0;
bool done;
if (sp>=sl) return -1;
while (sp<sl)
{
char c=s.at(sp);
if (c==':') sp++,p++; else break;
}
while (sp<sl)
{
char c=s.at(sp);
switch (c)
{
case ':': // found next part
goto found;
case '<': // skip template specifier
count=1;sp++;
done=FALSE;
while (sp<sl && !done)
{
// TODO: deal with << and >> operators!
char c=s.at(sp++);
switch(c)
{
case '<': count++; break;
case '>': count--; if (count==0) done=TRUE; break;
default: break;
}
}
break;
default:
sp++;
break;
}
}
found:
*l=sp-p;
//printf("getScopeFragment(%s,%d)=%s\n",s.data(),p,s.mid(p,*l).data());
return p;
}
...@@ -160,6 +160,8 @@ QList<ArgumentList> *copyArgumentLists(const QList<ArgumentList> *srcLists); ...@@ -160,6 +160,8 @@ QList<ArgumentList> *copyArgumentLists(const QList<ArgumentList> *srcLists);
QCString stripTemplateSpecifiersFromScope(const QCString &fullName, QCString stripTemplateSpecifiersFromScope(const QCString &fullName,
bool parentOnly=TRUE); bool parentOnly=TRUE);
QCString resolveTypeDef(Definition *d,const QCString &name); QCString resolveTypeDef(Definition *d,const QCString &name);
QCString mergeScopes(const QCString &leftScope,const QCString &rightScope);
int getScopeFragment(const QCString &s,int p,int *l);
#endif #endif
...@@ -38,8 +38,8 @@ static inline void writeXMLString(QTextStream &t,const char *s) ...@@ -38,8 +38,8 @@ static inline void writeXMLString(QTextStream &t,const char *s)
t << convertToXML(s); t << convertToXML(s);
} }
static void writeXMLLink(QTextStream &t,const char *compoundId,const char *memId, static void writeXMLLink(QTextStream &t,const char *compoundId,
const char *text) const char *memId,const char *text)
{ {
if (memId==0) if (memId==0)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment