1999-09-27 18:44:28 +00:00
|
|
|
// -*- C++ -*-
|
2002-09-25 14:26:13 +00:00
|
|
|
/**
|
2007-04-25 01:24:38 +00:00
|
|
|
* \file InsetCommand.h
|
2002-09-25 14:26:13 +00:00
|
|
|
* 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
|
2008-11-14 15:58:50 +00:00
|
|
|
* \author Lars Gullik Bjø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
|
|
|
|
2008-03-27 22:26:24 +00:00
|
|
|
#ifndef INSETCOMMAND_H
|
|
|
|
#define INSETCOMMAND_H
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2007-04-29 13:39:47 +00:00
|
|
|
#include "Inset.h"
|
2007-04-25 01:24:38 +00:00
|
|
|
#include "InsetCommandParams.h"
|
|
|
|
#include "RenderButton.h"
|
2007-04-26 14:56:30 +00:00
|
|
|
#include "Cursor.h"
|
2004-01-20 14:25:24 +00:00
|
|
|
|
2000-08-01 17:33:32 +00:00
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
namespace lyx {
|
|
|
|
|
|
|
|
|
2008-03-27 22:26:24 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// InsetCommand
|
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
// Created by Alejandro 970222
|
2008-03-27 22:26:24 +00:00
|
|
|
// Used to insert a LaTeX command automatically.
|
2000-07-27 08:55:59 +00:00
|
|
|
|
2008-03-27 22:26:24 +00:00
|
|
|
class InsetCommand : public Inset
|
|
|
|
{
|
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();
|
2008-03-27 22:26:24 +00:00
|
|
|
|
|
|
|
/// returns true if params are successfully read
|
|
|
|
static bool string2params(std::string const &, std::string const & name,
|
|
|
|
InsetCommandParams &);
|
2003-05-26 09:13:55 +00:00
|
|
|
///
|
2008-03-27 22:26:24 +00:00
|
|
|
static std::string params2string(std::string const & name,
|
|
|
|
InsetCommandParams const &);
|
2007-09-21 20:39:47 +00:00
|
|
|
///
|
2008-03-27 22:26:24 +00:00
|
|
|
InsetCommandParams const & params() const { return p_; }
|
2003-06-12 08:52:36 +00:00
|
|
|
///
|
2008-03-27 22:26:24 +00:00
|
|
|
void setParams(InsetCommandParams const &);
|
|
|
|
///
|
|
|
|
void setParam(std::string const & name, docstring const & value);
|
|
|
|
///
|
|
|
|
docstring const & getParam(std::string const & name) const;
|
|
|
|
/// FIXME Remove
|
|
|
|
docstring const getFirstNonOptParam() const { return p_.getFirstNonOptParam(); }
|
|
|
|
/// update label and references.
|
|
|
|
virtual void updateCommand(docstring const &, bool) {}
|
|
|
|
|
|
|
|
protected:
|
2003-06-03 15:10:14 +00:00
|
|
|
///
|
2008-02-27 20:43:16 +00:00
|
|
|
void write(std::ostream & os) const { p_.write(os); }
|
2000-07-13 09:38:34 +00:00
|
|
|
///
|
2008-02-27 20:43:16 +00:00
|
|
|
void read(Lexer & lex) { p_.read(lex); }
|
2002-03-21 17:09:55 +00:00
|
|
|
///
|
2008-03-27 22:26:24 +00:00
|
|
|
void doDispatch(Cursor & cur, FuncRequest & cmd);
|
|
|
|
///
|
2008-04-27 18:03:21 +00:00
|
|
|
bool getStatus(Cursor & cur, FuncRequest const & cmd, FuncStatus &) const;
|
|
|
|
///
|
2008-03-27 22:26:24 +00:00
|
|
|
docstring const getCommand() const { return p_.getCommand(); }
|
|
|
|
///
|
|
|
|
std::string const & getCmdName() const { return p_.getCmdName(); }
|
|
|
|
///
|
|
|
|
void setCmdName(std::string const & n) { p_.setCmdName(n); }
|
|
|
|
|
|
|
|
private:
|
|
|
|
///
|
|
|
|
void metrics(MetricsInfo &, Dimension &) const;
|
|
|
|
///
|
|
|
|
Dimension const dimension(BufferView const &) const { return button_.dimension(); }
|
|
|
|
///
|
|
|
|
void draw(PainterInfo & pi, int x, int y) const;
|
|
|
|
///
|
2008-02-27 20:43:16 +00:00
|
|
|
int latex(odocstream &, OutputParams const &) const;
|
2000-03-06 02:42:40 +00:00
|
|
|
///
|
2008-02-27 20:43:16 +00:00
|
|
|
int plaintext(odocstream &, OutputParams const &) const;
|
2000-04-24 20:58:23 +00:00
|
|
|
///
|
2008-02-27 20:43:16 +00:00
|
|
|
int docbook(odocstream &, OutputParams const & runparams) const;
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
2007-10-13 09:04:52 +00:00
|
|
|
InsetCode lyxCode() const { return NO_CODE; }
|
2000-08-04 13:12:30 +00:00
|
|
|
///
|
2008-02-10 19:52:45 +00:00
|
|
|
void edit(Cursor & cur, bool front,
|
2008-02-11 08:20:13 +00:00
|
|
|
EntryDirection entry_from = ENTRY_DIRECTION_IGNORE);
|
2004-03-05 14:49:10 +00:00
|
|
|
///
|
2003-10-10 21:08:55 +00:00
|
|
|
RenderButton & button() const { return button_; }
|
2006-12-04 04:31:18 +00:00
|
|
|
///
|
|
|
|
bool setMouseHover(bool mouse_hover);
|
2007-10-25 04:13:56 +00:00
|
|
|
/// Return parameter information for command cmdName.
|
|
|
|
/// Not implemented here. Must be implemented in derived class.
|
2008-02-23 22:01:02 +00:00
|
|
|
static ParamInfo const & findInfo(std::string const & cmdName);
|
2007-10-25 04:13:56 +00:00
|
|
|
/// Return default command for this inset.
|
|
|
|
/// Not implemented here. Must be implemented in derived class.
|
|
|
|
static std::string defaultCommand();
|
|
|
|
/// Whether this is a command this inset can represent.
|
|
|
|
/// Not implemented here. Must be implemented in derived class.
|
|
|
|
static bool isCompatibleCommand(std::string const & cmd);
|
2003-10-17 18:01:15 +00:00
|
|
|
///
|
2008-03-27 22:26:24 +00:00
|
|
|
docstring contextMenu(BufferView const & bv, int x, int y) const;
|
2003-06-12 08:52:36 +00:00
|
|
|
/// This should provide the text for the button
|
2008-02-27 20:43:16 +00:00
|
|
|
virtual docstring screenLabel() const = 0;
|
2009-04-09 22:08:00 +00:00
|
|
|
/// show the Label dialog
|
|
|
|
bool showInsetDialog(BufferView * bv) const;
|
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_;
|
2007-04-29 12:32:14 +00:00
|
|
|
///
|
2003-12-11 15:23:15 +00:00
|
|
|
std::string mailer_name_;
|
2006-12-04 04:31:18 +00:00
|
|
|
/// changes color when mouse enters/leaves this inset
|
|
|
|
bool mouse_hover_;
|
2007-04-29 12:32:14 +00:00
|
|
|
///
|
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
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
} // namespace lyx
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
#endif
|