]> git.lyx.org Git - lyx.git/blob - src/TextClass.cpp
Update the Customization manual a bit.
[lyx.git] / src / TextClass.cpp
1 /**
2  * \file TextClass.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Lars Gullik Bjønnes
7  * \author Jean-Marc Lasgouttes
8  * \author Angus Leeming
9  * \author John Levon
10  * \author André Pönitz
11  *
12  * Full author contact details are available in file CREDITS.
13  */
14
15 #include <config.h>
16
17 #include "TextClass.h"
18
19 #include "LayoutFile.h"
20 #include "Color.h"
21 #include "Counters.h"
22 #include "Floating.h"
23 #include "FloatList.h"
24 #include "Layout.h"
25 #include "Lexer.h"
26 #include "Font.h"
27
28 #include "frontends/alert.h"
29
30 #include "support/lassert.h"
31 #include "support/debug.h"
32 #include "support/ExceptionMessage.h"
33 #include "support/FileName.h"
34 #include "support/filetools.h"
35 #include "support/gettext.h"
36 #include "support/lstrings.h"
37 #include "support/os.h"
38
39 #include <algorithm>
40 #include <fstream>
41 #include <sstream>
42
43 using namespace std;
44 using namespace lyx::support;
45
46 namespace lyx {
47
48 namespace {
49
50 class LayoutNamesEqual : public unary_function<Layout, bool> {
51 public:
52         LayoutNamesEqual(docstring const & name)
53                 : name_(name)
54         {}
55         bool operator()(Layout const & c) const
56         {
57                 return c.name() == name_;
58         }
59 private:
60         docstring name_;
61 };
62
63
64 int const FORMAT = 10;
65
66
67 bool layout2layout(FileName const & filename, FileName const & tempfile)
68 {
69         FileName const script = libFileSearch("scripts", "layout2layout.py");
70         if (script.empty()) {
71                 LYXERR0("Could not find layout conversion "
72                           "script layout2layout.py.");
73                 return false;
74         }
75
76         ostringstream command;
77         command << os::python() << ' ' << quoteName(script.toFilesystemEncoding())
78                 << ' ' << quoteName(filename.toFilesystemEncoding())
79                 << ' ' << quoteName(tempfile.toFilesystemEncoding());
80         string const command_str = command.str();
81
82         LYXERR(Debug::TCLASS, "Running `" << command_str << '\'');
83
84         cmd_ret const ret = runCommand(command_str);
85         if (ret.first != 0) {
86                 LYXERR0("Could not run layout conversion script layout2layout.py.");
87                 return false;
88         }
89         return true;
90 }
91
92
93 std::string translateRT(TextClass::ReadType rt) 
94 {
95         switch (rt) {
96         case TextClass::BASECLASS:
97                 return "textclass";
98         case TextClass::MERGE:
99                 return "input file";
100         case TextClass::MODULE:
101                 return "module file";
102         case TextClass::VALIDATION:
103                 return "validation";
104         }
105         // shutup warning
106         return string();
107 }
108
109 } // namespace anon
110
111
112 // This string should not be translated here, 
113 // because it is a layout identifier.
114 docstring const TextClass::plain_layout_ = from_ascii("Plain Layout");
115
116
117 InsetLayout DocumentClass::plain_insetlayout_;
118
119
120 /////////////////////////////////////////////////////////////////////////
121 //
122 // TextClass
123 //
124 /////////////////////////////////////////////////////////////////////////
125
126 TextClass::TextClass()
127 {
128         outputType_ = LATEX;
129         columns_ = 1;
130         sides_ = OneSide;
131         secnumdepth_ = 3;
132         tocdepth_ = 3;
133         pagestyle_ = "default";
134         defaultfont_ = sane_font;
135         opt_fontsize_ = "10|11|12";
136         opt_pagestyle_ = "empty|plain|headings|fancy";
137         titletype_ = TITLE_COMMAND_AFTER;
138         titlename_ = "maketitle";
139         loaded_ = false;
140         _("Plain Layout"); // a hack to make this translatable
141 }
142
143
144 bool TextClass::readStyle(Lexer & lexrc, Layout & lay) const
145 {
146         LYXERR(Debug::TCLASS, "Reading style " << to_utf8(lay.name()));
147         if (!lay.read(lexrc, *this)) {
148                 LYXERR0("Error parsing style `" << to_utf8(lay.name()) << '\'');
149                 return false;
150         }
151         // Resolve fonts
152         lay.resfont = lay.font;
153         lay.resfont.realize(defaultfont_);
154         lay.reslabelfont = lay.labelfont;
155         lay.reslabelfont.realize(defaultfont_);
156         return true; // no errors
157 }
158
159
160 enum TextClassTags {
161         TC_OUTPUTTYPE = 1,
162         TC_INPUT,
163         TC_STYLE,
164         TC_DEFAULTSTYLE,
165         TC_INSETLAYOUT,
166         TC_NOSTYLE,
167         TC_COLUMNS,
168         TC_SIDES,
169         TC_PAGESTYLE,
170         TC_DEFAULTFONT,
171         TC_SECNUMDEPTH,
172         TC_TOCDEPTH,
173         TC_CLASSOPTIONS,
174         TC_PREAMBLE,
175         TC_PROVIDES,
176         TC_REQUIRES,
177         TC_LEFTMARGIN,
178         TC_RIGHTMARGIN,
179         TC_FLOAT,
180         TC_COUNTER,
181         TC_NOFLOAT,
182         TC_TITLELATEXNAME,
183         TC_TITLELATEXTYPE,
184         TC_FORMAT,
185         TC_ADDTOPREAMBLE,
186         TC_USEMODULE
187 };
188
189
190 namespace {
191
192         LexerKeyword textClassTags[] = {
193                 { "addtopreamble",   TC_ADDTOPREAMBLE },
194                 { "classoptions",    TC_CLASSOPTIONS },
195                 { "columns",         TC_COLUMNS },
196                 { "counter",         TC_COUNTER },
197                 { "defaultfont",     TC_DEFAULTFONT },
198                 { "defaultstyle",    TC_DEFAULTSTYLE },
199                 { "float",           TC_FLOAT },
200                 { "format",          TC_FORMAT },
201                 { "input",           TC_INPUT },
202                 { "insetlayout",     TC_INSETLAYOUT },
203                 { "leftmargin",      TC_LEFTMARGIN },
204                 { "nofloat",         TC_NOFLOAT },
205                 { "nostyle",         TC_NOSTYLE },
206                 { "outputtype",      TC_OUTPUTTYPE },
207                 { "pagestyle",       TC_PAGESTYLE },
208                 { "preamble",        TC_PREAMBLE },
209                 { "provides",        TC_PROVIDES },
210                 { "requires",        TC_REQUIRES },
211                 { "rightmargin",     TC_RIGHTMARGIN },
212                 { "secnumdepth",     TC_SECNUMDEPTH },
213                 { "sides",           TC_SIDES },
214                 { "style",           TC_STYLE },
215                 { "titlelatexname",  TC_TITLELATEXNAME },
216                 { "titlelatextype",  TC_TITLELATEXTYPE },
217                 { "tocdepth",        TC_TOCDEPTH },
218                 { "usemodule",       TC_USEMODULE }
219         };
220         
221 } //namespace anon
222
223
224 bool TextClass::convertLayoutFormat(support::FileName const & filename, ReadType rt)
225 {
226         LYXERR(Debug::TCLASS, "Converting layout file to " << FORMAT);
227         FileName const tempfile = FileName::tempName("convert_layout");
228         bool success = layout2layout(filename, tempfile);
229         if (success)
230                 success = read(tempfile, rt);
231         tempfile.removeFile();
232         return success;
233 }
234
235 bool TextClass::read(FileName const & filename, ReadType rt)
236 {
237         if (!filename.isReadableFile()) {
238                 lyxerr << "Cannot read layout file `" << filename << "'."
239                        << endl;
240                 return false;
241         }
242
243         LYXERR(Debug::TCLASS, "Reading " + translateRT(rt) + ": " +
244                 to_utf8(makeDisplayPath(filename.absFilename())));
245
246         // Define the plain layout used in table cells, ert, etc. Note that 
247         // we do this before loading any layout file, so that classes can 
248         // override features of this layout if they should choose to do so.
249         if (rt == BASECLASS && !hasLayout(plain_layout_))
250                 layoutlist_.push_back(createBasicLayout(plain_layout_));
251
252         Lexer lexrc(textClassTags);
253         lexrc.setFile(filename);
254         ReturnValues retval = read(lexrc, rt);
255         
256         LYXERR(Debug::TCLASS, "Finished reading " + translateRT(rt) + ": " +
257                         to_utf8(makeDisplayPath(filename.absFilename())));
258         
259         if (retval != FORMAT_MISMATCH) 
260                 return retval == OK;
261         
262         bool const worx = convertLayoutFormat(filename, rt);
263         if (!worx) {
264                 LYXERR0 ("Unable to convert " << filename << 
265                         " to format " << FORMAT);
266                 return false;
267         }
268         return true;
269 }
270
271
272 bool TextClass::validate(std::string const & str)
273 {
274         TextClass tc;
275         return tc.read(str, VALIDATION);
276 }
277
278
279 bool TextClass::read(std::string const & str, ReadType rt) 
280 {
281         Lexer lexrc(textClassTags);
282         istringstream is(str);
283         lexrc.setStream(is);
284         ReturnValues retval = read(lexrc, rt);
285
286         if (retval != FORMAT_MISMATCH) 
287                 return retval == OK;
288
289         // write the layout string to a temporary file
290         FileName const tempfile = FileName::tempName("TextClass_read");
291         ofstream os(tempfile.toFilesystemEncoding().c_str());
292         if (!os) {
293                 LYXERR0("Unable to create temporary file");
294                 return false;
295         }
296         os << str;
297         os.close();
298
299         // now try to convert it
300         bool const worx = convertLayoutFormat(tempfile, rt);
301         if (!worx) {
302                 LYXERR0("Unable to convert internal layout information to format " 
303                         << FORMAT);
304         }
305         tempfile.removeFile();
306         return worx;
307 }
308
309
310 // Reads a textclass structure from file.
311 TextClass::ReturnValues TextClass::read(Lexer & lexrc, ReadType rt) 
312 {
313         bool error = !lexrc.isOK();
314
315         // Format of files before the 'Format' tag was introduced
316         int format = 1;
317
318         // parsing
319         while (lexrc.isOK() && !error) {
320                 int le = lexrc.lex();
321
322                 switch (le) {
323                 case Lexer::LEX_FEOF:
324                         continue;
325
326                 case Lexer::LEX_UNDEF:
327                         lexrc.printError("Unknown TextClass tag `$$Token'");
328                         error = true;
329                         continue;
330
331                 default:
332                         break;
333                 }
334
335                 switch (static_cast<TextClassTags>(le)) {
336
337                 case TC_FORMAT:
338                         if (lexrc.next())
339                                 format = lexrc.getInteger();
340                         break;
341
342                 case TC_OUTPUTTYPE:   // output type definition
343                         readOutputType(lexrc);
344                         break;
345
346                 case TC_INPUT: // Include file
347                         if (lexrc.next()) {
348                                 string const inc = lexrc.getString();
349                                 FileName tmp = libFileSearch("layouts", inc,
350                                                             "layout");
351
352                                 if (tmp.empty()) {
353                                         lexrc.printError("Could not find input file: " + inc);
354                                         error = true;
355                                 } else if (!read(tmp, MERGE)) {
356                                         lexrc.printError("Error reading input"
357                                                          "file: " + tmp.absFilename());
358                                         error = true;
359                                 }
360                         }
361                         break;
362
363                 case TC_DEFAULTSTYLE:
364                         if (lexrc.next()) {
365                                 docstring const name = from_utf8(subst(lexrc.getString(),
366                                                           '_', ' '));
367                                 defaultlayout_ = name;
368                         }
369                         break;
370
371                 case TC_STYLE:
372                         if (lexrc.next()) {
373                                 docstring const name = from_utf8(subst(lexrc.getString(),
374                                                     '_', ' '));
375                                 if (name.empty()) {
376                                         string s = "Could not read name for style: `$$Token' "
377                                                 + lexrc.getString() + " is probably not valid UTF-8!";
378                                         lexrc.printError(s.c_str());
379                                         Layout lay;
380                                         // Since we couldn't read the name, we just scan the rest
381                                         // of the style and discard it.
382                                         error = !readStyle(lexrc, lay);
383                                 } else if (hasLayout(name)) {
384                                         Layout & lay = operator[](name);
385                                         error = !readStyle(lexrc, lay);
386                                 } else {
387                                         Layout layout;
388                                         layout.setName(name);
389                                         error = !readStyle(lexrc, layout);
390                                         if (!error)
391                                                 layoutlist_.push_back(layout);
392
393                                         if (defaultlayout_.empty()) {
394                                                 // We do not have a default layout yet, so we choose
395                                                 // the first layout we encounter.
396                                                 defaultlayout_ = name;
397                                         }
398                                 }
399                         }
400                         else {
401                                 lexrc.printError("No name given for style: `$$Token'.");
402                                 error = true;
403                         }
404                         break;
405
406                 case TC_NOSTYLE:
407                         if (lexrc.next()) {
408                                 docstring const style = from_utf8(subst(lexrc.getString(),
409                                                      '_', ' '));
410                                 if (!deleteLayout(style))
411                                         lyxerr << "Cannot delete style `"
412                                                << to_utf8(style) << '\'' << endl;
413                         }
414                         break;
415
416                 case TC_COLUMNS:
417                         if (lexrc.next())
418                                 columns_ = lexrc.getInteger();
419                         break;
420
421                 case TC_SIDES:
422                         if (lexrc.next()) {
423                                 switch (lexrc.getInteger()) {
424                                 case 1: sides_ = OneSide; break;
425                                 case 2: sides_ = TwoSides; break;
426                                 default:
427                                         lyxerr << "Impossible number of page"
428                                                 " sides, setting to one."
429                                                << endl;
430                                         sides_ = OneSide;
431                                         break;
432                                 }
433                         }
434                         break;
435
436                 case TC_PAGESTYLE:
437                         lexrc.next();
438                         pagestyle_ = rtrim(lexrc.getString());
439                         break;
440
441                 case TC_DEFAULTFONT:
442                         defaultfont_ = lyxRead(lexrc);
443                         if (!defaultfont_.resolved()) {
444                                 lexrc.printError("Warning: defaultfont should "
445                                                  "be fully instantiated!");
446                                 defaultfont_.realize(sane_font);
447                         }
448                         break;
449
450                 case TC_SECNUMDEPTH:
451                         lexrc.next();
452                         secnumdepth_ = lexrc.getInteger();
453                         break;
454
455                 case TC_TOCDEPTH:
456                         lexrc.next();
457                         tocdepth_ = lexrc.getInteger();
458                         break;
459
460                 // First step to support options
461                 case TC_CLASSOPTIONS:
462                         readClassOptions(lexrc);
463                         break;
464
465                 case TC_PREAMBLE:
466                         preamble_ = from_utf8(lexrc.getLongString("EndPreamble"));
467                         break;
468
469                 case TC_ADDTOPREAMBLE:
470                         preamble_ += from_utf8(lexrc.getLongString("EndPreamble"));
471                         break;
472
473                 case TC_PROVIDES: {
474                         lexrc.next();
475                         string const feature = lexrc.getString();
476                         lexrc.next();
477                         if (lexrc.getInteger())
478                                 provides_.insert(feature);
479                         else
480                                 provides_.erase(feature);
481                         break;
482                 }
483
484                 case TC_REQUIRES: {
485                         lexrc.eatLine();
486                         vector<string> const req 
487                                 = getVectorFromString(lexrc.getString());
488                         requires_.insert(req.begin(), req.end());
489                         break;
490                 }
491
492                 case TC_USEMODULE: {
493                         lexrc.next();
494                         string const module = lexrc.getString();
495                         usemod_.insert(module);
496                         break;
497                 }
498
499                 case TC_LEFTMARGIN:     // left margin type
500                         if (lexrc.next())
501                                 leftmargin_ = lexrc.getDocString();
502                         break;
503
504                 case TC_RIGHTMARGIN:    // right margin type
505                         if (lexrc.next())
506                                 rightmargin_ = lexrc.getDocString();
507                         break;
508
509                 case TC_INSETLAYOUT:
510                         if (lexrc.next()) {
511                                 InsetLayout il;
512                                 if (il.read(lexrc, *this))
513                                         insetlayoutlist_[il.name()] = il;
514                                 // else there was an error, so forget it
515                         }
516                         break;
517
518                 case TC_FLOAT:
519                         readFloat(lexrc);
520                         break;
521
522                 case TC_COUNTER:
523                         if (lexrc.next()) {
524                                 docstring const name = lexrc.getDocString();
525                                 if (name.empty()) {
526                                         string s = "Could not read name for counter: `$$Token' "
527                                                         + lexrc.getString() + " is probably not valid UTF-8!";
528                                         lexrc.printError(s.c_str());
529                                         Counter c;
530                                         // Since we couldn't read the name, we just scan the rest
531                                         // and discard it.
532                                         c.read(lexrc);
533                                 } else
534                                         error = !counters_.read(lexrc, name);
535                         }
536                         else {
537                                 lexrc.printError("No name given for style: `$$Token'.");
538                                 error = true;
539                         }
540                         break;
541
542                 case TC_TITLELATEXTYPE:
543                         readTitleType(lexrc);
544                         break;
545
546                 case TC_TITLELATEXNAME:
547                         if (lexrc.next())
548                                 titlename_ = lexrc.getString();
549                         break;
550
551                 case TC_NOFLOAT:
552                         if (lexrc.next()) {
553                                 string const nofloat = lexrc.getString();
554                                 floatlist_.erase(nofloat);
555                         }
556                         break;
557                 } // end of switch
558
559                 //Note that this is triggered the first time through the loop unless
560                 //we hit a format tag.
561                 if (format != FORMAT)
562                         break;
563         }
564
565         if (format != FORMAT)
566                 return FORMAT_MISMATCH;
567
568         if (rt != BASECLASS) 
569                 return (error ? ERROR : OK);
570
571         if (defaultlayout_.empty()) {
572                 LYXERR0("Error: Textclass '" << name_
573                                                 << "' is missing a defaultstyle.");
574                 error = true;
575         }
576                 
577         // Try to erase "stdinsets" from the provides_ set. 
578         // The
579         //   Provides stdinsets 1
580         // declaration simply tells us that the standard insets have been
581         // defined. (It's found in stdinsets.inc but could also be used in
582         // user-defined files.) There isn't really any such package. So we
583         // might as well go ahead and erase it.
584         // If we do not succeed, then it was not there, which means that
585         // the textclass did not provide the definitions of the standard
586         // insets. So we need to try to load them.
587         int erased = provides_.erase("stdinsets");
588         if (!erased) {
589                 FileName tmp = libFileSearch("layouts", "stdinsets.inc");
590
591                 if (tmp.empty()) {
592                         throw ExceptionMessage(WarningException, _("Missing File"),
593                                 _("Could not find stdinsets.inc! This may lead to data loss!"));
594                         error = true;
595                 } else if (!read(tmp, MERGE)) {
596                         throw ExceptionMessage(WarningException, _("Corrupt File"),
597                                 _("Could not read stdinsets.inc! This may lead to data loss!"));
598                         error = true;
599                 }
600         }
601
602         min_toclevel_ = Layout::NOT_IN_TOC;
603         max_toclevel_ = Layout::NOT_IN_TOC;
604         const_iterator lit = begin();
605         const_iterator len = end();
606         for (; lit != len; ++lit) {
607                 int const toclevel = lit->toclevel;
608                 if (toclevel != Layout::NOT_IN_TOC) {
609                         if (min_toclevel_ == Layout::NOT_IN_TOC)
610                                 min_toclevel_ = toclevel;
611                         else
612                                 min_toclevel_ = min(min_toclevel_, toclevel);
613                         max_toclevel_ = max(max_toclevel_, toclevel);
614                 }
615         }
616         LYXERR(Debug::TCLASS, "Minimum TocLevel is " << min_toclevel_
617                 << ", maximum is " << max_toclevel_);
618
619         return (error ? ERROR : OK);
620 }
621
622
623 void TextClass::readTitleType(Lexer & lexrc)
624 {
625         LexerKeyword titleTypeTags[] = {
626                 { "commandafter", TITLE_COMMAND_AFTER },
627                 { "environment",  TITLE_ENVIRONMENT }
628         };
629
630         PushPopHelper pph(lexrc, titleTypeTags);
631
632         int le = lexrc.lex();
633         switch (le) {
634         case Lexer::LEX_UNDEF:
635                 lexrc.printError("Unknown output type `$$Token'");
636                 break;
637         case TITLE_COMMAND_AFTER:
638         case TITLE_ENVIRONMENT:
639                 titletype_ = static_cast<TitleLatexType>(le);
640                 break;
641         default:
642                 LYXERR0("Unhandled value " << le << " in TextClass::readTitleType.");
643                 break;
644         }
645 }
646
647
648 void TextClass::readOutputType(Lexer & lexrc)
649 {
650         LexerKeyword outputTypeTags[] = {
651                 { "docbook",  DOCBOOK },
652                 { "latex",    LATEX },
653                 { "literate", LITERATE }
654         };
655
656         PushPopHelper pph(lexrc, outputTypeTags);
657
658         int le = lexrc.lex();
659         switch (le) {
660         case Lexer::LEX_UNDEF:
661                 lexrc.printError("Unknown output type `$$Token'");
662                 return;
663         case LATEX:
664         case DOCBOOK:
665         case LITERATE:
666                 outputType_ = static_cast<OutputType>(le);
667                 break;
668         default:
669                 LYXERR0("Unhandled value " << le);
670                 break;
671         }
672 }
673
674
675 void TextClass::readClassOptions(Lexer & lexrc)
676 {
677         enum {
678                 CO_FONTSIZE = 1,
679                 CO_PAGESTYLE,
680                 CO_OTHER,
681                 CO_HEADER,
682                 CO_END
683         };
684
685         LexerKeyword classOptionsTags[] = {
686                 {"end",       CO_END },
687                 {"fontsize",  CO_FONTSIZE },
688                 {"header",    CO_HEADER },
689                 {"other",     CO_OTHER },
690                 {"pagestyle", CO_PAGESTYLE }
691         };
692
693         lexrc.pushTable(classOptionsTags);
694         bool getout = false;
695         while (!getout && lexrc.isOK()) {
696                 int le = lexrc.lex();
697                 switch (le) {
698                 case Lexer::LEX_UNDEF:
699                         lexrc.printError("Unknown ClassOption tag `$$Token'");
700                         continue;
701                 default: break;
702                 }
703                 switch (le) {
704                 case CO_FONTSIZE:
705                         lexrc.next();
706                         opt_fontsize_ = rtrim(lexrc.getString());
707                         break;
708                 case CO_PAGESTYLE:
709                         lexrc.next();
710                         opt_pagestyle_ = rtrim(lexrc.getString());
711                         break;
712                 case CO_OTHER:
713                         lexrc.next();
714                         options_ = lexrc.getString();
715                         break;
716                 case CO_HEADER:
717                         lexrc.next();
718                         class_header_ = subst(lexrc.getString(), "&quot;", "\"");
719                         break;
720                 case CO_END:
721                         getout = true;
722                         break;
723                 }
724         }
725         lexrc.popTable();
726 }
727
728
729 void TextClass::readFloat(Lexer & lexrc)
730 {
731         enum {
732                 FT_TYPE = 1,
733                 FT_NAME,
734                 FT_PLACEMENT,
735                 FT_EXT,
736                 FT_WITHIN,
737                 FT_STYLE,
738                 FT_LISTNAME,
739                 FT_BUILTIN,
740                 FT_END
741         };
742
743         LexerKeyword floatTags[] = {
744                 { "end", FT_END },
745                 { "extension", FT_EXT },
746                 { "guiname", FT_NAME },
747                 { "latexbuiltin", FT_BUILTIN },
748                 { "listname", FT_LISTNAME },
749                 { "numberwithin", FT_WITHIN },
750                 { "placement", FT_PLACEMENT },
751                 { "style", FT_STYLE },
752                 { "type", FT_TYPE }
753         };
754
755         lexrc.pushTable(floatTags);
756
757         string type;
758         string placement;
759         string ext;
760         string within;
761         string style;
762         string name;
763         string listName;
764         bool builtin = false;
765
766         bool getout = false;
767         while (!getout && lexrc.isOK()) {
768                 int le = lexrc.lex();
769                 switch (le) {
770                 case Lexer::LEX_UNDEF:
771                         lexrc.printError("Unknown float tag `$$Token'");
772                         continue;
773                 default: break;
774                 }
775                 switch (le) {
776                 case FT_TYPE:
777                         lexrc.next();
778                         type = lexrc.getString();
779                         if (floatlist_.typeExist(type)) {
780                                 Floating const & fl = floatlist_.getType(type);
781                                 placement = fl.placement();
782                                 ext = fl.ext();
783                                 within = fl.within();
784                                 style = fl.style();
785                                 name = fl.name();
786                                 listName = fl.listName();
787                                 builtin = fl.builtin();
788                         } 
789                         break;
790                 case FT_NAME:
791                         lexrc.next();
792                         name = lexrc.getString();
793                         break;
794                 case FT_PLACEMENT:
795                         lexrc.next();
796                         placement = lexrc.getString();
797                         break;
798                 case FT_EXT:
799                         lexrc.next();
800                         ext = lexrc.getString();
801                         break;
802                 case FT_WITHIN:
803                         lexrc.next();
804                         within = lexrc.getString();
805                         if (within == "none")
806                                 within.erase();
807                         break;
808                 case FT_STYLE:
809                         lexrc.next();
810                         style = lexrc.getString();
811                         break;
812                 case FT_LISTNAME:
813                         lexrc.next();
814                         listName = lexrc.getString();
815                         break;
816                 case FT_BUILTIN:
817                         lexrc.next();
818                         builtin = lexrc.getBool();
819                         break;
820                 case FT_END:
821                         getout = true;
822                         break;
823                 }
824         }
825
826         // Here if have a full float if getout == true
827         if (getout) {
828                 Floating fl(type, placement, ext, within,
829                             style, name, listName, builtin);
830                 floatlist_.newFloat(fl);
831                 // each float has its own counter
832                 counters_.newCounter(from_ascii(type), from_ascii(within),
833                                       docstring(), docstring());
834                 // also define sub-float counters
835                 docstring const subtype = "sub-" + from_ascii(type);
836                 counters_.newCounter(subtype, from_ascii(type),
837                                       "\\alph{" + subtype + "}", docstring());
838         }
839
840         lexrc.popTable();
841 }
842
843
844 bool TextClass::hasLayout(docstring const & n) const
845 {
846         docstring const name = n.empty() ? defaultLayoutName() : n;
847
848         return find_if(layoutlist_.begin(), layoutlist_.end(),
849                        LayoutNamesEqual(name))
850                 != layoutlist_.end();
851 }
852
853
854 Layout const & TextClass::operator[](docstring const & name) const
855 {
856         LASSERT(!name.empty(), /**/);
857
858         const_iterator it = 
859                 find_if(begin(), end(), LayoutNamesEqual(name));
860
861         if (it == end()) {
862                 lyxerr << "We failed to find the layout '" << to_utf8(name)
863                        << "' in the layout list. You MUST investigate!"
864                        << endl;
865                 for (const_iterator cit = begin(); cit != end(); ++cit)
866                         lyxerr  << " " << to_utf8(cit->name()) << endl;
867
868                 // we require the name to exist
869                 LASSERT(false, /**/);
870         }
871
872         return *it;
873 }
874
875
876 Layout & TextClass::operator[](docstring const & name)
877 {
878         LASSERT(!name.empty(), /**/);
879
880         iterator it = find_if(begin(), end(), LayoutNamesEqual(name));
881
882         if (it == end()) {
883                 LYXERR0("We failed to find the layout '" << to_utf8(name)
884                        << "' in the layout list. You MUST investigate!");
885                 for (const_iterator cit = begin(); cit != end(); ++cit)
886                         LYXERR0(" " << to_utf8(cit->name()));
887
888                 // we require the name to exist
889                 LASSERT(false, /**/);
890         }
891
892         return *it;
893 }
894
895
896 bool TextClass::deleteLayout(docstring const & name)
897 {
898         if (name == defaultLayoutName() || name == plainLayoutName())
899                 return false;
900
901         LayoutList::iterator it =
902                 remove_if(layoutlist_.begin(), layoutlist_.end(),
903                           LayoutNamesEqual(name));
904
905         LayoutList::iterator end = layoutlist_.end();
906         bool const ret = (it != end);
907         layoutlist_.erase(it, end);
908         return ret;
909 }
910
911
912 // Load textclass info if not loaded yet
913 bool TextClass::load(string const & path) const
914 {
915         if (loaded_)
916                 return true;
917
918         // Read style-file, provided path is searched before the system ones
919         // If path is a file, it is loaded directly.
920         FileName layout_file(path);
921         if (!path.empty() && !layout_file.isReadableFile())
922                 layout_file = FileName(addName(path, name_ + ".layout"));
923         if (layout_file.empty() || !layout_file.exists())
924                 layout_file = libFileSearch("layouts", name_, "layout");
925         loaded_ = const_cast<TextClass*>(this)->read(layout_file);
926
927         if (!loaded_) {
928                 lyxerr << "Error reading `"
929                        << to_utf8(makeDisplayPath(layout_file.absFilename()))
930                        << "'\n(Check `" << name_
931                        << "')\nCheck your installation and "
932                         "try Options/Reconfigure..." << endl;
933         }
934
935         return loaded_;
936 }
937
938
939 void DocumentClass::addLayoutIfNeeded(docstring const & n) const
940 {
941         if (!hasLayout(n))
942                 layoutlist_.push_back(createBasicLayout(n, true));
943 }
944
945
946 InsetLayout const & DocumentClass::insetLayout(docstring const & name) const 
947 {
948         // FIXME The fix for the InsetLayout part of 4812 would be here:
949         // Add the InsetLayout to the document class if it is not found.
950         docstring n = name;
951         InsetLayouts::const_iterator cen = insetlayoutlist_.end();
952         while (!n.empty()) {
953                 InsetLayouts::const_iterator cit = insetlayoutlist_.lower_bound(n);
954                 if (cit != cen && cit->first == n)
955                         return cit->second;
956                 size_t i = n.find(':');
957                 if (i == string::npos)
958                         break;
959                 n = n.substr(0, i);
960         }
961         return plain_insetlayout_;
962 }
963
964
965 docstring const & TextClass::defaultLayoutName() const
966 {
967         // This really should come from the actual layout... (Lgb)
968         return defaultlayout_;
969 }
970
971
972 Layout const & TextClass::defaultLayout() const
973 {
974         return operator[](defaultLayoutName());
975 }
976
977
978 bool TextClass::isDefaultLayout(Layout const & layout) const 
979 {
980         return layout.name() == defaultLayoutName();
981 }
982
983
984 bool TextClass::isPlainLayout(Layout const & layout) const 
985 {
986         return layout.name() == plainLayoutName();
987 }
988
989
990 Layout TextClass::createBasicLayout(docstring const & name, bool unknown) const
991 {
992         static Layout * defaultLayout = NULL;
993
994         if (defaultLayout) {
995                 defaultLayout->setUnknown(unknown);
996                 defaultLayout->setName(name);
997                 return *defaultLayout;
998         }
999
1000         static char const * s = "Margin Static\n"
1001                         "LatexType Paragraph\n"
1002                         "LatexName dummy\n"
1003                         "Align Block\n"
1004                         "AlignPossible Left, Right, Center\n"
1005                         "LabelType No_Label\n"
1006                         "End";
1007         istringstream ss(s);
1008         Lexer lex(textClassTags);
1009         lex.setStream(ss);
1010         defaultLayout = new Layout;
1011         defaultLayout->setUnknown(unknown);
1012         defaultLayout->setName(name);
1013         if (!readStyle(lex, *defaultLayout)) {
1014                 // The only way this happens is because the hardcoded layout above
1015                 // is wrong.
1016                 LASSERT(false, /**/);
1017         };
1018         return *defaultLayout;
1019 }
1020
1021 /////////////////////////////////////////////////////////////////////////
1022 //
1023 // DocumentClassBundle
1024 //
1025 /////////////////////////////////////////////////////////////////////////
1026
1027 DocumentClassBundle::~DocumentClassBundle()
1028 {
1029         for (size_t i = 0; i != documentClasses_.size(); ++i)
1030                 delete documentClasses_[i];
1031         documentClasses_.clear();
1032 }
1033
1034 DocumentClass & DocumentClassBundle::newClass(LayoutFile const & baseClass)
1035 {
1036         DocumentClass * dc = new DocumentClass(baseClass);
1037         documentClasses_.push_back(dc);
1038         return *documentClasses_.back();
1039 }
1040
1041
1042 DocumentClassBundle & DocumentClassBundle::get()
1043 {
1044         static DocumentClassBundle singleton; 
1045         return singleton; 
1046 }
1047
1048
1049 /////////////////////////////////////////////////////////////////////////
1050 //
1051 // DocumentClass
1052 //
1053 /////////////////////////////////////////////////////////////////////////
1054
1055 DocumentClass::DocumentClass(LayoutFile const & tc)
1056         : TextClass(tc)
1057 {}
1058
1059
1060 bool DocumentClass::hasLaTeXLayout(std::string const & lay) const
1061 {
1062         LayoutList::const_iterator it  = layoutlist_.begin();
1063         LayoutList::const_iterator end = layoutlist_.end();
1064         for (; it != end; ++it)
1065                 if (it->latexname() == lay)
1066                         return true;
1067         return false;
1068 }
1069
1070
1071 bool DocumentClass::provides(string const & p) const
1072 {
1073         return provides_.find(p) != provides_.end();
1074 }
1075
1076
1077 bool DocumentClass::hasTocLevels() const
1078 {
1079         return min_toclevel_ != Layout::NOT_IN_TOC;
1080 }
1081
1082
1083 /////////////////////////////////////////////////////////////////////////
1084 //
1085 // PageSides
1086 //
1087 /////////////////////////////////////////////////////////////////////////
1088
1089 ostream & operator<<(ostream & os, PageSides p)
1090 {
1091         switch (p) {
1092         case OneSide:
1093                 os << '1';
1094                 break;
1095         case TwoSides:
1096                 os << '2';
1097                 break;
1098         }
1099         return os;
1100 }
1101
1102
1103 } // namespace lyx