X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Flyxtextclasslist.C;h=861b33e2617d53673fb1650fe6985e7a2fe76263;hb=2523638092e2024bac408eee98ad2094bc4e4089;hp=d98d2b5d69a35cf4771050e04e5b2426b815afe5;hpb=b922cdd796f9e4b9a46a79808cdee596e04903eb;p=lyx.git diff --git a/src/lyxtextclasslist.C b/src/lyxtextclasslist.C index d98d2b5d69..861b33e261 100644 --- a/src/lyxtextclasslist.C +++ b/src/lyxtextclasslist.C @@ -1,8 +1,8 @@ /* This file is part of - * ====================================================== - * + * ====================================================== + * * LyX, The Document Processor - * + * * Copyright 1995 Matthias Ettrich * Copyright 1995-2001 The LyX Team. * @@ -20,7 +20,6 @@ #include "debug.h" #include "lyxlex.h" #include "gettext.h" - #include "frontends/Alert.h" #include "support/lyxfunctional.h" @@ -29,11 +28,16 @@ #include -using lyx::layout_type; +#ifndef CXX_GLOBAL_CSTD +using std::exit; +#endif + using lyx::textclass_type; using std::pair; using std::make_pair; using std::endl; +using std::find_if; +using std::sort; // Gets textclass number from name @@ -41,108 +45,23 @@ pair const LyXTextClassList::NumberOfClass(string const & textclass) const { ClassList::const_iterator cit = - find_if(classlist.begin(), classlist.end(), + find_if(classlist_.begin(), classlist_.end(), lyx::compare_memfun(&LyXTextClass::name, textclass)); - return cit != classlist.end() ? - make_pair(true, textclass_type(cit - classlist.begin())) : + return cit != classlist_.end() ? + make_pair(true, textclass_type(cit - classlist_.begin())) : make_pair(false, textclass_type(0)); } -// Gets layout structure from style number and textclass number -LyXLayout const & -LyXTextClassList::Style(textclass_type textclass, - layout_type layout) const -{ - classlist[textclass].load(); - if (layout < classlist[textclass].numLayouts()) - return classlist[textclass][layout]; - return classlist[textclass][0]; -} - - -// Gets layout number from name and textclass number -pair const -LyXTextClassList::NumberOfLayout(textclass_type textclass, - string const & name) const -{ - classlist[textclass].load(); - for (unsigned int i = 0; i < classlist[textclass].numLayouts(); ++i) { - if (classlist[textclass][i].name() == name) - return make_pair(true, i); - } - return make_pair(false, layout_type(0)); // not found -} - - -// Gets a layout (style) name from layout number and textclass number -string const & -LyXTextClassList::NameOfLayout(textclass_type textclass, - layout_type layout) const -{ - static string const dummy("dummy"); - classlist[textclass].load(); - if (layout < classlist[textclass].numLayouts()) - return classlist[textclass][layout].name(); - return dummy; -} - - -// Gets a textclass name from number -string const & -LyXTextClassList::NameOfClass(textclass_type number) const -{ - static string const dummy("dummy"); - if (classlist.empty()) { - return dummy; - } - lyx::Assert(number < classlist.size()); - return classlist[number].name(); -} - - -// Gets a textclass latexname from number -string const & -LyXTextClassList::LatexnameOfClass(textclass_type number) const -{ - static string const dummy("dummy"); - classlist[number].load(); - if (classlist.empty()) { - return dummy; - } - lyx::Assert(number < classlist.size()); - return classlist[number].latexname(); -} - - -// Gets a textclass description from number -string const & -LyXTextClassList::DescOfClass(textclass_type number) const -{ - static string const dummy("dummy"); - if (classlist.empty()) { - return dummy; - } - lyx::Assert(number < classlist.size()); - return classlist[number].description(); -} - - // Gets a textclass structure from number LyXTextClass const & -LyXTextClassList::TextClass(textclass_type textclass) const +LyXTextClassList::operator[](textclass_type textclass) const { - classlist[textclass].load(); - if (textclass < classlist.size()) - return classlist[textclass]; + classlist_[textclass].load(); + if (textclass < classlist_.size()) + return classlist_[textclass]; else - return classlist[0]; -} - - -void LyXTextClassList::Add(LyXTextClass const & t) -{ - classlist.push_back(t); + return classlist_[0]; } @@ -161,7 +80,7 @@ bool LyXTextClassList::Read () LyXLex lex(0, 0); string real_file = LibFileSearch("", "textclass.lst"); lyxerr[Debug::TCLASS] << "Reading textclasses from `" - << real_file << "'" << endl; + << real_file << '\'' << endl; if (real_file.empty()) { lyxerr << "LyXTextClassList::Read: unable to find " @@ -184,13 +103,13 @@ bool LyXTextClassList::Read () "lyxlex was not able to set file: " << real_file << endl; } - + if (!lex.isOK()) { lyxerr << "LyXTextClassList::Read: unable to open " "textclass file `" << MakeDisplayPath(real_file, 1000) << "'\nCheck your installation. LyX can't continue." << endl; - return false; + return false; } bool finished = false; @@ -207,29 +126,24 @@ bool LyXTextClassList::Read () lyxerr[Debug::TCLASS] << "Fname: " << fname << endl; if (lex.next()) { string const clname = lex.getString(); - lyxerr[Debug::TCLASS] - << "Clname: " << clname << endl; + lyxerr[Debug::TCLASS] << "Clname: " << clname << endl; if (lex.next()) { - string const desc = lex.getString(); - lyxerr[Debug::TCLASS] - << "Desc: " << desc << endl; - // This code is run when we have - // fname, clname and desc - LyXTextClass tmpl(fname, - clname, - desc); - if (lyxerr. - debugging(Debug::TCLASS)) { - tmpl.load(); - } - Add (tmpl); + string const desc = lex.getString(); + lyxerr[Debug::TCLASS] << "Desc: " << desc << endl; + // This code is run when we have + // fname, clname and desc + LyXTextClass tmpl(fname, clname, desc); + if (lyxerr.debugging(Debug::TCLASS)) { + tmpl.load(); + } + classlist_.push_back(tmpl); } } } } lyxerr[Debug::TCLASS] << "End of parsing of textclass.lst" << endl; - if (classlist.empty()) { + if (classlist_.empty()) { lyxerr << "LyXTextClassList::Read: no textclasses found!" << endl; Alert::alert(_("LyX wasn't able to find any layout description!"), @@ -238,28 +152,10 @@ bool LyXTextClassList::Read () return false; } // Ok everything loaded ok, now sort the list. - sort(classlist.begin(), classlist.end(), less_textclass_desc()); + sort(classlist_.begin(), classlist_.end(), less_textclass_desc()); return true; } - -/* Load textclass - Returns false if this fails -*/ -bool LyXTextClassList::Load(textclass_type number) const -{ - bool result = true; - if (number < classlist.size()) { - classlist[number].load(); - if (classlist[number].numLayouts() == 0) { - result = false; - } - } else { - result = false; - } - return result; -} - // Global variable: textclass table. LyXTextClassList textclasslist; @@ -268,7 +164,7 @@ LyXTextClassList textclasslist; void LyXSetStyle() { lyxerr[Debug::TCLASS] << "LyXSetStyle: parsing configuration...\n"; - + if (!textclasslist.Read()) { lyxerr[Debug::TCLASS] << "LyXSetStyle: an error occured " "during parsing.\n Exiting." << endl;