]> git.lyx.org Git - lyx.git/blob - src/mathed/math_macro.h
Applied Angus patch to compile on DEC C++ and to avoid name clashes
[lyx.git] / src / mathed / math_macro.h
1 // -*- C++ -*-
2 /*
3  *  File:        math_macro.h
4  *  Purpose:     Declaration of macro class for mathed 
5  *  Author:      Alejandro Aguilar Sierra <asierra@servidor.unam.mx> 
6  *  Created:     November 1996
7  *  Description: WYSIWYG math macros
8  *
9  *  Dependencies: Mathed
10  *
11  *  Copyright: 1996, 1997 Alejandro Aguilar Sierra
12  *
13  *   Version: 0.2, Mathed & Lyx project.
14  *
15  *   This code is under the GNU General Public Licence version 2 or later.
16  */
17 #ifndef MATH_MACRO
18 #define MATH_MACRO
19
20 #ifdef __GNUG__
21 #pragma interface
22 #endif
23
24 #include <vector>
25 #include <boost/smart_ptr.hpp>
26
27 #include "math_parinset.h"
28 #include "math_macroarg.h"
29
30 class MathMacroTemplate;
31
32
33 /** This class contains the data for a macro
34     \author Alejandro Aguilar Sierra <asierra@servidor.unam.mx>
35     \version November 1996
36  */
37 class MathMacro : public MathParInset {
38 public:
39         /// A macro can only be built from an existing template
40         explicit
41         MathMacro(boost::shared_ptr<MathMacroTemplate> const &);
42         ///
43         void draw(Painter &, int, int);
44         ///
45         void Metrics();
46         ///
47         MathedInset * Clone();
48         ///
49         void Write(std::ostream &, bool fragile);
50         ///
51         bool setArgumentIdx(int);
52         ///
53         int getArgumentIdx() const;
54         ///
55         int getMaxArgumentIdx() const;
56         ///
57         int GetColumns() const;
58         ///
59         void GetXY(int &, int &) const;
60         ///
61         void SetFocus(int, int);
62         ///
63         MathedArray & GetData();
64         ///
65         MathedArray const & GetData() const;
66         ///
67         void setData(MathedArray const &);
68         ///
69         MathedTextCodes getTCode() const;
70         ///
71         bool Permit(short) const;
72         ///
73         MathMacroArgument const & getArg(int i) const;
74         //boost::shared_ptr<MathMacroArgument> getArg(int i);
75 private:
76         ///
77         boost::shared_ptr<MathMacroTemplate> tmplate_;
78         ///
79         //std::vector<boost::shared_ptr<MathMacroArgument> > args_;
80         std::vector<MathMacroArgument> args_;
81         ///
82         int idx_;
83         ///
84         //int nargs_;
85         ///
86         MathedTextCodes tcode_;
87 };
88 #endif