]> git.lyx.org Git - lyx.git/blobdiff - src/lyxtextclass.C
float2string #4 (Spacing)
[lyx.git] / src / lyxtextclass.C
index c891330ab8fc2dd9b63d8f01b31784fd8ee86ff5..168520301dfa345535120f4a6dec85d789450db4 100644 (file)
@@ -1,39 +1,64 @@
-/* This file is part of
- * ====================================================== 
- * 
- *           LyX, The Document Processor
- *      
- *          Copyright 1995 Matthias Ettrich
- *          Copyright 1995-2001 The LyX Team.
+/**
+ * \file lyxtextclass.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- * ======================================================
+ * \author Lars Gullik Bjønnes
+ * \author Jean-Marc Lasgouttes
+ * \author Angus Leeming
+ * \author John Levon
+ * \author André Pönitz
+ *
+ * Full author contact details are available in file CREDITS.
  */
 
 #include <config.h>
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
-
 #include "lyxtextclass.h"
 #include "debug.h"
 #include "lyxlex.h"
+#include "counters.h"
+#include "Floating.h"
+#include "FloatList.h"
 
 #include "support/lstrings.h"
-#include "support/LAssert.h"
-#include "support/lyxfunctional.h"
 #include "support/filetools.h"
 
-#include <algorithm>
+using lyx::support::LibFileSearch;
+using lyx::support::MakeDisplayPath;
+using lyx::support::rtrim;
+using lyx::support::subst;
 
 using std::endl;
+using std::find_if;
+using std::remove_if;
+using std::string;
+using std::ostream;
+
+
+namespace {
+
+class LayoutNamesEqual : public std::unary_function<LyXLayout_ptr, bool> {
+public:
+       LayoutNamesEqual(string const & name)
+               : name_(name)
+       {}
+       bool operator()(LyXLayout_ptr const & c) const
+       {
+               return c->name() == name_;
+       }
+private:
+       string name_;
+};
 
+} // namespace anon
 
-/* ******************************************************************* */
 
 LyXTextClass::LyXTextClass(string const & fn, string const & cln,
-                          string const & desc)
-       : name_(fn), latexname_(cln), description_(desc)
+                          string const & desc, bool texClassAvail )
+       : name_(fn), latexname_(cln), description_(desc),
+         floatlist_(new FloatList), ctrs_(new Counters),
+         texClassAvail_(texClassAvail)
 {
        outputType_ = LATEX;
        columns_ = 1;
@@ -41,12 +66,19 @@ LyXTextClass::LyXTextClass(string const & fn, string const & cln,
        secnumdepth_ = 3;
        tocdepth_ = 3;
        pagestyle_ = "default";
-       maxcounter_ = LABEL_COUNTER_CHAPTER;
        defaultfont_ = LyXFont(LyXFont::ALL_SANE);
        opt_fontsize_ = "10|11|12";
        opt_pagestyle_ = "empty|plain|headings|fancy";
        provides_ = nothing;
-       loaded = false;
+       titletype_ = TITLE_COMMAND_AFTER;
+       titlename_ = "maketitle";
+       loaded_ = false;
+}
+
+
+bool LyXTextClass::isTeXClassAvailable() const
+{
+       return texClassAvail_;
 }
 
 
@@ -54,20 +86,14 @@ bool LyXTextClass::do_readStyle(LyXLex & lexrc, LyXLayout & lay)
 {
        lyxerr[Debug::TCLASS] << "Reading style " << lay.name() << endl;
        if (!lay.Read(lexrc, *this)) {
-               // Reslove fonts
+               // Resolve fonts
                lay.resfont = lay.font;
-#ifndef INHERIT_LANGUAGE
                lay.resfont.realize(defaultfont());
                lay.reslabelfont = lay.labelfont;
                lay.reslabelfont.realize(defaultfont());
-#else
-               lay.resfont.realize(defaultfont(), default_language);
-               lay.reslabelfont = lay.labelfont;
-               lay.reslabelfont.realize(defaultfont(), default_language);
-#endif
                return false; // no errors
-       } 
-       lyxerr << "Error parsing style `" << lay.name() << "'" << endl;
+       }
+       lyxerr << "Error parsing style `" << lay.name() << '\'' << endl;
        return true;
 }
 
