]> git.lyx.org Git - lyx.git/blob - src/TextClass.cpp
Fixed some lines that were too long. It compiled afterwards.
[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 #include "debug.h"
19 #include "Lexer.h"
20 #include "Counters.h"
21 #include "gettext.h"
22 #include "Floating.h"
23 #include "FloatList.h"
24
25 #include "frontends/alert.h"
26
27 #include "support/lstrings.h"
28 #include "support/lyxlib.h"
29 #include "support/filetools.h"
30 #include "support/os.h"
31
32 #include <boost/filesystem/operations.hpp>
33 namespace fs = boost::filesystem;
34
35 #include <sstream>
36
37
38 namespace lyx {
39
40 using support::FileName;
41 using support::libFileSearch;
42 using support::makeDisplayPath;
43 using support::quoteName;
44 using support::rtrim;
45 using support::subst;
46 using support::addName;
47
48 using std::endl;
49 using std::find_if;
50 using std::remove_if;
51 using std::string;
52 using std::ostream;
53
54
55 namespace {
56
57 class LayoutNamesEqual : public std::unary_function<Layout_ptr, bool> {
58 public:
59         LayoutNamesEqual(docstring const & name)
60                 : name_(name)
61         {}
62         bool operator()(Layout_ptr const & c) const
63         {
64                 return c->name() == name_;
65         }
66 private:
67         docstring name_;
68 };
69
70
71 int const FORMAT = 4;
72
73
74 bool layout2layout(FileName const & filename, FileName const & tempfile)
75 {
76         FileName const script = libFileSearch("scripts", "layout2layout.py");
77         if (script.empty()) {
78                 lyxerr << "Could not find layout conversion "
79                           "script layout2layout.py." << endl;
80                 return false;
81         }
82
83         std::ostringstream command;
84         command << support::os::python() << ' ' << quoteName(script.toFilesystemEncoding())
85                 << ' ' << quoteName(filename.toFilesystemEncoding())
86                 << ' ' << quoteName(tempfile.toFilesystemEncoding());
87         string const command_str = command.str();
88
89         LYXERR(Debug::TCLASS) << "Running `" << command_str << '\'' << endl;
90
91         support::cmd_ret const ret =
92                 support::runCommand(command_str);
93         if (ret.first != 0) {
94                 lyxerr << "Could not run layout conversion "
95                           "script layout2layout.py." << endl;
96                 return false;
97         }
98         return true;
99 }
100
101 } // namespace anon
102
103
104 TextClass::TextClass(string const & fn, string const & cln,
105                            string const & desc, bool texClassAvail )
106         : name_(fn), latexname_(cln), description_(desc),
107           floatlist_(new FloatList), ctrs_(new Counters),
108           texClassAvail_(texClassAvail)
109 {
110         outputType_ = LATEX;
111         columns_ = 1;
112         sides_ = OneSide;
113         secnumdepth_ = 3;
114         tocdepth_ = 3;
115         pagestyle_ = "default";
116         defaultfont_ = Font(Font::ALL_SANE);
117         opt_fontsize_ = "10|11|12";
118         opt_pagestyle_ = "empty|plain|headings|fancy";
119         titletype_ = TITLE_COMMAND_AFTER;
120         titlename_ = "maketitle";
121         loaded_ = false;
122 }
123
124
125 bool TextClass::isTeXClassAvailable() const
126 {
127         return texClassAvail_;
128 }
129
130
131 bool TextClass::do_readStyle(Lexer & lexrc, Layout & lay)
132 {
133         LYXERR(Debug::TCLASS) << "Reading style " << to_utf8(lay.name()) << endl;
134         if (!lay.read(lexrc, *this)) {
135                 // Resolve fonts
136                 lay.resfont = lay.font;
137                 lay.resfont.realize(defaultfont());
138                 lay.reslabelfont = lay.labelfont;
139                 lay.reslabelfont.realize(defaultfont());
140                 return false; // no errors
141         }
142         lyxerr << "Error parsing style `" << to_utf8(lay.name()) << '\'' << endl;
143         return true;
144 }
145
146
147 enum TextClassTags {
148         TC_OUTPUTTYPE = 1,
149         TC_INPUT,
150         TC_STYLE,
151         TC_DEFAULTSTYLE,
152         TC_CHARSTYLE,
153         TC_ENVIRONMENT,
154         TC_NOSTYLE,
155         TC_COLUMNS,
156         TC_SIDES,
157         TC_PAGESTYLE,
158         TC_DEFAULTFONT,
159         TC_SECNUMDEPTH,
160         TC_TOCDEPTH,
161         TC_CLASSOPTIONS,
162         TC_PREAMBLE,
163         TC_PROVIDES,
164         TC_LEFTMARGIN,
165         TC_RIGHTMARGIN,
166         TC_FLOAT,
167         TC_COUNTER,
168         TC_NOFLOAT,
169         TC_TITLELATEXNAME,
170         TC_TITLELATEXTYPE,
171         TC_FORMAT
172 };
173
174
175 // Reads a textclass structure from file.
176 bool TextClass::read(FileName const & filename, bool merge)
177 {
178         if (!support::isFileReadable(filename)) {
179                 lyxerr << "Cannot read layout file `" << filename << "'."
180                        << endl;
181                 return true;
182         }
183
184         keyword_item textClassTags[] = {
185                 { "charstyle",       TC_CHARSTYLE },
186                 { "classoptions",    TC_CLASSOPTIONS },
187                 { "columns",         TC_COLUMNS },
188                 { "counter",         TC_COUNTER },
189                 { "defaultfont",     TC_DEFAULTFONT },
190                 { "defaultstyle",    TC_DEFAULTSTYLE },
191                 { "environment",     TC_ENVIRONMENT },
192                 { "float",           TC_FLOAT },
193                 { "format",          TC_FORMAT },
194                 { "input",           TC_INPUT },
195                 { "leftmargin",      TC_LEFTMARGIN },
196                 { "nofloat",         TC_NOFLOAT },
197                 { "nostyle",         TC_NOSTYLE },
198                 { "outputtype",      TC_OUTPUTTYPE },
199                 { "pagestyle",       TC_PAGESTYLE },
200                 { "preamble",        TC_PREAMBLE },
201                 { "provides",        TC_PROVIDES },
202                 { "rightmargin",     TC_RIGHTMARGIN },
203                 { "secnumdepth",     TC_SECNUMDEPTH },
204                 { "sides",           TC_SIDES },
205                 { "style",           TC_STYLE },
206                 { "titlelatexname",  TC_TITLELATEXNAME },
207                 { "titlelatextype",  TC_TITLELATEXTYPE },
208                 { "tocdepth",        TC_TOCDEPTH }
209         };
210
211         if (!merge)
212                 LYXERR(Debug::TCLASS) << "Reading textclass "
213                                         << to_utf8(makeDisplayPath(filename.absFilename()))
214                                         << endl;
215         else
216                 LYXERR(Debug::TCLASS) << "Reading input file "
217                                      << to_utf8(makeDisplayPath(filename.absFilename()))
218                                      << endl;
219
220         Lexer lexrc(textClassTags,
221                 sizeof(textClassTags) / sizeof(textClassTags[0]));
222
223         lexrc.setFile(filename);
224         bool error = !lexrc.isOK();
225
226         // Format of files before the 'Format' tag was introduced
227         int format = 1;
228
229         // parsing
230         while (lexrc.isOK() && !error) {
231                 int le = lexrc.lex();
232
233                 switch (le) {
234                 case Lexer::LEX_FEOF:
235                         continue;
236
237                 case Lexer::LEX_UNDEF:
238                         lexrc.printError("Unknown TextClass tag `$$Token'");
239                         error = true;
240                         continue;
241
242                 default:
243                         break;
244                 }
245
246                 switch (static_cast<TextClassTags>(le)) {
247
248                 case TC_FORMAT:
249                         if (lexrc.next())
250                                 format = lexrc.getInteger();
251                         break;
252
253                 case TC_OUTPUTTYPE:   // output type definition
254                         readOutputType(lexrc);
255                         break;
256
257                 case TC_INPUT: // Include file
258                         if (lexrc.next()) {
259                                 string const inc = lexrc.getString();
260                                 FileName tmp = libFileSearch("layouts", inc,
261                                                             "layout");
262
263                                 if (tmp.empty()) {
264                                         lexrc.printError("Could not find input"
265                                                          "file: " + inc);
266                                         error = true;
267                                 } else if (read(tmp, true)) {
268                                         lexrc.printError("Error reading input"
269                                                          "file: " + tmp.absFilename());
270                                         error = true;
271                                 }
272                         }
273                         break;
274
275                 case TC_DEFAULTSTYLE:
276                         if (lexrc.next()) {
277                                 docstring const name = from_utf8(subst(lexrc.getString(),
278                                                           '_', ' '));
279                                 defaultlayout_ = name;
280                         }
281                         break;
282
283                 case TC_ENVIRONMENT:
284                 case TC_STYLE:
285                         if (lexrc.next()) {
286                                 docstring const name = from_utf8(subst(lexrc.getString(),
287                                                     '_', ' '));
288                                 if (name.empty()) {
289                                         string s = "Could not read name for style: `$$Token' "
290                                                 + lexrc.getString() + " is probably not valid UTF-8!";
291                                         lexrc.printError(s.c_str());
292                                         Layout lay;
293                                         error = do_readStyle(lexrc, lay);
294                                 } else if (hasLayout(name)) {
295                                         Layout * lay = operator[](name).get();
296                                         error = do_readStyle(lexrc, *lay);
297                                 } else {
298                                         Layout lay;
299                                         lay.setName(name);
300                                         if (le == TC_ENVIRONMENT)
301                                                 lay.is_environment = true;
302                                         error = do_readStyle(lexrc, lay);
303                                         if (!error)
304                                                 layoutlist_.push_back(
305                                                         boost::shared_ptr<Layout>(new Layout(lay))
306                                                         );
307
308                                         if (defaultlayout_.empty()) {
309                                                 // We do not have a default
310                                                 // layout yet, so we choose
311                                                 // the first layout we
312                                                 // encounter.
313                                                 defaultlayout_ = name;
314                                         }
315                                 }
316                         }
317                         else {
318                                 lexrc.printError("No name given for style: `$$Token'.");
319                                 error = true;
320                         }
321                         break;
322
323                 case TC_NOSTYLE:
324                         if (lexrc.next()) {
325                                 docstring const style = from_utf8(subst(lexrc.getString(),
326                                                      '_', ' '));
327                                 if (!delete_layout(style))
328                                         lyxerr << "Cannot delete style `"
329                                                << to_utf8(style) << '\'' << endl;
330 //                                      lexrc.printError("Cannot delete style"
331 //                                                       " `$$Token'");
332                         }
333                         break;
334
335                 case TC_COLUMNS:
336                         if (lexrc.next())
337                                 columns_ = lexrc.getInteger();
338                         break;
339
340                 case TC_SIDES:
341                         if (lexrc.next()) {
342                                 switch (lexrc.getInteger()) {
343                                 case 1: sides_ = OneSide; break;
344                                 case 2: sides_ = TwoSides; break;
345                                 default:
346                                         lyxerr << "Impossible number of page"
347                                                 " sides, setting to one."
348                                                << endl;
349                                         sides_ = OneSide;
350                                         break;
351                                 }
352                         }
353                         break;
354
355                 case TC_PAGESTYLE:
356                         lexrc.next();
357                         pagestyle_ = rtrim(lexrc.getString());
358                         break;
359
360                 case TC_DEFAULTFONT:
361                         defaultfont_.lyxRead(lexrc);
362                         if (!defaultfont_.resolved()) {
363                                 lexrc.printError("Warning: defaultfont should "
364                                                  "be fully instantiated!");
365                                 defaultfont_.realize(Font(Font::ALL_SANE));
366                         }
367                         break;
368
369                 case TC_SECNUMDEPTH:
370                         lexrc.next();
371                         secnumdepth_ = lexrc.getInteger();
372                         break;
373
374                 case TC_TOCDEPTH:
375                         lexrc.next();
376                         tocdepth_ = lexrc.getInteger();
377                         break;
378
379                         // First step to support options
380                 case TC_CLASSOPTIONS:
381                         readClassOptions(lexrc);
382                         break;
383
384                 case TC_PREAMBLE:
385                         preamble_ = from_utf8(lexrc.getLongString("EndPreamble"));
386                         break;
387
388                 case TC_PROVIDES: {
389                         lexrc.next();
390                         string const feature = lexrc.getString();
391                         lexrc.next();
392                         if (lexrc.getInteger())
393                                 provides_.insert(feature);
394                         else
395                                 provides_.erase(feature);
396                         break;
397                 }
398
399                 case TC_LEFTMARGIN:     // left margin type
400                         if (lexrc.next())
401                                 leftmargin_ = lexrc.getString();
402                         break;
403
404                 case TC_RIGHTMARGIN:    // right margin type
405                         if (lexrc.next())
406                                 rightmargin_ = lexrc.getString();
407                         break;
408                 case TC_CHARSTYLE:
409                         if (lexrc.next()) {
410                                 string const name = subst(lexrc.getString(), '_', ' ');
411                                 readCharStyle(lexrc, name);
412                         }
413                         break;
414                 case TC_FLOAT:
415                         readFloat(lexrc);
416                         break;
417                 case TC_COUNTER:
418                         readCounter(lexrc);
419                         break;
420                 case TC_TITLELATEXTYPE:
421                         readTitleType(lexrc);
422                         break;
423                 case TC_TITLELATEXNAME:
424                         if (lexrc.next())
425                                 titlename_ = lexrc.getString();
426                         break;
427                 case TC_NOFLOAT:
428                         if (lexrc.next()) {
429                                 string const nofloat = lexrc.getString();
430                                 floatlist_->erase(nofloat);
431                         }
432                         break;
433                 }
434                 if (format != FORMAT)
435                         break;
436         }
437
438         if (format != FORMAT) {
439                 LYXERR(Debug::TCLASS) << "Converting layout file from format "
440                                       << format << " to " << FORMAT << endl;
441                 FileName const tempfile(support::tempName());
442                 error = !layout2layout(filename, tempfile);
443                 if (!error)
444                         error = read(tempfile, merge);
445                 support::unlink(tempfile);
446                 return error;
447         }
448
449         if (!merge) { // we are at top level here.
450                 LYXERR(Debug::TCLASS) << "Finished reading textclass "
451                                       << to_utf8(makeDisplayPath(filename.absFilename()))
452                                       << endl;
453                 if (defaultlayout_.empty()) {
454                         lyxerr << "Error: Textclass '" << name_
455                                << "' is missing a defaultstyle." << endl;
456                         error = true;
457                 }
458
459                 min_toclevel_ = Layout::NOT_IN_TOC;
460                 max_toclevel_ = Layout::NOT_IN_TOC;
461                 const_iterator cit = begin();
462                 const_iterator the_end = end();
463                 for ( ; cit != the_end ; ++cit) {
464                         int const toclevel = (*cit)->toclevel;
465                         if (toclevel != Layout::NOT_IN_TOC) {
466                                 if (min_toclevel_ == Layout::NOT_IN_TOC)
467                                         min_toclevel_ = toclevel;
468                                 else
469                                         min_toclevel_ = std::min(min_toclevel_,
470                                                          toclevel);
471                                 max_toclevel_ = std::max(max_toclevel_,
472                                                          toclevel);
473                         }
474                 }
475                 LYXERR(Debug::TCLASS)
476                         << "Minimum TocLevel is " << min_toclevel_
477                         << ", maximum is " << max_toclevel_ <<endl;
478
479         } else
480                 LYXERR(Debug::TCLASS) << "Finished reading input file "
481                                       << to_utf8(makeDisplayPath(filename.absFilename()))
482                                       << endl;
483
484         return error;
485 }
486
487
488 void TextClass::readTitleType(Lexer & lexrc)
489 {
490         keyword_item titleTypeTags[] = {
491                 { "commandafter", TITLE_COMMAND_AFTER },
492                 { "environment", TITLE_ENVIRONMENT }
493         };
494
495         PushPopHelper pph(lexrc, titleTypeTags, TITLE_ENVIRONMENT);
496
497         int le = lexrc.lex();
498         switch (le) {
499         case Lexer::LEX_UNDEF:
500                 lexrc.printError("Unknown output type `$$Token'");
501                 return;
502         case TITLE_COMMAND_AFTER:
503         case TITLE_ENVIRONMENT:
504                 titletype_ = static_cast<LYX_TITLE_LATEX_TYPES>(le);
505                 break;
506         default:
507                 lyxerr << "Unhandled value " << le
508                        << " in TextClass::readTitleType." << endl;
509
510                 break;
511         }
512 }
513
514
515 void TextClass::readOutputType(Lexer & lexrc)
516 {
517         keyword_item outputTypeTags[] = {
518                 { "docbook", DOCBOOK },
519                 { "latex", LATEX },
520                 { "literate", LITERATE }
521         };
522
523         PushPopHelper pph(lexrc, outputTypeTags, LITERATE);
524
525         int le = lexrc.lex();
526         switch (le) {
527         case Lexer::LEX_UNDEF:
528                 lexrc.printError("Unknown output type `$$Token'");
529                 return;
530         case LATEX:
531         case DOCBOOK:
532         case LITERATE:
533                 outputType_ = static_cast<OutputType>(le);
534                 break;
535         default:
536                 lyxerr << "Unhandled value " << le
537                        << " in TextClass::readOutputType." << endl;
538
539                 break;
540         }
541 }
542
543
544 enum ClassOptionsTags {
545         CO_FONTSIZE = 1,
546         CO_PAGESTYLE,
547         CO_OTHER,
548         CO_HEADER,
549         CO_END
550 };
551
552
553 void TextClass::readClassOptions(Lexer & lexrc)
554 {
555         keyword_item classOptionsTags[] = {
556                 {"end", CO_END },
557                 {"fontsize", CO_FONTSIZE },
558                 {"header", CO_HEADER },
559                 {"other", CO_OTHER },
560                 {"pagestyle", CO_PAGESTYLE }
561         };
562
563         lexrc.pushTable(classOptionsTags, CO_END);
564         bool getout = false;
565         while (!getout && lexrc.isOK()) {
566                 int le = lexrc.lex();
567                 switch (le) {
568                 case Lexer::LEX_UNDEF:
569                         lexrc.printError("Unknown ClassOption tag `$$Token'");
570                         continue;
571                 default: break;
572                 }
573                 switch (static_cast<ClassOptionsTags>(le)) {
574                 case CO_FONTSIZE:
575                         lexrc.next();
576                         opt_fontsize_ = rtrim(lexrc.getString());
577                         break;
578                 case CO_PAGESTYLE:
579                         lexrc.next();
580                         opt_pagestyle_ = rtrim(lexrc.getString());
581                         break;
582                 case CO_OTHER:
583                         lexrc.next();
584                         options_ = lexrc.getString();
585                         break;
586                 case CO_HEADER:
587                         lexrc.next();
588                         class_header_ = subst(lexrc.getString(), "&quot;", "\"");
589                         break;
590                 case CO_END:
591                         getout = true;
592                         break;
593                 }
594         }
595         lexrc.popTable();
596 }
597
598 enum CharStyleTags {
599         CS_FONT = 1,
600         CS_LABELFONT,
601         CS_LATEXTYPE,
602         CS_LATEXNAME,
603         CS_LATEXPARAM,
604         CS_PREAMBLE,
605         CS_END
606 };
607
608
609 void TextClass::readCharStyle(Lexer & lexrc, string const & name)
610 {
611         keyword_item elementTags[] = {
612                 { "end", CS_END },
613                 { "font", CS_FONT },
614                 { "labelfont", CS_LABELFONT },
615                 { "latexname", CS_LATEXNAME },
616                 { "latexparam", CS_LATEXPARAM },
617                 { "latextype", CS_LATEXTYPE },
618                 { "preamble", CS_PREAMBLE}
619         };
620
621         lexrc.pushTable(elementTags, CS_END);
622
623         string latextype;
624         string latexname;
625         string latexparam;
626         Font font(Font::ALL_INHERIT);
627         Font labelfont(Font::ALL_INHERIT);
628         string preamble;
629
630         bool getout = false;
631         while (!getout && lexrc.isOK()) {
632                 int le = lexrc.lex();
633                 switch (le) {
634                 case Lexer::LEX_UNDEF:
635                         lexrc.printError("Unknown ClassOption tag `$$Token'");
636                         continue;
637                 default: break;
638                 }
639                 switch (static_cast<CharStyleTags>(le)) {
640                 case CS_LATEXTYPE:
641                         lexrc.next();
642                         latextype = lexrc.getString();
643                         break;
644                 case CS_LATEXNAME:
645                         lexrc.next();
646                         latexname = lexrc.getString();
647                         break;
648                 case CS_LATEXPARAM:
649                         lexrc.next();
650                         latexparam = subst(lexrc.getString(), "&quot;", "\"");
651                         break;
652                 case CS_LABELFONT:
653                         labelfont.lyxRead(lexrc);
654                         break;
655                 case CS_FONT:
656                         font.lyxRead(lexrc);
657                         labelfont = font;
658                         break;
659                 case CS_PREAMBLE:
660                         preamble = lexrc.getLongString("EndPreamble");
661                         break;
662                 case CS_END:
663                         getout = true;
664                         break;
665                 }
666         }
667
668         //
669         // Here add element to list if getout == true
670         if (getout) {
671                 CharStyle cs;
672                 cs.name = name;
673                 cs.latextype = latextype;
674                 cs.latexname = latexname;
675                 cs.latexparam = latexparam;
676                 cs.font = font;
677                 cs.labelfont = labelfont;
678                 cs.preamble = from_utf8(preamble);
679                 charstyles().push_back(cs);
680         }
681
682         lexrc.popTable();
683 }
684
685
686 enum FloatTags {
687         FT_TYPE = 1,
688         FT_NAME,
689         FT_PLACEMENT,
690         FT_EXT,
691         FT_WITHIN,
692         FT_STYLE,
693         FT_LISTNAME,
694         FT_BUILTIN,
695         FT_END
696 };
697
698
699 void TextClass::readFloat(Lexer & lexrc)
700 {
701         keyword_item floatTags[] = {
702                 { "end", FT_END },
703                 { "extension", FT_EXT },
704                 { "guiname", FT_NAME },
705                 { "latexbuiltin", FT_BUILTIN },
706                 { "listname", FT_LISTNAME },
707                 { "numberwithin", FT_WITHIN },
708                 { "placement", FT_PLACEMENT },
709                 { "style", FT_STYLE },
710                 { "type", FT_TYPE }
711         };
712
713         lexrc.pushTable(floatTags, FT_END);
714
715         string type;
716         string placement;
717         string ext;
718         string within;
719         string style;
720         string name;
721         string listname;
722         bool builtin = false;
723
724         bool getout = false;
725         while (!getout && lexrc.isOK()) {
726                 int le = lexrc.lex();
727                 switch (le) {
728                 case Lexer::LEX_UNDEF:
729                         lexrc.printError("Unknown ClassOption tag `$$Token'");
730                         continue;
731                 default: break;
732                 }
733                 switch (static_cast<FloatTags>(le)) {
734                 case FT_TYPE:
735                         lexrc.next();
736                         type = lexrc.getString();
737                         // Here we could check if this type is already defined
738                         // and modify it with the rest of the vars instead.
739                         break;
740                 case FT_NAME:
741                         lexrc.next();
742                         name = lexrc.getString();
743                         break;
744                 case FT_PLACEMENT:
745                         lexrc.next();
746                         placement = lexrc.getString();
747                         break;
748                 case FT_EXT:
749                         lexrc.next();
750                         ext = lexrc.getString();
751                         break;
752                 case FT_WITHIN:
753                         lexrc.next();
754                         within = lexrc.getString();
755                         if (within == "none")
756                                 within.erase();
757                         break;
758                 case FT_STYLE:
759                         lexrc.next();
760                         style = lexrc.getString();
761                         break;
762                 case FT_LISTNAME:
763                         lexrc.next();
764                         listname = lexrc.getString();
765                         break;
766                 case FT_BUILTIN:
767                         lexrc.next();
768                         builtin = lexrc.getBool();
769                         break;
770                 case FT_END:
771                         getout = true;
772                         break;
773                 }
774         }
775
776         // Here if have a full float if getout == true
777         if (getout) {
778                 Floating newfloat(type, placement, ext, within,
779                                   style, name, listname, builtin);
780                 floatlist_->newFloat(newfloat);
781         }
782
783         lexrc.popTable();
784 }
785
786
787 enum CounterTags {
788         CT_NAME = 1,
789         CT_WITHIN,
790         CT_END
791 };
792
793 void TextClass::readCounter(Lexer & lexrc)
794 {
795         keyword_item counterTags[] = {
796                 { "end", CT_END },
797                 { "name", CT_NAME },
798                 { "within", CT_WITHIN }
799         };
800
801         lexrc.pushTable(counterTags, CT_END);
802
803         docstring name;
804         docstring within;
805
806         bool getout = false;
807         while (!getout && lexrc.isOK()) {
808                 int le = lexrc.lex();
809                 switch (le) {
810                 case Lexer::LEX_UNDEF:
811                         lexrc.printError("Unknown ClassOption tag `$$Token'");
812                         continue;
813                 default: break;
814                 }
815                 switch (static_cast<CounterTags>(le)) {
816                 case CT_NAME:
817                         lexrc.next();
818                         name = from_ascii(lexrc.getString());
819                         break;
820                 case CT_WITHIN:
821                         lexrc.next();
822                         within = from_ascii(lexrc.getString());
823                         if (within == "none")
824                                 within.erase();
825                         break;
826                 case CT_END:
827                         getout = true;
828                         break;
829                 }
830         }
831
832         // Here if have a full counter if getout == true
833         if (getout) {
834                 if (within.empty())
835                         ctrs_->newCounter(name);
836                 else
837                         ctrs_->newCounter(name, within);
838         }
839
840         lexrc.popTable();
841 }
842
843
844 Font const & TextClass::defaultfont() const
845 {
846         return defaultfont_;
847 }
848
849
850 string const & TextClass::leftmargin() const
851 {
852         return leftmargin_;
853 }
854
855
856 string const & TextClass::rightmargin() const
857 {
858         return rightmargin_;
859 }
860
861
862 bool TextClass::hasLayout(docstring const & n) const
863 {
864         docstring const name = n.empty() ? defaultLayoutName() : n;
865
866         return find_if(layoutlist_.begin(), layoutlist_.end(),
867                        LayoutNamesEqual(name))
868                 != layoutlist_.end();
869 }
870
871
872
873 Layout_ptr const & TextClass::operator[](docstring const & name) const
874 {
875         BOOST_ASSERT(!name.empty());
876
877         LayoutList::const_iterator cit =
878                 find_if(layoutlist_.begin(),
879                         layoutlist_.end(),
880                         LayoutNamesEqual(name));
881
882         if (cit == layoutlist_.end()) {
883                 lyxerr << "We failed to find the layout '" << to_utf8(name)
884                        << "' in the layout list. You MUST investigate!"
885                        << endl;
886                 for (LayoutList::const_iterator it = layoutlist_.begin();
887                          it != layoutlist_.end(); ++it)
888                         lyxerr  << " " << to_utf8(it->get()->name()) << endl;
889
890                 // we require the name to exist
891                 BOOST_ASSERT(false);
892         }
893
894         return (*cit);
895 }
896
897
898
899 bool TextClass::delete_layout(docstring const & name)
900 {
901         if (name == defaultLayoutName())
902                 return false;
903
904         LayoutList::iterator it =
905                 remove_if(layoutlist_.begin(), layoutlist_.end(),
906                           LayoutNamesEqual(name));
907
908         LayoutList::iterator end = layoutlist_.end();
909         bool const ret = (it != end);
910         layoutlist_.erase(it, end);
911         return ret;
912 }
913
914
915 // Load textclass info if not loaded yet
916 bool TextClass::load(string const & path) const
917 {
918         if (loaded_)
919                 return true;
920
921         // Read style-file, provided path is searched before the system ones
922         FileName layout_file;
923         if (!path.empty())
924                 layout_file = FileName(addName(path, name_ + ".layout"));
925         if (layout_file.empty() || !fs::exists(layout_file.toFilesystemEncoding()))
926                 layout_file = libFileSearch("layouts", name_, "layout");
927         loaded_ = const_cast<TextClass*>(this)->read(layout_file) == 0;
928
929         if (!loaded_) {
930                 lyxerr << "Error reading `"
931                        << to_utf8(makeDisplayPath(layout_file.absFilename()))
932                        << "'\n(Check `" << name_
933                        << "')\nCheck your installation and "
934                         "try Options/Reconfigure..." << endl;
935         }
936
937         return loaded_;
938 }
939
940
941 FloatList & TextClass::floats()
942 {
943         return *floatlist_.get();
944 }
945
946
947 FloatList const & TextClass::floats() const
948 {
949         return *floatlist_.get();
950 }
951
952
953 Counters & TextClass::counters() const
954 {
955         return *ctrs_.get();
956 }
957
958
959 CharStyles::iterator TextClass::charstyle(string const & s) const
960 {
961         CharStyles::iterator cs = charstyles().begin();
962         CharStyles::iterator csend = charstyles().end();
963         for (; cs != csend; ++cs) {
964                 if (cs->name == s)
965                         return cs;
966         }
967         return csend;
968 }
969
970
971 docstring const & TextClass::defaultLayoutName() const
972 {
973         // This really should come from the actual layout... (Lgb)
974         return defaultlayout_;
975 }
976
977
978 Layout_ptr const & TextClass::defaultLayout() const
979 {
980         return operator[](defaultLayoutName());
981 }
982
983
984 string const & TextClass::name() const
985 {
986         return name_;
987 }
988
989
990 string const & TextClass::latexname() const
991 {
992         const_cast<TextClass*>(this)->load();
993         return latexname_;
994 }
995
996
997 string const & TextClass::description() const
998 {
999         return description_;
1000 }
1001
1002
1003 string const & TextClass::opt_fontsize() const
1004 {
1005         return opt_fontsize_;
1006 }
1007
1008
1009 string const & TextClass::opt_pagestyle() const
1010 {
1011         return opt_pagestyle_;
1012 }
1013
1014
1015 string const & TextClass::options() const
1016 {
1017         return options_;
1018 }
1019
1020
1021 string const & TextClass::class_header() const
1022 {
1023         return class_header_;
1024 }
1025
1026
1027 string const & TextClass::pagestyle() const
1028 {
1029         return pagestyle_;
1030 }
1031
1032
1033 docstring const & TextClass::preamble() const
1034 {
1035         return preamble_;
1036 }
1037
1038
1039 TextClass::PageSides TextClass::sides() const
1040 {
1041         return sides_;
1042 }
1043
1044
1045 int TextClass::secnumdepth() const
1046 {
1047         return secnumdepth_;
1048 }
1049
1050
1051 int TextClass::tocdepth() const
1052 {
1053         return tocdepth_;
1054 }
1055
1056
1057 OutputType TextClass::outputType() const
1058 {
1059         return outputType_;
1060 }
1061
1062
1063 bool TextClass::provides(string const & p) const
1064 {
1065         return provides_.find(p) != provides_.end();
1066 }
1067
1068
1069 unsigned int TextClass::columns() const
1070 {
1071         return columns_;
1072 }
1073
1074
1075 LYX_TITLE_LATEX_TYPES TextClass::titletype() const
1076 {
1077         return titletype_;
1078 }
1079
1080
1081 string const & TextClass::titlename() const
1082 {
1083         return titlename_;
1084 }
1085
1086
1087 int TextClass::size() const
1088 {
1089         return layoutlist_.size();
1090 }
1091
1092
1093 int TextClass::min_toclevel() const
1094 {
1095         return min_toclevel_;
1096 }
1097
1098
1099 int TextClass::max_toclevel() const
1100 {
1101         return max_toclevel_;
1102 }
1103
1104
1105 bool TextClass::hasTocLevels() const
1106 {
1107         return min_toclevel_ != Layout::NOT_IN_TOC;
1108 }
1109
1110
1111 ostream & operator<<(ostream & os, TextClass::PageSides p)
1112 {
1113         switch (p) {
1114         case TextClass::OneSide:
1115                 os << '1';
1116                 break;
1117         case TextClass::TwoSides:
1118                 os << '2';
1119                 break;
1120         }
1121         return os;
1122 }
1123
1124
1125 } // namespace lyx