X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fbufferparams.h;h=4f611a7c8d2f31f4e7171bde4ab764a4e3e6b6e8;hb=f448e22d483e1370bcbfbb7be8cb47ad7251ed77;hp=a90736f66c9ea04563a6188195f06e4feef67137;hpb=a040c0bc6f017d0591bbc7ad1aa590589dbc40ff;p=lyx.git diff --git a/src/bufferparams.h b/src/bufferparams.h index a90736f66c..4f611a7c8d 100644 --- a/src/bufferparams.h +++ b/src/bufferparams.h @@ -5,7 +5,7 @@ * LyX, The Document Processor * * Copyright 1995 Matthias Ettrich - * Copyright 1995-1999 The LyX Team. + * Copyright 1995-2000 The LyX Team. * * ====================================================== */ @@ -23,13 +23,16 @@ #include "Bullet.h" #include "insets/insetquotes.h" #include "layout.h" -#include "support/block.h" +#include -/** - 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,25 +104,21 @@ public: /// ORIENTATION_LANDSCAPE }; - //@Man: Constructors and Deconstructors - //@{ /// BufferParams(); - //@} /// - void writeFile(FILE *); - + void writeFile(std::ostream &) const; /// void useClassDefaults(); /// - VSpace getDefSkip() const { return defskip; } + VSpace const & getDefSkip() const { return defskip; } /// - void setDefSkip(VSpace vs) { defskip = vs; } - + void setDefSkip(VSpace const & vs) { defskip = vs; } + /** Wether paragraphs are separated by using a indent like in articles or by using a little skip like in letters. */ @@ -131,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 /// @@ -175,7 +174,7 @@ public: /// int tocdepth; /// - string language; + Language const * language; /// string inputenc; /// @@ -191,27 +190,25 @@ public: /// string pagestyle; /// - block temp_bullets; + array temp_bullets; /// - block user_defined_bullets; + array 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] string parentname; -protected: 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; };