]> git.lyx.org Git - lyx.git/blobdiff - src/InsetList.h
Remove the now superseeded SConscript files, and some small missing parts to SConstruct
[lyx.git] / src / InsetList.h
index 27b34b29cf616584b553d3819a00aa81326b85c5..33a9fe1e7f27e338240ebe1f919447d58fed090a 100644 (file)
@@ -1,25 +1,37 @@
 // -*- 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"
 
-class InsetOld;
-class BufferView;
+#include <vector>
+
+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) {}
                ///
-               InsetOld * inset;
+               lyx::pos_type pos;
                ///
-               InsetTable(lyx::pos_type p, InsetOld * i) : pos(p), inset(i) {}
+               InsetBase * inset;
        };
        ///
        typedef std::vector<InsetTable> List;
@@ -31,32 +43,35 @@ public:
        ///
        ~InsetList();
        ///
-       iterator begin();
+       iterator begin() { return list_.begin(); }
+       ///
+       iterator end() { return list_.end(); }
        ///
-       iterator end();
+       const_iterator begin() const { return list_.begin(); }
        ///
-       const_iterator begin() const;
+       const_iterator end() const { return list_.end(); }
        ///
-       const_iterator end() const;
+       bool empty() const { return list_.empty(); }
        ///
        iterator insetIterator(lyx::pos_type pos);
        ///
-       void insert(InsetOld * 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);
        ///
-       InsetOld * release(lyx::pos_type);
+       InsetBase * release(lyx::pos_type);
        ///
-       InsetOld * 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);
+
 private:
        ///
-       List list;
+       List list_;
 };
 
 #endif