2001-02-13 17:08:51 +00:00
|
|
|
// -*- C++ -*-
|
2003-08-19 13:00:56 +00:00
|
|
|
/**
|
|
|
|
* \file math_macrotemplate.h
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
|
|
|
* \author Alejandro Aguilar Sierra
|
2008-11-14 15:58:50 +00:00
|
|
|
* \author André Pönitz
|
2003-08-19 13:00:56 +00:00
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
*/
|
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
#ifndef MATH_MACROTEMPLATE_H
|
|
|
|
#define MATH_MACROTEMPLATE_H
|
2001-02-13 17:08:51 +00:00
|
|
|
|
2006-09-17 09:14:18 +00:00
|
|
|
#include "InsetMathNest.h"
|
2007-11-01 11:13:07 +00:00
|
|
|
#include "MacroTable.h"
|
|
|
|
#include "MathData.h"
|
2003-10-06 15:43:21 +00:00
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
2010-03-18 22:19:34 +00:00
|
|
|
class OutputParams;
|
2019-05-09 23:35:40 +00:00
|
|
|
class XMLStream;
|
2010-03-18 22:19:34 +00:00
|
|
|
|
2003-08-19 13:00:56 +00:00
|
|
|
/// This class contains the macro definition.
|
2017-07-05 12:31:28 +00:00
|
|
|
class InsetMathMacroTemplate : public InsetMathNest {
|
2001-02-15 12:22:01 +00:00
|
|
|
public:
|
|
|
|
///
|
2019-09-15 21:56:17 +00:00
|
|
|
explicit InsetMathMacroTemplate(Buffer * buf);
|
2001-02-15 12:22:01 +00:00
|
|
|
///
|
2017-07-05 12:31:28 +00:00
|
|
|
InsetMathMacroTemplate(Buffer * buf, docstring const & name, int nargs,
|
2017-07-03 17:45:58 +00:00
|
|
|
int optional, MacroType type,
|
2007-11-01 11:13:07 +00:00
|
|
|
std::vector<MathData> const & optionalValues = std::vector<MathData>(),
|
|
|
|
MathData const & def = MathData(),
|
|
|
|
MathData const & display = MathData());
|
2015-08-01 07:05:33 +00:00
|
|
|
/// parses from string, returns false if failed
|
|
|
|
bool fromString (const docstring & str);
|
2001-02-15 12:22:01 +00:00
|
|
|
///
|
2009-04-22 20:55:13 +00:00
|
|
|
bool editable() const { return true; }
|
2004-04-13 06:27:29 +00:00
|
|
|
///
|
2008-02-11 08:20:13 +00:00
|
|
|
void edit(Cursor & cur, bool front, EntryDirection entry_from);
|
2007-12-23 01:24:34 +00:00
|
|
|
///
|
2008-02-22 20:45:18 +00:00
|
|
|
bool notifyCursorLeaves(Cursor const & old, Cursor & cur);
|
2007-12-23 01:24:34 +00:00
|
|
|
///
|
2008-02-27 20:43:16 +00:00
|
|
|
void read(Lexer & lex);
|
2004-04-13 06:27:29 +00:00
|
|
|
///
|
2008-02-27 20:43:16 +00:00
|
|
|
void write(std::ostream & os) const;
|
2001-06-25 00:06:33 +00:00
|
|
|
///
|
2001-11-09 08:35:57 +00:00
|
|
|
void write(WriteStream & os) const;
|
Run codespell on src/mathed
codespell -w -i 3 -S Makefile.in -L mathed,afe,tthe,ue,fro,uint,larg,alph,te,thes,alle,Claus,wit,nd,numer src/mathed/
2020-06-25 21:31:42 +00:00
|
|
|
/// Output LaTeX code, but assume that the macro is not defined yet
|
2007-12-21 20:42:46 +00:00
|
|
|
/// if overwriteRedefinition is true
|
2010-02-08 17:39:55 +00:00
|
|
|
int write(WriteStream & os, bool overwriteRedefinition) const;
|
2010-03-18 22:19:34 +00:00
|
|
|
/// Nothing happens. This is simply to suppress the default output.
|
2019-05-09 23:35:40 +00:00
|
|
|
docstring xhtml(XMLStream &, OutputParams const &) const;
|
2007-02-24 18:00:13 +00:00
|
|
|
///
|
2013-03-08 19:52:18 +00:00
|
|
|
int plaintext(odocstringstream &, OutputParams const &, size_t) const;
|
2007-12-21 20:42:46 +00:00
|
|
|
///
|
2011-02-22 19:41:04 +00:00
|
|
|
bool inheritFont() const { return false; }
|
2001-02-15 12:22:01 +00:00
|
|
|
///
|
2006-10-22 10:15:23 +00:00
|
|
|
docstring name() const;
|
2007-12-21 20:42:46 +00:00
|
|
|
///
|
|
|
|
void getDefaults(std::vector<docstring> & defaults) const;
|
|
|
|
///
|
|
|
|
docstring definition() const;
|
|
|
|
///
|
|
|
|
docstring displayDefinition() const;
|
|
|
|
///
|
|
|
|
size_t numArgs() const;
|
|
|
|
///
|
|
|
|
size_t numOptionals() const;
|
|
|
|
///
|
|
|
|
bool redefinition() const { return redefinition_; }
|
|
|
|
///
|
|
|
|
MacroType type() const { return type_; }
|
|
|
|
|
2007-11-01 11:13:07 +00:00
|
|
|
/// check name and possible other formal properties
|
|
|
|
bool validMacro() const;
|
|
|
|
///
|
|
|
|
bool validName() const;
|
2017-07-03 17:45:58 +00:00
|
|
|
/// Remove everything from the name which makes it invalid
|
2007-12-21 20:42:46 +00:00
|
|
|
/// and return true iff it is valid.
|
|
|
|
bool fixNameAndCheckIfValid();
|
2017-07-03 17:45:58 +00:00
|
|
|
|
2007-12-23 16:32:00 +00:00
|
|
|
/// request "external features"
|
|
|
|
virtual void validate(LaTeXFeatures &) const;
|
2007-12-21 20:42:46 +00:00
|
|
|
|
|
|
|
/// decide whether its a redefinition
|
2013-10-11 21:36:56 +00:00
|
|
|
void updateToContext(MacroContext const & mc);
|
2007-12-21 20:42:46 +00:00
|
|
|
|
2004-04-13 06:27:29 +00:00
|
|
|
///
|
|
|
|
void draw(PainterInfo & pi, int x, int y) const;
|
2001-02-15 12:22:01 +00:00
|
|
|
///
|
2007-09-21 20:39:47 +00:00
|
|
|
void metrics(MetricsInfo & mi, Dimension & dim) const;
|
2001-10-12 12:02:49 +00:00
|
|
|
/// identifies macro templates
|
2017-07-05 12:31:28 +00:00
|
|
|
InsetMathMacroTemplate * asMacroTemplate() { return this; }
|
2002-08-09 07:01:17 +00:00
|
|
|
/// identifies macro templates
|
2017-07-05 12:31:28 +00:00
|
|
|
InsetMathMacroTemplate const * asMacroTemplate() const { return this; }
|
2004-04-13 06:27:29 +00:00
|
|
|
///
|
2007-10-13 09:04:52 +00:00
|
|
|
InsetCode lyxCode() const { return MATHMACRO_CODE; }
|
2007-12-23 01:24:34 +00:00
|
|
|
///
|
|
|
|
void infoize(odocstream & os) const;
|
2008-03-10 12:51:14 +00:00
|
|
|
///
|
2011-10-29 14:48:55 +00:00
|
|
|
std::string contextMenuName() const;
|
2015-09-27 06:05:00 +00:00
|
|
|
///
|
|
|
|
void addToToc(DocIterator const & di, bool output_active,
|
2017-01-13 10:06:48 +00:00
|
|
|
UpdateType utype, TocBackend & backend) const;
|
2007-11-01 11:13:07 +00:00
|
|
|
protected:
|
|
|
|
///
|
|
|
|
virtual void doDispatch(Cursor & cur, FuncRequest & cmd);
|
|
|
|
/// do we want to handle this event?
|
|
|
|
bool getStatus(Cursor & cur, FuncRequest const & cmd,
|
|
|
|
FuncStatus & status) const;
|
|
|
|
|
2001-02-13 17:08:51 +00:00
|
|
|
private:
|
2007-12-23 01:26:46 +00:00
|
|
|
friend class InsetLabelBox;
|
2017-07-05 12:31:28 +00:00
|
|
|
friend class InsetDisplayLabelBox;
|
2017-07-03 17:45:58 +00:00
|
|
|
|
2007-12-23 01:26:46 +00:00
|
|
|
///
|
2007-08-30 18:03:17 +00:00
|
|
|
virtual Inset * clone() const;
|
2004-04-13 06:27:29 +00:00
|
|
|
|
2007-11-01 11:13:07 +00:00
|
|
|
/// remove #n with from<=n<=to
|
2009-11-22 20:50:35 +00:00
|
|
|
void removeArguments(Cursor & cur, DocIterator const & inset_pos,
|
|
|
|
int from, int to);
|
2007-11-01 11:13:07 +00:00
|
|
|
/// shift every #n with from<=n, i.e. #n -> #(n-by)
|
|
|
|
void shiftArguments(size_t from, int by);
|
|
|
|
///
|
2009-11-22 20:50:35 +00:00
|
|
|
void insertParameter(Cursor & cur, DocIterator const & inset_pos,
|
2017-07-03 17:45:58 +00:00
|
|
|
int pos, bool greedy = false, bool addarg = true);
|
2007-11-01 11:13:07 +00:00
|
|
|
///
|
2009-11-22 20:50:35 +00:00
|
|
|
void removeParameter(Cursor & cur, DocIterator const & inset_pos,
|
|
|
|
int pos, bool greedy = false);
|
2007-11-01 11:13:07 +00:00
|
|
|
///
|
2009-11-22 20:50:35 +00:00
|
|
|
void makeOptional(Cursor & cur, DocIterator const & inset_pos);
|
2007-11-01 11:13:07 +00:00
|
|
|
///
|
2009-11-22 20:50:35 +00:00
|
|
|
void makeNonOptional(Cursor & cur, DocIterator const & inset_pos);
|
2007-11-01 11:13:07 +00:00
|
|
|
///
|
2007-11-01 15:36:27 +00:00
|
|
|
idx_type defIdx() const { return optionals_ + 1; }
|
2007-11-01 11:13:07 +00:00
|
|
|
/// index of default value cell of optional parameter (#1 -> n=0)
|
2007-11-01 15:36:27 +00:00
|
|
|
idx_type optIdx(idx_type n) const { return n + 1; }
|
2007-11-01 11:13:07 +00:00
|
|
|
///
|
2007-11-01 15:36:27 +00:00
|
|
|
idx_type displayIdx() const { return optionals_ + 2; }
|
2007-12-23 01:25:51 +00:00
|
|
|
///
|
2008-03-04 14:57:34 +00:00
|
|
|
void updateLook() const;
|
2008-02-29 10:02:25 +00:00
|
|
|
/// look through the macro for #n arguments
|
|
|
|
int maxArgumentInDefinition() const;
|
|
|
|
/// add missing #n arguments up to \c maxArg
|
|
|
|
void insertMissingArguments(int maxArg);
|
|
|
|
/// change the arity
|
2009-11-22 20:50:35 +00:00
|
|
|
void changeArity(Cursor & cur, DocIterator const & inset_pos,
|
|
|
|
int newNumArg);
|
2008-02-29 10:02:25 +00:00
|
|
|
/// find arguments in definition and adapt the arity accordingly
|
2009-11-22 20:50:35 +00:00
|
|
|
void commitEditChanges(Cursor & cur, DocIterator const & inset_pos);
|
2008-02-29 10:02:25 +00:00
|
|
|
/// The representation of the macro template, with some holes to edit
|
2007-12-23 01:25:51 +00:00
|
|
|
mutable MathData look_;
|
2001-02-15 12:22:01 +00:00
|
|
|
///
|
2007-11-01 11:13:07 +00:00
|
|
|
mutable int numargs_;
|
2001-08-08 17:26:30 +00:00
|
|
|
///
|
2008-02-29 10:02:25 +00:00
|
|
|
mutable int argsInLook_;
|
|
|
|
///
|
2007-11-01 11:13:07 +00:00
|
|
|
int optionals_;
|
2017-07-03 17:45:58 +00:00
|
|
|
/// keeps the old optional default value when an
|
2007-12-21 20:42:46 +00:00
|
|
|
/// optional argument is disabled
|
2007-11-01 11:13:07 +00:00
|
|
|
std::vector<MathData> optionalValues_;
|
2007-12-21 20:42:46 +00:00
|
|
|
|
|
|
|
/// (re)newcommand or def
|
|
|
|
mutable MacroType type_;
|
|
|
|
/// defined before already?
|
2013-10-11 21:36:56 +00:00
|
|
|
bool redefinition_;
|
2007-12-23 01:24:34 +00:00
|
|
|
///
|
2008-02-29 10:02:25 +00:00
|
|
|
void createLook(int args) const;
|
2007-12-23 01:25:51 +00:00
|
|
|
///
|
|
|
|
mutable bool lookOutdated_;
|
|
|
|
/// true if in pre-calculations of metrics to get height of boxes
|
|
|
|
mutable bool premetrics_;
|
|
|
|
///
|
|
|
|
mutable int labelBoxAscent_;
|
|
|
|
///
|
|
|
|
mutable int labelBoxDescent_;
|
|
|
|
///
|
|
|
|
bool premetrics() const { return premetrics_; }
|
|
|
|
///
|
|
|
|
int commonLabelBoxAscent() const { return labelBoxAscent_; }
|
|
|
|
///
|
|
|
|
int commonLabelBoxDescent() const { return labelBoxDescent_; }
|
2001-02-13 17:08:51 +00:00
|
|
|
};
|
2001-04-24 16:13:38 +00:00
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
} // namespace lyx
|
|
|
|
|
2001-02-13 17:08:51 +00:00
|
|
|
#endif
|