X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Flayout.C;h=bad3b274118812ec634e630be50b5cb6c8520857;hb=d5b3b6807a719bdc3510444b307a1d22a94c6876;hp=c8a55e8aa20af365e3ed3191a5bd691c8dc831c2;hpb=8dccec5c46a1689fe3ea37144252e952771e1e1c;p=lyx.git diff --git a/src/layout.C b/src/layout.C index c8a55e8aa2..bad3b27411 100644 --- a/src/layout.C +++ b/src/layout.C @@ -4,9 +4,10 @@ * LyX, The Document Processor * * Copyright 1995 Matthias Ettrich - * Copyright 1995-1999 The LyX Team. + * Copyright 1995-2000 The LyX Team. * - * ====================================================== */ + * ====================================================== + */ #include @@ -15,8 +16,6 @@ #endif #include -using std::make_pair; -using std::sort; #include "layout.h" #include "lyxlex.h" @@ -25,7 +24,14 @@ using std::sort; #include "debug.h" #include "gettext.h" #include "support/LAssert.h" +#include "support/lyxfunctional.h" +using std::pair; +using std::make_pair; +using std::sort; +using std::endl; +using std::find_if; +using std::remove_if; // Global variable: textclass table. LyXTextClassList textclasslist; @@ -74,7 +80,9 @@ enum LayoutTags { LT_LABELSEP, LT_LABELSTRING, LT_LABELSTRING_APPENDIX, - LT_LABELTYPE, + LT_LABELTYPE, + LT_ENDLABELSTRING, + LT_ENDLABELTYPE, LT_LATEXNAME, LT_LATEXPARAM, LT_LATEXTYPE, @@ -94,47 +102,6 @@ enum LayoutTags { }; -// This table is sorted alphabetically [asierra 30March96] -static keyword_item layoutTags[] = { - { "align", LT_ALIGN }, - { "alignpossible", LT_ALIGNPOSSIBLE }, - { "bottomsep", LT_BOTTOMSEP }, - { "copystyle", LT_COPYSTYLE }, - { "end", LT_END }, - { "fill_bottom", LT_FILL_BOTTOM }, - { "fill_top", LT_FILL_TOP }, - { "font", LT_FONT }, - { "freespacing", LT_FREE_SPACING }, - { "intitle", LT_INTITLE }, - { "itemsep", LT_ITEMSEP }, - { "keepempty", LT_KEEPEMPTY }, - { "labelbottomsep", LT_LABEL_BOTTOMSEP }, - { "labelfont", LT_LABELFONT }, - { "labelindent", LT_LABELINDENT }, - { "labelsep", LT_LABELSEP }, - { "labelstring", LT_LABELSTRING }, - { "labelstringappendix", LT_LABELSTRING_APPENDIX }, - { "labeltype", LT_LABELTYPE }, - { "latexname", LT_LATEXNAME }, - { "latexparam", LT_LATEXPARAM }, - { "latextype", LT_LATEXTYPE }, - { "leftmargin", LT_LEFTMARGIN }, - { "margin", LT_MARGIN }, - { "needprotect", LT_NEED_PROTECT }, - { "newline", LT_NEWLINE }, - { "nextnoindent", LT_NEXTNOINDENT }, - { "obsoletedby", LT_OBSOLETEDBY }, - { "parindent", LT_PARINDENT }, - { "parsep", LT_PARSEP }, - { "parskip", LT_PARSKIP }, - { "preamble", LT_PREAMBLE }, - { "rightmargin", LT_RIGHTMARGIN }, - { "spacing", LT_SPACING }, - { "textfont", LT_TEXTFONT }, - { "topsep", LT_TOPSEP } -}; - - ///////////////////// // Constructor for layout @@ -159,6 +126,7 @@ LyXLayout::LyXLayout () align = LYX_ALIGN_BLOCK; alignpossible = LYX_ALIGN_BLOCK; labeltype = LABEL_NO_LABEL; + endlabeltype = END_LABEL_NO_LABEL; // Should or should not. That is the question. // spacing.set(Spacing::OneHalf); fill_top = false; @@ -171,6 +139,48 @@ LyXLayout::LyXLayout () // Reads a layout definition from file bool LyXLayout::Read (LyXLex & lexrc, LyXTextClass const & tclass) { + // This table is sorted alphabetically [asierra 30March96] + keyword_item layoutTags[] = { + { "align", LT_ALIGN }, + { "alignpossible", LT_ALIGNPOSSIBLE }, + { "bottomsep", LT_BOTTOMSEP }, + { "copystyle", LT_COPYSTYLE }, + { "end", LT_END }, + { "endlabelstring", LT_ENDLABELSTRING }, + { "endlabeltype", LT_ENDLABELTYPE }, + { "fill_bottom", LT_FILL_BOTTOM }, + { "fill_top", LT_FILL_TOP }, + { "font", LT_FONT }, + { "freespacing", LT_FREE_SPACING }, + { "intitle", LT_INTITLE }, + { "itemsep", LT_ITEMSEP }, + { "keepempty", LT_KEEPEMPTY }, + { "labelbottomsep", LT_LABEL_BOTTOMSEP }, + { "labelfont", LT_LABELFONT }, + { "labelindent", LT_LABELINDENT }, + { "labelsep", LT_LABELSEP }, + { "labelstring", LT_LABELSTRING }, + { "labelstringappendix", LT_LABELSTRING_APPENDIX }, + { "labeltype", LT_LABELTYPE }, + { "latexname", LT_LATEXNAME }, + { "latexparam", LT_LATEXPARAM }, + { "latextype", LT_LATEXTYPE }, + { "leftmargin", LT_LEFTMARGIN }, + { "margin", LT_MARGIN }, + { "needprotect", LT_NEED_PROTECT }, + { "newline", LT_NEWLINE }, + { "nextnoindent", LT_NEXTNOINDENT }, + { "obsoletedby", LT_OBSOLETEDBY }, + { "parindent", LT_PARINDENT }, + { "parsep", LT_PARSEP }, + { "parskip", LT_PARSKIP }, + { "preamble", LT_PREAMBLE }, + { "rightmargin", LT_RIGHTMARGIN }, + { "spacing", LT_SPACING }, + { "textfont", LT_TEXTFONT }, + { "topsep", LT_TOPSEP } + }; + bool error = false; bool finished = false; lexrc.pushTable(layoutTags, LT_INTITLE); @@ -279,6 +289,10 @@ bool LyXLayout::Read (LyXLex & lexrc, LyXTextClass const & tclass) case LT_LABELTYPE: readLabelType(lexrc); break; + + case LT_ENDLABELTYPE: + readEndLabelType(lexrc); + break; case LT_LEFTMARGIN: // left margin type if (lexrc.next()) @@ -363,6 +377,11 @@ bool LyXLayout::Read (LyXLex & lexrc, LyXTextClass const & tclass) labelstring_ = lexrc.GetString(); break; + case LT_ENDLABELSTRING: // endlabel string definition + if (lexrc.next()) + endlabelstring_ = lexrc.GetString(); + break; + case LT_LABELSTRING_APPENDIX: // label string appendix definition if (lexrc.next()) labelstring_appendix_ = lexrc.GetString(); @@ -392,17 +411,16 @@ enum AlignTags { }; -static keyword_item alignTags[] = { - { "block", AT_BLOCK }, - { "center", AT_CENTER }, - { "layout", AT_LAYOUT }, - { "left", AT_LEFT }, - { "right", AT_RIGHT } -}; - - void LyXLayout::readAlign(LyXLex & lexrc) { + keyword_item alignTags[] = { + { "block", AT_BLOCK }, + { "center", AT_CENTER }, + { "layout", AT_LAYOUT }, + { "left", AT_LEFT }, + { "right", AT_RIGHT } + }; + pushpophelper pph(lexrc, alignTags, AT_LAYOUT); int le = lexrc.lex(); switch (le) { @@ -433,6 +451,14 @@ void LyXLayout::readAlign(LyXLex & lexrc) void LyXLayout::readAlignPossible(LyXLex & lexrc) { + keyword_item alignTags[] = { + { "block", AT_BLOCK }, + { "center", AT_CENTER }, + { "layout", AT_LAYOUT }, + { "left", AT_LEFT }, + { "right", AT_RIGHT } + }; + lexrc.pushTable(alignTags, AT_LAYOUT); alignpossible = LYX_ALIGN_NONE; int lineno = lexrc.GetLineNo(); @@ -487,7 +513,9 @@ enum LabelTypeTags { }; -static keyword_item labelTypeTags[] = { +void LyXLayout::readLabelType(LyXLex & lexrc) +{ + keyword_item labelTypeTags[] = { { "bibliography", LA_BIBLIO }, { "centered_top_environment", LA_CENTERED_TOP_ENVIRONMENT }, { "counter_chapter", LA_COUNTER_CHAPTER }, @@ -507,9 +535,6 @@ static keyword_item labelTypeTags[] = { { "top_environment", LA_TOP_ENVIRONMENT } }; - -void LyXLayout::readLabelType(LyXLex & lexrc) -{ pushpophelper pph(lexrc, labelTypeTags, LA_BIBLIO); int le = lexrc.lex(); switch (le) { @@ -573,98 +598,94 @@ void LyXLayout::readLabelType(LyXLex & lexrc) } } - -enum MarginTags { - MT_STATIC = 1, - MT_MANUAL, - MT_DYNAMIC, - MT_FIRST_DYNAMIC, - MT_RIGHT_ADDRESS_BOX -}; - - -static keyword_item marginTags[] = { - { "dynamic", MT_DYNAMIC }, - { "first_dynamic", MT_FIRST_DYNAMIC }, - { "manual", MT_MANUAL }, - { "right_address_box", MT_RIGHT_ADDRESS_BOX }, - { "static", MT_STATIC } +static keyword_item endlabelTypeTags[] = { + { "box", END_LABEL_BOX }, + { "filled_box", END_LABEL_FILLED_BOX }, + { "no_label", END_LABEL_NO_LABEL }, + { "static", END_LABEL_STATIC } }; - -void LyXLayout::readMargin(LyXLex & lexrc) +void LyXLayout::readEndLabelType(LyXLex & lexrc) { - pushpophelper pph(lexrc, marginTags, MT_RIGHT_ADDRESS_BOX); + pushpophelper pph(lexrc, endlabelTypeTags, + END_LABEL_ENUM_LAST-END_LABEL_ENUM_FIRST+1); int le = lexrc.lex(); switch(le) { case LyXLex::LEX_UNDEF: - lexrc.printError("Unknown margin type tag `$$Token'"); - return; - default: break; - } - switch(static_cast(le)) { - case MT_STATIC: - margintype = MARGIN_STATIC; - break; - case MT_MANUAL: - margintype = MARGIN_MANUAL; - break; - case MT_DYNAMIC: - margintype = MARGIN_DYNAMIC; + lexrc.printError("Unknown labeltype tag `$$Token'"); break; - case MT_FIRST_DYNAMIC: - margintype = MARGIN_FIRST_DYNAMIC; + case END_LABEL_STATIC: + case END_LABEL_BOX: + case END_LABEL_FILLED_BOX: + case END_LABEL_NO_LABEL: + endlabeltype = static_cast(le); break; - case MT_RIGHT_ADDRESS_BOX: - margintype = MARGIN_RIGHT_ADDRESS_BOX; + default: + lyxerr << "Unhandled value " << le + << " in LyXLayout::readEndLabelType." << endl; break; } } -enum LatexTypeTags { - LX_PARAGRAPH = 1, - LX_COMMAND, - LX_ENVIRONMENT, - LX_ITEM_ENVIRONMENT, - LX_LIST_ENVIRONMENT -}; +void LyXLayout::readMargin(LyXLex & lexrc) +{ + keyword_item marginTags[] = { + { "dynamic", MARGIN_DYNAMIC }, + { "first_dynamic", MARGIN_FIRST_DYNAMIC }, + { "manual", MARGIN_MANUAL }, + { "right_address_box", MARGIN_RIGHT_ADDRESS_BOX }, + { "static", MARGIN_STATIC } + }; + pushpophelper pph(lexrc, marginTags, MARGIN_RIGHT_ADDRESS_BOX); -static keyword_item latexTypeTags[] = { - { "command", LX_COMMAND }, - { "environment", LX_ENVIRONMENT }, - { "item_environment", LX_ITEM_ENVIRONMENT }, - { "list_environment", LX_LIST_ENVIRONMENT }, - { "paragraph", LX_PARAGRAPH } -}; + int le = lexrc.lex(); + switch(le) { + case LyXLex::LEX_UNDEF: + lexrc.printError("Unknown margin type tag `$$Token'"); + return; + case MARGIN_STATIC: + case MARGIN_MANUAL: + case MARGIN_DYNAMIC: + case MARGIN_FIRST_DYNAMIC: + case MARGIN_RIGHT_ADDRESS_BOX: + margintype = static_cast(le); + break; + default: + lyxerr << "Unhandled value " << le + << " in LyXLayout::readMargin." << endl; + break; + } +} void LyXLayout::readLatexType(LyXLex & lexrc) { - pushpophelper pph(lexrc, latexTypeTags, LX_LIST_ENVIRONMENT); + keyword_item latexTypeTags[] = { + { "command", LATEX_COMMAND }, + { "environment", LATEX_ENVIRONMENT }, + { "item_environment", LATEX_ITEM_ENVIRONMENT }, + { "list_environment", LATEX_LIST_ENVIRONMENT }, + { "paragraph", LATEX_PARAGRAPH } + }; + + pushpophelper pph(lexrc, latexTypeTags, LATEX_LIST_ENVIRONMENT); int le = lexrc.lex(); switch (le) { case LyXLex::LEX_UNDEF: lexrc.printError("Unknown latextype tag `$$Token'"); - return; - default: break; - } - switch (static_cast(le)) { - case LX_PARAGRAPH: - latextype= LATEX_PARAGRAPH; - break; - case LX_COMMAND: - latextype= LATEX_COMMAND; - break; - case LX_ENVIRONMENT: - latextype= LATEX_ENVIRONMENT; - break; - case LX_ITEM_ENVIRONMENT: - latextype= LATEX_ITEM_ENVIRONMENT; + return; + case LATEX_PARAGRAPH: + case LATEX_COMMAND: + case LATEX_ENVIRONMENT: + case LATEX_ITEM_ENVIRONMENT: + case LATEX_LIST_ENVIRONMENT: + latextype = static_cast(le); break; - case LX_LIST_ENVIRONMENT: - latextype= LATEX_LIST_ENVIRONMENT; + default: + lyxerr << "Unhandled value " << le + << " in LyXLayout::readLatexType." << endl; break; } } @@ -678,16 +699,15 @@ enum SpacingTags { }; -static keyword_item spacingTags[] = { - {"double", ST_SPACING_DOUBLE }, - {"onehalf", ST_SPACING_ONEHALF }, - {"other", ST_OTHER }, - {"single", ST_SPACING_SINGLE } -}; - - void LyXLayout::readSpacing(LyXLex & lexrc) { + keyword_item spacingTags[] = { + {"double", ST_SPACING_DOUBLE }, + {"onehalf", ST_SPACING_ONEHALF }, + {"other", ST_OTHER }, + {"single", ST_SPACING_SINGLE } + }; + pushpophelper pph(lexrc, spacingTags, ST_OTHER); int le = lexrc.lex(); switch(le) { @@ -773,31 +793,30 @@ enum TextClassTags { }; -static keyword_item textClassTags[] = { - { "classoptions", TC_CLASSOPTIONS }, - { "columns", TC_COLUMNS }, - { "defaultfont", TC_DEFAULTFONT }, - { "input", TC_INPUT }, - { "leftmargin", TC_LEFTMARGIN }, - { "maxcounter", TC_MAXCOUNTER }, - { "nostyle", TC_NOSTYLE }, - { "outputtype", TC_OUTPUTTYPE }, - { "pagestyle", TC_PAGESTYLE }, - { "preamble", TC_PREAMBLE }, - { "providesamsmath", TC_PROVIDESAMSMATH }, - { "providesmakeidx", TC_PROVIDESMAKEIDX }, - { "providesurl", TC_PROVIDESURL }, - { "rightmargin", TC_RIGHTMARGIN }, - { "secnumdepth", TC_SECNUMDEPTH }, - { "sides", TC_SIDES }, - { "style", TC_STYLE }, - { "tocdepth", TC_TOCDEPTH } -}; - - // Reads a textclass structure from file. bool LyXTextClass::Read(string const & filename, bool merge) { + keyword_item textClassTags[] = { + { "classoptions", TC_CLASSOPTIONS }, + { "columns", TC_COLUMNS }, + { "defaultfont", TC_DEFAULTFONT }, + { "input", TC_INPUT }, + { "leftmargin", TC_LEFTMARGIN }, + { "maxcounter", TC_MAXCOUNTER }, + { "nostyle", TC_NOSTYLE }, + { "outputtype", TC_OUTPUTTYPE }, + { "pagestyle", TC_PAGESTYLE }, + { "preamble", TC_PREAMBLE }, + { "providesamsmath", TC_PROVIDESAMSMATH }, + { "providesmakeidx", TC_PROVIDESMAKEIDX }, + { "providesurl", TC_PROVIDESURL }, + { "rightmargin", TC_RIGHTMARGIN }, + { "secnumdepth", TC_SECNUMDEPTH }, + { "sides", TC_SIDES }, + { "style", TC_STYLE }, + { "tocdepth", TC_TOCDEPTH } + }; + if (!merge) lyxerr[Debug::TCLASS] << "Reading textclass " << MakeDisplayPath(filename) @@ -854,7 +873,7 @@ bool LyXTextClass::Read(string const & filename, bool merge) error = do_readStyle(lexrc, lay); } else { LyXLayout lay; - lay.name(name); + lay.setName(name); if (!(error = do_readStyle(lexrc, lay))) layoutlist.push_back(lay); } @@ -905,7 +924,7 @@ bool LyXTextClass::Read(string const & filename, bool merge) if (!defaultfont_.resolved()) { lexrc.printError("Warning: defaultfont should " "be fully instantiated!"); - defaultfont_.realize(LyXFont::ALL_SANE); + defaultfont_.realize(LyXFont(LyXFont::ALL_SANE)); } break; @@ -972,44 +991,32 @@ bool LyXTextClass::Read(string const & filename, bool merge) } -enum OutputTypeTags { - OT_OTLATEX = 1, - OT_OTLINUXDOC, - OT_OTDOCBOOK, - OT_OTLITERATE -}; - - -static keyword_item outputTypeTags[] = { - { "docbook", OT_OTDOCBOOK }, - { "latex", OT_OTLATEX }, - { "linuxdoc", OT_OTLINUXDOC }, - { "literate", OT_OTLITERATE } -}; - - void LyXTextClass::readOutputType(LyXLex & lexrc) { - pushpophelper pph(lexrc, outputTypeTags, OT_OTLITERATE); + keyword_item outputTypeTags[] = { + { "docbook", DOCBOOK }, + { "latex", LATEX }, + { "linuxdoc", LINUXDOC }, + { "literate", LITERATE } + }; + + pushpophelper pph(lexrc, outputTypeTags, LITERATE); + int le = lexrc.lex(); switch(le) { case LyXLex::LEX_UNDEF: lexrc.printError("Unknown output type `$$Token'"); - return; - default: break; - } - switch(static_cast(le)) { - case OT_OTLATEX: - outputType_ = LATEX; - break; - case OT_OTLINUXDOC: - outputType_ = LINUXDOC; - break; - case OT_OTDOCBOOK: - outputType_ = DOCBOOK; + return; + case LATEX: + case LINUXDOC: + case DOCBOOK: + case LITERATE: + outputType_ = static_cast(le); break; - case OT_OTLITERATE: - outputType_ = LITERATE; + default: + lyxerr << "Unhandled value " << le + << " in LyXTextClass::readOutputType." << endl; + break; } } @@ -1029,22 +1036,21 @@ enum MaxCounterTags { }; -static keyword_item maxCounterTags[] = { - {"counter_chapter", MC_COUNTER_CHAPTER }, - {"counter_enumi", MC_COUNTER_ENUMI }, - {"counter_enumii", MC_COUNTER_ENUMII }, - {"counter_enumiii", MC_COUNTER_ENUMIII }, - {"counter_enumiv", MC_COUNTER_ENUMIV }, - {"counter_paragraph", MC_COUNTER_PARAGRAPH }, - {"counter_section", MC_COUNTER_SECTION }, - {"counter_subparagraph", MC_COUNTER_SUBPARAGRAPH }, - {"counter_subsection", MC_COUNTER_SUBSECTION }, - {"counter_subsubsection", MC_COUNTER_SUBSUBSECTION } -}; - - void LyXTextClass::readMaxCounter(LyXLex & lexrc) { + keyword_item maxCounterTags[] = { + {"counter_chapter", MC_COUNTER_CHAPTER }, + {"counter_enumi", MC_COUNTER_ENUMI }, + {"counter_enumii", MC_COUNTER_ENUMII }, + {"counter_enumiii", MC_COUNTER_ENUMIII }, + {"counter_enumiv", MC_COUNTER_ENUMIV }, + {"counter_paragraph", MC_COUNTER_PARAGRAPH }, + {"counter_section", MC_COUNTER_SECTION }, + {"counter_subparagraph", MC_COUNTER_SUBPARAGRAPH }, + {"counter_subsection", MC_COUNTER_SUBSECTION }, + {"counter_subsubsection", MC_COUNTER_SUBSUBSECTION } + }; + pushpophelper pph(lexrc, maxCounterTags, MC_COUNTER_ENUMIV); int le = lexrc.lex(); switch(le) { @@ -1096,16 +1102,15 @@ enum ClassOptionsTags { }; -static keyword_item classOptionsTags[] = { - {"end", CO_END }, - {"fontsize", CO_FONTSIZE }, - {"other", CO_OTHER }, - {"pagestyle", CO_PAGESTYLE } -}; - - void LyXTextClass::readClassOptions(LyXLex & lexrc) { + keyword_item classOptionsTags[] = { + {"end", CO_END }, + {"fontsize", CO_FONTSIZE }, + {"other", CO_OTHER }, + {"pagestyle", CO_PAGESTYLE } + }; + lexrc.pushTable(classOptionsTags, CO_END); bool getout = false; while (!getout && lexrc.IsOK()) { @@ -1140,49 +1145,43 @@ void LyXTextClass::readClassOptions(LyXLex & lexrc) bool LyXTextClass::hasLayout(string const & name) const { - for (LayoutList::const_iterator cit = layoutlist.begin(); - cit != layoutlist.end(); ++cit) { - if ((*cit).name() == name) - return true; - } - return false; + return find_if(layoutlist.begin(), layoutlist.end(), + compare_memfun(&LyXLayout::name, name)) + != layoutlist.end(); } LyXLayout const & LyXTextClass::GetLayout (string const & name) const { - for (LayoutList::const_iterator cit = layoutlist.begin(); - cit != layoutlist.end(); ++cit) { - if ((*cit).name() == name) - return (*cit); - } - Assert(false); // we actually require the name to exist. - return layoutlist.front(); + LayoutList::const_iterator cit = + find_if(layoutlist.begin(), + layoutlist.end(), + compare_memfun(&LyXLayout::name, name)); + Assert(cit != layoutlist.end()); // we require the name to exist + return (*cit); } LyXLayout & LyXTextClass::GetLayout(string const & name) { - for (LayoutList::iterator it = layoutlist.begin(); - it != layoutlist.end(); ++it) { - if ((*it).name() == name) - return (*it); - } - Assert(false); // we actually require the name to exist. - return layoutlist.front(); + LayoutList::iterator it = + find_if(layoutlist.begin(), + layoutlist.end(), + compare_memfun(&LyXLayout::name, name)); + Assert(it != layoutlist.end()); // we require the name to exist + return (*it); } -bool LyXTextClass::delete_layout (string const & name) +bool LyXTextClass::delete_layout(string const & name) { - for(LayoutList::iterator it = layoutlist.begin(); - it != layoutlist.end(); ++it) { - if ((*it).name() == name) { - layoutlist.erase(it); - return true; - } - } - return false; + LayoutList::iterator it = + remove_if(layoutlist.begin(), layoutlist.end(), + compare_memfun(&LyXLayout::name, name)); + LayoutList::iterator end = layoutlist.end(); + bool const ret = (it != end); + layoutlist.erase(it, end); + return ret; } @@ -1192,7 +1191,7 @@ void LyXTextClass::load() if (loaded) return; // Read style-file - string real_file = LibFileSearch("layouts", name_, "layout"); + string const real_file = LibFileSearch("layouts", name_, "layout"); if (Read(real_file)) { lyxerr << "Error reading `" @@ -1208,15 +1207,15 @@ void LyXTextClass::load() ////////////////////////////////////////// // Gets textclass number from name -pair +pair const LyXTextClassList::NumberOfClass(string const & textclass) const { - for (ClassList::const_iterator cit = classlist.begin(); - cit != classlist.end(); ++cit) { - if ((*cit).name() == textclass) - return make_pair(true, cit - classlist.begin()); - } - return make_pair(false, size_type(0)); + ClassList::const_iterator cit = + find_if(classlist.begin(), classlist.end(), + compare_memfun(&LyXTextClass::name, textclass)); + return cit != classlist.end() ? + make_pair(true, size_type(cit - classlist.begin())) : + make_pair(false, size_type(0)); } @@ -1233,7 +1232,7 @@ LyXTextClassList::Style(LyXTextClassList::size_type textclass, // Gets layout number from name and textclass number -pair +pair const LyXTextClassList::NumberOfLayout(LyXTextClassList::size_type textclass, string const & name) const { @@ -1243,8 +1242,8 @@ LyXTextClassList::NumberOfLayout(LyXTextClassList::size_type textclass, return make_pair(true, i); } if (name == "dummy") - return make_pair(true, LYX_DUMMY_LAYOUT); - return make_pair(false, LyXTextClass::LayoutList::size_type(0)); // not found + return make_pair(true, LyXTextClassList::size_type(LYX_DUMMY_LAYOUT)); + return make_pair(false, LyXTextClass::size_type(0)); // not found } @@ -1254,20 +1253,10 @@ LyXTextClassList::NameOfLayout(LyXTextClassList::size_type textclass, LyXTextClass::size_type layout) const { static string dummy("dummy"); -#if 0 - static string end("@@end@@"); -#endif classlist[textclass].load(); if (layout < classlist[textclass].numLayouts()) return classlist[textclass][layout].name(); -#if 0 - else if (layout == LYX_DUMMY_LAYOUT) - return dummy; - else - return end; -#else return dummy; -#endif } @@ -1276,26 +1265,11 @@ string const & LyXTextClassList::NameOfClass(LyXTextClassList::size_type number) const { static string dummy("dummy"); -#if 0 - static string end("@@end@@"); -#endif if (classlist.size() == 0) { -#if 0 - if (number == 0) return dummy; - else return end; -#else return dummy; -#endif } -#if 0 - if (number < classlist.size()) - return classlist[number].name(); - else - return end; -#else Assert(number < classlist.size()); return classlist[number].name(); -#endif } @@ -1304,28 +1278,12 @@ string const & LyXTextClassList::LatexnameOfClass(LyXTextClassList::size_type number) const { static string dummy("dummy"); -#if 0 - static string end("@@end@@"); -#endif classlist[number].load(); if (classlist.size() == 0) { -#if 0 - if (number == 0) return dummy; - else return end; -#else return dummy; -#endif } -#if 0 - if (number < classlist.size()) - return classlist[number].latexname(); - - else - return end; -#else Assert(number < classlist.size()); return classlist[number].latexname(); -#endif } @@ -1334,26 +1292,11 @@ string const & LyXTextClassList::DescOfClass(LyXTextClassList::size_type number) const { static string dummy("dummy"); -#if 0 - static string end("@@end@@"); -#endif if (classlist.size() == 0) { -#if 0 - if (number == 0) return dummy; - else return end; -#else return dummy; -#endif } -#if 0 - if (number < classlist.size()) - return classlist[number].description(); - else - return end; -#else Assert(number < classlist.size()); return classlist[number].description(); -#endif } @@ -1389,8 +1332,8 @@ bool LyXTextClassList::Read () { LyXLex lex(0, 0); string real_file = LibFileSearch("", "textclass.lst"); - lyxerr[Debug::TCLASS] << "Reading textclasses from " - << real_file << endl; + lyxerr[Debug::TCLASS] << "Reading textclasses from `" + << real_file << "'" << endl; if (real_file.empty()) { lyxerr << "LyXTextClassList::Read: unable to find " @@ -1424,7 +1367,9 @@ bool LyXTextClassList::Read () bool finished = false; string fname, clname, desc; // Parse config-file + lyxerr[Debug::TCLASS] << "Starting parsing of textclass.lst" << endl; while (lex.IsOK() && !finished) { + lyxerr[Debug::TCLASS] << "\tline by line" << endl; switch (lex.lex()) { case LyXLex::LEX_FEOF: finished = true; @@ -1454,9 +1399,10 @@ bool LyXTextClassList::Read () } } } - + lyxerr[Debug::TCLASS] << "End of parsing of textclass.lst" << endl; + if (classlist.size() == 0) { - lyxerr << "LyXTextClassList::Read: no textclass found!" + lyxerr << "LyXTextClassList::Read: no textclasses found!" << endl; WriteAlert(_("LyX wasn't able to find any layout description!"), _("Check the contents of the file \"textclass.lst\""), @@ -1486,3 +1432,18 @@ LyXTextClassList::Load (LyXTextClassList::size_type number) const } return result; } + + +std::ostream & operator<<(std::ostream & os, LyXTextClass::PageSides p) +{ + switch (p) { + case LyXTextClass::OneSide: + os << "1"; + break; + case LyXTextClass::TwoSides: + os << "2"; + break; + } + return os; +} +