]> git.lyx.org Git - lyx.git/blob - src/mathed/math_deliminset.h
small cleanup, doxygen, formatting changes
[lyx.git] / src / mathed / math_deliminset.h
1 // -*- C++ -*-
2 #ifndef MATH_DELIMINSET_H
3 #define MATH_DELIMINSET_H
4
5 #include "math_parinset.h"
6
7 /** A delimiter
8     \author Alejandro Aguilar Sierra
9 */
10 class MathDelimInset : public MathParInset {
11 public:
12         ///
13         MathDelimInset(int, int, short st = LM_ST_TEXT);
14         ///
15         MathedInset * Clone();
16         ///
17         void draw(Painter &, int, int);
18         ///
19         void Write(std::ostream &, bool fragile);
20         ///
21         void Metrics();
22 private:
23         ///
24         int left_;
25         ///
26         int right_;
27         ///
28         int dw_;
29         ///
30         int dh_;
31 };
32 #endif