1999-09-27 18:44:28 +00:00
|
|
|
|
// -*- C++ -*-
|
2002-09-25 14:26:13 +00:00
|
|
|
|
/**
|
|
|
|
|
* \file insetcommand.h
|
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
1999-09-27 18:44:28 +00:00
|
|
|
|
*
|
2002-09-25 14:26:13 +00:00
|
|
|
|
* \author Angus Leeming
|
|
|
|
|
* \author Lars Gullik Bj<EFBFBD>nnes
|
2002-03-21 17:09:55 +00:00
|
|
|
|
*
|
2002-09-25 14:26:13 +00:00
|
|
|
|
* Full author contact details are available in file CREDITS
|
|
|
|
|
*/
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
1999-11-04 01:40:20 +00:00
|
|
|
|
#ifndef INSET_LATEXCOMMAND_H
|
|
|
|
|
#define INSET_LATEXCOMMAND_H
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
|
2003-06-12 08:52:36 +00:00
|
|
|
|
#include "inset.h"
|
2002-07-04 13:54:28 +00:00
|
|
|
|
#include "insetcommandparams.h"
|
2003-06-12 08:52:36 +00:00
|
|
|
|
#include "renderers.h"
|
2003-02-25 14:51:38 +00:00
|
|
|
|
#include "mailinset.h"
|
2000-08-01 17:33:32 +00:00
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
// Created by Alejandro 970222
|
|
|
|
|
/** Used to insert a LaTeX command automatically
|
|
|
|
|
*
|
|
|
|
|
* Similar to InsetLaTeX but having control of the basic structure of a
|
2002-03-21 17:09:55 +00:00
|
|
|
|
* LaTeX command: \name[options]{contents}.
|
1999-09-27 18:44:28 +00:00
|
|
|
|
*/
|
2000-07-27 08:55:59 +00:00
|
|
|
|
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2003-06-12 08:52:36 +00:00
|
|
|
|
class InsetCommand : public Inset {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
public:
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2000-07-27 08:55:59 +00:00
|
|
|
|
explicit
|
2003-05-26 09:13:55 +00:00
|
|
|
|
InsetCommand(InsetCommandParams const &);
|
|
|
|
|
///
|
2003-06-12 08:52:36 +00:00
|
|
|
|
void metrics(MetricsInfo &, Dimension &) const;
|
|
|
|
|
///
|
|
|
|
|
void draw(PainterInfo & pi, int x, int y) const;
|
2003-06-03 15:10:14 +00:00
|
|
|
|
///
|
2001-06-28 10:25:20 +00:00
|
|
|
|
void write(Buffer const *, std::ostream & os) const
|
2002-02-16 15:59:55 +00:00
|
|
|
|
{ p_.write(os); }
|
2000-07-13 09:38:34 +00:00
|
|
|
|
///
|
2001-06-28 10:25:20 +00:00
|
|
|
|
virtual void read(Buffer const *, LyXLex & lex)
|
2002-02-16 15:59:55 +00:00
|
|
|
|
{ p_.read(lex); }
|
2000-08-04 13:12:30 +00:00
|
|
|
|
/// Can remove one InsetBibKey is modified
|
2002-02-16 15:59:55 +00:00
|
|
|
|
void scanCommand(string const & c) { p_.scanCommand(c); };
|
2002-03-21 17:09:55 +00:00
|
|
|
|
///
|
2003-05-22 22:44:30 +00:00
|
|
|
|
virtual int latex(Buffer const *, std::ostream &,
|
2003-05-23 08:59:47 +00:00
|
|
|
|
LatexRunParams const &) const;
|
2000-03-06 02:42:40 +00:00
|
|
|
|
///
|
2001-06-28 10:25:20 +00:00
|
|
|
|
int ascii(Buffer const *, std::ostream &, int linelen) const;
|
2000-04-24 20:58:23 +00:00
|
|
|
|
///
|
2001-06-28 10:25:20 +00:00
|
|
|
|
virtual int linuxdoc(Buffer const *, std::ostream &) const;
|
2000-03-06 02:42:40 +00:00
|
|
|
|
///
|
2002-06-18 15:44:30 +00:00
|
|
|
|
virtual int docbook(Buffer const *, std::ostream &, bool) const;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
///
|
2001-06-28 10:25:20 +00:00
|
|
|
|
Inset::Code lyxCode() const { return Inset::NO_CODE; }
|
2002-03-21 17:09:55 +00:00
|
|
|
|
|
2000-08-04 13:12:30 +00:00
|
|
|
|
///
|
2003-06-12 08:52:36 +00:00
|
|
|
|
InsetCommandParams const & params() const { return p_; }
|
1999-09-27 18:44:28 +00:00
|
|
|
|
///
|
2003-06-12 08:52:36 +00:00
|
|
|
|
virtual dispatch_result localDispatch(FuncRequest const & cmd);
|
|
|
|
|
///
|
|
|
|
|
string const & getContents() const { return p_.getContents(); }
|
|
|
|
|
///
|
|
|
|
|
void setContents(string const & c) { p_.setContents(c); }
|
1999-09-27 18:44:28 +00:00
|
|
|
|
///
|
2000-07-27 08:55:59 +00:00
|
|
|
|
string const & getOptions() const { return p_.getOptions(); }
|
2003-06-12 08:52:36 +00:00
|
|
|
|
|
|
|
|
|
protected:
|
1999-09-27 18:44:28 +00:00
|
|
|
|
///
|
2003-06-12 08:52:36 +00:00
|
|
|
|
string const getCommand() const { return p_.getCommand(); }
|
|
|
|
|
///
|
|
|
|
|
string const & getCmdName() const { return p_.getCmdName(); }
|
1999-09-27 18:44:28 +00:00
|
|
|
|
///
|
2000-07-27 08:55:59 +00:00
|
|
|
|
void setCmdName(string const & n) { p_.setCmdName(n); }
|
1999-09-27 18:44:28 +00:00
|
|
|
|
///
|
2000-07-27 08:55:59 +00:00
|
|
|
|
void setOptions(string const & o) { p_.setOptions(o); }
|
1999-09-27 18:44:28 +00:00
|
|
|
|
///
|
2000-07-27 08:55:59 +00:00
|
|
|
|
void setParams(InsetCommandParams const &);
|
2003-03-09 09:38:47 +00:00
|
|
|
|
///
|
2003-06-12 08:52:36 +00:00
|
|
|
|
virtual BufferView * view() const;
|
|
|
|
|
/// This should provide the text for the button
|
|
|
|
|
virtual string const getScreenLabel(Buffer const *) const = 0;
|
2002-02-27 15:19:21 +00:00
|
|
|
|
|
2000-06-07 08:53:40 +00:00
|
|
|
|
private:
|
2000-07-27 08:55:59 +00:00
|
|
|
|
///
|
|
|
|
|
InsetCommandParams p_;
|
2003-06-12 08:52:36 +00:00
|
|
|
|
mutable bool set_label_;
|
|
|
|
|
mutable ButtonRenderer button_;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
};
|
|
|
|
|
|
2003-02-25 14:51:38 +00:00
|
|
|
|
|
|
|
|
|
class InsetCommandMailer : public MailInset {
|
|
|
|
|
public:
|
|
|
|
|
///
|
|
|
|
|
InsetCommandMailer(string const & name, InsetCommand & inset);
|
|
|
|
|
///
|
2003-03-10 13:33:39 +00:00
|
|
|
|
virtual InsetBase & inset() const { return inset_; }
|
2003-02-25 14:51:38 +00:00
|
|
|
|
///
|
|
|
|
|
virtual string const & name() const { return name_; }
|
|
|
|
|
///
|
|
|
|
|
virtual string const inset2string() const;
|
|
|
|
|
///
|
|
|
|
|
static void string2params(string const &, InsetCommandParams &);
|
|
|
|
|
///
|
2003-02-27 13:26:07 +00:00
|
|
|
|
static string const params2string(string const & name,
|
|
|
|
|
InsetCommandParams const &);
|
2003-02-25 14:51:38 +00:00
|
|
|
|
private:
|
|
|
|
|
///
|
|
|
|
|
string const name_;
|
|
|
|
|
///
|
|
|
|
|
InsetCommand & inset_;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
#endif
|