]> git.lyx.org Git - lyx.git/blobdiff - src/buffer_funcs.h
Fix bug 2485 and crash on middle mouse paste on math
[lyx.git] / src / buffer_funcs.h
index aa4b2a7ce0aa5e69a45a37d396e980fd11aed050..d2453780e35eef96dc5db0e21ba6652d2749aeee 100644 (file)
@@ -20,8 +20,8 @@
 class Buffer;
 class DocIterator;
 class ErrorList;
-class LyXTextClass;
 class TeXErrors;
+class ParIterator;
 
 /**
  *  Loads a LyX file \c filename into \c Buffer
@@ -36,7 +36,7 @@ Buffer * newFile(std::string const & filename, std::string const & templatename,
                 bool isNamed = false);
 
 ///return the format of the buffer on a string
-std::string const BufferFormat(Buffer const & buffer);
+std::string const bufferFormat(Buffer const & buffer);
 ///
 void bufferErrors(Buffer const &, TeXErrors const &);
 ///
@@ -46,8 +46,15 @@ void bufferErrors(Buffer const &, ErrorList const &);
 int countWords(DocIterator const & from, DocIterator const & to);
 
 /// Expand the counters for the labelstring of \c layout
-std::string expandLabel(LyXTextClass const & textclass,
-               LyXLayout_ptr const & layout, bool appendix);
+std::string expandLabel(Buffer const & buf, LyXLayout_ptr const & layout,
+                       bool appendix);
+
+/// updates current counter and/or label if possible.
+/**
+\retval true if a full updateCounters is required.
+\retval false if a full updateCounters is not required.
+*/
+bool needsUpdateCounters(Buffer const & buf, ParIterator & it);
 
 /// updates all counters
 void updateCounters(Buffer const &);