mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-14 06:57:01 +00:00
d96f7c829c
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1663 a592a061-630c-0410-9148-cb99ea01b6c8
89 lines
1.8 KiB
C++
89 lines
1.8 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: Mathed
|
|
*
|
|
* Copyright: 1996, 1997 Alejandro Aguilar Sierra
|
|
*
|
|
* Version: 0.2, Mathed & Lyx project.
|
|
*
|
|
* This code is under the GNU General Public Licence version 2 or later.
|
|
*/
|
|
#ifndef MATH_MACRO
|
|
#define MATH_MACRO
|
|
|
|
#ifdef __GNUG__
|
|
#pragma interface
|
|
#endif
|
|
|
|
#include <vector>
|
|
#include <boost/smart_ptr.hpp>
|
|
|
|
#include "math_parinset.h"
|
|
#include "math_macroarg.h"
|
|
|
|
class MathMacroTemplate;
|
|
|
|
|
|
/** This class contains the data for a macro
|
|
\author Alejandro Aguilar Sierra <asierra@servidor.unam.mx>
|
|
\version November 1996
|
|
*/
|
|
class MathMacro : public MathParInset {
|
|
public:
|
|
/// A macro can only be built from an existing template
|
|
explicit
|
|
MathMacro(boost::shared_ptr<MathMacroTemplate> const &);
|
|
///
|
|
void draw(Painter &, int, int);
|
|
///
|
|
void Metrics();
|
|
///
|
|
MathedInset * Clone();
|
|
///
|
|
void Write(std::ostream &, bool fragile);
|
|
///
|
|
bool setArgumentIdx(int);
|
|
///
|
|
int getArgumentIdx() const;
|
|
///
|
|
int getMaxArgumentIdx() const;
|
|
///
|
|
int GetColumns() const;
|
|
///
|
|
void GetXY(int &, int &) const;
|
|
///
|
|
void SetFocus(int, int);
|
|
///
|
|
MathedArray & GetData();
|
|
///
|
|
MathedArray const & GetData() const;
|
|
///
|
|
void setData(MathedArray const &);
|
|
///
|
|
MathedTextCodes getTCode() const;
|
|
///
|
|
bool Permit(short) const;
|
|
///
|
|
MathMacroArgument const & getArg(int i) const;
|
|
//boost::shared_ptr<MathMacroArgument> getArg(int i);
|
|
private:
|
|
///
|
|
boost::shared_ptr<MathMacroTemplate> tmplate_;
|
|
///
|
|
//std::vector<boost::shared_ptr<MathMacroArgument> > args_;
|
|
std::vector<MathMacroArgument> args_;
|
|
///
|
|
int idx_;
|
|
///
|
|
//int nargs_;
|
|
///
|
|
MathedTextCodes tcode_;
|
|
};
|
|
#endif
|