]> git.lyx.org Git - lyx.git/blobdiff - src/lyxtextclass.C
cursor fix
[lyx.git] / src / lyxtextclass.C
index 7f6a668ff464adfee5de6161a4246f86ccfaf8d6..376f20975a3a8c714c03ce6974be2adcafc6994f 100644 (file)
@@ -1,8 +1,8 @@
 /* This file is part of
- * ====================================================== 
- * 
+ * ======================================================
+ *
  *           LyX, The Document Processor
- *      
+ *
  *          Copyright 1995 Matthias Ettrich
  *          Copyright 1995-2001 The LyX Team.
  *
@@ -18,6 +18,8 @@
 #include "lyxtextclass.h"
 #include "debug.h"
 #include "lyxlex.h"
+#include "counters.h"
+#include "FloatList.h"
 
 #include "support/lstrings.h"
 #include "support/LAssert.h"
@@ -31,12 +33,25 @@ using std::find_if;
 using std::remove_if;
 using std::ostream;
 
+namespace { // anon
+
+struct compare_name {
+       compare_name(string const & name)
+               : name_(name) {}
+       template <class C>
+       bool operator()(C & c) {
+               return c->name() == name_;
+       }
+       string name_;
+};
+
+} // anon
 
-/* ******************************************************************* */
 
 LyXTextClass::LyXTextClass(string const & fn, string const & cln,
                           string const & desc)
-       : name_(fn), latexname_(cln), description_(desc)
+       : name_(fn), latexname_(cln), description_(desc),
+         floatlist_(new FloatList), ctrs_(new Counters)
 {
        outputType_ = LATEX;
        columns_ = 1;
@@ -59,17 +74,11 @@ bool LyXTextClass::do_readStyle(LyXLex & lexrc, LyXLayout & lay)
        if (!lay.Read(lexrc, *this)) {
                // 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;
        return true;
 }
@@ -91,10 +100,14 @@ enum TextClassTags {
        TC_CLASSOPTIONS,
        TC_PREAMBLE,
        TC_PROVIDESAMSMATH,
+       TC_PROVIDESNATBIB,
        TC_PROVIDESMAKEIDX,
        TC_PROVIDESURL,
        TC_LEFTMARGIN,
-       TC_RIGHTMARGIN
+       TC_RIGHTMARGIN,
+       TC_FLOAT,
+       TC_COUNTER,
+       TC_NOFLOAT
 };
 
 
@@ -104,17 +117,21 @@ bool LyXTextClass::Read(string const & filename, bool merge)
        keyword_item textClassTags[] = {
                { "classoptions",    TC_CLASSOPTIONS },
                { "columns",         TC_COLUMNS },
+               { "counter",         TC_COUNTER },
                { "defaultfont",     TC_DEFAULTFONT },
                { "defaultstyle",    TC_DEFAULTSTYLE },
+               { "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 },
@@ -131,37 +148,37 @@ 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, TC_NOFLOAT);
        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; 
+                       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);
@@ -177,20 +194,20 @@ bool LyXTextClass::Read(string const & filename, bool merge)
                                defaultlayout_ = name;
                        }
                        break;
-                       
+
                case TC_STYLE:
                        if (lexrc.next()) {
                                string const name = subst(lexrc.getString(),
                                                    '_', ' ');
                                if (hasLayout(name)) {
-                                       LyXLayout & lay =
-                                               const_cast<LyXLayout &>(operator[](name));
-                                       error = do_readStyle(lexrc, lay);
+                                       LyXLayout * lay =
+                                               operator[](name).get();
+                                       error = do_readStyle(lexrc, *lay);
                                } else {
                                        LyXLayout lay;
                                        lay.setName(name);
                                        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
@@ -221,7 +238,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()) {
@@ -236,23 +253,18 @@ 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;
 
@@ -270,10 +282,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");
@@ -284,6 +296,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;
@@ -291,23 +308,36 @@ 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_FLOAT:
+                       readFloat(lexrc);
+                       break;
+               case TC_COUNTER:
+                       readCounter(lexrc);
+                       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()) {
@@ -316,7 +346,7 @@ bool LyXTextClass::Read(string const & filename, bool merge)
                        error = true;
                }
        } else
-               lyxerr[Debug::TCLASS] << "Finished reading input file " 
+               lyxerr[Debug::TCLASS] << "Finished reading input file "
                                      << MakeDisplayPath(filename)
                                      << endl;
 
