]> git.lyx.org Git - features.git/blobdiff - src/BufferParams.h
Complete the removal of the embedding stuff. Maybe. It's hard to be sure we got every...
[features.git] / src / BufferParams.h
index c8fe76fe63cbb50a476b3ce848a9c38111ca1d4b..eee2d69cbb769f49bf1476b5befa968962b95a38 100644 (file)
 
 namespace lyx {
 
-namespace support {
-class FileName;
-}
+namespace support { class FileName; }
 
 class AuthorList;
-class BaseClassIndex;
 class BranchList;
 class Bullet;
 class DocumentClass;
 class Encoding;
 class Language;
-class Lexer;
 class LatexFeatures;
+class LayoutFile;
+class LayoutFileIndex;
+class Lexer;
 class PDFOptions;
 class Spacing;
-class TextClass;
 class TexRow;
 class VSpace;
 
@@ -54,23 +52,22 @@ class VSpace;
 class BufferParams {
 public:
        ///
-       enum PARSEP {
+       enum ParagraphSeparation {
                ///
-               PARSEP_INDENT,
+               ParagraphIndentSeparation,
                ///
-               PARSEP_SKIP
+               ParagraphSkipSeparation
        };
        ///
        BufferParams();
-       ~BufferParams();
 
        /// get l10n translated to the buffers language
-       docstring const B_(std::string const & l10n) const;
+       docstring B_(std::string const & l10n) const;
 
        /// read a header token, if unrecognised, return it or an unknown class name
-       std::string const readToken(Lexer & lex,
+       std::string readToken(Lexer & lex,
                std::string const & token, ///< token to read.
-               support::FileName const & filepath); ///< where to look for local layout file.
+               support::FileName const & filepath);
 
        ///
        void writeFile(std::ostream &) const;
@@ -86,32 +83,33 @@ public:
 
        ///
        void useClassDefaults();
-
        ///
        bool hasClassDefaults() const;
 
        ///
        VSpace const & getDefSkip() const;
-
        ///
        void setDefSkip(VSpace const & vs);
 
        /** Whether paragraphs are separated by using a indent like in
         *  articles or by using a little skip like in letters.
         */
-       PARSEP paragraph_separation;
+       ParagraphSeparation paragraph_separation;
        ///
-       InsetQuotes::quote_language quotes_language;
+       InsetQuotes::QuoteLanguage quotes_language;
        ///
-       InsetQuotes::quote_times quotes_times;
+       InsetQuotes::QuoteTimes quotes_times;
        ///
        std::string fontsize;
-       ///Get the LyX TextClass (that is, the layout file) this document is using.
-       BaseClassIndex baseClass() const;
-       /// Set the LyX TextClass (that is, the layout file) this document is using.
+       ///Get the LayoutFile this document is using.
+       LayoutFile const * baseClass() const;
+       ///
+       LayoutFileIndex const & baseClassID() const;
+       /// Set the LyX layout file this document is using.
        /// NOTE: This does not call makeDocumentClass() to update the local 
        /// DocumentClass. That needs to be done manually.
-       bool setBaseClass(BaseClassIndex);
+       /// \param filename the name of the layout file
+       bool setBaseClass(std::string const & classname);
        /// Adds the module information to the baseClass information to
        /// create our local DocumentClass.
        void makeDocumentClass();
@@ -221,6 +219,8 @@ public:
        ///
        std::string preamble;
        ///
+       std::string local_layout;
+       ///
        std::string options;
        ///
        std::string float_placement;
@@ -265,8 +265,6 @@ public:
        bool outputChanges;
        ///
        bool compressed;
-       ///
-       bool embedded;
 
        /// the author list for the document
        AuthorList & authors();
@@ -280,7 +278,7 @@ public:
         *  purpose for which the paper size is needed, since they
         *  support different subsets of paper sizes.
        */
-       enum Papersize_Purpose {
+       enum PapersizePurpose {
                ///
                DVIPS,
                ///
@@ -289,9 +287,9 @@ public:
                XDVI
        };
        ///
-       std::string const paperSizeName(Papersize_Purpose const & purpose) const;
+       std::string paperSizeName(PapersizePurpose purpose) const;
        /// set up if and how babel is called
-       std::string const babelCall(std::string const & lang_opts) const;
+       std::string babelCall(std::string const & lang_opts) const;
        /// handle inputenc etc.
        void writeEncodingPreamble(odocstream & os, LaTeXFeatures & features,
                                              TexRow & texrow) const;
@@ -302,8 +300,7 @@ public:
                                     int const & sfscale, int const & ttscale) const;
 
        /// get the appropriate cite engine (natbib handling)
-       biblio::CiteEngine getEngine() const;
-
+       biblio::CiteEngine citeEngine() const;
        ///
        void setCiteEngine(biblio::CiteEngine const);
 
@@ -315,6 +312,8 @@ private:
        ///
        void readPreamble(Lexer &);
        ///
+       void readLocalLayout(Lexer &);
+       ///
        void readLanguage(Lexer &);
        ///
        void readGraphicsDriver(Lexer &);