// -*- C++ -*- /* * File: formula.h * Purpose: Declaration of formula inset * Author: Alejandro Aguilar Sierra * Created: January 1996 * Description: Allows the edition of math paragraphs inside Lyx. * * Copyright: 1996, Alejandro Aguilar Sierra * * Version: 0.4, Lyx project. * * You are free to use and modify this code under the terms of * the GNU General Public Licence version 2 or later. */ #ifndef INSET_FORMULA_H #define INSET_FORMULA_H #ifdef __GNUG__ #pragma interface #endif #include "mathed/formulabase.h" #include "math_defs.h" class MathMatrixInset; /// class InsetFormula : public InsetFormulaBase { public: /// InsetFormula(); /// explicit InsetFormula(MathInsetTypes); /// int ascent(BufferView *, LyXFont const &) const; /// int descent(BufferView *, LyXFont const &) const; /// int width(BufferView *, LyXFont const &) const; /// void draw(BufferView *, LyXFont const &, int, float &, bool) const; /// void Write(Buffer const *, std::ostream &) const; /// void Read(Buffer const *, LyXLex & lex); /// int Latex(Buffer const *, std::ostream &, bool fragile, bool free_spc) const; /// int Ascii(Buffer const *, std::ostream &, int linelen) const; /// int Linuxdoc(Buffer const *, std::ostream &) const; /// int DocBook(Buffer const *, std::ostream &) const; /// Inset * Clone(Buffer const &) const; /// void Validate(LaTeXFeatures & features) const; /// Inset::Code LyxCode() const; /// virtual RESULT LocalDispatch(BufferView *, kb_action, string const &); /// std::vector const getLabelList() const; /// void HandleExtern(string const & arg, BufferView * bv); /// MathMatrixInset * par() const; /// bool display() const; /// bool ams() const; }; #endif