@@ -389,7 +419,7 @@ void LyXTextClass::readMaxCounter(LyXLex & lexrc)
        switch (le) {
        case LyXLex::LEX_UNDEF:
                lexrc.printError("Unknown MaxCounter tag `$$Token'");
-               return; 
+               return;
        default: break;
        }
        switch (static_cast<MaxCounterTags>(le)) {
@@ -451,17 +481,17 @@ 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();
@@ -476,6 +506,164 @@ void LyXTextClass::readClassOptions(LyXLex & lexrc)
 }
 
 
+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 float if getout == true
+       if (getout) {
+               if (within.empty()) {
+                       ctrs_->newCounter(name);
+               } else {
+                       ctrs_->newCounter(name, within);
+               }
+       }
+
+       lexrc.popTable();
+}
+
+
 LyXFont const & LyXTextClass::defaultfont() const
 {
        return defaultfont_;
@@ -497,47 +685,46 @@ string const & LyXTextClass::rightmargin() const
 bool LyXTextClass::hasLayout(string const & n) const
 {
        string const name = (n.empty() ? defaultLayoutName() : n);
-       
-       return find_if(layoutlist.begin(), layoutlist.end(),
-                      lyx::compare_memfun(&LyXLayout::name, name))
-               != layoutlist.end();
+
+       return find_if(layoutlist_.begin(), layoutlist_.end(),
+                      compare_name(name))
+               != layoutlist_.end();
 }
 
 
-LyXLayout const & LyXTextClass::operator[](string const & n) const
+LyXLayout_ptr const & LyXTextClass::operator[](string const & n) const
 {
        lyx::Assert(!n.empty());
-       
+
        if (n.empty())
                lyxerr << "Operator[] called with empty n" << endl;
-       
+
        string const name = (n.empty() ? defaultLayoutName() : n);
 
        static string lastLayoutName;
        static LayoutList::difference_type lastLayoutIndex;
 
        if (name == lastLayoutName)
-               return layoutlist[lastLayoutIndex];
+               return layoutlist_[lastLayoutIndex];
 
-       
        LayoutList::const_iterator cit =
-               find_if(layoutlist.begin(),
-                       layoutlist.end(),
-                       lyx::compare_memfun(&LyXLayout::name, name));
+               find_if(layoutlist_.begin(),
+                       layoutlist_.end(),
+                       compare_name(name));
 
-       if (cit == layoutlist.end()) {
+       if (cit == layoutlist_.end()) {
                lyxerr << "We failed to find the layout '" << name
                       << "' in the layout list. You MUST investigate!"
                       << endl;
-               
+
                // we require the name to exist
                lyx::Assert(false);
        }
 
        lastLayoutName = name;
-       lastLayoutIndex = std::distance(layoutlist.begin(), cit);
-       
-       return *cit;
+       lastLayoutIndex = std::distance(layoutlist_.begin(), cit);
+
+       return (*cit);
 }
 
 
@@ -545,13 +732,14 @@ 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(),
+                         compare_name(name));
+
+       LayoutList::iterator end = layoutlist_.end();
        bool const ret = (it != end);
-       layoutlist.erase(it, end);
+       layoutlist_.erase(it, end);
        return ret;
 }
 
@@ -575,18 +763,35 @@ bool LyXTextClass::load() const
        }
        loaded = true;
        return loaded;
-       
 }
 
 
-string const LyXTextClass::defaultLayoutName() const
+FloatList & LyXTextClass::floats()
+{
+       return *floatlist_.get();
+}
+
+
+FloatList const & LyXTextClass::floats() const
+{
+       return *floatlist_.get();
+}
+
+
+Counters & LyXTextClass::counters() const
+{
+       return *ctrs_.get();
+}
+
+
+string const & LyXTextClass::defaultLayoutName() const
 {
        // This really should come from the actual layout... (Lgb)
        return defaultlayout_;
 }
 
 
-LyXLayout const & LyXTextClass::defaultLayout() const
+LyXLayout_ptr const & LyXTextClass::defaultLayout() const
 {
        return operator[](defaultLayoutName());
 }
@@ -669,7 +874,7 @@ bool LyXTextClass::provides(LyXTextClass::Provides p) const
 {
        return provides_ & p;
 }
-       
+
 
 unsigned int LyXTextClass::columns() const
 {
@@ -685,7 +890,7 @@ int LyXTextClass::maxcounter() const
 
 int LyXTextClass::size() const
 {
-       return layoutlist.size();
+       return layoutlist_.size();
 }