2003-08-19 13:00:56 +00:00
|
|
|
|
// -*- C++ -*-
|
|
|
|
|
/**
|
2006-09-17 09:14:18 +00:00
|
|
|
|
* \file InsetMathRef.h
|
2003-08-19 13:00:56 +00:00
|
|
|
|
* 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 REF_INSET_H
|
|
|
|
|
#define REF_INSET_H
|
|
|
|
|
|
2002-09-11 09:14:57 +00:00
|
|
|
|
|
2006-09-17 09:14:18 +00:00
|
|
|
|
#include "InsetMathCommand.h"
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace lyx {
|
2004-11-02 11:25:20 +00:00
|
|
|
|
class Buffer;
|
2002-06-24 15:51:35 +00:00
|
|
|
|
|
2002-12-01 22:59:25 +00:00
|
|
|
|
// for \ref
|
2002-06-24 15:51:35 +00:00
|
|
|
|
class RefInset : public CommandInset {
|
|
|
|
|
public:
|
|
|
|
|
///
|
|
|
|
|
RefInset();
|
|
|
|
|
///
|
2006-10-22 10:15:23 +00:00
|
|
|
|
explicit RefInset(docstring const & data);
|
2002-06-24 15:51:35 +00:00
|
|
|
|
///
|
|
|
|
|
//void write(WriteStream & os) const;
|
|
|
|
|
///
|
2006-10-22 10:15:23 +00:00
|
|
|
|
void infoize(odocstream & os) const;
|
2002-06-24 15:51:35 +00:00
|
|
|
|
///
|
2006-10-21 00:16:43 +00:00
|
|
|
|
docstring const screenLabel() const;
|
2002-06-24 15:51:35 +00:00
|
|
|
|
///
|
|
|
|
|
void validate(LaTeXFeatures & features) const;
|
2003-02-25 18:21:48 +00:00
|
|
|
|
///
|
|
|
|
|
virtual RefInset * asRefInset() { return this; }
|
2002-06-24 15:51:35 +00:00
|
|
|
|
|
|
|
|
|
/// docbook output
|
2006-10-21 00:16:43 +00:00
|
|
|
|
int docbook(Buffer const & buf, odocstream & os, OutputParams const &) const;
|
2007-04-06 08:30:37 +00:00
|
|
|
|
/// generate something that will be understood by the Dialogs.
|
|
|
|
|
std::string const createDialogStr(std::string const & name) const;
|
2002-06-24 15:51:35 +00:00
|
|
|
|
|
2003-02-13 08:12:51 +00:00
|
|
|
|
struct ref_type_info {
|
2002-06-24 15:51:35 +00:00
|
|
|
|
///
|
2006-10-22 10:15:23 +00:00
|
|
|
|
docstring latex_name;
|
2002-06-24 15:51:35 +00:00
|
|
|
|
///
|
2006-10-22 10:15:23 +00:00
|
|
|
|
docstring gui_name;
|
2002-06-24 15:51:35 +00:00
|
|
|
|
///
|
2006-10-22 10:15:23 +00:00
|
|
|
|
docstring short_gui_name;
|
2002-06-24 15:51:35 +00:00
|
|
|
|
};
|
2003-02-13 08:12:51 +00:00
|
|
|
|
static ref_type_info types[];
|
2002-06-24 15:51:35 +00:00
|
|
|
|
///
|
2006-10-22 10:15:23 +00:00
|
|
|
|
static int getType(docstring const & name);
|
2002-06-24 15:51:35 +00:00
|
|
|
|
///
|
2006-10-22 10:15:23 +00:00
|
|
|
|
static docstring const & getName(int type);
|
2003-10-17 18:01:15 +00:00
|
|
|
|
protected:
|
2005-11-22 13:52:25 +00:00
|
|
|
|
///
|
2004-11-24 21:58:42 +00:00
|
|
|
|
virtual void doDispatch(LCursor & cur, FuncRequest & cmd);
|
2005-11-22 13:52:25 +00:00
|
|
|
|
///
|
|
|
|
|
bool getStatus(LCursor &, FuncRequest const &, FuncStatus &) const;
|
2005-02-23 12:01:50 +00:00
|
|
|
|
private:
|
|
|
|
|
///
|
|
|
|
|
virtual std::auto_ptr<InsetBase> doClone() const;
|
2002-06-24 15:51:35 +00:00
|
|
|
|
};
|
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace lyx
|
2002-06-24 15:51:35 +00:00
|
|
|
|
#endif
|