]> git.lyx.org Git - lyx.git/blobdiff - src/BufferParams.h
* src/LyXRC.{cpp,h}:
[lyx.git] / src / BufferParams.h
index ec3ed4e9bf5837d3413b27f8c6dcfd4a0b6a9f7b..049fc87ed3a088c242c0f7cbc940f1b476a6babd 100644 (file)
 #ifndef BUFFERPARAMS_H
 #define BUFFERPARAMS_H
 
+#include "Font.h"
 #include "BiblioInfo.h"
-#include "TextClass.h"
-#include "TextClassPtr.h"
 #include "paper.h"
+#include "TextClass.h"
 
 #include "insets/InsetQuotes.h"
 
@@ -40,6 +40,7 @@ class Spacing;
 class TexRow;
 class VSpace;
 class Language;
+class PDFOptions;
 
 /** Buffer parameters.
  *  This class contains all the parameters for this buffer's use. Some
@@ -106,7 +107,7 @@ public:
        ///by modules.
        TextClass const & getTextClass() const;
        ///Returns a pointer to the TextClass currently in use: the BaseClass 
-       ///as modified by modules. (See \file TextClassPtr.h for the typedef.)
+       ///as modified by modules. (See \file TextClass.h for the typedef.)
        TextClassPtr getTextClassPtr() const;
        ///Set the LyX TextClass---layout file---this document is using.
        ///This does NOT call makeTextClass() and so should be used with
@@ -290,6 +291,10 @@ public:
        ///
        void setCiteEngine(biblio::CiteEngine const);
 
+       /// options for pdf output
+       PDFOptions & pdfoptions();
+       PDFOptions const & pdfoptions() const;
+
 private:
        ///
        void readPreamble(Lexer &);