mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-13 06:20:28 +00:00
fda98080cc
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2353 a592a061-630c-0410-9148-cb99ea01b6c8
44 lines
784 B
C++
44 lines
784 B
C++
// -*- C++ -*-
|
|
#ifndef MATH_MACROTEMPLATE_H
|
|
#define MATH_MACROTEMPLATE_H
|
|
|
|
#include "math_inset.h"
|
|
|
|
#ifdef __GNUG__
|
|
#pragma interface
|
|
#endif
|
|
|
|
class MathMacro;
|
|
|
|
/** This class contains the macro definition
|
|
\author Alejandro Aguilar Sierra
|
|
*/
|
|
//class MathMacroTemplate : public MathInset, boost::noncopyable
|
|
|
|
class MathMacroTemplate : public MathInset {
|
|
public:
|
|
///
|
|
MathMacroTemplate();
|
|
///
|
|
MathMacroTemplate(string const & name, int nargs);
|
|
///
|
|
MathInset * clone() const;
|
|
///
|
|
void write(std::ostream &, bool fragile) const;
|
|
/// Number of arguments
|
|
int numargs() const;
|
|
///
|
|
void numargs(int);
|
|
///
|
|
void draw(Painter &, int, int);
|
|
///
|
|
void metrics(MathStyles st);
|
|
private:
|
|
///
|
|
int numargs_;
|
|
/// unimplemented
|
|
void operator=(MathMacroTemplate const &);
|
|
};
|
|
|
|
#endif
|