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
|
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
|
* Full author contact details are available in file CREDITS.
|
2002-09-25 14:26:13 +00:00
|
|
|
|
*/
|
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-10-10 21:08:55 +00:00
|
|
|
|
#include "render_button.h"
|
2003-02-25 14:51:38 +00:00
|
|
|
|
#include "mailinset.h"
|
2004-01-20 14:25:24 +00:00
|
|
|
|
#include "cursor.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-07-25 21:20:24 +00:00
|
|
|
|
class InsetCommand : public InsetOld {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
public:
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2004-01-20 14:25:24 +00:00
|
|
|
|
InsetCommand(InsetCommandParams const &, std::string const & mailer_name);
|
2003-12-11 15:23:15 +00:00
|
|
|
|
///
|
|
|
|
|
~InsetCommand();
|
2003-05-26 09:13:55 +00:00
|
|
|
|
///
|
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
|
|
|
|
///
|
2003-08-28 07:41:31 +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
|
|
|
|
///
|
2003-08-28 07:41:31 +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
|
2003-10-06 15:43:21 +00:00
|
|
|
|
void scanCommand(std::string const & c) { p_.scanCommand(c); };
|
2002-03-21 17:09:55 +00:00
|
|
|
|
///
|
2003-08-28 07:41:31 +00:00
|
|
|
|
virtual int latex(Buffer const &, std::ostream &,
|
2003-11-05 12:06:20 +00:00
|
|
|
|
OutputParams const &) const;
|
2000-03-06 02:42:40 +00:00
|
|
|
|
///
|
2003-11-05 12:06:20 +00:00
|
|
|
|
int plaintext(Buffer const &, std::ostream &,
|
|
|
|
|
OutputParams const &) const;
|
2000-04-24 20:58:23 +00:00
|
|
|
|
///
|
2003-10-31 18:45:43 +00:00
|
|
|
|
virtual int linuxdoc(Buffer const &, std::ostream &,
|
2003-11-05 12:06:20 +00:00
|
|
|
|
OutputParams const &) const;
|
2000-03-06 02:42:40 +00:00
|
|
|
|
///
|
2003-10-31 18:45:43 +00:00
|
|
|
|
virtual int docbook(Buffer const &, std::ostream &,
|
2003-11-05 12:06:20 +00:00
|
|
|
|
OutputParams const & runparams) const;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
///
|
2003-07-25 21:20:24 +00:00
|
|
|
|
InsetOld::Code lyxCode() const { return InsetOld::NO_CODE; }
|
2003-10-29 10:47:21 +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-10-06 15:43:21 +00:00
|
|
|
|
std::string const & getContents() const { return p_.getContents(); }
|
2003-06-12 08:52:36 +00:00
|
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
|
void setContents(std::string const & c) { p_.setContents(c); }
|
1999-09-27 18:44:28 +00:00
|
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
|
std::string const & getOptions() const { return p_.getOptions(); }
|
2003-09-04 14:02:05 +00:00
|
|
|
|
///
|
2003-10-10 21:08:55 +00:00
|
|
|
|
RenderButton & button() const { return button_; }
|
2003-09-09 18:27:24 +00:00
|
|
|
|
|
2003-06-12 08:52:36 +00:00
|
|
|
|
protected:
|
2003-10-17 18:01:15 +00:00
|
|
|
|
///
|
2004-02-16 11:58:51 +00:00
|
|
|
|
void priv_dispatch(LCursor & cur, FuncRequest const & cmd);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
|
std::string const getCommand() const { return p_.getCommand(); }
|
2003-06-12 08:52:36 +00:00
|
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
|
std::string const & getCmdName() const { return p_.getCmdName(); }
|
1999-09-27 18:44:28 +00:00
|
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
|
void setCmdName(std::string const & n) { p_.setCmdName(n); }
|
1999-09-27 18:44:28 +00:00
|
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
|
void setOptions(std::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-06-12 08:52:36 +00:00
|
|
|
|
/// This should provide the text for the button
|
2003-10-06 15:43:21 +00:00
|
|
|
|
virtual std::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-12-11 15:23:15 +00:00
|
|
|
|
std::string mailer_name_;
|
2003-06-12 08:52:36 +00:00
|
|
|
|
mutable bool set_label_;
|
2003-10-10 21:08:55 +00:00
|
|
|
|
mutable RenderButton button_;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
};
|
|
|
|
|
|
2003-02-25 14:51:38 +00:00
|
|
|
|
|
|
|
|
|
class InsetCommandMailer : public MailInset {
|
|
|
|
|
public:
|
|
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
|
InsetCommandMailer(std::string const & name, InsetCommand & inset);
|
2003-02-25 14:51:38 +00:00
|
|
|
|
///
|
2003-03-10 13:33:39 +00:00
|
|
|
|
virtual InsetBase & inset() const { return inset_; }
|
2003-02-25 14:51:38 +00:00
|
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
|
virtual std::string const & name() const { return name_; }
|
2003-02-25 14:51:38 +00:00
|
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
|
virtual std::string const inset2string(Buffer const &) const;
|
2003-02-25 14:51:38 +00:00
|
|
|
|
///
|
2003-12-11 15:23:15 +00:00
|
|
|
|
static void string2params(std::string const &, std::string const & name,
|
|
|
|
|
InsetCommandParams &);
|
2003-02-25 14:51:38 +00:00
|
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
|
static std::string const params2string(std::string const & name,
|
2003-12-11 15:23:15 +00:00
|
|
|
|
InsetCommandParams const &);
|
2003-02-25 14:51:38 +00:00
|
|
|
|
private:
|
|
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
|
std::string const name_;
|
2003-02-25 14:51:38 +00:00
|
|
|
|
///
|
|
|
|
|
InsetCommand & inset_;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
#endif
|