mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
120e59bc97
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8525 a592a061-630c-0410-9148-cb99ea01b6c8
79 lines
1.4 KiB
C
79 lines
1.4 KiB
C
/**
|
|
* \file ControlErrorList.C
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Alfredo Braunstein
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "ControlErrorList.h"
|
|
#include "buffer.h"
|
|
#include "BufferView.h"
|
|
#include "debug.h"
|
|
#include "iterators.h"
|
|
#include "lyxtext.h"
|
|
#include "paragraph.h"
|
|
#include "PosIterator.h"
|
|
|
|
|
|
using std::endl;
|
|
using std::string;
|
|
|
|
|
|
ControlErrorList::ControlErrorList(Dialog & d)
|
|
: Dialog::Controller(d)
|
|
{}
|
|
|
|
|
|
void ControlErrorList::clearParams()
|
|
{}
|
|
|
|
|
|
ErrorList const & ControlErrorList::errorList() const
|
|
{
|
|
return errorlist_;
|
|
}
|
|
|
|
|
|
bool ControlErrorList::initialiseParams(string const & name)
|
|
{
|
|
errorlist_ = kernel().bufferview()->getErrorList();
|
|
name_ = name;
|
|
return true;
|
|
}
|
|
|
|
|
|
string const & ControlErrorList::name()
|
|
{
|
|
return name_;
|
|
}
|
|
|
|
|
|
void ControlErrorList::goTo(int item)
|
|
{
|
|
ErrorItem const & err = errorlist_[item];
|
|
|
|
if (err.par_id == -1)
|
|
return;
|
|
|
|
Buffer & buf = kernel().buffer();
|
|
ParIterator pit = buf.getParFromID(err.par_id);
|
|
|
|
if (pit == buf.par_iterator_end()) {
|
|
lyxerr << "par id not found" << endl;
|
|
return;
|
|
}
|
|
|
|
lyx::pos_type const end = std::min(err.pos_end, pit->size());
|
|
lyx::pos_type const start = std::min(err.pos_start, end);
|
|
lyx::pos_type const range = end - start;
|
|
|
|
// Now make the selection.
|
|
PosIterator const pos(pit, start);
|
|
kernel().bufferview()->putSelectionAt(pos, range, false);
|
|
}
|