summaryrefslogtreecommitdiffstats
path: root/src/reflist.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2009-08-20 10:04:05 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2009-08-20 10:04:05 (GMT)
commit1688ab7ec2a4165c7a6b9dd8531ee3ea98b9e4ee (patch)
treed86d1b7ef2284f53606076d27e1499e8e10e6b55 /src/reflist.cpp
parent8c6ca30831818a77a6947baad63ab99cb8cd8c31 (diff)
downloadDoxygen-1688ab7ec2a4165c7a6b9dd8531ee3ea98b9e4ee.zip
Doxygen-1688ab7ec2a4165c7a6b9dd8531ee3ea98b9e4ee.tar.gz
Doxygen-1688ab7ec2a4165c7a6b9dd8531ee3ea98b9e4ee.tar.bz2
Release-1.6.0
Diffstat (limited to 'src/reflist.cpp')
-rw-r--r--src/reflist.cpp70
1 files changed, 63 insertions, 7 deletions
diff --git a/src/reflist.cpp b/src/reflist.cpp
index da53f04..3f5c527 100644
--- a/src/reflist.cpp
+++ b/src/reflist.cpp
@@ -16,7 +16,9 @@
*
*/
+#include <stdio.h>
#include "reflist.h"
+#include "util.h"
/*! Create a list of items that are cross referenced with documentation blocks
* @param listName String representing the name of the list.
@@ -27,7 +29,8 @@ RefList::RefList(const char *listName,
const char *pageTitle,
const char *secTitle
)
-{
+{
+ m_itemList = 0;
m_dict = 0;
m_dictIterator = 0;
m_id = 0;
@@ -37,10 +40,10 @@ RefList::RefList(const char *listName,
}
/*! Destroy the todo list. Currently not called! */
-RefList::~RefList()
-{
- delete m_dictIterator;
- delete m_dict;
+RefList::~RefList()
+{
+ delete m_dictIterator;
+ delete m_dict;
}
/*! Adds a new item to the list.
@@ -50,7 +53,7 @@ int RefList::addRefItem()
{
if (m_dict==0)
{
- m_dict = new QIntDict<RefItem>(1009);
+ m_dict = new QIntDict<RefItem>(1009);
m_dict->setAutoDelete(TRUE);
m_dictIterator = new QIntDictIterator<RefItem>(*m_dict);
}
@@ -69,7 +72,7 @@ RefItem *RefList::getRefItem(int itemId)
return m_dict ? m_dict->find(itemId) : 0;
}
-/*! Returns the first item in the dictionary or 0 if
+/*! Returns the first item in the dictionary or 0 if
* non is available.
* Items are not sorted.
*/
@@ -103,3 +106,56 @@ QCString RefList::sectionTitle() const
return m_secTitle;
}
+void RefList::insertIntoList(const char *key,RefItem *item)
+{
+ if (m_itemList==0)
+ {
+ m_itemList = new SortedRefItems(1009);
+ }
+ RefItem *ri = m_itemList->find(key);
+ if (ri==0)
+ {
+ m_itemList->append(key,item);
+ }
+ else // item already added to the list (i.e. multiple item for the same
+ // entity)
+ {
+ if (ri!=item)
+ {
+ ri->extraItems.append(item);
+ }
+ }
+}
+
+void RefList::generatePage()
+{
+ if (m_itemList==0) return;
+ m_itemList->sort();
+ SDict<RefItem>::Iterator it(*m_itemList);
+ RefItem *item;
+ for (it.toFirst();(item=it.current());++it)
+ {
+ QCString doc;
+ doc = "\\anchor ";
+ doc += item->listAnchor;
+ doc += " <dl><dt>";
+ doc += item->prefix;
+ doc += " \\_internalref ";
+ doc += item->name;
+ doc += " \"";
+ doc += item->title;
+ doc += "\"";
+ if (!item->args.isEmpty()) doc += item->args;
+ doc += "</dt>\n<dd>";
+ doc += item->text;
+ QListIterator<RefItem> li(item->extraItems);
+ RefItem *extraItem;
+ for (li.toFirst();(extraItem=li.current());++li)
+ {
+ doc += "<p>" + extraItem->text;
+ }
+ doc += "</dd></dl>\n";
+ addRelatedPage(m_listName,m_pageTitle,doc,0,m_listName,1,0,0,0);
+ }
+}
+