]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_macro.h
rename mathed/math_xinset into mathed/InsetMathX
[lyx.git] / src / mathed / math_macro.h
diff --git a/src/mathed/math_macro.h b/src/mathed/math_macro.h
deleted file mode 100644 (file)
index 102a9a0..0000000
+++ /dev/null
@@ -1,74 +0,0 @@
-// -*- C++ -*-
-/**
- * \file math_macro.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_MACRO_H
-#define MATH_MACRO_H
-
-#include "math_nestinset.h"
-#include "math_data.h"
-#include "math_nestinset.h"
-#include "math_macrotable.h"
-
-
-/// This class contains the data for a macro.
-class MathMacro : public InsetMathNest {
-public:
-       /// A macro can be built from an existing template
-       MathMacro(std::string const & name, int numargs);
-       ///
-       void draw(PainterInfo & pi, int x, int y) const;
-       ///
-       void drawExpanded(PainterInfo & pi, int x, int y) const;
-       /// draw selection background
-       void drawSelection(PainterInfo & pi, int x, int y) const;
-       ///
-       void metrics(MetricsInfo & mi, Dimension & dim) const;
-       /// get cursor position
-       void cursorPos(CursorSlice const & sl, bool boundary, int & x, int & y) const;
-       ///
-       InsetBase * editXY(LCursor & cur, int x, int y);
-       ///
-       std::string name() const;
-       ///
-       void setExpansion(MathArray const & exp, MathArray const & args) const;
-
-       ///
-       void validate(LaTeXFeatures &) const;
-
-       ///
-       void maple(MapleStream &) const;
-       ///
-       void mathmlize(MathMLStream &) const;
-       ///
-       void octave(OctaveStream &) const;
-       ///
-       void infoize(std::ostream &) const;
-       ///
-       void infoize2(std::ostream &) const;
-
-private:
-       virtual std::auto_ptr<InsetBase> doClone() const;
-       ///
-       void updateExpansion() const;
-       ///
-       void expand() const;
-
-       /// name of macro
-       std::string name_;
-       /// the unexpanded macro defintition
-       mutable MathArray tmpl_;
-       /// the macro substituted with our args
-       mutable MathArray expanded_;
-};
-
-
-#endif