2002-09-11 08:26:02 +00:00
|
|
|
|
// -*- C++ -*-
|
|
|
|
|
|
2002-12-01 22:59:25 +00:00
|
|
|
|
/**
|
2002-09-11 08:26:02 +00:00
|
|
|
|
* \file command_inset.h
|
|
|
|
|
*
|
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
|
*
|
|
|
|
|
* \author Andr<EFBFBD> P<EFBFBD>nitz
|
|
|
|
|
*
|
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
2002-06-24 15:51:35 +00:00
|
|
|
|
#ifndef COMMAND_INSET_H
|
|
|
|
|
#define COMMAND_INSET_H
|
|
|
|
|
|
2003-06-12 08:52:36 +00:00
|
|
|
|
#include "math_nestinset.h"
|
|
|
|
|
#include "insets/renderers.h"
|
|
|
|
|
|
2002-06-24 15:51:35 +00:00
|
|
|
|
|
2002-09-11 08:26:02 +00:00
|
|
|
|
/// Inset for things like \name[options]{contents}
|
2003-06-12 08:52:36 +00:00
|
|
|
|
class CommandInset : public MathNestInset {
|
2002-06-24 15:51:35 +00:00
|
|
|
|
public:
|
2003-03-04 18:54:56 +00:00
|
|
|
|
///
|
|
|
|
|
explicit CommandInset(string const & name);
|
2002-06-24 15:51:35 +00:00
|
|
|
|
///
|
2003-06-16 11:49:38 +00:00
|
|
|
|
InsetBase * clone() const;
|
2002-06-24 15:51:35 +00:00
|
|
|
|
///
|
2003-06-12 08:52:36 +00:00
|
|
|
|
void metrics(MetricsInfo & mi, Dimension & dim) const;
|
|
|
|
|
///
|
|
|
|
|
void draw(PainterInfo & pi, int x, int y) const;
|
|
|
|
|
///
|
2002-06-24 15:51:35 +00:00
|
|
|
|
void write(WriteStream & os) const;
|
|
|
|
|
///
|
|
|
|
|
//void infoize(std::ostream & os) const;
|
|
|
|
|
///
|
2003-02-18 11:47:16 +00:00
|
|
|
|
dispatch_result dispatch(FuncRequest const & cmd, idx_type & idx, pos_type & pos);
|
2002-06-24 15:51:35 +00:00
|
|
|
|
///
|
2003-06-12 08:52:36 +00:00
|
|
|
|
virtual string const screenLabel() const;
|
|
|
|
|
/// generate something that will be understood by the Dialogs.
|
2003-03-04 16:39:13 +00:00
|
|
|
|
string const createDialogStr(string const & name) const;
|
2003-06-12 08:52:36 +00:00
|
|
|
|
|
|
|
|
|
string const & commandname() const { return name_; }
|
|
|
|
|
|
|
|
|
|
private:
|
2002-06-24 15:51:35 +00:00
|
|
|
|
string name_;
|
2003-06-12 08:52:36 +00:00
|
|
|
|
mutable bool set_label_;
|
|
|
|
|
mutable ButtonRenderer button_;
|
2002-06-24 15:51:35 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|