]> git.lyx.org Git - lyx.git/blobdiff - src/counters.h
fix bug 2089: Touching Navigate menu crashes Lyx when a TOC inset is in a section...
[lyx.git] / src / counters.h
index 69c4983be810e318b611d813671966d9e2bae068..df9a0a6149b00255e3867142478684fc314a2609 100644 (file)
@@ -1,26 +1,22 @@
 // -*- C++ -*-
-/* This file is part of
- * ======================================================
+/**
+ * \file counters.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *           LyX, The Document Processor
+ * \author Lars Gullik Bjønnes
+ * \author Jean-Marc Lasgouttes
+ * \author John Levon
+ * \author Martin Vermeer
  *
- *           Copyright 1995 Matthias Ettrich
- *           Copyright 1995-2001 The LyX Team.
- *
- *
- * ====================================================== */
-
+ * Full author contact details are available in file CREDITS.
+ */
 
 #ifndef COUNTERS_H
 #define COUNTERS_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
-
-#include "LString.h"
 #include <map>
-#include <vector>
+#include <string>
 
 /// This represents a single counter.
 class Counter {
@@ -38,17 +34,16 @@ public:
        ///
        void reset();
        /// Returns the master counter of this counter
-       string master() const;
+       std::string master() const;
        /// sets the master counter for this counter
-       void setMaster(string const & m);
-       ///
-
+       void setMaster(std::string const & m);
 private:
+       ///
        int value_;
        /// contains master counter name; master counter is the counter
        /// that, if stepped (incremented) zeroes this counter. E.g.
        /// "subparagraph"'s master is "paragraph".
-       string master_;
+       std::string master_;
 };
 
 
@@ -56,53 +51,37 @@ private:
 /// Every instantiation is an array of counters of type Counter.
 class Counters {
 public:
-       ///
-       Counters();
-       ///
-       //~Counters();
        /// Add a new counter to array.
-       void newCounter(string const & newc);
+       void newCounter(std::string const & newc);
        /// Add new counter having oldc as its master.
-       void newCounter(string const & newc, string const & oldc);
+       void newCounter(std::string const & newc, std::string const & oldc);
        ///
-       void set(string const & ctr, int val);
+       void set(std::string const & ctr, int val);
        ///
-       void addto(string const & ctr, int val);
+       void addto(std::string const & ctr, int val);
        ///
-       int value(string const & ctr) const;
+       int value(std::string const & ctr) const;
        /// Step (increment by one) counter named by arg, and
        /// zeroes slave counter(s) for which it is the master.
        /// NOTE sub-slaves not zeroed! That happens at slave's
        /// first step 0->1. Seems to be sufficient.
-       void step(string const & ctr);
+       void step(std::string const & ctr);
        /// Reset all counters.
        void reset();
        /// Reset counters matched by match string.
-       void reset(string const & match);
+       void reset(std::string const & match);
        /// Copy counters whose name matches match from the &from to
        /// the &to array of counters. Empty string matches all.
-       void copy(Counters & from, Counters & to, string const & match = string());
-       /// A numeric label's single item, like .1 for subsection number in
-       /// the 2.1.4 subsubsection number label. "first" indicates if this
-       /// is the first item to be displayed, usually chapter or section.
-       string labelItem(string const & ctr,
-                       string const & labeltype,
-                       string const & langtype = "latin",
-                       bool first = false);
-       /// A complete numeric label, like 2.1.4 for a subsubsection.
-       /// "head" indicates sequence number of first item to be
-       /// displayed, e.g. 0 for chapter, 1 for section.
-       string numberLabel(string const & ctr,
-                       string const & labeltype,
-                       string const & langtype = "latin",
-                       int head = 0);
-       /// Maps numbers to enumeration of sectioning counter name strings.
-       std::vector<string> enums;
-       std::vector<string> sects;
-
+       void copy(Counters & from, Counters & to, std::string const & match = std::string());
+       /// A complete expanded label, like 2.1.4 for a subsubsection
+       /// according to the given format
+       std::string counterLabel(std::string const & format);
 private:
+       /// A counter label's single item, 1 for subsection number in
+       /// the 2.1.4 subsubsection number label.
+       std::string labelItem(std::string const & ctr, std::string const & numbertype);
        /// Maps counter (layout) names to actual counters.
-       typedef std::map<string, Counter> CounterList;
+       typedef std::map<std::string, Counter> CounterList;
        /// Instantiate.
        CounterList counterList;