]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_fracinset.h
tfracinset files is missing so all usage of tfrac is commented out
[lyx.git] / src / mathed / math_fracinset.h
index 386a95eda72dc5993725b5903e50cea769c0b7a3..90ea9c9fd755026bb7c5d378b6861ff1e3c6353b 100644 (file)
@@ -1,35 +1,51 @@
 // -*- C++ -*-
+/**
+ * \file math_fracinset.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author Alejandro Aguilar Sierra
+ * \author André Pönitz
+ *
+ * Full author contact details are available in file CREDITS.
+ */
+
 #ifndef MATH_FRACINSET_H
 #define MATH_FRACINSET_H
 
 #include "math_fracbase.h"
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
-/** Fraction like objects (frac, binom)
-    \author Alejandro Aguilar Sierra
- */
+/// Fraction like objects (frac, binom)
 class MathFracInset : public MathFracbaseInset {
 public:
        ///
        explicit MathFracInset(bool atop = false);
        ///
-       MathInset * clone() const;
+       virtual std::auto_ptr<InsetBase> clone() const;
        ///
-       void metrics(MathMetricsInfo const & st) const;
+       void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
-       void draw(Painter &, int x, int y) const;
+       void draw(PainterInfo &, int x, int y) const;
        ///
+       void metricsT(TextMetricsInfo const & mi, Dimension & dim) const;
+       ///
+       void drawT(TextPainter &, int x, int y) const;
+       /// identifies FracInsets
        MathFracInset * asFracInset();
+       /// identifies FracInsets
+       MathFracInset const * asFracInset() const;
+       ///
+       std::string name() const;
 
        ///
        void write(WriteStream & os) const;
        ///
-       void normalize(NormalStream &) const;
+       void maple(MapleStream &) const;
+       ///
+       void mathematica(MathematicaStream &) const;
        ///
-       void maplize(MapleStream &) const;
+       void octave(OctaveStream &) const;
        ///
        void mathmlize(MathMLStream &) const;
 public: