]> git.lyx.org Git - lyx.git/blob - src/TocBackend.h
Squash some warnings.
[lyx.git] / src / TocBackend.h
1 // -*- C++ -*-
2 /**
3  * \file TocBackend.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Jean-Marc Lasgouttes
8  * \author Angus Leeming
9  * \author Abdelrazak Younes
10  * \author Guillaume Munch
11  *
12  * Full author contact details are available in file CREDITS.
13  */
14
15 #ifndef TOC_BACKEND_H
16 #define TOC_BACKEND_H
17
18 #include "DocIterator.h"
19 #include "FuncRequest.h"
20 #include "OutputEnums.h"
21 #include "Toc.h"
22
23 #include "support/strfwd.h"
24 #include "support/unique_ptr.h"
25
26 #include <stack>
27
28
29 namespace lyx {
30
31 class Buffer;
32
33
34 /* FIXME: toc types are currently identified by strings. It cannot be converted
35  * into an enum because of the user-configurable indexing categories and
36  * the user-definable float types provided by layout files.
37  *
38  * I leave this for documentation purposes for the moment.
39  *
40 enum TocType {
41         TABLE_OF_CONTENTS,//"tableofcontents"
42         CHILD,//"child"
43         GRAPHICS,//"graphics"
44         NOTE,//"note"
45         BRANCH,//"branch"
46         CHANGE,//"change"
47         LABEL,//"label"
48         CITATION,//"citation"
49         EQUATION,//"equation"
50         FOOTNOTE,//"footnote"
51         MARGINAL_NOTE,//"marginalnote"
52         INDEX,//"index", "index:<user-str>" (from interface)
53         NOMENCL,//"nomencl"
54         LISTING,//"listings"
55         FLOAT,//"figure", "table", "algorithm", user-defined (from layout?)
56         MATH_MACRO,//"math-macro"
57         EXTERNAL,//"external"
58         SENSELESS,//"senseless"
59         TOC_TYPE_COUNT
60 }
61  */
62
63 ///
64 /**
65 */
66 class TocItem
67 {
68         friend class TocBackend;
69         friend class TocBuilder;
70
71 public:
72         /// Default constructor for STL containers.
73         TocItem() : dit_(0), depth_(0), output_(false) {}
74         ///
75         TocItem(DocIterator const & dit,
76                 int depth,
77                 docstring const & s,
78                 bool output_active,
79                 docstring const & t = docstring(),
80                 FuncRequest action = FuncRequest(LFUN_UNKNOWN_ACTION));
81         ///
82         ~TocItem() {}
83         ///
84         int id() const;
85         ///
86         int depth() const { return depth_; }
87         ///
88         docstring const & str() const { return str_; }
89         ///
90         void str(docstring const & s) { str_ = s; }
91         ///
92         docstring const & tooltip() const;
93         /// String for display, e.g. it has a mark if output is inactive
94         docstring const asString() const;
95         ///
96         DocIterator const & dit() const { return dit_; }
97         ///
98         bool isOutput() const { return output_; }
99         ///
100         void setAction(FuncRequest a) { action_ = a; }
101         /// custom action, or the default one (paragraph-goto) if not customised
102         FuncRequest action() const;
103
104 protected:
105         /// Current position of item.
106         DocIterator dit_;
107
108 private:
109         /// nesting depth
110         int depth_;
111         /// Full item string
112         docstring str_;
113         /// The tooltip string
114         docstring tooltip_;
115         /// Is this item in a note, inactive branch, etc?
116         bool output_;
117         /// Custom action
118         FuncRequest action_;
119 };
120
121
122 /// Caption-enabled TOC builders
123 class TocBuilder
124 {
125 public:
126         TocBuilder(std::shared_ptr<Toc> const toc);
127         /// When entering a float
128         void pushItem(DocIterator const & dit, docstring const & s,
129                       bool output_active, bool is_captioned = false);
130         /// When encountering a caption
131         void captionItem(DocIterator const & dit, docstring const & s,
132                          bool output_active);
133         /// When exiting a float
134         void pop();
135 private:
136         TocBuilder(){}
137         ///
138         struct frame {
139                 Toc::size_type pos;
140                 bool is_captioned;
141         };
142         ///
143         std::shared_ptr<Toc> const toc_;
144         ///
145         std::stack<frame> stack_;
146 };
147
148
149 /// Class to build and access the Tocs of a particular buffer.
150 class TocBackend
151 {
152 public:
153         static Toc::const_iterator findItem(Toc const & toc,
154                                             DocIterator const & dit);
155         /// Look for a TocItem given its depth and string.
156         /// \return The first matching item.
157         /// \retval end() if no item was found.
158         static Toc::iterator findItem(Toc & toc, int depth, docstring const & str);
159         ///
160         TocBackend(Buffer const * buffer) : buffer_(buffer) {}
161         ///
162         void setBuffer(Buffer const * buffer) { buffer_ = buffer; }
163         ///
164         void update(bool output_active, UpdateType utype);
165         /// \return true if the item was updated.
166         bool updateItem(DocIterator const & pit);
167         ///
168         TocList const & tocs() const { return tocs_; }
169         /// never null
170         std::shared_ptr<Toc const> toc(std::string const & type) const;
171         /// never null
172         std::shared_ptr<Toc> toc(std::string const & type);
173         /// \return the current TocBuilder for the Toc of type \param type, or
174         /// creates one if it does not already exist.
175         TocBuilder & builder(std::string const & type);
176         /// \return the first Toc Item before the cursor.
177         /// \param type: Type of Toc.
178         /// \param dit: The cursor location in the document.
179         Toc::const_iterator
180         item(std::string const & type, DocIterator const & dit) const;
181
182         ///
183         void writePlaintextTocList(std::string const & type,
184                 odocstringstream & os, size_t max_length) const;
185         ///
186         docstring outlinerName(std::string const & type) const;
187
188 private:
189         ///
190         TocList tocs_;
191         ///
192         std::map<std::string, unique_ptr<TocBuilder>> builders_;
193         ///
194         Buffer const * buffer_;
195 }; // TocBackend
196
197
198 } // namespace lyx
199
200 #endif // TOC_BACKEND_H