lyx_mirror/src/InsetList.h
André Pönitz 3159d1a52e no need for three calls to update() in a row...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8080 a592a061-630c-0410-9148-cb99ea01b6c8
2003-11-13 13:43:44 +00:00

77 lines
1.3 KiB
C++

// -*- 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 <vector>
class InsetOld;
class BufferView;
///
class InsetList {
public:
///
struct InsetTable {
///
lyx::pos_type pos;
///
InsetOld * inset;
///
InsetTable(lyx::pos_type p, InsetOld * i) : pos(p), inset(i) {}
};
///
typedef std::vector<InsetTable> List;
///
typedef List::iterator iterator;
///
typedef List::const_iterator const_iterator;
///
~InsetList();
///
iterator begin();
///
iterator end();
///
const_iterator begin() const;
///
const_iterator end() const;
///
iterator insetIterator(lyx::pos_type pos);
///
const_iterator insetIterator(lyx::pos_type pos) const;
///
void insert(InsetOld * inset, lyx::pos_type pos);
///
void erase(lyx::pos_type pos);
///
InsetOld * release(lyx::pos_type);
///
InsetOld * get(lyx::pos_type pos) const;
///
void increasePosAfterPos(lyx::pos_type pos);
///
void decreasePosAfterPos(lyx::pos_type pos);
///
void insetsOpenCloseBranch(BufferView * bv);
private:
///
List list;
};
#endif