X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FInsetList.h;h=33a9fe1e7f27e338240ebe1f919447d58fed090a;hb=2bb86211292f416cd584023feb23dc3b86bc1761;hp=30dfea3fc4c670fef393aa23080344f1cd54d165;hpb=260c7f3187a7dd392888b1d1eea513abffd8f2f7;p=lyx.git diff --git a/src/InsetList.h b/src/InsetList.h index 30dfea3fc4..33a9fe1e7f 100644 --- a/src/InsetList.h +++ b/src/InsetList.h @@ -1,91 +1,77 @@ // -*- C++ -*- +/** + * \file InsetList.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. + * + * \author Lars Gullik Bjønnes + * + * Full author contact details are available in file CREDITS. + */ #ifndef INSET_LIST_H #define INSET_LIST_H #include "support/types.h" +#include -class Inset; -class BufferView; +class InsetBase; +class Buffer; /// class InsetList { public: /// - struct InsetTable { + class InsetTable { + public: /// - lyx::pos_type pos; + InsetTable(lyx::pos_type p, InsetBase * i) : pos(p), inset(i) {} /// - Inset * inset; + lyx::pos_type pos; /// - InsetTable(lyx::pos_type p, Inset * i) : pos(p), inset(i) {} + InsetBase * inset; }; /// typedef std::vector List; - /// - class iterator { - public: - /// - iterator() {} - // - iterator(List::iterator const & iter); - /// - iterator & operator++(); - /// - iterator operator++(int); - /// - lyx::pos_type getPos() const; - /// - Inset * getInset() const; - /// - void setInset(Inset * inset); - /// - friend bool operator==(iterator const &, iterator const &); - private: - /// - List::iterator it; - }; + typedef List::iterator iterator; + /// + typedef List::const_iterator const_iterator; + /// ~InsetList(); /// - iterator begin(); + iterator begin() { return list_.begin(); } + /// + iterator end() { return list_.end(); } /// - iterator end(); + const_iterator begin() const { return list_.begin(); } /// - iterator begin() const; + const_iterator end() const { return list_.end(); } /// - iterator end() const; + bool empty() const { return list_.empty(); } /// iterator insetIterator(lyx::pos_type pos); /// - void insert(Inset * inset, lyx::pos_type pos); + const_iterator insetIterator(lyx::pos_type pos) const; + /// + void insert(InsetBase * inset, lyx::pos_type pos); /// void erase(lyx::pos_type pos); /// - Inset * release(lyx::pos_type); + InsetBase * release(lyx::pos_type); /// - Inset * get(lyx::pos_type pos) const; + InsetBase * get(lyx::pos_type pos) const; /// void increasePosAfterPos(lyx::pos_type pos); /// void decreasePosAfterPos(lyx::pos_type pos); - /// - void deleteInsetsLyXText(BufferView * bv); - /// - void resizeInsetsLyXText(BufferView * bv); + private: /// - List list; + List list_; }; -/// -bool operator==(InsetList::iterator const & i1, - InsetList::iterator const & i2); -/// -bool operator!=(InsetList::iterator const & i1, - InsetList::iterator const & i2); - #endif