2002-06-12 02:54:19 +00:00
|
|
|
|
/**
|
|
|
|
|
* \file BufferView.C
|
2003-08-23 00:17:00 +00:00
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
2002-03-21 17:27:08 +00:00
|
|
|
|
*
|
2003-10-20 11:41:21 +00:00
|
|
|
|
* \author Alfredo Braunstein
|
2003-06-30 23:56:22 +00:00
|
|
|
|
* \author Lars Gullik Bj<EFBFBD>nnes
|
2003-08-23 00:17:00 +00:00
|
|
|
|
* \author John Levon
|
|
|
|
|
* \author Andr<EFBFBD> P<EFBFBD>nitz
|
|
|
|
|
* \author J<EFBFBD>rgen Vigna
|
|
|
|
|
*
|
|
|
|
|
* Full author contact details are available in file CREDITS.
|
2002-06-12 02:54:19 +00:00
|
|
|
|
*/
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
|
|
#include "BufferView.h"
|
2003-09-09 22:13:45 +00:00
|
|
|
|
|
2002-08-29 13:05:55 +00:00
|
|
|
|
#include "buffer.h"
|
|
|
|
|
#include "bufferlist.h"
|
2004-02-04 09:44:12 +00:00
|
|
|
|
#include "bufferparams.h"
|
2003-09-06 18:38:02 +00:00
|
|
|
|
#include "BufferView_pimpl.h"
|
2004-03-25 09:16:36 +00:00
|
|
|
|
#include "CutAndPaste.h"
|
2004-11-30 01:59:49 +00:00
|
|
|
|
#include "coordcache.h"
|
2003-11-10 09:06:48 +00:00
|
|
|
|
#include "debug.h"
|
2003-09-04 03:54:04 +00:00
|
|
|
|
#include "funcrequest.h"
|
2004-04-01 08:58:45 +00:00
|
|
|
|
#include "FuncStatus.h"
|
2003-09-06 18:38:02 +00:00
|
|
|
|
#include "gettext.h"
|
2004-03-27 12:42:10 +00:00
|
|
|
|
#include "insetiterator.h"
|
2002-08-29 13:05:55 +00:00
|
|
|
|
#include "language.h"
|
2003-09-09 11:24:33 +00:00
|
|
|
|
#include "lyxlayout.h"
|
2000-04-09 22:48:51 +00:00
|
|
|
|
#include "lyxtext.h"
|
2004-02-04 09:44:12 +00:00
|
|
|
|
#include "lyxtextclass.h"
|
2003-09-06 17:23:08 +00:00
|
|
|
|
#include "paragraph.h"
|
2003-04-15 00:11:03 +00:00
|
|
|
|
#include "paragraph_funcs.h"
|
2004-03-28 22:00:22 +00:00
|
|
|
|
#include "pariterator.h"
|
2003-09-09 11:24:33 +00:00
|
|
|
|
#include "texrow.h"
|
2003-10-14 13:01:49 +00:00
|
|
|
|
#include "undo.h"
|
2003-09-06 18:38:02 +00:00
|
|
|
|
#include "WordLangTuple.h"
|
2002-08-29 13:05:55 +00:00
|
|
|
|
|
|
|
|
|
#include "frontends/Alert.h"
|
|
|
|
|
#include "frontends/Dialogs.h"
|
2002-08-20 13:00:25 +00:00
|
|
|
|
#include "frontends/LyXView.h"
|
2002-08-29 13:05:55 +00:00
|
|
|
|
#include "frontends/screen.h"
|
2003-09-06 18:38:02 +00:00
|
|
|
|
#include "frontends/WorkArea.h"
|
2002-08-29 13:05:55 +00:00
|
|
|
|
|
|
|
|
|
#include "insets/insetcommand.h" // ChangeRefs
|
2003-02-20 17:39:48 +00:00
|
|
|
|
#include "insets/updatableinset.h"
|
2004-03-18 12:53:43 +00:00
|
|
|
|
#include "insets/insettext.h"
|
2002-08-29 13:05:55 +00:00
|
|
|
|
|
2003-09-09 22:13:45 +00:00
|
|
|
|
using lyx::support::bformat;
|
2002-08-29 13:05:55 +00:00
|
|
|
|
|
2004-03-25 09:16:36 +00:00
|
|
|
|
using lyx::cap::setSelectionRange;
|
|
|
|
|
|
2004-01-28 16:21:29 +00:00
|
|
|
|
using std::distance;
|
2002-08-29 13:05:55 +00:00
|
|
|
|
using std::find;
|
2003-10-06 15:43:21 +00:00
|
|
|
|
using std::string;
|
2004-01-28 16:21:29 +00:00
|
|
|
|
using std::swap;
|
2003-09-08 00:33:41 +00:00
|
|
|
|
using std::vector;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
|
2003-09-09 22:13:45 +00:00
|
|
|
|
extern BufferList bufferlist;
|
|
|
|
|
|
|
|
|
|
|
2004-04-28 17:22:05 +00:00
|
|
|
|
BufferView::BufferView(LyXView * owner, int width, int height)
|
|
|
|
|
: pimpl_(new Pimpl(*this, owner, width, height))
|
2003-11-28 15:08:38 +00:00
|
|
|
|
{}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
|
1999-12-10 00:07:59 +00:00
|
|
|
|
BufferView::~BufferView()
|
|
|
|
|
{
|
2000-04-08 17:02:02 +00:00
|
|
|
|
delete pimpl_;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-12-12 15:19:35 +00:00
|
|
|
|
void BufferView::unsetXSel()
|
|
|
|
|
{
|
|
|
|
|
pimpl_->xsel_cache_.set = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-04-08 17:02:02 +00:00
|
|
|
|
Buffer * BufferView::buffer() const
|
|
|
|
|
{
|
|
|
|
|
return pimpl_->buffer_;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2002-06-18 15:44:30 +00:00
|
|
|
|
LyXScreen & BufferView::screen() const
|
2000-06-19 15:33:58 +00:00
|
|
|
|
{
|
2002-06-11 23:47:58 +00:00
|
|
|
|
return pimpl_->screen();
|
2000-06-19 15:33:58 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-04-08 17:02:02 +00:00
|
|
|
|
LyXView * BufferView::owner() const
|
|
|
|
|
{
|
|
|
|
|
return pimpl_->owner_;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2002-06-12 02:54:19 +00:00
|
|
|
|
Painter & BufferView::painter() const
|
2000-02-10 17:53:36 +00:00
|
|
|
|
{
|
2000-04-09 22:48:51 +00:00
|
|
|
|
return pimpl_->painter();
|
2000-02-10 17:53:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2004-03-18 12:53:43 +00:00
|
|
|
|
void BufferView::setBuffer(Buffer * b)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2004-03-18 12:53:43 +00:00
|
|
|
|
pimpl_->setBuffer(b);
|
2000-02-10 17:53:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2004-03-18 12:53:43 +00:00
|
|
|
|
void BufferView::newFile(string const & fn, string const & tn, bool named)
|
2003-07-07 08:37:02 +00:00
|
|
|
|
{
|
2004-03-18 12:53:43 +00:00
|
|
|
|
pimpl_->newFile(fn, tn, named);
|
2003-07-07 08:37:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-06-20 12:46:28 +00:00
|
|
|
|
bool BufferView::loadLyXFile(string const & fn, bool tl)
|
|
|
|
|
{
|
|
|
|
|
return pimpl_->loadLyXFile(fn, tl);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-03-08 05:37:54 +00:00
|
|
|
|
void BufferView::reload()
|
|
|
|
|
{
|
|
|
|
|
string const fn = buffer()->fileName();
|
2003-03-29 07:09:13 +00:00
|
|
|
|
if (bufferlist.close(buffer(), false))
|
2003-06-20 12:46:28 +00:00
|
|
|
|
loadLyXFile(fn);
|
2003-03-08 05:37:54 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
void BufferView::resize()
|
|
|
|
|
{
|
2003-07-10 12:26:40 +00:00
|
|
|
|
if (pimpl_->buffer_)
|
2002-07-15 18:01:29 +00:00
|
|
|
|
pimpl_->resizeCurrentBuffer();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2002-03-29 15:49:45 +00:00
|
|
|
|
bool BufferView::fitCursor()
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2002-03-29 15:49:45 +00:00
|
|
|
|
return pimpl_->fitCursor();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2004-11-30 01:59:49 +00:00
|
|
|
|
void BufferView::update(bool fitcursor, bool forceupdate)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2004-11-30 01:59:49 +00:00
|
|
|
|
pimpl_->update(fitcursor, forceupdate);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::updateScrollbar()
|
|
|
|
|
{
|
2000-04-09 22:48:51 +00:00
|
|
|
|
pimpl_->updateScrollbar();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2002-06-12 15:01:32 +00:00
|
|
|
|
void BufferView::scrollDocView(int value)
|
2001-02-19 16:01:31 +00:00
|
|
|
|
{
|
2002-06-12 15:01:32 +00:00
|
|
|
|
pimpl_->scrollDocView(value);
|
2001-02-19 16:01:31 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
bool BufferView::available() const
|
|
|
|
|
{
|
2000-04-09 22:48:51 +00:00
|
|
|
|
return pimpl_->available();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-02-08 19:18:01 +00:00
|
|
|
|
Change const BufferView::getCurrentChange()
|
|
|
|
|
{
|
|
|
|
|
return pimpl_->getCurrentChange();
|
|
|
|
|
}
|
|
|
|
|
|
2003-03-04 09:27:27 +00:00
|
|
|
|
|
2001-01-28 18:31:36 +00:00
|
|
|
|
void BufferView::savePosition(unsigned int i)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2001-01-28 18:31:36 +00:00
|
|
|
|
pimpl_->savePosition(i);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-01-28 18:31:36 +00:00
|
|
|
|
void BufferView::restorePosition(unsigned int i)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2001-01-28 18:31:36 +00:00
|
|
|
|
pimpl_->restorePosition(i);
|
2000-04-09 22:48:51 +00:00
|
|
|
|
}
|
1999-12-10 00:07:59 +00:00
|
|
|
|
|
|
|
|
|
|
2001-01-28 18:31:36 +00:00
|
|
|
|
bool BufferView::isSavedPosition(unsigned int i)
|
2000-06-05 15:12:09 +00:00
|
|
|
|
{
|
2001-01-28 18:31:36 +00:00
|
|
|
|
return pimpl_->isSavedPosition(i);
|
2000-06-05 15:12:09 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2002-07-17 04:13:41 +00:00
|
|
|
|
void BufferView::switchKeyMap()
|
2000-02-04 09:38:32 +00:00
|
|
|
|
{
|
2002-07-17 04:13:41 +00:00
|
|
|
|
pimpl_->switchKeyMap();
|
2000-02-03 19:51:27 +00:00
|
|
|
|
}
|
2000-01-07 03:42:16 +00:00
|
|
|
|
|
|
|
|
|
|
2000-06-12 11:27:15 +00:00
|
|
|
|
int BufferView::workWidth() const
|
2000-02-25 12:06:15 +00:00
|
|
|
|
{
|
2002-06-11 22:38:49 +00:00
|
|
|
|
return pimpl_->workarea().workWidth();
|
2000-02-23 16:39:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2002-03-21 17:27:08 +00:00
|
|
|
|
void BufferView::center()
|
2000-02-17 19:59:08 +00:00
|
|
|
|
{
|
2000-04-09 22:48:51 +00:00
|
|
|
|
pimpl_->center();
|
2000-02-17 19:59:08 +00:00
|
|
|
|
}
|
2000-05-20 01:38:25 +00:00
|
|
|
|
|
|
|
|
|
|
2001-05-03 15:38:24 +00:00
|
|
|
|
string const BufferView::getClipboard() const
|
|
|
|
|
{
|
2002-06-11 22:38:49 +00:00
|
|
|
|
return pimpl_->workarea().getClipboard();
|
2001-05-03 15:38:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-05-20 21:37:05 +00:00
|
|
|
|
void BufferView::stuffClipboard(string const & stuff) const
|
|
|
|
|
{
|
|
|
|
|
pimpl_->stuffClipboard(stuff);
|
2000-05-20 01:38:25 +00:00
|
|
|
|
}
|
2000-06-12 11:27:15 +00:00
|
|
|
|
|
|
|
|
|
|
2004-04-01 08:58:45 +00:00
|
|
|
|
FuncStatus BufferView::getStatus(FuncRequest const & cmd)
|
|
|
|
|
{
|
|
|
|
|
return pimpl_->getStatus(cmd);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2002-08-07 08:11:41 +00:00
|
|
|
|
bool BufferView::dispatch(FuncRequest const & ev)
|
2001-02-23 16:10:03 +00:00
|
|
|
|
{
|
2002-08-07 08:11:41 +00:00
|
|
|
|
return pimpl_->dispatch(ev);
|
2001-02-23 16:10:03 +00:00
|
|
|
|
}
|
2002-08-28 10:45:38 +00:00
|
|
|
|
|
|
|
|
|
|
2002-10-21 00:15:48 +00:00
|
|
|
|
void BufferView::scroll(int lines)
|
2002-08-28 10:45:38 +00:00
|
|
|
|
{
|
2002-10-21 00:15:48 +00:00
|
|
|
|
pimpl_->scroll(lines);
|
2002-08-28 10:45:38 +00:00
|
|
|
|
}
|
2002-08-29 13:05:55 +00:00
|
|
|
|
|
|
|
|
|
|
2003-05-20 16:51:31 +00:00
|
|
|
|
void BufferView::showErrorList(string const & action) const
|
|
|
|
|
{
|
|
|
|
|
if (getErrorList().size()) {
|
2003-10-20 11:41:21 +00:00
|
|
|
|
string const title = bformat(_("LyX: %1$s errors (%2$s)"),
|
|
|
|
|
action, buffer()->fileName());
|
2003-05-20 16:51:31 +00:00
|
|
|
|
owner()->getDialogs().show("errorlist", title);
|
2003-06-24 21:43:25 +00:00
|
|
|
|
pimpl_->errorlist_.clear();
|
2003-05-20 16:51:31 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-10-20 11:41:21 +00:00
|
|
|
|
ErrorList const & BufferView::getErrorList() const
|
2003-05-20 16:51:31 +00:00
|
|
|
|
{
|
|
|
|
|
return pimpl_->errorlist_;
|
2002-08-29 13:05:55 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::setCursorFromRow(int row)
|
|
|
|
|
{
|
|
|
|
|
int tmpid = -1;
|
|
|
|
|
int tmppos = -1;
|
|
|
|
|
|
2003-09-09 09:47:59 +00:00
|
|
|
|
buffer()->texrow().getIdFromRow(row, tmpid, tmppos);
|
2002-08-29 13:05:55 +00:00
|
|
|
|
|
2003-10-09 10:52:12 +00:00
|
|
|
|
if (tmpid == -1)
|
2004-02-13 11:05:29 +00:00
|
|
|
|
text()->setCursor(cursor(), 0, 0);
|
2003-10-09 10:52:12 +00:00
|
|
|
|
else
|
2004-08-14 19:55:00 +00:00
|
|
|
|
text()->setCursor(cursor(), buffer()->getParFromID(tmpid).pit(), tmppos);
|
2002-08-29 13:05:55 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-03-29 10:29:38 +00:00
|
|
|
|
void BufferView::gotoLabel(string const & label)
|
2002-08-29 13:05:55 +00:00
|
|
|
|
{
|
2004-03-30 08:18:09 +00:00
|
|
|
|
for (InsetIterator it = inset_iterator_begin(buffer()->inset()); it; ++it) {
|
2003-06-16 11:49:38 +00:00
|
|
|
|
vector<string> labels;
|
2003-09-18 20:18:39 +00:00
|
|
|
|
it->getLabelList(*buffer(), labels);
|
2003-08-04 09:06:35 +00:00
|
|
|
|
if (find(labels.begin(),labels.end(),label) != labels.end()) {
|
2004-01-20 14:25:24 +00:00
|
|
|
|
cursor().clearSelection();
|
2004-11-24 21:53:46 +00:00
|
|
|
|
text()->setCursor(cursor(), it.pit(), it.pos());
|
2004-01-20 14:25:24 +00:00
|
|
|
|
cursor().resetAnchor();
|
2003-08-04 09:06:35 +00:00
|
|
|
|
update();
|
2003-03-29 10:29:38 +00:00
|
|
|
|
return;
|
2002-08-29 13:05:55 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-05-03 18:05:53 +00:00
|
|
|
|
void BufferView::hideCursor()
|
|
|
|
|
{
|
|
|
|
|
screen().hideCursor();
|
|
|
|
|
}
|
|
|
|
|
|
2005-01-31 16:29:48 +00:00
|
|
|
|
LyXText * BufferView::getLyXText()
|
2002-08-29 13:05:55 +00:00
|
|
|
|
{
|
2004-03-18 12:53:43 +00:00
|
|
|
|
LyXText * text = cursor().innerText();
|
|
|
|
|
BOOST_ASSERT(text);
|
|
|
|
|
return text;
|
2002-08-29 13:05:55 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2005-01-31 16:29:48 +00:00
|
|
|
|
LyXText const * BufferView::getLyXText() const
|
|
|
|
|
{
|
|
|
|
|
LyXText const * text = cursor().innerText();
|
|
|
|
|
BOOST_ASSERT(text);
|
|
|
|
|
return text;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2002-08-29 13:41:58 +00:00
|
|
|
|
void BufferView::haveSelection(bool sel)
|
|
|
|
|
{
|
|
|
|
|
pimpl_->workarea().haveSelection(sel);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int BufferView::workHeight() const
|
|
|
|
|
{
|
|
|
|
|
return pimpl_->workarea().workHeight();
|
|
|
|
|
}
|
2003-11-04 07:43:03 +00:00
|
|
|
|
|
|
|
|
|
|
2003-11-28 15:08:38 +00:00
|
|
|
|
LyXText * BufferView::text() const
|
|
|
|
|
{
|
2004-03-18 12:53:43 +00:00
|
|
|
|
return buffer() ? &buffer()->text() : 0;
|
2003-11-28 15:08:38 +00:00
|
|
|
|
}
|
2004-01-13 18:08:13 +00:00
|
|
|
|
|
|
|
|
|
|
2004-03-18 12:53:43 +00:00
|
|
|
|
void BufferView::setCursor(ParIterator const & par, lyx::pos_type pos)
|
2004-02-02 11:07:51 +00:00
|
|
|
|
{
|
2005-02-08 13:18:05 +00:00
|
|
|
|
for (int i = 0, n = par.depth(); i < n; ++i)
|
2004-03-31 17:58:11 +00:00
|
|
|
|
par[i].inset().edit(cursor(), true);
|
|
|
|
|
|
2004-08-14 19:55:00 +00:00
|
|
|
|
cursor().setCursor(makeDocIterator(par, pos));
|
|
|
|
|
cursor().selection() = false;
|
2004-02-02 11:07:51 +00:00
|
|
|
|
}
|
2004-01-14 17:21:39 +00:00
|
|
|
|
|
2005-02-08 13:18:05 +00:00
|
|
|
|
|
2004-03-31 19:11:56 +00:00
|
|
|
|
void BufferView::putSelectionAt(DocIterator const & cur,
|
2004-03-28 22:00:22 +00:00
|
|
|
|
int length, bool backwards)
|
2004-01-14 17:21:39 +00:00
|
|
|
|
{
|
|
|
|
|
ParIterator par(cur);
|
2004-01-28 16:21:29 +00:00
|
|
|
|
|
2004-01-20 14:25:24 +00:00
|
|
|
|
cursor().clearSelection();
|
2004-01-14 17:21:39 +00:00
|
|
|
|
|
2004-02-02 11:07:51 +00:00
|
|
|
|
setCursor(par, cur.pos());
|
2004-04-03 08:37:12 +00:00
|
|
|
|
|
2004-01-14 17:21:39 +00:00
|
|
|
|
if (length) {
|
2004-03-01 17:12:09 +00:00
|
|
|
|
if (backwards) {
|
2004-09-17 16:28:47 +00:00
|
|
|
|
cursor().pos() += length;
|
2004-03-31 17:58:11 +00:00
|
|
|
|
cursor().setSelection(cursor(), -length);
|
|
|
|
|
} else
|
|
|
|
|
cursor().setSelection(cursor(), length);
|
2004-01-14 17:21:39 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2004-01-15 11:58:35 +00:00
|
|
|
|
|
2004-01-20 14:25:24 +00:00
|
|
|
|
LCursor & BufferView::cursor()
|
|
|
|
|
{
|
|
|
|
|
return pimpl_->cursor_;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
LCursor const & BufferView::cursor() const
|
2004-01-15 11:58:35 +00:00
|
|
|
|
{
|
2004-01-20 14:25:24 +00:00
|
|
|
|
return pimpl_->cursor_;
|
2004-01-15 11:58:35 +00:00
|
|
|
|
}
|
2004-11-30 01:59:49 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
lyx::pit_type BufferView::anchor_ref() const
|
|
|
|
|
{
|
|
|
|
|
return pimpl_->anchor_ref_;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int BufferView::offset_ref() const
|
|
|
|
|
{
|
|
|
|
|
return pimpl_->offset_ref_;
|
|
|
|
|
}
|