X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FInsetList.h;h=f704a394f8c1b2070227fef014ad07320b3d8513;hb=28be7d552f62cc02fa86d7f79201d089bfb2d7b5;hp=3e287ad1c73c496a4461a9526b176cd3df817fd2;hpb=6c300f72a217722652dc27db9108e1050028979c;p=lyx.git diff --git a/src/InsetList.h b/src/InsetList.h index 3e287ad1c7..f704a394f8 100644 --- a/src/InsetList.h +++ b/src/InsetList.h @@ -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 @@ -19,22 +21,33 @@ namespace lyx { -class InsetBase; +class Inset; class Buffer; - /// class InsetList { 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 { public: /// - InsetTable(pos_type p, InsetBase * i) : pos(p), inset(i) {} + InsetTable(pos_type p, Inset * i) : pos(p), inset(i) {} /// pos_type pos; /// - InsetBase * inset; + Inset * inset; }; /// typedef std::vector List; @@ -60,18 +73,33 @@ public: /// const_iterator insetIterator(pos_type pos) const; /// - void insert(InsetBase * inset, pos_type pos); + void insert(Inset * inset, pos_type pos); /// void erase(pos_type pos); /// - InsetBase * release(pos_type); + Inset * release(pos_type); /// - InsetBase * get(pos_type pos) const; + Inset * get(pos_type pos) const; /// void increasePosAfterPos(pos_type pos); /// 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 occurences of 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_;