@@ -76,45 +102,60 @@ enum TextClassTags {
        TC_OUTPUTTYPE = 1,
        TC_INPUT,
        TC_STYLE,
+       TC_DEFAULTSTYLE,
+       TC_CHARSTYLE,
+       TC_ENVIRONMENT,
        TC_NOSTYLE,
        TC_COLUMNS,
        TC_SIDES,
        TC_PAGESTYLE,
        TC_DEFAULTFONT,
-       TC_MAXCOUNTER,
        TC_SECNUMDEPTH,
        TC_TOCDEPTH,
        TC_CLASSOPTIONS,
        TC_PREAMBLE,
        TC_PROVIDESAMSMATH,
+       TC_PROVIDESNATBIB,
        TC_PROVIDESMAKEIDX,
        TC_PROVIDESURL,
        TC_LEFTMARGIN,
-       TC_RIGHTMARGIN
+       TC_RIGHTMARGIN,
+       TC_FLOAT,
+       TC_COUNTER,
+       TC_NOFLOAT,
+       TC_TITLELATEXNAME,
+       TC_TITLELATEXTYPE
 };
 
-
 // Reads a textclass structure from file.
 bool LyXTextClass::Read(string const & filename, bool merge)
 {
        keyword_item textClassTags[] = {
+               { "charstyle",       TC_CHARSTYLE },
                { "classoptions",    TC_CLASSOPTIONS },
                { "columns",         TC_COLUMNS },
+               { "counter",         TC_COUNTER },
                { "defaultfont",     TC_DEFAULTFONT },
+               { "defaultstyle",    TC_DEFAULTSTYLE },
+               { "environment",     TC_ENVIRONMENT },
+               { "float",           TC_FLOAT },
                { "input",           TC_INPUT },
                { "leftmargin",      TC_LEFTMARGIN },
-               { "maxcounter",      TC_MAXCOUNTER },
+               { "nofloat",         TC_NOFLOAT },
                { "nostyle",         TC_NOSTYLE },
                { "outputtype",      TC_OUTPUTTYPE },
                { "pagestyle",       TC_PAGESTYLE },
                { "preamble",        TC_PREAMBLE },
                { "providesamsmath", TC_PROVIDESAMSMATH },
                { "providesmakeidx", TC_PROVIDESMAKEIDX },
+               { "providesnatbib",  TC_PROVIDESNATBIB },
                { "providesurl",     TC_PROVIDESURL },
                { "rightmargin",     TC_RIGHTMARGIN },
                { "secnumdepth",     TC_SECNUMDEPTH },
                { "sides",           TC_SIDES },
                { "style",           TC_STYLE },
+               { "titlelatexname",  TC_TITLELATEXNAME },
+               { "titlelatextype",  TC_TITLELATEXTYPE },
                { "tocdepth",        TC_TOCDEPTH }
        };
 
@@ -126,37 +167,43 @@ bool LyXTextClass::Read(string const & filename, bool merge)
                lyxerr[Debug::TCLASS] << "Reading input file "
                                     << MakeDisplayPath(filename)
                                     << endl;
-       
-       LyXLex lexrc(textClassTags, TC_RIGHTMARGIN);
+
+       LyXLex lexrc(textClassTags,
+               sizeof(textClassTags) / sizeof(textClassTags[0]));
        bool error = false;
 
-        lexrc.setFile(filename);
-       if (!lexrc.isOK()) error = true; 
+       lexrc.setFile(filename);
+       if (!lexrc.isOK()) error = true;
 
        // parsing
        while (lexrc.isOK() && !error) {
                int le = lexrc.lex();
+
                switch (le) {
                case LyXLex::LEX_FEOF:
-                       continue; 
+                       continue;
 
-               case LyXLex::LEX_UNDEF:                                 
+               case LyXLex::LEX_UNDEF:
                        lexrc.printError("Unknown TextClass tag `$$Token'");
                        error = true;
-                       continue; 
-               default: break;
+                       continue;
+
+               default:
+                       break;
                }
+
                switch (static_cast<TextClassTags>(le)) {
+
                case TC_OUTPUTTYPE:   // output type definition
                        readOutputType(lexrc);
                        break;
-                       
+
                case TC_INPUT: // Include file
-                       if (lexrc.next()) {
-                               string tmp = LibFileSearch("layouts",
-                                                           lexrc.getString(), 
+                       if (lexrc.next()) {
+                               string tmp = LibFileSearch("layouts",
+                                                           lexrc.getString(),
                                                            "layout");
-                               
+
                                if (Read(tmp, true)) {
                                        lexrc.printError("Error reading input"
                                                         "file: "+tmp);
@@ -165,18 +212,39 @@ bool LyXTextClass::Read(string const & filename, bool merge)
                        }
                        break;
 
+               case TC_DEFAULTSTYLE:
+                       if (lexrc.next()) {
+                               string const name = subst(lexrc.getString(),
+                                                         '_', ' ');
+                               defaultlayout_ = name;
+                       }
+                       break;
+
+               case TC_ENVIRONMENT:
                case TC_STYLE:
                        if (lexrc.next()) {
-                               string name = subst(lexrc.getString(),
+                               string const name = subst(lexrc.getString(),
                                                    '_', ' ');
                                if (hasLayout(name)) {
-                                       LyXLayout & lay = GetLayout(name);
-                                       error = do_readStyle(lexrc, lay);
+                                       LyXLayout * lay = operator[](name).get();
+                                       error = do_readStyle(lexrc, *lay);
                                } else {
                                        LyXLayout lay;
                                        lay.setName(name);
+                                       if (le == TC_ENVIRONMENT)
+                                               lay.is_environment = true;
                                        if (!(error = do_readStyle(lexrc, lay)))
-                                               layoutlist.push_back(lay);
+                                               layoutlist_.push_back(
+                                                       boost::shared_ptr<LyXLayout>(new LyXLayout(lay))
+                                                       );
+
+                                       if (defaultlayout_.empty()) {
+                                               // We do not have a default
+                                               // layout yet, so we choose
+                                               // the first layout we
+                                               // encounter.
+                                               defaultlayout_ = name;
+                                       }
                                }
                        }
                        else {
@@ -190,8 +258,10 @@ bool LyXTextClass::Read(string const & filename, bool merge)
                                string const style = subst(lexrc.getString(),
                                                     '_', ' ');
                                if (!delete_layout(style))
-                                       lexrc.printError("Cannot delete style"
-                                                        " `$$Token'");
+                                       lyxerr << "Cannot delete style `"
+                                              << style << '\'' << endl;
+//                                     lexrc.printError("Cannot delete style"
+//                                                      " `$$Token'");
                        }
                        break;
 
@@ -199,7 +269,7 @@ bool LyXTextClass::Read(string const & filename, bool merge)
                        if (lexrc.next())
                                columns_ = lexrc.getInteger();
                        break;
-                       
+
                case TC_SIDES:
                        if (lexrc.next()) {
                                switch (lexrc.getInteger()) {
@@ -214,30 +284,21 @@ bool LyXTextClass::Read(string const & filename, bool merge)
                                }
                        }
                        break;
-                       
+
                case TC_PAGESTYLE:
-                       lexrc.next();
-                       pagestyle_ = strip(lexrc.getString());
+                       lexrc.next();
+                       pagestyle_ = rtrim(lexrc.getString());
                        break;
-                       
+
                case TC_DEFAULTFONT:
                        defaultfont_.lyxRead(lexrc);
                        if (!defaultfont_.resolved()) {
                                lexrc.printError("Warning: defaultfont should "
                                                 "be fully instantiated!");
-#ifndef INHERIT_LANGUAGE
                                defaultfont_.realize(LyXFont(LyXFont::ALL_SANE));
-#else
-                               defaultfont_.realize(LyXFont(LyXFont::ALL_SANE),
-                                                    default_language);
-#endif
                        }
                        break;
 
-               case TC_MAXCOUNTER:
-                       readMaxCounter(lexrc);
-                       break;
-
                case TC_SECNUMDEPTH:
                        lexrc.next();
                        secnumdepth_ = lexrc.getInteger();
@@ -248,10 +309,10 @@ bool LyXTextClass::Read(string const & filename, bool merge)
                        tocdepth_ = lexrc.getInteger();
                        break;
 
-                       // First step to support options 
-               case TC_CLASSOPTIONS:
+                       // First step to support options
+               case TC_CLASSOPTIONS:
                        readClassOptions(lexrc);
-                       break;
+                       break;
 
                case TC_PREAMBLE:
                        preamble_ = lexrc.getLongString("EndPreamble");
@@ -262,6 +323,11 @@ bool LyXTextClass::Read(string const & filename, bool merge)
                                provides_ |= amsmath;
                        break;
 
+               case TC_PROVIDESNATBIB:
+                       if (lexrc.next() && lexrc.getInteger())
+                               provides_ |= natbib;
+                       break;
+
                case TC_PROVIDESMAKEIDX:
                        if (lexrc.next() && lexrc.getInteger())
                                provides_ |= makeidx;
@@ -269,27 +335,57 @@ bool LyXTextClass::Read(string const & filename, bool merge)
 
                case TC_PROVIDESURL:
                        if (lexrc.next() && lexrc.getInteger())
-                               provides_ = url;
+                               provides_ |= url;
                        break;
 
                case TC_LEFTMARGIN:     // left margin type
-                       if (lexrc.next())
+                       if (lexrc.next())
                                leftmargin_ = lexrc.getString();
-                       break;                  
+                       break;
 
                case TC_RIGHTMARGIN:    // right margin type
                        if (lexrc.next())
                                rightmargin_ = lexrc.getString();
                        break;
+               case TC_CHARSTYLE:
+                       if (lexrc.next()) {
+                               string const name = subst(lexrc.getString(), '_', ' ');
+                               readCharStyle(lexrc, name);
+                       }
+                       break;
+               case TC_FLOAT:
+                       readFloat(lexrc);
+                       break;
+               case TC_COUNTER:
+                       readCounter(lexrc);
+                       break;
+               case TC_TITLELATEXTYPE:
+                       readTitleType(lexrc);
+                       break;
+               case TC_TITLELATEXNAME:
+                       if (lexrc.next())
+                               titlename_ = lexrc.getString();
+                       break;
+               case TC_NOFLOAT:
+                       if (lexrc.next()) {
+                               string const nofloat = lexrc.getString();
+                               floatlist_->erase(nofloat);
+                       }
+                       break;
                }
-       }       
+       }
 
        if (!merge) { // we are at top level here.
-               lyxerr[Debug::TCLASS] << "Finished reading textclass " 
+               lyxerr[Debug::TCLASS] << "Finished reading textclass "
                                      << MakeDisplayPath(filename)
                                      << endl;
+               if (defaultlayout_.empty()) {
+                       lyxerr << "Error: Textclass '" << name_
+                              << "' is missing a defaultstyle." << endl;
+                       error = true;
+               }
        } else
-               lyxerr[Debug::TCLASS] << "Finished reading input file " 
+               lyxerr[Debug::TCLASS] << "Finished reading input file "
                                      << MakeDisplayPath(filename)
                                      << endl;
 
@@ -297,6 +393,33 @@ bool LyXTextClass::Read(string const & filename, bool merge)
 }
 
 
+void LyXTextClass::readTitleType(LyXLex & lexrc)
+{
+       keyword_item titleTypeTags[] = {
+               { "commandafter", TITLE_COMMAND_AFTER },
+               { "environment", TITLE_ENVIRONMENT }
+       };
+
+       pushpophelper pph(lexrc, titleTypeTags, TITLE_ENVIRONMENT);
+
+       int le = lexrc.lex();
+       switch (le) {
+       case LyXLex::LEX_UNDEF:
+               lexrc.printError("Unknown output type `$$Token'");
+               return;
+       case TITLE_COMMAND_AFTER:
+       case TITLE_ENVIRONMENT:
+               titletype_ = static_cast<LYX_TITLE_LATEX_TYPES>(le);
+               break;
+       default:
+               lyxerr << "Unhandled value " << le
+                      << " in LyXTextClass::readTitleType." << endl;
+
+               break;
+       }
+}
+
+
 void LyXTextClass::readOutputType(LyXLex & lexrc)
 {
        keyword_item outputTypeTags[] = {
@@ -342,68 +465,11 @@ enum MaxCounterTags {
 };
 
 
-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) {
-       case LyXLex::LEX_UNDEF:
-               lexrc.printError("Unknown MaxCounter tag `$$Token'");
-               return; 
-       default: break;
-       }
-       switch (static_cast<MaxCounterTags>(le)) {
-       case MC_COUNTER_CHAPTER:
-               maxcounter_ = LABEL_COUNTER_CHAPTER;
-               break;
-       case MC_COUNTER_SECTION:
-               maxcounter_ = LABEL_COUNTER_SECTION;
-               break;
-       case MC_COUNTER_SUBSECTION:
-               maxcounter_ = LABEL_COUNTER_SUBSECTION;
-               break;
-       case MC_COUNTER_SUBSUBSECTION:
-               maxcounter_ = LABEL_COUNTER_SUBSUBSECTION;
-               break;
-       case MC_COUNTER_PARAGRAPH:
-               maxcounter_ = LABEL_COUNTER_PARAGRAPH;
-               break;
-       case MC_COUNTER_SUBPARAGRAPH:
-               maxcounter_ = LABEL_COUNTER_SUBPARAGRAPH;
-               break;
-       case MC_COUNTER_ENUMI:
-               maxcounter_ = LABEL_COUNTER_ENUMI;
-               break;
-       case MC_COUNTER_ENUMII:
-               maxcounter_ = LABEL_COUNTER_ENUMII;
-               break;
-       case MC_COUNTER_ENUMIII:
-               maxcounter_ = LABEL_COUNTER_ENUMIII;
-               break;
-       case MC_COUNTER_ENUMIV:
-               maxcounter_ = LABEL_COUNTER_ENUMIV;
-               break;
-       }
-}
-
-
 enum ClassOptionsTags {
        CO_FONTSIZE = 1,
        CO_PAGESTYLE,
        CO_OTHER,
+       CO_HEADER,
        CO_END
 };
 
@@ -413,6 +479,7 @@ void LyXTextClass::readClassOptions(LyXLex & lexrc)
        keyword_item classOptionsTags[] = {
                {"end", CO_END },
                {"fontsize", CO_FONTSIZE },
+               {"header", CO_HEADER },
                {"other", CO_OTHER },
                {"pagestyle", CO_PAGESTYLE }
        };
@@ -424,22 +491,26 @@ void LyXTextClass::readClassOptions(LyXLex & lexrc)
                switch (le) {
                case LyXLex::LEX_UNDEF:
                        lexrc.printError("Unknown ClassOption tag `$$Token'");
-                       continue; 
+                       continue;
                default: break;
                }
                switch (static_cast<ClassOptionsTags>(le)) {
                case CO_FONTSIZE:
                        lexrc.next();
-                       opt_fontsize_ = strip(lexrc.getString());
+                       opt_fontsize_ = rtrim(lexrc.getString());
                        break;
                case CO_PAGESTYLE:
                        lexrc.next();
-                       opt_pagestyle_ = strip(lexrc.getString()); 
+                       opt_pagestyle_ = rtrim(lexrc.getString());
                        break;
                case CO_OTHER:
                        lexrc.next();
                        options_ = lexrc.getString();
                        break;
+               case CO_HEADER:
+                       lexrc.next();
+                       class_header_ = subst(lexrc.getString(), "&quot;", "\"");
+                       break;
                case CO_END:
                        getout = true;
                        break;
@@ -448,6 +519,252 @@ void LyXTextClass::readClassOptions(LyXLex & lexrc)
        lexrc.popTable();
 }
 
+enum CharStyleTags {
+       CS_FONT = 1,
+       CS_LABELFONT,
+       CS_LATEXTYPE,
+       CS_LATEXNAME,
+       CS_LATEXPARAM,
+       CS_PREAMBLE,
+       CS_END
+};
+
+
+void LyXTextClass::readCharStyle(LyXLex & lexrc, string const & name)
+{
+       keyword_item elementTags[] = {
+               { "end", CS_END },
+               { "font", CS_FONT },
+               { "labelfont", CS_LABELFONT },
+               { "latexname", CS_LATEXNAME },
+               { "latexparam", CS_LATEXPARAM },
+               { "latextype", CS_LATEXTYPE },
+               { "preamble", CS_PREAMBLE}
+       };
+
+       lexrc.pushTable(elementTags, CS_END);
+
+       string latextype;
+       string latexname;
+       string latexparam;
+       LyXFont font(LyXFont::ALL_INHERIT);
+       LyXFont labelfont(LyXFont::ALL_INHERIT);
+       string preamble;
+
+       bool getout = false;
+       while (!getout && lexrc.isOK()) {
+               int le = lexrc.lex();
+               switch (le) {
+               case LyXLex::LEX_UNDEF:
+                       lexrc.printError("Unknown ClassOption tag `$$Token'");
+                       continue;
+               default: break;
+               }
+               switch (static_cast<CharStyleTags>(le)) {
+               case CS_LATEXTYPE:
+                       lexrc.next();
+                       latextype = lexrc.getString();
+                       break;
+               case CS_LATEXNAME:
+                       lexrc.next();
+                       latexname = lexrc.getString();
+                       break;
+               case CS_LATEXPARAM:
+                       lexrc.next();
+                       latexparam = subst(lexrc.getString(), "&quot;", "\"");
+                       break;
+               case CS_LABELFONT:
+                       labelfont.lyxRead(lexrc);
+                       break;
+               case CS_FONT:
+                       font.lyxRead(lexrc);
+                       labelfont = font;
+                       break;
+               case CS_PREAMBLE:
+                       preamble = lexrc.getLongString("EndPreamble");
+                       break;
+               case CS_END:
+                       getout = true;
+                       break;
+               }
+       }
+
+       //
+       // Here add element to list if getout == true
+       if (getout) {
+               CharStyle cs;
+               cs.name = name;
+               cs.latextype = latextype;
+               cs.latexname = latexname;
+               cs.latexparam = latexparam;
+               cs.font = font;
+               cs.labelfont = labelfont;
+               cs.preamble = preamble;
+               charstyles().push_back(cs);
+       }
+
+       lexrc.popTable();
+}
+
+
+enum FloatTags {
+       FT_TYPE = 1,
+       FT_NAME,
+       FT_PLACEMENT,
+       FT_EXT,
+       FT_WITHIN,
+       FT_STYLE,
+       FT_LISTNAME,
+       FT_BUILTIN,
+       FT_END
+};
+
+
+void LyXTextClass::readFloat(LyXLex & lexrc)
+{
+       keyword_item floatTags[] = {
+               { "end", FT_END },
+               { "extension", FT_EXT },
+               { "guiname", FT_NAME },
+               { "latexbuiltin", FT_BUILTIN },
+               { "listname", FT_LISTNAME },
+               { "numberwithin", FT_WITHIN },
+               { "placement", FT_PLACEMENT },
+               { "style", FT_STYLE },
+               { "type", FT_TYPE }
+       };
+
+       lexrc.pushTable(floatTags, FT_END);
+
+       string type;
+       string placement;
+       string ext;
+       string within;
+       string style;
+       string name;
+       string listname;
+       bool builtin = false;
+
+       bool getout = false;
+       while (!getout && lexrc.isOK()) {
+               int le = lexrc.lex();
+               switch (le) {
+               case LyXLex::LEX_UNDEF:
+                       lexrc.printError("Unknown ClassOption tag `$$Token'");
+                       continue;
+               default: break;
+               }
+               switch (static_cast<FloatTags>(le)) {
+               case FT_TYPE:
+                       lexrc.next();
+                       type = lexrc.getString();
+                       // Here we could check if this type is already defined
+                       // and modify it with the rest of the vars instead.
+                       break;
+               case FT_NAME:
+                       lexrc.next();
+                       name = lexrc.getString();
+                       break;
+               case FT_PLACEMENT:
+                       lexrc.next();
+                       placement = lexrc.getString();
+                       break;
+               case FT_EXT:
+                       lexrc.next();
+                       ext = lexrc.getString();
+                       break;
+               case FT_WITHIN:
+                       lexrc.next();
+                       within = lexrc.getString();
+                       if (within == "none")
+                               within.erase();
+                       break;
+               case FT_STYLE:
+                       lexrc.next();
+                       style = lexrc.getString();
+                       break;
+               case FT_LISTNAME:
+                       lexrc.next();
+                       listname = lexrc.getString();
+                       break;
+               case FT_BUILTIN:
+                       lexrc.next();
+                       builtin = lexrc.getBool();
+                       break;
+               case FT_END:
+                       getout = true;
+                       break;
+               }
+       }
+
+       // Here if have a full float if getout == true
+       if (getout) {
+               Floating newfloat(type, placement, ext, within,
+                                 style, name, listname, builtin);
+               floatlist_->newFloat(newfloat);
+       }
+
+       lexrc.popTable();
+}
+
+
+enum CounterTags {
+       CT_NAME = 1,
+       CT_WITHIN,
+       CT_END
+};
+
+void LyXTextClass::readCounter(LyXLex & lexrc)
+{
+       keyword_item counterTags[] = {
+               { "end", CT_END },
+               { "name", CT_NAME },
+               { "within", CT_WITHIN }
+       };
+
+       lexrc.pushTable(counterTags, CT_END);
+
+       string name;
+       string within;
+
+       bool getout = false;
+       while (!getout && lexrc.isOK()) {
+               int le = lexrc.lex();
+               switch (le) {
+               case LyXLex::LEX_UNDEF:
+                       lexrc.printError("Unknown ClassOption tag `$$Token'");
+                       continue;
+               default: break;
+               }
+               switch (static_cast<CounterTags>(le)) {
+               case CT_NAME:
+                       lexrc.next();
+                       name = lexrc.getString();
+                       break;
+               case CT_WITHIN:
+                       lexrc.next();
+                       within = lexrc.getString();
+                       if (within == "none")
+                               within.erase();
+                       break;
+               case CT_END:
+                       getout = true;
+                       break;
+               }
+       }
+
+       // Here if have a full counter if getout == true
+       if (getout) {
+               if (within.empty()) {
+                       ctrs_->newCounter(name);
+               } else {
+                       ctrs_->newCounter(name, within);
+               }
+       }
+
+       lexrc.popTable();
+}
+
 
 LyXFont const & LyXTextClass::defaultfont() const
 {
@@ -467,75 +784,241 @@ string const & LyXTextClass::rightmargin() const
 }
 
 
-bool LyXTextClass::hasLayout(string const & name) const
+bool LyXTextClass::hasLayout(string const & n) const
 {
-       return find_if(layoutlist.begin(), layoutlist.end(),
-                      lyx::compare_memfun(&LyXLayout::name, name))
-               != layoutlist.end();
+       string const name = (n.empty() ? defaultLayoutName() : n);
+
+       return find_if(layoutlist_.begin(), layoutlist_.end(),
+                      LayoutNamesEqual(name))
+               != layoutlist_.end();
 }
 
 
-LyXLayout const & LyXTextClass::GetLayout (string const & name) const
+
+LyXLayout_ptr const & LyXTextClass::operator[](string const & name) const
 {
+       BOOST_ASSERT(!name.empty());
+
        LayoutList::const_iterator cit =
-               find_if(layoutlist.begin(),
-                       layoutlist.end(),
-                       lyx::compare_memfun(&LyXLayout::name, name));
-       lyx::Assert(cit != layoutlist.end()); // we require the name to exist
+               find_if(layoutlist_.begin(),
+                       layoutlist_.end(),
+                       LayoutNamesEqual(name));
+
+       if (cit == layoutlist_.end()) {
+               lyxerr << "We failed to find the layout '" << name
+                      << "' in the layout list. You MUST investigate!"
+                      << endl;
+               for (LayoutList::const_iterator it = layoutlist_.begin();
+                        it != layoutlist_.end(); ++it)
+                       lyxerr  << " " << it->get()->name() << endl;
+
+               // we require the name to exist
+               BOOST_ASSERT(false);
+       }
+
        return (*cit);
 }
 
 
-LyXLayout & LyXTextClass::GetLayout(string const & name)
-{
-       LayoutList::iterator it =
-               find_if(layoutlist.begin(),
-                       layoutlist.end(),
-                       lyx::compare_memfun(&LyXLayout::name, name));
-       lyx::Assert(it != layoutlist.end()); // we require the name to exist
-       return (*it);
-}
-
 
 bool LyXTextClass::delete_layout(string const & name)
 {
+       if (name == defaultLayoutName())
+               return false;
+
        LayoutList::iterator it =
-               remove_if(layoutlist.begin(), layoutlist.end(),
-                         lyx::compare_memfun(&LyXLayout::name, name));
-       LayoutList::iterator end = layoutlist.end();
+               remove_if(layoutlist_.begin(), layoutlist_.end(),
+                         LayoutNamesEqual(name));
+
+       LayoutList::iterator end = layoutlist_.end();
        bool const ret = (it != end);
-       layoutlist.erase(it, end);
+       layoutlist_.erase(it, end);
        return ret;
 }
 
 
 // Load textclass info if not loaded yet
-void LyXTextClass::load()
+bool LyXTextClass::load() const
 {
-       if (loaded) return;
+       if (loaded_)
+               return true;
 
        // Read style-file
        string const real_file = LibFileSearch("layouts", name_, "layout");
+       loaded_ = const_cast<LyXTextClass*>(this)->Read(real_file) == 0;
 
-       if (Read(real_file)) {
+       if (!loaded_) {
                lyxerr << "Error reading `"
                       << MakeDisplayPath(real_file)
                       << "'\n(Check `" << name_
                       << "')\nCheck your installation and "
                        "try Options/Reconfigure..." << endl;
        }
-       loaded = true;
+
+       return loaded_;
+}
+
+
+FloatList & LyXTextClass::floats()
+{
+       return *floatlist_.get();
+}
+
+
+FloatList const & LyXTextClass::floats() const
+{
+       return *floatlist_.get();
+}
+
+
+Counters & LyXTextClass::counters() const
+{
+       return *ctrs_.get();
+}
+
+
+CharStyles::iterator LyXTextClass::charstyle(string const & s) const
+{
+       CharStyles::iterator cs = charstyles().begin();
+       CharStyles::iterator csend = charstyles().end();
+       for (; cs != csend; ++cs) {
+               if (cs->name == s)
+                       return cs;
+       }
+       return csend;
+}
+
+
+string const & LyXTextClass::defaultLayoutName() const
+{
+       // This really should come from the actual layout... (Lgb)
+       return defaultlayout_;
+}
+
+
+LyXLayout_ptr const & LyXTextClass::defaultLayout() const
+{
+       return operator[](defaultLayoutName());
+}
+
+
+string const & LyXTextClass::name() const
+{
+       return name_;
+}
+
+
+string const & LyXTextClass::latexname() const
+{
+       const_cast<LyXTextClass*>(this)->load();
+       return latexname_;
+}
+
+
+string const & LyXTextClass::description() const
+{
+       return description_;
+}
+
+
+string const & LyXTextClass::opt_fontsize() const
+{
+       return opt_fontsize_;
+}
+
+
+string const & LyXTextClass::opt_pagestyle() const
+{
+       return opt_pagestyle_;
+}
+
+
+string const & LyXTextClass::options() const
+{
+       return options_;
+}
+
+
+string const & LyXTextClass::class_header() const
+{
+       return class_header_;
+}
+
+
+string const & LyXTextClass::pagestyle() const
+{
+       return pagestyle_;
+}
+
+
+string const & LyXTextClass::preamble() const
+{
+       return preamble_;
+}
+
+
+LyXTextClass::PageSides LyXTextClass::sides() const
+{
+       return sides_;
+}
+
+
+int LyXTextClass::secnumdepth() const
+{
+       return secnumdepth_;
+}
+
+
+int LyXTextClass::tocdepth() const
+{
+       return tocdepth_;
+}
+
+
+OutputType LyXTextClass::outputType() const
+{
+       return outputType_;
+}
+
+
+bool LyXTextClass::provides(LyXTextClass::Provides p) const
+{
+       return provides_ & p;
+}
+
+
+unsigned int LyXTextClass::columns() const
+{
+       return columns_;
+}
+
+
+LYX_TITLE_LATEX_TYPES LyXTextClass::titletype() const
+{
+       return titletype_;
+}
+
+
+string const & LyXTextClass::titlename() const
+{
+       return titlename_;
+}
+
+
+int LyXTextClass::size() const
+{
+       return layoutlist_.size();
 }
 
 
-std::ostream & operator<<(std::ostream & os, LyXTextClass::PageSides p)
+ostream & operator<<(ostream & os, LyXTextClass::PageSides p)
 {
        switch (p) {
        case LyXTextClass::OneSide:
-               os << "1";
+               os << '1';
                break;
        case LyXTextClass::TwoSides:
-               os << "2";
+               os << '2';
                break;
        }
        return os;