mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
38fce2feac
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7059 a592a061-630c-0410-9148-cb99ea01b6c8
99 lines
1.9 KiB
C++
99 lines
1.9 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* File: math_macro.h
|
|
* Purpose: Declaration of macro class for mathed
|
|
* Author: Alejandro Aguilar Sierra <asierra@servidor.unam.mx>
|
|
* Created: November 1996
|
|
* Description: WYSIWYG math macros
|
|
*
|
|
* Dependencies: Math
|
|
*
|
|
* Copyright: 1996, 1997 Alejandro Aguilar Sierra
|
|
*
|
|
* Version: 0.2, Math & Lyx project.
|
|
*
|
|
* This code is under the GNU General Public Licence version 2 or later.
|
|
*/
|
|
#ifndef MATH_MACRO_H
|
|
#define MATH_MACRO_H
|
|
|
|
|
|
#include "math_nestinset.h"
|
|
#include "metricsinfo.h"
|
|
#include "math_macroarg.h"
|
|
#include "LString.h"
|
|
|
|
class MathMacroTemplate;
|
|
|
|
|
|
/** This class contains the data for a macro
|
|
* \author Alejandro Aguilar Sierra
|
|
*
|
|
* Full author contact details are available in file CREDITS
|
|
\version November 1996
|
|
*/
|
|
class MathMacro : public MathNestInset {
|
|
public:
|
|
/// A macro can be built from an existing template
|
|
explicit MathMacro(string const &);
|
|
///
|
|
MathMacro(MathMacro const &);
|
|
///
|
|
void draw(PainterInfo & pi, int x, int y) const;
|
|
///
|
|
Dimension metrics(MetricsInfo & mi) const;
|
|
///
|
|
MathInset * clone() const;
|
|
///
|
|
void dump() const;
|
|
|
|
///
|
|
bool idxUpDown(idx_type & idx, pos_type & pos, bool up, int targetx) const;
|
|
///
|
|
bool idxLeft(idx_type & idx, pos_type & pos) const;
|
|
///
|
|
bool idxRight(idx_type & idx, pos_type & pos) const;
|
|
|
|
///
|
|
void validate(LaTeXFeatures &) const;
|
|
///
|
|
bool isMacro() const { return true; }
|
|
///
|
|
bool match(MathAtom const &) const { return false; }
|
|
|
|
///
|
|
void maple(MapleStream &) const;
|
|
///
|
|
void mathmlize(MathMLStream &) const;
|
|
///
|
|
void octave(OctaveStream &) const;
|
|
///
|
|
void infoize(std::ostream &) const;
|
|
///
|
|
void infoize2(std::ostream &) const;
|
|
|
|
private:
|
|
///
|
|
void operator=(MathMacro const &);
|
|
///
|
|
string name() const;
|
|
///
|
|
bool defining() const;
|
|
///
|
|
void updateExpansion() const;
|
|
///
|
|
void expand() const;
|
|
|
|
///
|
|
MathAtom & tmplate_;
|
|
///
|
|
mutable MathArray expanded_;
|
|
///
|
|
mutable MetricsInfo mi_;
|
|
///
|
|
mutable LyXFont font_;
|
|
};
|
|
|
|
|
|
#endif
|