]> git.lyx.org Git - lyx.git/blobdiff - src/InsetList.h
Move #includes out of header files.
[lyx.git] / src / InsetList.h
index f542f7fb052b3c0519f311b486730fd8541eecea..2d663e1d1ec3949791cca1009d7a308e711f181a 100644 (file)
@@ -1,11 +1,20 @@
 // -*- 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 Inset;
+class InsetOld;
 class BufferView;
 
 
@@ -17,9 +26,9 @@ public:
                ///
                lyx::pos_type pos;
                ///
-               Inset * inset;
+               InsetOld * inset;
                ///
-               InsetTable(lyx::pos_type p, Inset * i) : pos(p), inset(i) {}
+               InsetTable(lyx::pos_type p, InsetOld * i) : pos(p), inset(i) {}
        };
        ///
        typedef std::vector<InsetTable> List;
@@ -27,7 +36,7 @@ public:
        typedef List::iterator iterator;
        ///
        typedef List::const_iterator const_iterator;
-       
+
        ///
        ~InsetList();
        ///
@@ -41,13 +50,13 @@ public:
        ///
        iterator insetIterator(lyx::pos_type pos);
        ///
-       void insert(Inset * inset, lyx::pos_type pos);
+       void insert(InsetOld * inset, lyx::pos_type pos);
        ///
        void erase(lyx::pos_type pos);
        ///
-       Inset * release(lyx::pos_type);
+       InsetOld * release(lyx::pos_type);
        ///
-       Inset * get(lyx::pos_type pos) const;
+       InsetOld * get(lyx::pos_type pos) const;
        ///
        void increasePosAfterPos(lyx::pos_type pos);
        ///
@@ -55,7 +64,8 @@ public:
        ///
        void deleteInsetsLyXText(BufferView * bv);
        ///
-       void resizeInsetsLyXText(BufferView * bv);
+       void InsetList::insetsOpenCloseBranch(BufferView * bv);
+
 private:
        ///
        List list;