]> git.lyx.org Git - lyx.git/blob - src/mathed/formulamacro.h
fix pullArg when pressing <Delete> at the end of an cell
[lyx.git] / src / mathed / formulamacro.h
1 // -*- C++ -*-
2 /*
3  *  File:        formula.h
4  *  Purpose:     Declaration of formula inset
5  *  Author:      Alejandro Aguilar Sierra <asierra@servidor.unam.mx> 
6  *  Created:     January 1996
7  *  Description: Allows the edition of math paragraphs inside Lyx. 
8  *
9  *  Copyright: 1996, Alejandro Aguilar Sierra
10  *
11  *  Version: 0.4, Lyx project.
12  *
13  *   You are free to use and modify this code under the terms of
14  *   the GNU General Public Licence version 2 or later.
15  */
16
17 #ifndef INSET_FORMULA_MACRO_H 
18 #define INSET_FORMULA_MACRO_H
19
20 #include "formulabase.h"
21
22 #ifdef __GNUG__
23 #pragma interface
24 #endif
25
26 class MathMacroTemplate;
27
28 // InsetFormulaMacro's ParInset is the ParInset of the macro definition
29 // which in turn is stored in the global MathMacroTable.
30 // No copying/updating needed anymore...
31
32 ///
33 class InsetFormulaMacro: public InsetFormulaBase {
34 public:
35         ///
36         explicit InsetFormulaMacro();
37         ///
38         explicit InsetFormulaMacro(string name, int na);
39         ///
40         int ascent(BufferView *, LyXFont const &) const;
41         ///
42         int descent(BufferView *, LyXFont const &) const;
43         ///
44         int width(BufferView *, LyXFont const &) const;
45         ///
46         void draw(BufferView *,LyXFont const &, int, float &, bool) const;
47
48         ///
49         void read(LyXLex & lex);
50         ///
51         void write(std::ostream & os) const;
52         ///
53         int ascii(std::ostream &, int linelen) const;
54         ///
55         int latex(std::ostream & os, bool fragile, bool free_spc) const;
56         ///
57         int linuxdoc(std::ostream & os) const;
58         ///
59         int docBook(std::ostream &) const;
60
61         ///
62         Inset * clone(Buffer const &, bool same_id = false) const;
63         ///
64         Inset::Code lyxCode() const;
65         ///
66         RESULT localDispatch(BufferView *, kb_action, string const &);
67 private:
68         /// prefix in inset
69         string prefix() const;
70         ///
71         MathMacroTemplate * tmacro() const;
72 };
73
74 #endif