]> git.lyx.org Git - lyx.git/blob - src/Counters.h
96b14266c3539a11857089f8b7a060d5fda30160
[lyx.git] / src / Counters.h
1 // -*- C++ -*-
2 /**
3  * \file Counters.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Lars Gullik Bjønnes
8  * \author Jean-Marc Lasgouttes
9  * \author John Levon
10  * \author Martin Vermeer
11  *
12  * Full author contact details are available in file CREDITS.
13  */
14
15 #ifndef COUNTERS_H
16 #define COUNTERS_H
17
18 #include "support/docstring.h"
19
20 #include <map>
21 #include <set>
22
23
24 namespace lyx {
25
26 /// This represents a single counter.
27 class Counter {
28 public:
29         ///
30         Counter();
31         ///
32         Counter(docstring const & mc, docstring const & ls, 
33                 docstring const & lsa);
34         ///
35         void set(int v);
36         ///
37         void addto(int v);
38         ///
39         int value() const;
40         ///
41         void step();
42         ///
43         void reset();
44         /// Returns the master counter of this counter.
45         docstring const & master() const;
46         /// Returns a LaTeX-like string to format the counter. 
47         /* This is similar to what one gets in LaTeX when using
48          * "\the<counter>".
49          */
50         docstring const & labelString() const;
51         /// Returns a LaTeX-like string to format the counter in appendix.
52         /* This is similar to what one gets in LaTeX when using
53          * "\the<counter>" in an appendix.
54          */
55         docstring const & labelStringAppendix() const;
56 private:
57         ///
58         int value_;
59         /// contains master counter name.
60         /* The master counter is the counter that, if stepped
61          * (incremented) zeroes this counter. E.g. "subsection"'s
62          * master is "section".
63          */
64         docstring master_;
65         // Contains a LaTeX-like string to format the counter.
66         docstring labelstring_;
67         // The same as labelstring_, but in appendices.
68         docstring labelstringappendix_;
69 };
70
71
72 /// This is a class of (La)TeX type counters.
73 /// Every instantiation is an array of counters of type Counter.
74 class Counters {
75 public:
76         /// Add a new counter to array.
77         void newCounter(docstring const & newc);
78         /// Add new counter having oldc as its master and ls as its label.
79         void newCounter(docstring const & newc,
80                         docstring const & masterc,
81                         docstring const & ls,
82                         docstring const & lsa);
83         /// Checks whether the given counter exists.
84         bool hasCounter(docstring const & c) const;
85         ///
86         void set(docstring const & ctr, int val);
87         ///
88         void addto(docstring const & ctr, int val);
89         ///
90         int value(docstring const & ctr) const;
91         /// Increment by one counter named by arg, and zeroes slave
92         /// counter(s) for which it is the master.
93         /* Sub-slaves not zeroed! That happens at slave's first step
94          * 0->1. Seems to be sufficient.
95          */
96         void step(docstring const & ctr);
97         /// Reset all counters.
98         void reset();
99         /// Reset counters matched by match string.
100         void reset(docstring const & match);
101         /// Copy counters whose name matches match from the &from to
102         /// the &to array of counters. Empty string matches all.
103         void copy(Counters & from, Counters & to,
104                   docstring const & match = docstring());
105         /// returns the expanded string representation of the counter.
106         docstring theCounter(docstring const & c);
107         /// Replace om format all the LaTeX-like macros that depend on
108         /// counters.
109         docstring counterLabel(docstring const & format, 
110                                std::set<docstring> * callers = 0);
111         /// Are we in apendix?
112         bool appendix() const { return appendix_; };
113         /// Set the state variable indicating whether we are in appendix.
114         void appendix(bool a) { appendix_ = a; };
115         /// Returns the current enclosing float.
116         std::string const & current_float() const { return current_float_; }
117         /// Sets the current enclosing float.
118         void current_float(std::string const & f) { current_float_ = f; }
119         /// Are we in a subfloat?
120         bool isSubfloat() const { return subfloat_; }
121         /// Set the state variable indicating whether we are in a subfloat.
122         void isSubfloat(bool s) { subfloat_ = s; };
123 private:
124         /// returns the expanded string representation of the counter
125         /// with recursion protection through callers.
126         docstring theCounter(docstring const & c, 
127                              std::set<docstring> & callers);
128         /// Returns the value of the counter according to the
129         /// numbering scheme numbertype.
130         /* Available numbering schemes are arabic (1, 2,...), roman
131          * (i, ii,...), Roman (I, II,...), alph (a, b,...), Alpha (A,
132          * B,...) and hebrew.
133          */
134         docstring labelItem(docstring const & ctr,
135                             docstring const & numbertype);
136         /// Maps counter (layout) names to actual counters.
137         typedef std::map<docstring, Counter> CounterList;
138         /// Instantiate.
139         CounterList counterList;
140         /// Are we in an appendix?
141         bool appendix_;
142         /// The current enclosing float.
143         std::string current_float_;
144         /// Are we in a subfloat?
145         bool subfloat_;
146 };
147
148
149 } // namespace lyx
150
151 #endif