]> git.lyx.org Git - lyx.git/blobdiff - src/bufferparams.h
prepare for 1.1.6pre2
[lyx.git] / src / bufferparams.h
index 535f9c11ecb6e53923d0e602889ad630c98e4197..4f611a7c8d2f31f4e7171bde4ab764a4e3e6b6e8 100644 (file)
 #include "Bullet.h"
 #include "insets/insetquotes.h"
 #include "layout.h"
-#include "support/block.h"
+#include <boost/array.hpp>
 
-/**
-  This class contains all the parameters for this a buffer uses. Some
-  work needs to be done on this class to make it nice. Now everything
-  is in public.
-  */
+
+struct Language;
+
+/** Buffer parameters.
+   This class contains all the parameters for this a buffer uses. Some
+   work needs to be done on this class to make it nice. Now everything
+   is in public.
+*/
 class BufferParams {
 public:
        ///
@@ -101,14 +104,11 @@ public:
                ///
                ORIENTATION_LANDSCAPE
        };
-       //@Man: Constructors and Deconstructors
-       //@{
        ///
        BufferParams();
-       //@}
 
        ///
-       void writeFile(ostream &);
+       void writeFile(std::ostream &) const;
 
        ///
        void useClassDefaults();
@@ -119,9 +119,6 @@ public:
        ///
        void setDefSkip(VSpace const & vs) { defskip = vs; }
 
-       ///
-       LyXDirection getDocumentDirection() const;
-       
        /** Wether paragraphs are separated by using a indent like in
          articles or by using a little skip like in letters.
          */
@@ -133,15 +130,15 @@ public:
        ///
        string fontsize; 
        ///
-       LyXTextClassList::ClassList::size_type textclass;
+       LyXTextClassList::size_type textclass;
 
        /* this are for the PaperLayout */
-       ///
-       char papersize; /* the general papersize (papersize2 or paperpackage */ // add approp. signedness
-        ///
-        char papersize2; /* the selected Geometry papersize */ // add approp. signedness
-        ///
-        char paperpackage; /* a special paperpackage .sty-file */ // add approp. signedness
+       /// the general papersize (papersize2 or paperpackage
+       char papersize; // add apprip. signedness 
+        ///  the selected Geometry papersize
+        char papersize2; // add approp. signedness
+        /// a special paperpackage .sty-file
+        char paperpackage; // add approp. signedness
         ///
        PAPER_ORIENTATION orientation; // add approp. signedness
        ///
@@ -177,7 +174,7 @@ public:
        ///
        int tocdepth;
        ///
-       string language;
+       Language const * language;
        ///
        string inputenc;
        ///
@@ -193,17 +190,15 @@ public:
        ///
        string pagestyle;
        ///
-       block<Bullet, 4> temp_bullets;
+       array<Bullet, 4> temp_bullets;
        ///
-       block<Bullet, 4> user_defined_bullets;
+       array<Bullet, 4> user_defined_bullets;
        ///
        void readPreamble(LyXLex &);
        ///
        void readLanguage(LyXLex &);
        ///
        void readGraphicsDriver(LyXLex &);
-       /// do we allow accents on all chars in this buffer
-       bool allowAccents;
        ///
         bool use_amsmath;
        /// Time ago we agreed that this was a buffer property [ale990407]
@@ -212,7 +207,8 @@ private:
        ///
        friend class Buffer;
        /** This is the amount of space used for paragraph_separation "skip",
-         and for detached paragraphs in "indented" documents. */
+         and for detached paragraphs in "indented" documents.
+       */
        VSpace defskip;
 };