]> git.lyx.org Git - lyx.git/blob - src/mathed/math_dfracinset.h
move around stuff, remove unneeded declarations etc
[lyx.git] / src / mathed / math_dfracinset.h
1 // -*- C++ -*-
2 /**
3  * \file math_fracinset.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author André Pönitz
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef MATH_DFRACINSET_H
13 #define MATH_DFRACINSET_H
14
15 #include "math_fracinset.h"
16
17
18 /// \dfrac support
19 class MathDfracInset : public MathFracInset {
20 public:
21         ///
22         MathDfracInset();
23         ///
24         virtual std::auto_ptr<InsetBase> clone() const;
25         ///
26         void metrics(MetricsInfo & mi, Dimension & dim) const;
27         ///
28         void draw(PainterInfo &, int x, int y) const;
29         ///
30         std::string name() const;
31         ///
32         void mathmlize(MathMLStream &) const;
33         ///
34         void validate(LaTeXFeatures & features) const;
35 };
36
37 #endif