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-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"
|
2006-07-04 00:04:46 +00:00
|
|
|
|
#include "metricsinfo.h"
|
2002-08-29 13:05:55 +00:00
|
|
|
|
|
|
|
|
|
#include "frontends/Alert.h"
|
2006-06-20 08:39:16 +00:00
|
|
|
|
#include "frontends/Clipboard.h"
|
2002-08-29 13:05:55 +00:00
|
|
|
|
#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 "insets/insetcommand.h" // ChangeRefs
|
2004-03-18 12:53:43 +00:00
|
|
|
|
#include "insets/insettext.h"
|
2002-08-29 13:05:55 +00:00
|
|
|
|
|
2006-06-26 16:55:35 +00:00
|
|
|
|
|
2003-09-09 22:13:45 +00:00
|
|
|
|
using lyx::support::bformat;
|
2002-08-29 13:05:55 +00:00
|
|
|
|
|
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;
|
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;
|
|
|
|
|
|
|
|
|
|
|
2006-07-03 22:31:51 +00:00
|
|
|
|
BufferView::BufferView(LyXView * owner)
|
|
|
|
|
: pimpl_(new Pimpl(*this, owner))
|
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_;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
LyXView * BufferView::owner() const
|
|
|
|
|
{
|
|
|
|
|
return pimpl_->owner_;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-07-13 16:37:55 +00:00
|
|
|
|
string BufferView::firstLayout()
|
2003-07-07 08:37:02 +00:00
|
|
|
|
{
|
2006-07-13 16:37:55 +00:00
|
|
|
|
return pimpl_->firstLayout();
|
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
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-07-14 09:56:21 +00:00
|
|
|
|
bool BufferView::update(Update::flags flags)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2006-07-14 09:56:21 +00:00
|
|
|
|
return pimpl_->update(flags);
|
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
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-06-26 16:55:35 +00:00
|
|
|
|
ScrollbarParameters const & BufferView::scrollbarParameters() const
|
|
|
|
|
{
|
|
|
|
|
return pimpl_->scrollbarParameters();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-08-16 15:24:38 +00:00
|
|
|
|
void BufferView::setCursorFromScrollbar()
|
|
|
|
|
{
|
|
|
|
|
pimpl_->setCursorFromScrollbar();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
|
2006-04-05 22:56:18 +00:00
|
|
|
|
void BufferView::saveSavedPositions()
|
|
|
|
|
{
|
|
|
|
|
return pimpl_->saveSavedPositions();
|
|
|
|
|
}
|
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
|
|
|
|
{
|
2006-06-26 16:55:35 +00:00
|
|
|
|
return pimpl_->width();
|
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
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
|
|
* frontends/WorkArea.h(workAreaResize, scrollDocView, workAreaKeyPress,
dispatch, selectionReuqested, selectionLost): remove signals
* BufferView.[Ch] (selectionRequested, selectionLost, workAreaResize,
workAreaKeyPress, workAreaDispatch): add forwarding functions to the pimpl
* BufferView_pimpl.C (Pimpl): Remove the setup of the now deleted signals,
also remove corresponding connection objects.
* frontends/xforms/XWorkArea.h:
* frontends/qt2/QWorkArea.h:
* frontends/qt4/QWorkArea.h:
* frontends/gtk/GWorkArea.h: add LyXView as class variable view_ (qt
classes also get view() medthod)
* frontends/qt2/QWorkArea.C:
* frontends/qt2/QContentPane.C:
* frontends/qt4/QWorkArea.C:
* frontends/xforms/XWorkArea.C:
* frontends/gtk/GWorkArea.C: Change from calling signals to call
the functions directly through view_.view()
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@13671 a592a061-630c-0410-9148-cb99ea01b6c8
2006-04-13 18:58:48 +00:00
|
|
|
|
void BufferView::selectionRequested()
|
|
|
|
|
{
|
2006-07-03 20:19:33 +00:00
|
|
|
|
pimpl_->selectionRequested();
|
* frontends/WorkArea.h(workAreaResize, scrollDocView, workAreaKeyPress,
dispatch, selectionReuqested, selectionLost): remove signals
* BufferView.[Ch] (selectionRequested, selectionLost, workAreaResize,
workAreaKeyPress, workAreaDispatch): add forwarding functions to the pimpl
* BufferView_pimpl.C (Pimpl): Remove the setup of the now deleted signals,
also remove corresponding connection objects.
* frontends/xforms/XWorkArea.h:
* frontends/qt2/QWorkArea.h:
* frontends/qt4/QWorkArea.h:
* frontends/gtk/GWorkArea.h: add LyXView as class variable view_ (qt
classes also get view() medthod)
* frontends/qt2/QWorkArea.C:
* frontends/qt2/QContentPane.C:
* frontends/qt4/QWorkArea.C:
* frontends/xforms/XWorkArea.C:
* frontends/gtk/GWorkArea.C: Change from calling signals to call
the functions directly through view_.view()
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@13671 a592a061-630c-0410-9148-cb99ea01b6c8
2006-04-13 18:58:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::selectionLost()
|
|
|
|
|
{
|
2006-07-03 20:19:33 +00:00
|
|
|
|
pimpl_->selectionLost();
|
* frontends/WorkArea.h(workAreaResize, scrollDocView, workAreaKeyPress,
dispatch, selectionReuqested, selectionLost): remove signals
* BufferView.[Ch] (selectionRequested, selectionLost, workAreaResize,
workAreaKeyPress, workAreaDispatch): add forwarding functions to the pimpl
* BufferView_pimpl.C (Pimpl): Remove the setup of the now deleted signals,
also remove corresponding connection objects.
* frontends/xforms/XWorkArea.h:
* frontends/qt2/QWorkArea.h:
* frontends/qt4/QWorkArea.h:
* frontends/gtk/GWorkArea.h: add LyXView as class variable view_ (qt
classes also get view() medthod)
* frontends/qt2/QWorkArea.C:
* frontends/qt2/QContentPane.C:
* frontends/qt4/QWorkArea.C:
* frontends/xforms/XWorkArea.C:
* frontends/gtk/GWorkArea.C: Change from calling signals to call
the functions directly through view_.view()
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@13671 a592a061-630c-0410-9148-cb99ea01b6c8
2006-04-13 18:58:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-06-26 16:55:35 +00:00
|
|
|
|
void BufferView::workAreaResize(int width, int height)
|
* frontends/WorkArea.h(workAreaResize, scrollDocView, workAreaKeyPress,
dispatch, selectionReuqested, selectionLost): remove signals
* BufferView.[Ch] (selectionRequested, selectionLost, workAreaResize,
workAreaKeyPress, workAreaDispatch): add forwarding functions to the pimpl
* BufferView_pimpl.C (Pimpl): Remove the setup of the now deleted signals,
also remove corresponding connection objects.
* frontends/xforms/XWorkArea.h:
* frontends/qt2/QWorkArea.h:
* frontends/qt4/QWorkArea.h:
* frontends/gtk/GWorkArea.h: add LyXView as class variable view_ (qt
classes also get view() medthod)
* frontends/qt2/QWorkArea.C:
* frontends/qt2/QContentPane.C:
* frontends/qt4/QWorkArea.C:
* frontends/xforms/XWorkArea.C:
* frontends/gtk/GWorkArea.C: Change from calling signals to call
the functions directly through view_.view()
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@13671 a592a061-630c-0410-9148-cb99ea01b6c8
2006-04-13 18:58:48 +00:00
|
|
|
|
{
|
2006-07-03 20:19:33 +00:00
|
|
|
|
pimpl_->workAreaResize(width, height);
|
* frontends/WorkArea.h(workAreaResize, scrollDocView, workAreaKeyPress,
dispatch, selectionReuqested, selectionLost): remove signals
* BufferView.[Ch] (selectionRequested, selectionLost, workAreaResize,
workAreaKeyPress, workAreaDispatch): add forwarding functions to the pimpl
* BufferView_pimpl.C (Pimpl): Remove the setup of the now deleted signals,
also remove corresponding connection objects.
* frontends/xforms/XWorkArea.h:
* frontends/qt2/QWorkArea.h:
* frontends/qt4/QWorkArea.h:
* frontends/gtk/GWorkArea.h: add LyXView as class variable view_ (qt
classes also get view() medthod)
* frontends/qt2/QWorkArea.C:
* frontends/qt2/QContentPane.C:
* frontends/qt4/QWorkArea.C:
* frontends/xforms/XWorkArea.C:
* frontends/gtk/GWorkArea.C: Change from calling signals to call
the functions directly through view_.view()
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@13671 a592a061-630c-0410-9148-cb99ea01b6c8
2006-04-13 18:58:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool BufferView::workAreaDispatch(FuncRequest const & ev)
|
|
|
|
|
{
|
2006-07-03 20:19:33 +00:00
|
|
|
|
return pimpl_->workAreaDispatch(ev);
|
* frontends/WorkArea.h(workAreaResize, scrollDocView, workAreaKeyPress,
dispatch, selectionReuqested, selectionLost): remove signals
* BufferView.[Ch] (selectionRequested, selectionLost, workAreaResize,
workAreaKeyPress, workAreaDispatch): add forwarding functions to the pimpl
* BufferView_pimpl.C (Pimpl): Remove the setup of the now deleted signals,
also remove corresponding connection objects.
* frontends/xforms/XWorkArea.h:
* frontends/qt2/QWorkArea.h:
* frontends/qt4/QWorkArea.h:
* frontends/gtk/GWorkArea.h: add LyXView as class variable view_ (qt
classes also get view() medthod)
* frontends/qt2/QWorkArea.C:
* frontends/qt2/QContentPane.C:
* frontends/qt4/QWorkArea.C:
* frontends/xforms/XWorkArea.C:
* frontends/gtk/GWorkArea.C: Change from calling signals to call
the functions directly through view_.view()
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@13671 a592a061-630c-0410-9148-cb99ea01b6c8
2006-04-13 18:58:48 +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
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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()) {
|
2005-02-22 11:41:22 +00:00
|
|
|
|
setCursor(it);
|
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
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
int BufferView::workHeight() const
|
|
|
|
|
{
|
2006-06-26 16:55:35 +00:00
|
|
|
|
return pimpl_->height();
|
2002-08-29 13:41:58 +00:00
|
|
|
|
}
|
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
|
|
|
|
|
|
|
|
|
|
2005-02-22 11:41:22 +00:00
|
|
|
|
void BufferView::setCursor(DocIterator const & dit)
|
2004-02-02 11:07:51 +00:00
|
|
|
|
{
|
2005-02-22 11:41:22 +00:00
|
|
|
|
size_t const n = dit.depth();
|
|
|
|
|
for (size_t i = 0; i < n; ++i)
|
|
|
|
|
dit[i].inset().edit(cursor(), true);
|
2004-03-31 17:58:11 +00:00
|
|
|
|
|
2005-02-22 11:41:22 +00:00
|
|
|
|
cursor().setCursor(dit);
|
2004-08-14 19:55:00 +00:00
|
|
|
|
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
|
|
|
|
|
2005-12-01 10:28:50 +00:00
|
|
|
|
void BufferView::mouseSetCursor(LCursor & cur)
|
|
|
|
|
{
|
|
|
|
|
BOOST_ASSERT(&cur.bv() == this);
|
|
|
|
|
|
|
|
|
|
// Has the cursor just left the inset?
|
|
|
|
|
if (&cursor().inset() != &cur.inset())
|
|
|
|
|
cursor().inset().notifyCursorLeaves(cursor());
|
|
|
|
|
|
|
|
|
|
// do the dEPM magic if needed
|
|
|
|
|
if (cursor().inTexted())
|
|
|
|
|
cursor().text()->deleteEmptyParagraphMechanism(cur, cursor());
|
|
|
|
|
|
|
|
|
|
cursor() = cur;
|
2005-12-19 11:47:13 +00:00
|
|
|
|
cursor().clearSelection();
|
2005-12-01 10:28:50 +00:00
|
|
|
|
cursor().setTargetX();
|
|
|
|
|
finishUndo();
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
{
|
2004-01-20 14:25:24 +00:00
|
|
|
|
cursor().clearSelection();
|
2004-01-14 17:21:39 +00:00
|
|
|
|
|
2005-02-22 11:41:22 +00:00
|
|
|
|
setCursor(cur);
|
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_;
|
|
|
|
|
}
|
2006-07-04 00:04:46 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ViewMetricsInfo const & BufferView::viewMetricsInfo()
|
|
|
|
|
{
|
|
|
|
|
return pimpl_->viewMetricsInfo();
|
|
|
|
|
}
|
2006-07-08 20:24:32 +00:00
|
|
|
|
|
|
|
|
|
|
2006-07-14 09:56:21 +00:00
|
|
|
|
void BufferView::updateMetrics(bool singlepar)
|
2006-07-08 20:24:32 +00:00
|
|
|
|
{
|
2006-07-14 09:56:21 +00:00
|
|
|
|
pimpl_->updateMetrics(singlepar);
|
2006-07-08 20:24:32 +00:00
|
|
|
|
}
|