]> git.lyx.org Git - lyx.git/blob - src/mathed/math_data.h
enable direct input of #1...#9; some whitespace changes
[lyx.git] / src / mathed / math_data.h
1 // -*- C++ -*-
2 /*
3  *  Purpose:     A general purpose resizable array.  
4  *  Author:      Alejandro Aguilar Sierra <asierra@servidor.unam.mx> 
5  *  Created:     January 1996
6  *
7  *  Dependencies: None (almost)
8  *
9  *  Copyright: 1996, Alejandro Aguilar Sierra
10  *                 1997  The LyX Team!
11  *
12  *   You are free to use and modify this code under the terms of
13  *   the GNU General Public Licence version 2 or later.
14  */
15
16 #ifndef MATH_DATA_H
17 #define MATH_DATA_H
18
19 #include <iosfwd>
20 #include <vector>
21
22 #include "math_atom.h"
23
24 class MathMacro;
25 class LaTeXFeatures;
26 class ReplaceData;
27
28
29 #ifdef __GNUG__
30 #pragma interface
31 #endif
32
33
34 /** \class MathArray
35     \brief Low level container for math insets
36     
37     \author Alejandro Aguilar Sierra
38     \author André Pönitz
39     \author Lars Gullik Bjønnes
40     \version February 2001
41   */
42
43 class MathArray  {
44 public:
45         ///
46         typedef std::vector<MathAtom>        buffer_type;
47         ///
48         typedef buffer_type::const_iterator  const_iterator;
49         ///
50         typedef buffer_type::iterator        iterator;
51         ///
52         typedef buffer_type::size_type       size_type;
53         ///
54         typedef buffer_type::difference_type difference_type;
55         ///
56         typedef buffer_type::size_type       idx_type;
57         ///
58         typedef buffer_type::size_type       pos_type;
59
60 public:
61         ///
62         MathArray();
63         ///
64         MathArray(MathArray const &, size_type from, size_type to);
65         ///
66         MathArray(iterator from, iterator to);
67
68         ///
69         size_type size() const;
70         ///
71         bool empty() const;
72         ///
73         void clear();
74         ///
75         void swap(MathArray &);
76         
77         ///
78         void insert(size_type pos, MathAtom const &);
79         ///
80         void insert(size_type pos, MathArray const &);
81
82         ///
83         void erase(iterator pos1, iterator pos2);
84         ///
85         void erase(iterator pos);
86         ///
87         void erase(size_type pos1, size_type pos2);
88         ///
89         void erase(size_type pos);
90         ///
91         void erase();
92
93         ///
94         void push_back(MathAtom const &);
95         ///
96         void push_back(MathArray const &);
97         ///
98         void pop_back();
99         ///
100         MathAtom & back();
101
102         ///
103         MathAtom & front();
104         ///
105         MathAtom const & front() const;
106
107         ///
108         void dump() const;
109         ///
110         void dump2() const;
111         ///
112         void substitute(MathMacro const &);
113         /// looks for exact match
114         bool match(MathArray const &) const;
115         /// looks for inclusion match starting at pos
116         bool matchpart(MathArray const &, pos_type pos) const;
117         /// looks for containment
118         const_iterator find(MathArray const &) const;
119         ///
120         void replace(ReplaceData &);
121
122         ///
123         MathAtom & at(size_type pos);
124         ///
125         MathAtom const & at(size_type pos) const;
126         ///
127         void validate(LaTeXFeatures &) const;
128         ///
129         const_iterator begin() const;   
130         ///
131         const_iterator end() const;     
132         ///
133         iterator begin();
134         ///
135         iterator end();
136
137 private:
138         /// Buffer
139         buffer_type bf_;
140 };
141
142 ///
143 std::ostream & operator<<(std::ostream & os, MathArray const & ar);
144
145
146 #endif