blob: 1c595539aaa27efac9822d2c00447715c9fc8bc4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
/******************************************************************************
*
*
*
* Copyright (C) 2011 by Dimitri van Heesch
* Based on a patch by David Munger
*
* Permission to use, copy, modify, and distribute this software and its
* documentation under the terms of the GNU General Public License is hereby
* granted. No representations are made about the suitability of this software
* for any purpose. It is provided "as is" without express or implied warranty.
* See the GNU General Public License for more details.
*
* Documents produced by Doxygen are derivative works derived from the
* input used in their production; they are not affected by this license.
*
*/
#ifndef CITEDB_H
#define CITEDB_H
#include <qdict.h>
class FTextStream;
/// String constants for citations
struct CiteConsts
{
static const QCString fileName;
static const QCString anchorPrefix;
};
/// Citation-related data.
struct CiteInfo
{
CiteInfo(const char *label_, const char *text_=0, const char *fullText_=0,
const char *ref_=0) :
label(label_), text(text_), fullText(fullText_), ref(ref_)
{ }
CiteInfo(const CiteInfo &o)
{ label=o.label.copy(); text=o.text.copy(); fullText=o.fullText.copy(); ref=o.ref.copy(); }
QCString label;
QCString text;
QCString fullText;
QCString ref;
};
/**
* @brief Cite database access class.
* @details This class provides access do the database of bibliographic
* references through the bibtex backend.
*/
class CiteDict
{
public:
/** Create the database, with an expected maximum of \a size entries */
CiteDict(int size);
// /** Resolve references to citations */
// void resolve();
/** Insert a citation identified by \a label into the database */
void insert(const char *label);
/** Return the citation info for a given \a label */
CiteInfo *find(const char *label) const;
/** Generate the citations page */
void generatePage() const;
/** clears the database */
void clear();
/** return TRUE if there are no citations.
* Only valid after calling resolve()
*/
bool isEmpty() const;
/** writes the latex code for the standard bibliography
* section to text stream \a t
*/
void writeLatexBibliography(FTextStream &t);
private:
// bool writeAux();
// bool writeBst();
// bool execute();
// void parse();
// void clean();
QDict<CiteInfo> m_entries;
// QList<QCString> m_ordering;
QCString m_baseFileName;
};
#endif
|