2002-09-12 14:58:06 +00:00
|
|
|
|
/**
|
|
|
|
|
* \file factory.C
|
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
|
*
|
|
|
|
|
* \author Andr<EFBFBD> P<EFBFBD>nitz
|
|
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
|
* Full author contact details are available in file CREDITS.
|
2002-09-12 14:58:06 +00:00
|
|
|
|
*/
|
2002-08-27 10:14:56 +00:00
|
|
|
|
|
2002-11-04 00:15:56 +00:00
|
|
|
|
#include <config.h>
|
|
|
|
|
|
2003-09-05 16:31:30 +00:00
|
|
|
|
#include "factory.h"
|
2003-09-09 11:24:33 +00:00
|
|
|
|
|
2002-08-27 10:14:56 +00:00
|
|
|
|
#include "buffer.h"
|
|
|
|
|
#include "BufferView.h"
|
2003-09-09 11:24:33 +00:00
|
|
|
|
#include "bufferparams.h"
|
|
|
|
|
#include "debug.h"
|
|
|
|
|
#include "FloatList.h"
|
|
|
|
|
#include "funcrequest.h"
|
2003-09-16 10:54:23 +00:00
|
|
|
|
#include "LColor.h"
|
2003-03-12 11:52:23 +00:00
|
|
|
|
#include "lyxlex.h"
|
2003-11-03 17:47:28 +00:00
|
|
|
|
#include "paragraph.h"
|
2002-08-28 17:33:42 +00:00
|
|
|
|
|
2003-02-21 09:20:18 +00:00
|
|
|
|
#include "insets/insetbibitem.h"
|
2003-02-26 19:28:38 +00:00
|
|
|
|
#include "insets/insetbibtex.h"
|
2002-08-28 17:33:42 +00:00
|
|
|
|
#include "insets/insetcaption.h"
|
2003-02-26 19:28:38 +00:00
|
|
|
|
#include "insets/insetcite.h"
|
2003-11-12 14:38:26 +00:00
|
|
|
|
#include "insets/insetcharstyle.h"
|
2003-03-13 11:00:31 +00:00
|
|
|
|
#include "insets/insetenv.h"
|
2002-08-27 10:14:56 +00:00
|
|
|
|
#include "insets/insetert.h"
|
|
|
|
|
#include "insets/insetexternal.h"
|
|
|
|
|
#include "insets/insetfloat.h"
|
2003-03-12 11:52:23 +00:00
|
|
|
|
#include "insets/insetfloatlist.h"
|
2002-08-27 10:14:56 +00:00
|
|
|
|
#include "insets/insetfoot.h"
|
2003-03-07 18:44:57 +00:00
|
|
|
|
#include "insets/insetgraphics.h"
|
2003-03-11 11:52:05 +00:00
|
|
|
|
#include "insets/insethfill.h"
|
2003-03-05 14:59:37 +00:00
|
|
|
|
#include "insets/insetinclude.h"
|
2002-08-28 17:33:42 +00:00
|
|
|
|
#include "insets/insetindex.h"
|
2003-02-27 16:24:14 +00:00
|
|
|
|
#include "insets/insetlabel.h"
|
2003-10-27 12:41:26 +00:00
|
|
|
|
#include "insets/insetline.h"
|
2002-08-27 10:14:56 +00:00
|
|
|
|
#include "insets/insetmarginal.h"
|
|
|
|
|
#include "insets/insetnote.h"
|
2003-10-07 07:42:15 +00:00
|
|
|
|
#include "insets/insetbox.h"
|
2003-08-17 11:28:23 +00:00
|
|
|
|
#include "insets/insetbranch.h"
|
2002-08-27 10:14:56 +00:00
|
|
|
|
#include "insets/insetoptarg.h"
|
2003-10-27 12:41:26 +00:00
|
|
|
|
#include "insets/insetpagebreak.h"
|
2002-08-27 10:14:56 +00:00
|
|
|
|
#include "insets/insetref.h"
|
2003-05-22 10:40:57 +00:00
|
|
|
|
#include "insets/insetspace.h"
|
2002-08-27 15:56:32 +00:00
|
|
|
|
#include "insets/insettabular.h"
|
2002-08-28 17:33:42 +00:00
|
|
|
|
#include "insets/insettoc.h"
|
2002-08-29 13:05:55 +00:00
|
|
|
|
#include "insets/inseturl.h"
|
2003-11-28 15:53:34 +00:00
|
|
|
|
#include "insets/insetvspace.h"
|
2002-09-10 10:18:58 +00:00
|
|
|
|
#include "insets/insetwrap.h"
|
2004-01-26 10:13:15 +00:00
|
|
|
|
|
2003-03-12 11:52:23 +00:00
|
|
|
|
#include "mathed/formulamacro.h"
|
2004-01-26 10:13:15 +00:00
|
|
|
|
#include "mathed/math_hullinset.h"
|
2003-02-27 13:26:07 +00:00
|
|
|
|
|
2002-08-27 15:56:32 +00:00
|
|
|
|
#include "frontends/Dialogs.h"
|
|
|
|
|
#include "frontends/LyXView.h"
|
2004-01-26 10:13:15 +00:00
|
|
|
|
|
2003-03-12 11:52:23 +00:00
|
|
|
|
#include "support/lstrings.h"
|
2003-09-05 22:17:02 +00:00
|
|
|
|
#include "support/std_sstream.h"
|
2002-08-27 10:14:56 +00:00
|
|
|
|
|
2003-10-01 16:27:36 +00:00
|
|
|
|
#include <boost/assert.hpp>
|
|
|
|
|
|
2003-09-09 22:13:45 +00:00
|
|
|
|
using lyx::support::compare_ascii_no_case;
|
2003-06-30 23:56:22 +00:00
|
|
|
|
|
2003-11-03 17:47:28 +00:00
|
|
|
|
using std::auto_ptr;
|
2002-09-03 12:31:22 +00:00
|
|
|
|
using std::endl;
|
2003-10-06 15:43:21 +00:00
|
|
|
|
using std::string;
|
2002-08-27 10:14:56 +00:00
|
|
|
|
|
2003-09-05 22:17:02 +00:00
|
|
|
|
|
2004-01-26 10:13:15 +00:00
|
|
|
|
InsetBase * createInset(BufferView * bv, FuncRequest const & cmd)
|
2002-08-27 10:14:56 +00:00
|
|
|
|
{
|
2003-09-09 09:47:59 +00:00
|
|
|
|
BufferParams const & params = bv->buffer()->params();
|
2002-08-27 10:14:56 +00:00
|
|
|
|
|
|
|
|
|
switch (cmd.action) {
|
2003-03-11 11:52:05 +00:00
|
|
|
|
case LFUN_HFILL:
|
2003-09-21 16:02:54 +00:00
|
|
|
|
return new InsetHFill;
|
2003-03-11 11:52:05 +00:00
|
|
|
|
|
2003-10-27 12:41:26 +00:00
|
|
|
|
case LFUN_INSERT_LINE:
|
|
|
|
|
return new InsetLine;
|
|
|
|
|
|
|
|
|
|
case LFUN_INSERT_PAGEBREAK:
|
|
|
|
|
return new InsetPagebreak;
|
|
|
|
|
|
2003-11-12 14:38:26 +00:00
|
|
|
|
case LFUN_INSERT_CHARSTYLE: {
|
|
|
|
|
string s = cmd.getArg(0);
|
|
|
|
|
CharStyles::iterator found_cs = params.getLyXTextClass().charstyle(s);
|
|
|
|
|
return new InsetCharStyle(params, found_cs);
|
|
|
|
|
}
|
|
|
|
|
|
2003-10-27 12:41:26 +00:00
|
|
|
|
case LFUN_INSERT_NOTE: {
|
|
|
|
|
string arg = cmd.getArg(0);
|
|
|
|
|
if (arg.empty())
|
|
|
|
|
arg = "Note";
|
|
|
|
|
return new InsetNote(params, arg);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case LFUN_INSERT_BOX: {
|
|
|
|
|
string arg = cmd.getArg(0);
|
|
|
|
|
if (arg.empty())
|
|
|
|
|
arg = "Boxed";
|
|
|
|
|
return new InsetBox(params, arg);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case LFUN_INSERT_BRANCH: {
|
|
|
|
|
string arg = cmd.getArg(0);
|
|
|
|
|
if (arg.empty())
|
|
|
|
|
arg = "none";
|
2003-12-14 16:33:56 +00:00
|
|
|
|
return new InsetBranch(params, InsetBranchParams(arg));
|
2003-10-27 12:41:26 +00:00
|
|
|
|
}
|
2003-08-17 11:28:23 +00:00
|
|
|
|
|
2003-02-26 19:28:38 +00:00
|
|
|
|
case LFUN_INSET_ERT:
|
|
|
|
|
return new InsetERT(params);
|
|
|
|
|
|
|
|
|
|
case LFUN_INSET_FOOTNOTE:
|
|
|
|
|
return new InsetFoot(params);
|
|
|
|
|
|
|
|
|
|
case LFUN_INSET_MARGINAL:
|
|
|
|
|
return new InsetMarginal(params);
|
|
|
|
|
|
|
|
|
|
case LFUN_INSET_OPTARG:
|
|
|
|
|
return new InsetOptArg(params);
|
|
|
|
|
|
|
|
|
|
case LFUN_INSERT_BIBITEM:
|
|
|
|
|
return new InsetBibitem(InsetCommandParams("bibitem"));
|
|
|
|
|
|
|
|
|
|
case LFUN_INSET_FLOAT:
|
|
|
|
|
// check if the float type exists
|
|
|
|
|
if (params.getLyXTextClass().floats().typeExist(cmd.argument))
|
|
|
|
|
return new InsetFloat(params, cmd.argument);
|
|
|
|
|
lyxerr << "Non-existent float type: " << cmd.argument << endl;
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
case LFUN_INSET_WIDE_FLOAT:
|
|
|
|
|
// check if the float type exists
|
|
|
|
|
if (params.getLyXTextClass().floats().typeExist(cmd.argument)) {
|
2003-11-03 17:47:28 +00:00
|
|
|
|
auto_ptr<InsetFloat> p(new InsetFloat(params, cmd.argument));
|
2003-02-26 19:28:38 +00:00
|
|
|
|
p->wide(true, params);
|
2003-11-03 17:47:28 +00:00
|
|
|
|
return p.release();
|
2003-02-26 19:28:38 +00:00
|
|
|
|
}
|
|
|
|
|
lyxerr << "Non-existent float type: " << cmd.argument << endl;
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
case LFUN_INSET_WRAP:
|
|
|
|
|
if (cmd.argument == "figure")
|
|
|
|
|
return new InsetWrap(params, cmd.argument);
|
|
|
|
|
lyxerr << "Non-existent floatflt type: " << cmd.argument << endl;
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
case LFUN_INDEX_INSERT: {
|
|
|
|
|
// Try and generate a valid index entry.
|
|
|
|
|
InsetCommandParams icp("index");
|
|
|
|
|
string const contents = cmd.argument.empty() ?
|
2004-02-13 07:30:59 +00:00
|
|
|
|
bv->getLyXText()->getStringToIndex(bv->cursor()) :
|
2003-02-26 19:28:38 +00:00
|
|
|
|
cmd.argument;
|
|
|
|
|
icp.setContents(contents);
|
|
|
|
|
|
2003-02-27 13:26:07 +00:00
|
|
|
|
string data = InsetCommandMailer::params2string("index", icp);
|
2003-02-26 19:28:38 +00:00
|
|
|
|
LyXView * lv = bv->owner();
|
|
|
|
|
|
|
|
|
|
if (icp.getContents().empty()) {
|
|
|
|
|
lv->getDialogs().show("index", data, 0);
|
|
|
|
|
} else {
|
2004-01-15 17:34:44 +00:00
|
|
|
|
lv->dispatch(FuncRequest(LFUN_INSET_APPLY, data));
|
2002-08-28 17:33:42 +00:00
|
|
|
|
}
|
2003-02-26 19:28:38 +00:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
2002-08-28 17:33:42 +00:00
|
|
|
|
|
2003-02-26 19:28:38 +00:00
|
|
|
|
case LFUN_TABULAR_INSERT:
|
|
|
|
|
if (!cmd.argument.empty()) {
|
2003-09-05 22:17:02 +00:00
|
|
|
|
std::istringstream ss(cmd.argument);
|
2003-11-28 15:53:34 +00:00
|
|
|
|
int r = 0, c = 0;
|
2003-09-05 22:17:02 +00:00
|
|
|
|
ss >> r >> c;
|
|
|
|
|
if (r <= 0) r = 2;
|
|
|
|
|
if (c <= 0) c = 2;
|
2003-02-26 19:28:38 +00:00
|
|
|
|
return new InsetTabular(*bv->buffer(), r, c);
|
|
|
|
|
}
|
2003-03-09 20:29:58 +00:00
|
|
|
|
bv->owner()->getDialogs().show("tabularcreate");
|
2003-02-26 19:28:38 +00:00
|
|
|
|
return 0;
|
|
|
|
|
|
2004-01-20 14:25:24 +00:00
|
|
|
|
case LFUN_INSET_CAPTION: {
|
2004-03-18 12:53:43 +00:00
|
|
|
|
UpdatableInset * up = bv->cursor().inset().asUpdatableInset();
|
2004-01-20 14:25:24 +00:00
|
|
|
|
if (!up) {
|
|
|
|
|
auto_ptr<InsetCaption> inset(new InsetCaption(params));
|
|
|
|
|
inset->setAutoBreakRows(true);
|
|
|
|
|
inset->setDrawFrame(InsetText::LOCKED);
|
|
|
|
|
inset->setFrameColor(LColor::captionframe);
|
|
|
|
|
return inset.release();
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
2003-11-10 09:06:48 +00:00
|
|
|
|
}
|
2003-02-26 19:28:38 +00:00
|
|
|
|
|
|
|
|
|
case LFUN_INDEX_PRINT:
|
|
|
|
|
return new InsetPrintIndex(InsetCommandParams("printindex"));
|
|
|
|
|
|
|
|
|
|
case LFUN_TOC_INSERT:
|
|
|
|
|
return new InsetTOC(InsetCommandParams("tableofcontents"));
|
2002-08-29 13:05:55 +00:00
|
|
|
|
|
2003-03-13 11:00:31 +00:00
|
|
|
|
case LFUN_ENVIRONMENT_INSERT:
|
|
|
|
|
return new InsetEnvironment(params, cmd.argument);
|
|
|
|
|
|
2003-02-26 19:28:38 +00:00
|
|
|
|
#if 0
|
|
|
|
|
case LFUN_INSET_LIST:
|
|
|
|
|
return new InsetList;
|
2002-08-27 10:14:56 +00:00
|
|
|
|
|
2003-02-26 19:28:38 +00:00
|
|
|
|
case LFUN_INSET_THEOREM:
|
|
|
|
|
return new InsetTheorem;
|
|
|
|
|
#endif
|
|
|
|
|
|
2003-03-25 21:27:07 +00:00
|
|
|
|
case LFUN_INSET_INSERT: {
|
2003-02-27 13:26:07 +00:00
|
|
|
|
string const name = cmd.getArg(0);
|
2003-02-26 19:28:38 +00:00
|
|
|
|
|
2003-02-27 13:26:07 +00:00
|
|
|
|
if (name == "bibitem") {
|
|
|
|
|
InsetCommandParams icp;
|
2003-12-11 15:23:15 +00:00
|
|
|
|
InsetCommandMailer::string2params(name, cmd.argument,
|
|
|
|
|
icp);
|
2003-02-27 13:26:07 +00:00
|
|
|
|
return new InsetBibitem(icp);
|
2003-02-26 19:28:38 +00:00
|
|
|
|
|
2003-02-27 13:26:07 +00:00
|
|
|
|
} else if (name == "bibtex") {
|
2003-09-03 17:40:58 +00:00
|
|
|
|
InsetCommandParams icp;
|
2003-12-11 15:23:15 +00:00
|
|
|
|
InsetCommandMailer::string2params(name, cmd.argument,
|
|
|
|
|
icp);
|
2003-09-03 17:40:58 +00:00
|
|
|
|
return new InsetBibtex(icp);
|
2003-02-26 19:28:38 +00:00
|
|
|
|
|
2003-02-27 13:26:07 +00:00
|
|
|
|
} else if (name == "citation") {
|
|
|
|
|
InsetCommandParams icp;
|
2003-12-11 15:23:15 +00:00
|
|
|
|
InsetCommandMailer::string2params(name, cmd.argument,
|
|
|
|
|
icp);
|
2003-10-22 13:15:18 +00:00
|
|
|
|
return new InsetCitation(icp);
|
2003-02-26 19:28:38 +00:00
|
|
|
|
|
2003-02-27 13:26:07 +00:00
|
|
|
|
} else if (name == "ert") {
|
2003-12-02 07:15:42 +00:00
|
|
|
|
InsetCollapsable::CollapseStatus st;
|
|
|
|
|
InsetERTMailer::string2params(cmd.argument, st);
|
|
|
|
|
return new InsetERT(params, st);
|
2003-02-26 19:28:38 +00:00
|
|
|
|
|
2003-03-05 11:30:35 +00:00
|
|
|
|
} else if (name == "external") {
|
2004-01-15 17:34:44 +00:00
|
|
|
|
Buffer const & buffer = *bv->buffer();
|
2003-10-07 20:25:10 +00:00
|
|
|
|
InsetExternalParams iep;
|
2003-07-23 09:17:04 +00:00
|
|
|
|
InsetExternalMailer::string2params(cmd.argument,
|
2003-08-28 07:41:31 +00:00
|
|
|
|
buffer, iep);
|
2003-11-03 17:47:28 +00:00
|
|
|
|
auto_ptr<InsetExternal> inset(new InsetExternal);
|
2003-07-23 16:48:04 +00:00
|
|
|
|
inset->setParams(iep, buffer);
|
2003-11-03 17:47:28 +00:00
|
|
|
|
return inset.release();
|
2003-03-05 11:30:35 +00:00
|
|
|
|
|
2003-03-07 18:44:57 +00:00
|
|
|
|
} else if (name == "graphics") {
|
2004-01-15 17:34:44 +00:00
|
|
|
|
Buffer const & buffer = *bv->buffer();
|
2003-03-17 16:25:00 +00:00
|
|
|
|
InsetGraphicsParams igp;
|
2003-07-23 09:54:21 +00:00
|
|
|
|
InsetGraphicsMailer::string2params(cmd.argument,
|
|
|
|
|
buffer, igp);
|
2003-11-03 17:47:28 +00:00
|
|
|
|
auto_ptr<InsetGraphics> inset(new InsetGraphics);
|
2003-06-03 15:10:14 +00:00
|
|
|
|
inset->setParams(igp);
|
2003-11-03 17:47:28 +00:00
|
|
|
|
return inset.release();
|
2003-03-07 18:44:57 +00:00
|
|
|
|
|
2003-03-05 14:59:37 +00:00
|
|
|
|
} else if (name == "include") {
|
2003-09-19 10:16:33 +00:00
|
|
|
|
InsetCommandParams iip;
|
2003-03-05 14:59:37 +00:00
|
|
|
|
InsetIncludeMailer::string2params(cmd.argument, iip);
|
|
|
|
|
return new InsetInclude(iip);
|
|
|
|
|
|
2003-02-27 13:26:07 +00:00
|
|
|
|
} else if (name == "index") {
|
|
|
|
|
InsetCommandParams icp;
|
2003-12-11 15:23:15 +00:00
|
|
|
|
InsetCommandMailer::string2params(name, cmd.argument,
|
|
|
|
|
icp);
|
2003-02-27 13:26:07 +00:00
|
|
|
|
return new InsetIndex(icp);
|
|
|
|
|
|
2003-02-27 16:24:14 +00:00
|
|
|
|
} else if (name == "label") {
|
|
|
|
|
InsetCommandParams icp;
|
2003-12-11 15:23:15 +00:00
|
|
|
|
InsetCommandMailer::string2params(name, cmd.argument,
|
|
|
|
|
icp);
|
2003-02-27 16:24:14 +00:00
|
|
|
|
return new InsetLabel(icp);
|
|
|
|
|
|
2003-02-27 13:26:07 +00:00
|
|
|
|
} else if (name == "ref") {
|
|
|
|
|
InsetCommandParams icp;
|
2003-12-11 15:23:15 +00:00
|
|
|
|
InsetCommandMailer::string2params(name, cmd.argument,
|
|
|
|
|
icp);
|
2003-02-27 13:26:07 +00:00
|
|
|
|
return new InsetRef(icp, *bv->buffer());
|
|
|
|
|
|
|
|
|
|
} else if (name == "toc") {
|
|
|
|
|
InsetCommandParams icp;
|
2003-12-11 15:23:15 +00:00
|
|
|
|
InsetCommandMailer::string2params(name, cmd.argument,
|
|
|
|
|
icp);
|
2003-02-27 13:26:07 +00:00
|
|
|
|
return new InsetTOC(icp);
|
|
|
|
|
|
|
|
|
|
} else if (name == "url") {
|
|
|
|
|
InsetCommandParams icp;
|
2003-12-11 15:23:15 +00:00
|
|
|
|
InsetCommandMailer::string2params(name, cmd.argument,
|
|
|
|
|
icp);
|
2003-02-27 13:26:07 +00:00
|
|
|
|
return new InsetUrl(icp);
|
2003-11-28 15:53:34 +00:00
|
|
|
|
|
|
|
|
|
} else if (name == "vspace") {
|
|
|
|
|
VSpace vspace;
|
|
|
|
|
InsetVSpaceMailer::string2params(cmd.argument, vspace);
|
|
|
|
|
return new InsetVSpace(vspace);
|
2003-02-27 13:26:07 +00:00
|
|
|
|
}
|
2003-02-26 19:28:38 +00:00
|
|
|
|
}
|
2003-05-22 10:40:57 +00:00
|
|
|
|
|
|
|
|
|
case LFUN_SPACE_INSERT: {
|
|
|
|
|
string const name = cmd.argument;
|
|
|
|
|
if (name == "normal")
|
|
|
|
|
return new InsetSpace(InsetSpace::NORMAL);
|
|
|
|
|
else if (name == "protected")
|
|
|
|
|
return new InsetSpace(InsetSpace::PROTECTED);
|
|
|
|
|
else if (name == "thin")
|
|
|
|
|
return new InsetSpace(InsetSpace::THIN);
|
|
|
|
|
else if (name == "quad")
|
|
|
|
|
return new InsetSpace(InsetSpace::QUAD);
|
|
|
|
|
else if (name == "qquad")
|
|
|
|
|
return new InsetSpace(InsetSpace::QQUAD);
|
|
|
|
|
else if (name == "enspace")
|
|
|
|
|
return new InsetSpace(InsetSpace::ENSPACE);
|
|
|
|
|
else if (name == "enskip")
|
|
|
|
|
return new InsetSpace(InsetSpace::ENSKIP);
|
|
|
|
|
else if (name == "negthinspace")
|
|
|
|
|
return new InsetSpace(InsetSpace::NEGTHIN);
|
|
|
|
|
else if (name.empty())
|
|
|
|
|
lyxerr << "LyX function 'space' needs an argument." << endl;
|
|
|
|
|
else
|
|
|
|
|
lyxerr << "Wrong argument for LyX function 'space'." << endl;
|
|
|
|
|
}
|
|
|
|
|
|
2003-02-27 13:26:07 +00:00
|
|
|
|
break;
|
2003-02-26 19:28:38 +00:00
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2002-08-27 10:14:56 +00:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
2003-03-12 11:52:23 +00:00
|
|
|
|
|
|
|
|
|
|
2004-01-26 10:13:15 +00:00
|
|
|
|
InsetBase * readInset(LyXLex & lex, Buffer const & buf)
|
2003-03-12 11:52:23 +00:00
|
|
|
|
{
|
|
|
|
|
// consistency check
|
|
|
|
|
if (lex.getString() != "\\begin_inset") {
|
|
|
|
|
lyxerr << "Buffer::readInset: Consistency check failed."
|
|
|
|
|
<< endl;
|
|
|
|
|
}
|
|
|
|
|
|
2004-01-26 10:13:15 +00:00
|
|
|
|
auto_ptr<InsetBase> inset;
|
2003-03-12 11:52:23 +00:00
|
|
|
|
|
2003-11-12 14:38:26 +00:00
|
|
|
|
LyXTextClass tclass = buf.params().getLyXTextClass();
|
|
|
|
|
|
2003-03-12 11:52:23 +00:00
|
|
|
|
lex.next();
|
2003-11-12 14:38:26 +00:00
|
|
|
|
string tmptok = lex.getString();
|
2003-03-12 11:52:23 +00:00
|
|
|
|
|
|
|
|
|
// test the different insets
|
|
|
|
|
if (tmptok == "LatexCommand") {
|
|
|
|
|
InsetCommandParams inscmd;
|
|
|
|
|
inscmd.read(lex);
|
|
|
|
|
|
|
|
|
|
string const cmdName = inscmd.getCmdName();
|
|
|
|
|
|
|
|
|
|
// This strange command allows LyX to recognize "natbib" style
|
|
|
|
|
// citations: citet, citep, Citet etc.
|
|
|
|
|
if (compare_ascii_no_case(cmdName.substr(0,4), "cite") == 0) {
|
2003-11-03 17:47:28 +00:00
|
|
|
|
inset.reset(new InsetCitation(inscmd));
|
2003-03-12 11:52:23 +00:00
|
|
|
|
} else if (cmdName == "bibitem") {
|
|
|
|
|
lex.printError("Wrong place for bibitem");
|
2003-11-03 17:47:28 +00:00
|
|
|
|
inset.reset(new InsetBibitem(inscmd));
|
2003-09-03 17:40:58 +00:00
|
|
|
|
} else if (cmdName == "bibtex") {
|
2003-11-03 17:47:28 +00:00
|
|
|
|
inset.reset(new InsetBibtex(inscmd));
|
2003-03-12 11:52:23 +00:00
|
|
|
|
} else if (cmdName == "index") {
|
2003-11-03 17:47:28 +00:00
|
|
|
|
inset.reset(new InsetIndex(inscmd));
|
2003-03-12 11:52:23 +00:00
|
|
|
|
} else if (cmdName == "include") {
|
2003-11-03 17:47:28 +00:00
|
|
|
|
inset.reset(new InsetInclude(inscmd));
|
2003-03-12 11:52:23 +00:00
|
|
|
|
} else if (cmdName == "label") {
|
2003-11-03 17:47:28 +00:00
|
|
|
|
inset.reset(new InsetLabel(inscmd));
|
2003-03-12 11:52:23 +00:00
|
|
|
|
} else if (cmdName == "url"
|
|
|
|
|
|| cmdName == "htmlurl") {
|
2003-11-03 17:47:28 +00:00
|
|
|
|
inset.reset(new InsetUrl(inscmd));
|
2003-03-12 11:52:23 +00:00
|
|
|
|
} else if (cmdName == "ref"
|
2003-04-24 12:16:56 +00:00
|
|
|
|
|| cmdName == "eqref"
|
2003-03-12 11:52:23 +00:00
|
|
|
|
|| cmdName == "pageref"
|
|
|
|
|
|| cmdName == "vref"
|
|
|
|
|
|| cmdName == "vpageref"
|
|
|
|
|
|| cmdName == "prettyref") {
|
|
|
|
|
if (!inscmd.getOptions().empty()
|
|
|
|
|
|| !inscmd.getContents().empty()) {
|
2003-11-03 17:47:28 +00:00
|
|
|
|
inset.reset(new InsetRef(inscmd, buf));
|
2003-03-12 11:52:23 +00:00
|
|
|
|
}
|
|
|
|
|
} else if (cmdName == "tableofcontents") {
|
2003-11-03 17:47:28 +00:00
|
|
|
|
inset.reset(new InsetTOC(inscmd));
|
2003-03-12 11:52:23 +00:00
|
|
|
|
} else if (cmdName == "listofalgorithms") {
|
2003-11-03 17:47:28 +00:00
|
|
|
|
inset.reset(new InsetFloatList("algorithm"));
|
2003-03-12 11:52:23 +00:00
|
|
|
|
} else if (cmdName == "listoffigures") {
|
2003-11-03 17:47:28 +00:00
|
|
|
|
inset.reset(new InsetFloatList("figure"));
|
2003-03-12 11:52:23 +00:00
|
|
|
|
} else if (cmdName == "listoftables") {
|
2003-11-03 17:47:28 +00:00
|
|
|
|
inset.reset(new InsetFloatList("table"));
|
2003-03-12 11:52:23 +00:00
|
|
|
|
} else if (cmdName == "printindex") {
|
2003-11-03 17:47:28 +00:00
|
|
|
|
inset.reset(new InsetPrintIndex(inscmd));
|
2003-10-01 16:27:36 +00:00
|
|
|
|
} else {
|
2003-10-14 12:49:15 +00:00
|
|
|
|
lyxerr << "unknown CommandInset '" << cmdName
|
|
|
|
|
<< "'" << std::endl;
|
|
|
|
|
while (lex.isOK() && lex.getString() != "\\end_inset")
|
|
|
|
|
lex.next();
|
|
|
|
|
return 0;
|
2003-03-12 11:52:23 +00:00
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
if (tmptok == "Quotes") {
|
2003-11-03 17:47:28 +00:00
|
|
|
|
inset.reset(new InsetQuotes);
|
2003-03-12 11:52:23 +00:00
|
|
|
|
} else if (tmptok == "External") {
|
2003-11-03 17:47:28 +00:00
|
|
|
|
inset.reset(new InsetExternal);
|
2003-03-12 11:52:23 +00:00
|
|
|
|
} else if (tmptok == "FormulaMacro") {
|
2003-11-03 17:47:28 +00:00
|
|
|
|
inset.reset(new InsetFormulaMacro);
|
2003-03-12 11:52:23 +00:00
|
|
|
|
} else if (tmptok == "Formula") {
|
2004-01-26 10:13:15 +00:00
|
|
|
|
inset.reset(new MathHullInset);
|
2003-03-12 11:52:23 +00:00
|
|
|
|
} else if (tmptok == "Graphics") {
|
2003-11-03 17:47:28 +00:00
|
|
|
|
inset.reset(new InsetGraphics);
|
2003-12-10 17:28:14 +00:00
|
|
|
|
} else if (tmptok == "Note") {
|
2003-11-03 17:47:28 +00:00
|
|
|
|
inset.reset(new InsetNote(buf.params(), tmptok));
|
2003-12-10 21:48:40 +00:00
|
|
|
|
} else if (tmptok == "Box") {
|
2003-11-03 17:47:28 +00:00
|
|
|
|
inset.reset(new InsetBox(buf.params(), tmptok));
|
2003-11-12 14:38:26 +00:00
|
|
|
|
} else if (tmptok == "CharStyle") {
|
2003-11-28 10:12:04 +00:00
|
|
|
|
lex.next();
|
|
|
|
|
string s = lex.getString();
|
|
|
|
|
CharStyles::iterator found_cs = tclass.charstyle(s);
|
2003-11-12 14:38:26 +00:00
|
|
|
|
inset.reset(new InsetCharStyle(buf.params(), found_cs));
|
2003-08-17 11:28:23 +00:00
|
|
|
|
} else if (tmptok == "Branch") {
|
2003-12-14 16:33:56 +00:00
|
|
|
|
inset.reset(new InsetBranch(buf.params(),
|
|
|
|
|
InsetBranchParams()));
|
2003-03-12 11:52:23 +00:00
|
|
|
|
} else if (tmptok == "Include") {
|
|
|
|
|
InsetCommandParams p("Include");
|
2003-11-03 17:47:28 +00:00
|
|
|
|
inset.reset(new InsetInclude(p));
|
2003-03-13 11:42:12 +00:00
|
|
|
|
} else if (tmptok == "Environment") {
|
|
|
|
|
lex.next();
|
2003-11-03 17:47:28 +00:00
|
|
|
|
inset.reset(new InsetEnvironment(buf.params(), lex.getString()));
|
2003-03-12 11:52:23 +00:00
|
|
|
|
} else if (tmptok == "ERT") {
|
2003-11-03 17:47:28 +00:00
|
|
|
|
inset.reset(new InsetERT(buf.params()));
|
2003-05-22 10:40:57 +00:00
|
|
|
|
} else if (tmptok == "InsetSpace") {
|
2003-11-03 17:47:28 +00:00
|
|
|
|
inset.reset(new InsetSpace);
|
2003-03-12 11:52:23 +00:00
|
|
|
|
} else if (tmptok == "Tabular") {
|
2003-11-03 17:47:28 +00:00
|
|
|
|
inset.reset(new InsetTabular(buf));
|
2003-03-12 11:52:23 +00:00
|
|
|
|
} else if (tmptok == "Text") {
|
2003-11-03 17:47:28 +00:00
|
|
|
|
inset.reset(new InsetText(buf.params()));
|
2003-11-28 15:53:34 +00:00
|
|
|
|
} else if (tmptok == "VSpace") {
|
|
|
|
|
inset.reset(new InsetVSpace);
|
2003-03-12 11:52:23 +00:00
|
|
|
|
} else if (tmptok == "Foot") {
|
2003-11-03 17:47:28 +00:00
|
|
|
|
inset.reset(new InsetFoot(buf.params()));
|
2003-03-12 11:52:23 +00:00
|
|
|
|
} else if (tmptok == "Marginal") {
|
2003-11-03 17:47:28 +00:00
|
|
|
|
inset.reset(new InsetMarginal(buf.params()));
|
2003-03-12 11:52:23 +00:00
|
|
|
|
} else if (tmptok == "OptArg") {
|
2003-11-03 17:47:28 +00:00
|
|
|
|
inset.reset(new InsetOptArg(buf.params()));
|
2003-03-12 11:52:23 +00:00
|
|
|
|
} else if (tmptok == "Float") {
|
|
|
|
|
lex.next();
|
|
|
|
|
string tmptok = lex.getString();
|
2003-11-03 17:47:28 +00:00
|
|
|
|
inset.reset(new InsetFloat(buf.params(), tmptok));
|
2003-03-12 11:52:23 +00:00
|
|
|
|
} else if (tmptok == "Wrap") {
|
|
|
|
|
lex.next();
|
|
|
|
|
string tmptok = lex.getString();
|
2003-11-03 17:47:28 +00:00
|
|
|
|
inset.reset(new InsetWrap(buf.params(), tmptok));
|
2003-03-12 11:52:23 +00:00
|
|
|
|
#if 0
|
|
|
|
|
} else if (tmptok == "List") {
|
2003-11-03 17:47:28 +00:00
|
|
|
|
inset.reset(new InsetList);
|
2003-03-12 11:52:23 +00:00
|
|
|
|
} else if (tmptok == "Theorem") {
|
2003-11-03 17:47:28 +00:00
|
|
|
|
inset.reset(new InsetList);
|
2003-03-12 11:52:23 +00:00
|
|
|
|
#endif
|
|
|
|
|
} else if (tmptok == "Caption") {
|
2003-11-03 17:47:28 +00:00
|
|
|
|
inset.reset(new InsetCaption(buf.params()));
|
2003-03-12 11:52:23 +00:00
|
|
|
|
} else if (tmptok == "FloatList") {
|
2003-11-03 17:47:28 +00:00
|
|
|
|
inset.reset(new InsetFloatList);
|
2003-10-01 16:27:36 +00:00
|
|
|
|
} else {
|
2003-10-14 12:49:15 +00:00
|
|
|
|
lyxerr << "unknown Inset type '" << tmptok
|
|
|
|
|
<< "'" << std::endl;
|
|
|
|
|
while (lex.isOK() && lex.getString() != "\\end_inset")
|
|
|
|
|
lex.next();
|
|
|
|
|
return 0;
|
2003-03-12 11:52:23 +00:00
|
|
|
|
}
|
|
|
|
|
|
2003-10-01 16:27:36 +00:00
|
|
|
|
inset->read(buf, lex);
|
2003-03-12 11:52:23 +00:00
|
|
|
|
}
|
|
|
|
|
|
2003-11-03 17:47:28 +00:00
|
|
|
|
return inset.release();
|
2003-03-12 11:52:23 +00:00
|
|
|
|
}
|