]> git.lyx.org Git - lyx.git/blobdiff - src/InsetList.h
Provide proper fallback if a bibliography processor is not found
[lyx.git] / src / InsetList.h
index da168c488a026f9e48161694b16588f1c805e292..36a40c7bebe7d11dd9ceb2bd9582074931ec4e53 100644 (file)
@@ -4,7 +4,7 @@
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
- * \author Lars Gullik Bjønnes
+ * \author Lars Gullik Bjønnes
  *
  * Full author contact details are available in file CREDITS.
  */
@@ -12,6 +12,8 @@
 #ifndef INSET_LIST_H
 #define INSET_LIST_H
 
+#include "insets/InsetCode.h"
+
 #include "support/types.h"
 
 #include <vector>
@@ -29,6 +31,13 @@ public:
        InsetList() {}
        ///
        InsetList(InsetList const &);
+       /// Partial copy constructor.
+       /// Copy the InsetList contents from \p beg to \p end (without end).
+       InsetList(InsetList const &, pos_type beg, pos_type end);
+       ///
+       void setBuffer(Buffer &);
+       ///
+       void resetBuffer();
 
        ///
        class InsetTable {
@@ -76,6 +85,21 @@ public:
        ///
        void decreasePosAfterPos(pos_type pos);
 
+       /// search for next occurence of an \c Inset type.
+       /// \return the position of the found inset.
+       /// \retval -1 if no \c Inset is found.
+       pos_type find(
+               InsetCode code, ///< Code of inset to find.
+               pos_type startpos = 0 ///< start position for the search.
+               ) const;
+
+       /// count occurrences of an \c Inset type.
+       /// \return the number of found inset(s).
+       int count(
+               InsetCode code, ///< Code of inset type to count.
+               pos_type startpos = 0 ///< start position for the counting.
+               ) const;
+
 private:
        ///
        List list_;