]> git.lyx.org Git - lyx.git/blobdiff - src/Buffer.h
* Only enter inset which return true on isActive(). This is the behavior in the curso...
[lyx.git] / src / Buffer.h
index 21794d4788310a77cdf01c98b2e7f9a376493a6a..8a81bb07039e5e2c374715a9015ce7f53bb7dfea 100644 (file)
@@ -40,10 +40,10 @@ class ErrorItem;
 class FuncRequest;
 class Inset;
 class InsetText;
-class LyXFont;
+class Font;
 class Lexer;
 class LyXRC;
-class LyXText;
+class Text;
 class LyXVC;
 class LaTeXFeatures;
 class Language;
@@ -62,7 +62,7 @@ class Undo;
 /** The buffer object.
  * This is the buffer object. It contains all the informations about
  * a document loaded into LyX.
- * The buffer object owns the LyXText (wrapped in an InsetText), which
+ * The buffer object owns the Text (wrapped in an InsetText), which
  * contains the individual paragraphs of the document.
  *
  *
@@ -122,7 +122,7 @@ public:
        ///
        void insertStringAsLines(ParagraphList & plist,
                pit_type &, pos_type &,
-               LyXFont const &, docstring const &, bool);
+               Font const &, docstring const &, bool);
        ///
        ParIterator getParFromID(int id) const;
        /// do we have a paragraph with this id?
@@ -349,7 +349,7 @@ public:
        void fully_loaded(bool);
 
        /// Our main text (inside the top InsetText)
-       LyXText & text() const;
+       Text & text() const;
 
        /// Our top InsetText!
        Inset & inset() const;
@@ -395,7 +395,7 @@ private:
            \return \c false if method fails.
        */
        ReadStatus readFile(Lexer &, support::FileName const & filename,
-                           bool fromString = false);
+                           bool fromString = false);
 
        /// Use the Pimpl idiom to hide the internals.
        class Impl;