2003-08-23 00:17:00 +00:00
|
|
|
|
/**
|
|
|
|
|
* \file InsetList.C
|
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
|
*
|
|
|
|
|
* \author Lars Gullik Bj<EFBFBD>nnes
|
|
|
|
|
* \author Martin Vermeer
|
|
|
|
|
*
|
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
|
*/
|
|
|
|
|
|
2002-08-11 15:03:52 +00:00
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
|
|
#include "InsetList.h"
|
2003-08-17 11:28:23 +00:00
|
|
|
|
#include "BufferView.h"
|
|
|
|
|
#include "buffer.h"
|
2002-08-11 15:03:52 +00:00
|
|
|
|
#include "debug.h"
|
|
|
|
|
|
2003-08-17 11:28:23 +00:00
|
|
|
|
#include "insets/insetbranch.h"
|
2002-08-11 15:03:52 +00:00
|
|
|
|
|
|
|
|
|
using lyx::pos_type;
|
|
|
|
|
|
2003-09-08 00:33:41 +00:00
|
|
|
|
using std::endl;
|
2002-08-11 15:03:52 +00:00
|
|
|
|
using std::lower_bound;
|
|
|
|
|
using std::upper_bound;
|
2003-09-08 00:33:41 +00:00
|
|
|
|
|
2002-08-11 15:03:52 +00:00
|
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
|
|
struct MatchIt {
|
|
|
|
|
/// used by lower_bound and upper_bound
|
|
|
|
|
inline
|
|
|
|
|
int operator()(InsetList::InsetTable const & a,
|
2003-03-04 09:27:27 +00:00
|
|
|
|
InsetList::InsetTable const & b) const
|
2003-02-20 17:39:48 +00:00
|
|
|
|
{
|
2002-08-11 15:03:52 +00:00
|
|
|
|
return a.pos < b.pos;
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2003-05-29 01:13:18 +00:00
|
|
|
|
} // namespace anon
|
2002-08-11 15:03:52 +00:00
|
|
|
|
|
|
|
|
|
|
2002-12-01 22:59:25 +00:00
|
|
|
|
InsetList::~InsetList()
|
2002-08-11 15:03:52 +00:00
|
|
|
|
{
|
|
|
|
|
// 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::begin()
|
|
|
|
|
{
|
2003-05-29 01:13:18 +00:00
|
|
|
|
return list.begin();
|
2002-08-11 15:03:52 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
InsetList::iterator InsetList::end()
|
|
|
|
|
{
|
2003-05-29 01:13:18 +00:00
|
|
|
|
return list.end();
|
2002-08-11 15:03:52 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-05-29 01:13:18 +00:00
|
|
|
|
InsetList::const_iterator InsetList::begin() const
|
2002-08-11 15:03:52 +00:00
|
|
|
|
{
|
2003-05-29 01:13:18 +00:00
|
|
|
|
return list.begin();
|
2002-08-11 15:03:52 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-05-29 01:13:18 +00:00
|
|
|
|
InsetList::const_iterator InsetList::end() const
|
2002-08-11 15:03:52 +00:00
|
|
|
|
{
|
2003-05-29 01:13:18 +00:00
|
|
|
|
return list.end();
|
2002-08-11 15:03:52 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
InsetList::iterator
|
|
|
|
|
InsetList::insetIterator(pos_type pos)
|
|
|
|
|
{
|
|
|
|
|
InsetTable search_elem(pos, 0);
|
|
|
|
|
List::iterator it = lower_bound(list.begin(),
|
|
|
|
|
list.end(),
|
|
|
|
|
search_elem, MatchIt());
|
2003-05-29 01:13:18 +00:00
|
|
|
|
return it;
|
2002-08-11 15:03:52 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-07-25 21:20:24 +00:00
|
|
|
|
void InsetList::insert(InsetOld * inset, lyx::pos_type pos)
|
2002-08-11 15:03:52 +00:00
|
|
|
|
{
|
|
|
|
|
InsetTable search_elem(pos, 0);
|
2003-05-29 01:13:18 +00:00
|
|
|
|
List::iterator end = list.end();
|
2002-08-11 15:03:52 +00:00
|
|
|
|
List::iterator it = lower_bound(list.begin(),
|
2003-05-29 01:13:18 +00:00
|
|
|
|
end,
|
2002-08-11 15:03:52 +00:00
|
|
|
|
search_elem, MatchIt());
|
2003-05-29 01:13:18 +00:00
|
|
|
|
if (it != end && it->pos == pos) {
|
2002-08-11 15:03:52 +00:00
|
|
|
|
lyxerr << "ERROR (InsetList::insert): "
|
|
|
|
|
<< "There is an inset in position: " << pos << endl;
|
|
|
|
|
} else {
|
|
|
|
|
list.insert(it, InsetTable(pos, inset));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void InsetList::erase(pos_type pos)
|
|
|
|
|
{
|
|
|
|
|
InsetTable search_elem(pos, 0);
|
2003-05-29 01:13:18 +00:00
|
|
|
|
List::iterator end = list.end();
|
2002-08-11 15:03:52 +00:00
|
|
|
|
List::iterator it =
|
|
|
|
|
lower_bound(list.begin(),
|
2003-05-29 01:13:18 +00:00
|
|
|
|
end,
|
2002-08-11 15:03:52 +00:00
|
|
|
|
search_elem, MatchIt());
|
2003-05-29 01:13:18 +00:00
|
|
|
|
if (it != end && it->pos == pos) {
|
2002-08-11 15:03:52 +00:00
|
|
|
|
delete it->inset;
|
|
|
|
|
list.erase(it);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-07-25 21:20:24 +00:00
|
|
|
|
InsetOld * InsetList::release(pos_type pos)
|
2002-08-11 15:03:52 +00:00
|
|
|
|
{
|
|
|
|
|
InsetTable search_elem(pos, 0);
|
2003-05-29 01:13:18 +00:00
|
|
|
|
List::iterator end = list.end();
|
2002-08-11 15:03:52 +00:00
|
|
|
|
List::iterator it =
|
|
|
|
|
lower_bound(list.begin(),
|
2003-05-29 01:13:18 +00:00
|
|
|
|
end,
|
2002-08-11 15:03:52 +00:00
|
|
|
|
search_elem, MatchIt());
|
2003-05-29 01:13:18 +00:00
|
|
|
|
if (it != end && it->pos == pos) {
|
2003-07-25 21:20:24 +00:00
|
|
|
|
InsetOld * tmp = it->inset;
|
2002-08-11 15:03:52 +00:00
|
|
|
|
it->inset = 0;
|
|
|
|
|
return tmp;
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2002-12-01 22:59:25 +00:00
|
|
|
|
|
2003-07-25 21:20:24 +00:00
|
|
|
|
InsetOld * InsetList::get(pos_type pos) const
|
2002-08-11 15:03:52 +00:00
|
|
|
|
{
|
|
|
|
|
InsetTable search_elem(pos, 0);
|
2003-05-29 01:13:18 +00:00
|
|
|
|
List::const_iterator end = list.end();
|
|
|
|
|
List::const_iterator it =
|
|
|
|
|
lower_bound(list.begin(),
|
|
|
|
|
end,
|
2002-08-11 15:03:52 +00:00
|
|
|
|
search_elem, MatchIt());
|
2003-05-29 01:13:18 +00:00
|
|
|
|
if (it != end && it->pos == pos)
|
2002-08-11 15:03:52 +00:00
|
|
|
|
return it->inset;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void InsetList::increasePosAfterPos(pos_type pos)
|
|
|
|
|
{
|
|
|
|
|
InsetTable search_elem(pos, 0);
|
2003-05-29 01:13:18 +00:00
|
|
|
|
List::iterator end = list.end();
|
2002-08-11 15:03:52 +00:00
|
|
|
|
List::iterator it = lower_bound(list.begin(),
|
2003-05-29 01:13:18 +00:00
|
|
|
|
end,
|
2002-08-11 15:03:52 +00:00
|
|
|
|
search_elem, MatchIt());
|
|
|
|
|
for (; it != end; ++it) {
|
|
|
|
|
++it->pos;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void InsetList::decreasePosAfterPos(pos_type pos)
|
|
|
|
|
{
|
|
|
|
|
InsetTable search_elem(pos, 0);
|
|
|
|
|
List::iterator end = list.end();
|
|
|
|
|
List::iterator it = upper_bound(list.begin(),
|
|
|
|
|
end,
|
|
|
|
|
search_elem, MatchIt());
|
|
|
|
|
for (; it != end; ++it) {
|
|
|
|
|
--it->pos;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void InsetList::deleteInsetsLyXText(BufferView * bv)
|
|
|
|
|
{
|
|
|
|
|
List::iterator it = list.begin();
|
|
|
|
|
List::iterator end = list.end();
|
|
|
|
|
for (; it != end; ++it) {
|
|
|
|
|
if (it->inset) {
|
|
|
|
|
if (it->inset->isTextInset()) {
|
|
|
|
|
static_cast<UpdatableInset*>
|
|
|
|
|
(it->inset)->deleteLyXText(bv, true);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2003-08-17 11:28:23 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void InsetList::insetsOpenCloseBranch(BufferView * bv)
|
|
|
|
|
{
|
2003-09-09 09:47:59 +00:00
|
|
|
|
BufferParams bp = bv->buffer()->params();
|
2003-08-17 11:28:23 +00:00
|
|
|
|
List::iterator it = list.begin();
|
|
|
|
|
List::iterator end = list.end();
|
|
|
|
|
for (; it != end; ++it) {
|
|
|
|
|
if (it->inset && it->inset->lyxCode() == InsetOld::BRANCH_CODE) {
|
|
|
|
|
InsetBranch * inset = static_cast<InsetBranch *>(it->inset);
|
|
|
|
|
if (bp.branchlist.selected(inset->params().branch)) {
|
|
|
|
|
inset->open(bv);
|
|
|
|
|
} else {
|
|
|
|
|
inset->close(bv);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|