2002-08-11 15:03:52 +00:00
|
|
|
|
// -*- C++ -*-
|
2003-08-23 00:17:00 +00:00
|
|
|
|
/**
|
|
|
|
|
* \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<EFBFBD>nnes
|
|
|
|
|
*
|
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
|
*/
|
2002-08-11 15:03:52 +00:00
|
|
|
|
|
|
|
|
|
#ifndef INSET_LIST_H
|
|
|
|
|
#define INSET_LIST_H
|
|
|
|
|
|
|
|
|
|
#include "support/types.h"
|
|
|
|
|
|
2003-10-09 10:52:12 +00:00
|
|
|
|
#include <vector>
|
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
|
2007-04-29 13:39:47 +00:00
|
|
|
|
class Inset;
|
2003-11-21 17:26:11 +00:00
|
|
|
|
class Buffer;
|
2002-08-11 15:03:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
///
|
|
|
|
|
class InsetList {
|
|
|
|
|
public:
|
|
|
|
|
///
|
2005-01-19 15:03:31 +00:00
|
|
|
|
class InsetTable {
|
|
|
|
|
public:
|
|
|
|
|
///
|
2007-04-29 13:39:47 +00:00
|
|
|
|
InsetTable(pos_type p, Inset * i) : pos(p), inset(i) {}
|
2002-08-11 15:03:52 +00:00
|
|
|
|
///
|
2006-10-21 00:16:43 +00:00
|
|
|
|
pos_type pos;
|
2002-08-11 15:03:52 +00:00
|
|
|
|
///
|
2007-04-29 13:39:47 +00:00
|
|
|
|
Inset * inset;
|
2002-08-11 15:03:52 +00:00
|
|
|
|
};
|
|
|
|
|
///
|
|
|
|
|
typedef std::vector<InsetTable> List;
|
|
|
|
|
///
|
2003-05-29 01:13:18 +00:00
|
|
|
|
typedef List::iterator iterator;
|
|
|
|
|
///
|
|
|
|
|
typedef List::const_iterator const_iterator;
|
2003-07-25 21:20:24 +00:00
|
|
|
|
|
2002-08-11 15:03:52 +00:00
|
|
|
|
///
|
|
|
|
|
~InsetList();
|
|
|
|
|
///
|
2004-07-25 00:04:42 +00:00
|
|
|
|
iterator begin() { return list_.begin(); }
|
2002-08-11 15:03:52 +00:00
|
|
|
|
///
|
2004-07-25 00:04:42 +00:00
|
|
|
|
iterator end() { return list_.end(); }
|
2002-08-11 15:03:52 +00:00
|
|
|
|
///
|
2004-07-25 00:04:42 +00:00
|
|
|
|
const_iterator begin() const { return list_.begin(); }
|
2002-08-11 15:03:52 +00:00
|
|
|
|
///
|
2004-07-25 00:04:42 +00:00
|
|
|
|
const_iterator end() const { return list_.end(); }
|
2003-11-25 11:17:27 +00:00
|
|
|
|
///
|
2004-07-25 00:04:42 +00:00
|
|
|
|
bool empty() const { return list_.empty(); }
|
2002-08-11 15:03:52 +00:00
|
|
|
|
///
|
2006-10-21 00:16:43 +00:00
|
|
|
|
iterator insetIterator(pos_type pos);
|
2003-11-13 13:43:44 +00:00
|
|
|
|
///
|
2006-10-21 00:16:43 +00:00
|
|
|
|
const_iterator insetIterator(pos_type pos) const;
|
2002-08-11 15:03:52 +00:00
|
|
|
|
///
|
2007-04-29 13:39:47 +00:00
|
|
|
|
void insert(Inset * inset, pos_type pos);
|
2002-08-11 15:03:52 +00:00
|
|
|
|
///
|
2006-10-21 00:16:43 +00:00
|
|
|
|
void erase(pos_type pos);
|
2002-08-11 15:03:52 +00:00
|
|
|
|
///
|
2007-04-29 13:39:47 +00:00
|
|
|
|
Inset * release(pos_type);
|
2002-08-11 15:03:52 +00:00
|
|
|
|
///
|
2007-04-29 13:39:47 +00:00
|
|
|
|
Inset * get(pos_type pos) const;
|
2002-08-11 15:03:52 +00:00
|
|
|
|
///
|
2006-10-21 00:16:43 +00:00
|
|
|
|
void increasePosAfterPos(pos_type pos);
|
2002-08-11 15:03:52 +00:00
|
|
|
|
///
|
2006-10-21 00:16:43 +00:00
|
|
|
|
void decreasePosAfterPos(pos_type pos);
|
2003-08-17 11:28:23 +00:00
|
|
|
|
|
2002-08-11 15:03:52 +00:00
|
|
|
|
private:
|
|
|
|
|
///
|
2004-07-25 00:04:42 +00:00
|
|
|
|
List list_;
|
2002-08-11 15:03:52 +00:00
|
|
|
|
};
|
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
} // namespace lyx
|
|
|
|
|
|
2002-08-11 15:03:52 +00:00
|
|
|
|
#endif
|