]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMath.h
rename LyXFont to Font except in tex2lyx
[lyx.git] / src / mathed / InsetMath.h
index 0dc38f57e458e0d93af4aec0283c01c76add45c6..87cf74ef950639b8dfcb5500eaa3b6f823bbfba1 100644 (file)
@@ -13,9 +13,9 @@
 #ifndef MATH_INSET_H
 #define MATH_INSET_H
 
-#include "MathArray.h"
+#include "MathData.h"
 
-#include "insets/InsetBase.h"
+#include "insets/Inset.h"
 
 
 namespace lyx {
@@ -70,7 +70,7 @@ class InsetMathSpace;
 class InsetMathSymbol;
 class InsetMathUnknown;
 
-class RefInset;
+class InsetMathRef;
 
 class NormalStream;
 class OctaveStream;
@@ -84,13 +84,13 @@ class InfoStream;
 class MathMacroTemplate;
 class MathMacro;
 class MathPosFinder;
-class LCursor;
+class Cursor;
 class TextPainter;
 class TextMetricsInfo;
 class ReplaceData;
 
 
-class InsetMath : public InsetBase {
+class InsetMath : public Inset {
 public:
        /// identification as math inset
        InsetMath * asInsetMath() { return this; }
@@ -104,9 +104,9 @@ public:
        virtual void drawT(TextPainter &, int x, int y) const;
 
        /// return cell given its number
-       virtual MathArray & cell(idx_type);
+       virtual MathData & cell(idx_type);
        /// return cell given its number
-       virtual MathArray const & cell(idx_type) const;
+       virtual MathData const & cell(idx_type) const;
 
        /// identifies certain types of insets
        virtual InsetMathAMSArray       * asAMSArrayInset()       { return 0; }
@@ -142,7 +142,7 @@ public:
        virtual InsetMathSymbol const   * asSymbolInset() const   { return 0; }
        virtual InsetMathUnknown        * asUnknownInset()        { return 0; }
        virtual InsetMathUnknown const  * asUnknownInset() const  { return 0; }
-       virtual RefInset                * asRefInset()            { return 0; }
+       virtual InsetMathRef            * asRefInset()            { return 0; }
 
        /// identifies things that can get scripts
        virtual bool isScriptable() const { return false; }
@@ -161,7 +161,7 @@ public:
        /// replace things by other things
        virtual void replace(ReplaceData &) {}
        /// do we contain a given subsequence?
-       virtual bool contains(MathArray const &) const { return false; }
+       virtual bool contains(MathData const &) const { return false; }
        /// access to the lock (only nest array have one)
        virtual bool lock() const { return false; }
        /// access to the lock (only nest array have one)