mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-10 20:04:46 +00:00
dcd8fb0428
invalidation if the paragraphlist is changed. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7883 a592a061-630c-0410-9148-cb99ea01b6c8
77 lines
1.3 KiB
C++
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);
|
|
///
|
|
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 deleteInsetsLyXText(BufferView * bv);
|
|
///
|
|
void InsetList::insetsOpenCloseBranch(BufferView * bv);
|
|
|
|
private:
|
|
///
|
|
List list;
|
|
};
|
|
|
|
#endif
|