]> git.lyx.org Git - lyx.git/blob - src/factory.C
The deed is done.
[lyx.git] / src / factory.C
1 /**
2  * \file factory.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author André Pönitz
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "factory.h"
14
15 #include "buffer.h"
16 #include "BufferView.h"
17 #include "bufferparams.h"
18 #include "debug.h"
19 #include "FloatList.h"
20 #include "funcrequest.h"
21 #include "LColor.h"
22 #include "lyxlex.h"
23 #include "paragraph.h"
24
25 #include "insets/insetbibitem.h"
26 #include "insets/insetbibtex.h"
27 #include "insets/insetcaption.h"
28 #include "insets/insetcite.h"
29 #include "insets/insetenv.h"
30 #include "insets/insetert.h"
31 #include "insets/insetexternal.h"
32 #include "insets/insetfloat.h"
33 #include "insets/insetfloatlist.h"
34 #include "insets/insetfoot.h"
35 #include "insets/insetgraphics.h"
36 #include "insets/insethfill.h"
37 #include "insets/insetinclude.h"
38 #include "insets/insetindex.h"
39 #include "insets/insetlabel.h"
40 #include "insets/insetline.h"
41 #include "insets/insetmarginal.h"
42 #include "insets/insetminipage.h"
43 #include "insets/insetnote.h"
44 #include "insets/insetbox.h"
45 #include "insets/insetbranch.h"
46 #include "insets/insetoptarg.h"
47 #include "insets/insetpagebreak.h"
48 #include "insets/insetref.h"
49 #include "insets/insetspace.h"
50 #include "insets/insettabular.h"
51 #include "insets/insettoc.h"
52 #include "insets/inseturl.h"
53 #include "insets/insetwrap.h"
54 #include "mathed/formulamacro.h"
55 #include "mathed/formula.h"
56
57 #include "frontends/Dialogs.h"
58 #include "frontends/LyXView.h"
59 #include "support/lstrings.h"
60 #include "support/std_sstream.h"
61
62 #include <boost/assert.hpp>
63
64 using lyx::support::compare_ascii_no_case;
65
66 using std::auto_ptr;
67 using std::endl;
68 using std::string;
69
70
71 InsetOld * createInset(FuncRequest const & cmd)
72 {
73         BufferView * bv = cmd.view();
74         BufferParams const & params = bv->buffer()->params();
75
76         switch (cmd.action) {
77         case LFUN_HFILL:
78                 return new InsetHFill;
79
80         case LFUN_INSERT_LINE:
81                 return new InsetLine;
82
83         case LFUN_INSERT_PAGEBREAK:
84                 return new InsetPagebreak;
85
86         case LFUN_INSET_MINIPAGE:
87                 return new InsetMinipage(params);
88
89         case LFUN_INSERT_NOTE: {
90                 string arg = cmd.getArg(0);
91                 if (arg.empty())
92                         arg = "Note";
93                 return new InsetNote(params, arg);
94         }
95
96         case LFUN_INSERT_BOX: {
97                 string arg = cmd.getArg(0);
98                 if (arg.empty())
99                         arg = "Boxed";
100                 return new InsetBox(params, arg);
101         }
102
103         case LFUN_INSERT_BRANCH: {
104                 string arg = cmd.getArg(0);
105                 if (arg.empty())
106                         arg = "none";
107                 return new InsetBranch(params, arg);
108         }
109
110         case LFUN_INSET_ERT:
111                 return new InsetERT(params);
112
113         case LFUN_INSET_FOOTNOTE:
114                 return new InsetFoot(params);
115
116         case LFUN_INSET_MARGINAL:
117                 return new InsetMarginal(params);
118
119         case LFUN_INSET_OPTARG:
120                 return new InsetOptArg(params);
121
122         case LFUN_INSERT_BIBITEM:
123                 return new InsetBibitem(InsetCommandParams("bibitem"));
124
125         case LFUN_INSET_FLOAT:
126                 // check if the float type exists
127                 if (params.getLyXTextClass().floats().typeExist(cmd.argument))
128                         return new InsetFloat(params, cmd.argument);
129                 lyxerr << "Non-existent float type: " << cmd.argument << endl;
130                 return 0;
131
132         case LFUN_INSET_WIDE_FLOAT:
133                 // check if the float type exists
134                 if (params.getLyXTextClass().floats().typeExist(cmd.argument)) {
135                         auto_ptr<InsetFloat> p(new InsetFloat(params, cmd.argument));
136                         p->wide(true, params);
137                         return p.release();
138                 }
139                 lyxerr << "Non-existent float type: " << cmd.argument << endl;
140                 return 0;
141
142         case LFUN_INSET_WRAP:
143                 if (cmd.argument == "figure")
144                         return new InsetWrap(params, cmd.argument);
145                 lyxerr << "Non-existent floatflt type: " << cmd.argument << endl;
146                 return 0;
147
148         case LFUN_INDEX_INSERT: {
149                 // Try and generate a valid index entry.
150                 InsetCommandParams icp("index");
151                 string const contents = cmd.argument.empty() ?
152                         bv->getLyXText()->getStringToIndex() :
153                         cmd.argument;
154                 icp.setContents(contents);
155
156                 string data = InsetCommandMailer::params2string("index", icp);
157                 LyXView * lv = bv->owner();
158
159                 if (icp.getContents().empty()) {
160                         lv->getDialogs().show("index", data, 0);
161                 } else {
162                         lv->dispatch(FuncRequest(bv, LFUN_INSET_APPLY, data));
163                 }
164                 return 0;
165         }
166
167         case LFUN_TABULAR_INSERT:
168                 if (!cmd.argument.empty()) {
169                         std::istringstream ss(cmd.argument);
170                         int r, c;
171                         ss >> r >> c;
172                         if (r <= 0) r = 2;
173                         if (c <= 0) c = 2;
174                         return new InsetTabular(*bv->buffer(), r, c);
175                 }
176                 bv->owner()->getDialogs().show("tabularcreate");
177                 return 0;
178
179         case LFUN_INSET_CAPTION: 
180         if (bv->innerInset()) {
181                 auto_ptr<InsetCaption> inset(new InsetCaption(params));
182                 inset->setOwner(bv->innerInset());
183                 inset->setAutoBreakRows(true);
184                 inset->setDrawFrame(InsetText::LOCKED);
185                 inset->setFrameColor(LColor::captionframe);
186                 return inset.release();
187         }
188
189         case LFUN_INDEX_PRINT:
190                 return new InsetPrintIndex(InsetCommandParams("printindex"));
191
192         case LFUN_TOC_INSERT:
193                 return new InsetTOC(InsetCommandParams("tableofcontents"));
194
195         case LFUN_ENVIRONMENT_INSERT:
196                 return new InsetEnvironment(params, cmd.argument);
197
198 #if 0
199         case LFUN_INSET_LIST:
200                 return new InsetList;
201
202         case LFUN_INSET_THEOREM:
203                 return new InsetTheorem;
204 #endif
205
206         case LFUN_INSET_INSERT: {
207                 string const name = cmd.getArg(0);
208
209                 if (name == "bibitem") {
210                         InsetCommandParams icp;
211                         InsetCommandMailer::string2params(cmd.argument, icp);
212                         return new InsetBibitem(icp);
213
214                 } else if (name == "bibtex") {
215                         InsetCommandParams icp;
216                         InsetCommandMailer::string2params(cmd.argument, icp);
217                         return new InsetBibtex(icp);
218
219                 } else if (name == "citation") {
220                         InsetCommandParams icp;
221                         InsetCommandMailer::string2params(cmd.argument, icp);
222                         return new InsetCitation(icp);
223
224                 } else if (name == "ert") {
225                         InsetERT * inset = new InsetERT(params);
226                         InsetERT::ERTStatus s;
227                         InsetERTMailer::string2params(cmd.argument, s);
228                         inset->status(bv, s);
229                         return inset;
230
231                 } else if (name == "external") {
232                         Buffer const & buffer = *cmd.view()->buffer();
233                         InsetExternalParams iep;
234                         InsetExternalMailer::string2params(cmd.argument,
235                                                            buffer, iep);
236                         auto_ptr<InsetExternal> inset(new InsetExternal);
237                         inset->setParams(iep, buffer);
238                         return inset.release();
239
240                 } else if (name == "graphics") {
241                         Buffer const & buffer = *cmd.view()->buffer();
242                         InsetGraphicsParams igp;
243                         InsetGraphicsMailer::string2params(cmd.argument,
244                                                            buffer, igp);
245                         auto_ptr<InsetGraphics> inset(new InsetGraphics);
246                         inset->setParams(igp);
247                         return inset.release();
248
249                 } else if (name == "include") {
250                         InsetCommandParams iip;
251                         InsetIncludeMailer::string2params(cmd.argument, iip);
252                         return new InsetInclude(iip);
253
254                 } else if (name == "index") {
255                         InsetCommandParams icp;
256                         InsetCommandMailer::string2params(cmd.argument, icp);
257                         return new InsetIndex(icp);
258
259                 } else if (name == "label") {
260                         InsetCommandParams icp;
261                         InsetCommandMailer::string2params(cmd.argument, icp);
262                         return new InsetLabel(icp);
263
264                 } else if (name == "ref") {
265                         InsetCommandParams icp;
266                         InsetCommandMailer::string2params(cmd.argument, icp);
267                         return new InsetRef(icp, *bv->buffer());
268
269                 } else if (name == "toc") {
270                         InsetCommandParams icp;
271                         InsetCommandMailer::string2params(cmd.argument, icp);
272                         return new InsetTOC(icp);
273
274                 } else if (name == "url") {
275                         InsetCommandParams icp;
276                         InsetCommandMailer::string2params(cmd.argument, icp);
277                         return new InsetUrl(icp);
278                 }
279         }
280
281         case LFUN_SPACE_INSERT: {
282                 string const name = cmd.argument;
283                 if (name == "normal")
284                         return new InsetSpace(InsetSpace::NORMAL);
285                 else if (name == "protected")
286                         return new InsetSpace(InsetSpace::PROTECTED);
287                 else if (name == "thin")
288                         return new InsetSpace(InsetSpace::THIN);
289                 else if (name == "quad")
290                         return new InsetSpace(InsetSpace::QUAD);
291                 else if (name == "qquad")
292                         return new InsetSpace(InsetSpace::QQUAD);
293                 else if (name == "enspace")
294                         return new InsetSpace(InsetSpace::ENSPACE);
295                 else if (name == "enskip")
296                         return new InsetSpace(InsetSpace::ENSKIP);
297                 else if (name == "negthinspace")
298                         return new InsetSpace(InsetSpace::NEGTHIN);
299                 else if (name.empty())
300                         lyxerr << "LyX function 'space' needs an argument." << endl;
301                 else
302                         lyxerr << "Wrong argument for LyX function 'space'." << endl;
303         }
304
305         break;
306
307         default:
308                 break;
309         }
310
311         return 0;
312 }
313
314
315 InsetOld * readInset(LyXLex & lex, Buffer const & buf)
316 {
317         // consistency check
318         if (lex.getString() != "\\begin_inset") {
319                 lyxerr << "Buffer::readInset: Consistency check failed."
320                        << endl;
321         }
322
323         auto_ptr<InsetOld> inset;
324
325         lex.next();
326         string const tmptok = lex.getString();
327
328         // test the different insets
329         if (tmptok == "LatexCommand") {
330                 InsetCommandParams inscmd;
331                 inscmd.read(lex);
332
333                 string const cmdName = inscmd.getCmdName();
334
335                 // This strange command allows LyX to recognize "natbib" style
336                 // citations: citet, citep, Citet etc.
337                 if (compare_ascii_no_case(cmdName.substr(0,4), "cite") == 0) {
338                         inset.reset(new InsetCitation(inscmd));
339                 } else if (cmdName == "bibitem") {
340                         lex.printError("Wrong place for bibitem");
341                         inset.reset(new InsetBibitem(inscmd));
342                 } else if (cmdName == "bibtex") {
343                         inset.reset(new InsetBibtex(inscmd));
344                 } else if (cmdName == "index") {
345                         inset.reset(new InsetIndex(inscmd));
346                 } else if (cmdName == "include") {
347                         inset.reset(new InsetInclude(inscmd));
348                 } else if (cmdName == "label") {
349                         inset.reset(new InsetLabel(inscmd));
350                 } else if (cmdName == "url"
351                            || cmdName == "htmlurl") {
352                         inset.reset(new InsetUrl(inscmd));
353                 } else if (cmdName == "ref"
354                            || cmdName == "eqref"
355                            || cmdName == "pageref"
356                            || cmdName == "vref"
357                            || cmdName == "vpageref"
358                            || cmdName == "prettyref") {
359                         if (!inscmd.getOptions().empty()
360                             || !inscmd.getContents().empty()) {
361                                 inset.reset(new InsetRef(inscmd, buf));
362                         }
363                 } else if (cmdName == "tableofcontents") {
364                         inset.reset(new InsetTOC(inscmd));
365                 } else if (cmdName == "listofalgorithms") {
366                         inset.reset(new InsetFloatList("algorithm"));
367                 } else if (cmdName == "listoffigures") {
368                         inset.reset(new InsetFloatList("figure"));
369                 } else if (cmdName == "listoftables") {
370                         inset.reset(new InsetFloatList("table"));
371                 } else if (cmdName == "printindex") {
372                         inset.reset(new InsetPrintIndex(inscmd));
373                 } else {
374                         lyxerr << "unknown CommandInset '" << cmdName
375                                << "'" << std::endl;
376                         while (lex.isOK() && lex.getString() != "\\end_inset")
377                                 lex.next();
378                         return 0;
379                 }
380         } else {
381                 if (tmptok == "Quotes") {
382                         inset.reset(new InsetQuotes);
383                 } else if (tmptok == "External") {
384                         inset.reset(new InsetExternal);
385                 } else if (tmptok == "FormulaMacro") {
386                         inset.reset(new InsetFormulaMacro);
387                 } else if (tmptok == "Formula") {
388                         inset.reset(new InsetFormula);
389                 } else if (tmptok == "Graphics") {
390                         inset.reset(new InsetGraphics);
391                 } else if (tmptok == "Note"     || tmptok == "Comment"
392                                 || tmptok == "Greyedout") {
393                         inset.reset(new InsetNote(buf.params(), tmptok));
394                 } else if (tmptok == "Boxed" || tmptok == "ovalbox"
395                         || tmptok == "Shadowbox" || tmptok == "Doublebox"
396                         || tmptok == "Ovalbox" || tmptok == "Frameless") {
397                         inset.reset(new InsetBox(buf.params(), tmptok));
398                 } else if (tmptok == "Branch") {
399                         inset.reset(new InsetBranch(buf.params(), string()));
400                 } else if (tmptok == "Include") {
401                         InsetCommandParams p("Include");
402                         inset.reset(new InsetInclude(p));
403                 } else if (tmptok == "Environment") {
404                         lex.next();
405                         inset.reset(new InsetEnvironment(buf.params(), lex.getString()));
406                 } else if (tmptok == "ERT") {
407                         inset.reset(new InsetERT(buf.params()));
408                 } else if (tmptok == "InsetSpace") {
409                         inset.reset(new InsetSpace);
410                 } else if (tmptok == "Tabular") {
411                         inset.reset(new InsetTabular(buf));
412                 } else if (tmptok == "Text") {
413                         inset.reset(new InsetText(buf.params()));
414                 } else if (tmptok == "Foot") {
415                         inset.reset(new InsetFoot(buf.params()));
416                 } else if (tmptok == "Marginal") {
417                         inset.reset(new InsetMarginal(buf.params()));
418                 } else if (tmptok == "OptArg") {
419                         inset.reset(new InsetOptArg(buf.params()));
420                 } else if (tmptok == "Minipage") {
421                         inset.reset(new InsetMinipage(buf.params()));
422                 } else if (tmptok == "Float") {
423                         lex.next();
424                         string tmptok = lex.getString();
425                         inset.reset(new InsetFloat(buf.params(), tmptok));
426                 } else if (tmptok == "Wrap") {
427                         lex.next();
428                         string tmptok = lex.getString();
429                         inset.reset(new InsetWrap(buf.params(), tmptok));
430 #if 0
431                 } else if (tmptok == "List") {
432                         inset.reset(new InsetList);
433                 } else if (tmptok == "Theorem") {
434                         inset.reset(new InsetList);
435 #endif
436                 } else if (tmptok == "Caption") {
437                         inset.reset(new InsetCaption(buf.params()));
438                 } else if (tmptok == "FloatList") {
439                         inset.reset(new InsetFloatList);
440                 } else {
441                         lyxerr << "unknown Inset type '" << tmptok
442                                << "'" << std::endl;
443                         while (lex.isOK() && lex.getString() != "\\end_inset")
444                                 lex.next();
445                         return 0;
446                 }
447
448                 inset->read(buf, lex);
449         }
450
451         return inset.release();
452 }