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
|
|
|
|
|
|
|
|
|
|
#include "button_inset.h"
|
|
|
|
|
|
2002-09-11 08:26:02 +00:00
|
|
|
|
/// Inset for things like \name[options]{contents}
|
2002-06-24 15:51:35 +00:00
|
|
|
|
class CommandInset : public ButtonInset {
|
|
|
|
|
public:
|
|
|
|
|
/// name, contents, options deliminited by '|++|'
|
|
|
|
|
explicit CommandInset(string const & data);
|
|
|
|
|
///
|
|
|
|
|
MathInset * clone() const;
|
|
|
|
|
///
|
|
|
|
|
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
|
|
|
|
///
|
|
|
|
|
string screenLabel() const;
|
|
|
|
|
public:
|
|
|
|
|
string name_;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|