]> git.lyx.org Git - lyx.git/blob - src/mathed/InsetMathTFrac.h
Rename files in src/mathed and src/graphics from .C to .cpp, step 2
[lyx.git] / src / mathed / InsetMathTFrac.h
1 // -*- C++ -*-
2 /**
3  * \file InsetMathTFrac.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_TFRACINSET_H
13 #define MATH_TFRACINSET_H
14
15 #include "InsetMathFrac.h"
16
17
18 namespace lyx {
19
20
21 /// \dfrac support
22 class InsetMathTFrac : public InsetMathFrac {
23 public:
24         ///
25         InsetMathTFrac();
26         ///
27         bool metrics(MetricsInfo & mi, Dimension & dim) const;
28         ///
29         void draw(PainterInfo &, int x, int y) const;
30         ///
31         docstring name() const;
32         ///
33         void mathmlize(MathStream &) const;
34         ///
35         void validate(LaTeXFeatures & features) const;
36 private:
37         virtual std::auto_ptr<InsetBase> doClone() const;
38 };
39
40
41
42 } // namespace lyx
43 #endif