lyx_mirror/src/InsetList.cpp
Abdelrazak Younes 9383f4c3c6 'using namespace std' instead of 'using std::xxx'
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@22097 a592a061-630c-0410-9148-cb99ea01b6c8
2007-12-12 10:16:00 +00:00

174 lines
3.3 KiB
C++

/**
* \file InsetList.cpp
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author Lars Gullik Bjønnes
* \author Martin Vermeer
*
* Full author contact details are available in file CREDITS.
*/
#include <config.h>
#include "InsetList.h"
#include "Buffer.h"
#include "BufferParams.h"
#include "BranchList.h"
#include "support/debug.h"
#include "insets/InsetBranch.h"
using namespace std;
namespace lyx {
namespace {
typedef InsetList::InsetTable Table;
struct InsetTablePosLess
{
bool operator()(Table const & t1, Table const & t2) const
{
return t1.pos < t2.pos;
}
};
} // namespace anon
InsetList::~InsetList()
{
// If we begin storing a shared_ptr in the List
// this code can be removed. (Lgb)
List::iterator it = list_.begin();
List::iterator end = list_.end();
for (; it != end; ++it) {
delete it->inset;
}
}
InsetList::iterator InsetList::insetIterator(pos_type pos)
{
InsetTable search_elem(pos, 0);
return lower_bound(list_.begin(), list_.end(), search_elem,
InsetTablePosLess());
}
InsetList::const_iterator InsetList::insetIterator(pos_type pos) const
{
InsetTable search_elem(pos, 0);
return lower_bound(list_.begin(), list_.end(), search_elem,
InsetTablePosLess());
}
void InsetList::insert(Inset * inset, pos_type pos)
{
List::iterator end = list_.end();
List::iterator it = insetIterator(pos);
if (it != end && it->pos == pos) {
LYXERR0("ERROR (InsetList::insert): "
<< "There is an inset in position: " << pos);
} else {
list_.insert(it, InsetTable(pos, inset));
}
}
void InsetList::erase(pos_type pos)
{
List::iterator end = list_.end();
List::iterator it = insetIterator(pos);
if (it != end && it->pos == pos) {
delete it->inset;
list_.erase(it);
}
}
Inset * InsetList::release(pos_type pos)
{
List::iterator end = list_.end();
List::iterator it = insetIterator(pos);
if (it != end && it->pos == pos) {
Inset * tmp = it->inset;
it->inset = 0;
return tmp;
}
return 0;
}
Inset * InsetList::get(pos_type pos) const
{
List::const_iterator end = list_.end();
List::const_iterator it = insetIterator(pos);
if (it != end && it->pos == pos)
return it->inset;
return 0;
}
void InsetList::increasePosAfterPos(pos_type pos)
{
List::iterator end = list_.end();
List::iterator it = insetIterator(pos);
for (; it != end; ++it) {
++it->pos;
}
}
void InsetList::decreasePosAfterPos(pos_type pos)
{
List::iterator end = list_.end();
List::iterator it = insetIterator(pos);
for (; it != end; ++it) {
--it->pos;
}
}
InsetList::InsetList(InsetList const & il)
{
list_ = il.list_;
List::iterator it = list_.begin();
List::iterator end = list_.end();
for (; it != end; ++it)
it->inset = it->inset->clone();
}
pos_type InsetList::find(InsetCode code, pos_type startpos) const
{
List::const_iterator it = insetIterator(startpos);
List::const_iterator end = list_.end();
for (; it != end ; ++it) {
if (it->inset->lyxCode() == code)
return it->pos;
}
return -1;
}
int InsetList::count(InsetCode code, pos_type startpos) const
{
int num = 0;
List::const_iterator it = insetIterator(startpos);
List::const_iterator end = list_.end();
for (; it != end ; ++it) {
if (it->inset->lyxCode() == code)
++num;
}
return num;
}
} // namespace lyx