mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
67d576f75e
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
440 lines
6.9 KiB
C
440 lines
6.9 KiB
C
/**
|
|
* \file BufferView.C
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Alfredo Braunstein
|
|
* \author Lars Gullik Bjønnes
|
|
* \author John Levon
|
|
* \author André Pönitz
|
|
* \author Jürgen Vigna
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "BufferView.h"
|
|
|
|
#include "buffer.h"
|
|
#include "bufferlist.h"
|
|
#include "bufferparams.h"
|
|
#include "BufferView_pimpl.h"
|
|
#include "CutAndPaste.h"
|
|
#include "coordcache.h"
|
|
#include "debug.h"
|
|
#include "funcrequest.h"
|
|
#include "FuncStatus.h"
|
|
#include "gettext.h"
|
|
#include "insetiterator.h"
|
|
#include "language.h"
|
|
#include "lyxlayout.h"
|
|
#include "lyxtext.h"
|
|
#include "lyxtextclass.h"
|
|
#include "paragraph.h"
|
|
#include "paragraph_funcs.h"
|
|
#include "pariterator.h"
|
|
#include "texrow.h"
|
|
#include "undo.h"
|
|
#include "WordLangTuple.h"
|
|
|
|
#include "frontends/Alert.h"
|
|
#include "frontends/Dialogs.h"
|
|
#include "frontends/LyXView.h"
|
|
#include "frontends/screen.h"
|
|
#include "frontends/WorkArea.h"
|
|
|
|
#include "insets/insetcommand.h" // ChangeRefs
|
|
#include "insets/insettext.h"
|
|
|
|
using lyx::support::bformat;
|
|
|
|
using lyx::cap::setSelectionRange;
|
|
|
|
using std::distance;
|
|
using std::find;
|
|
using std::string;
|
|
using std::swap;
|
|
using std::vector;
|
|
|
|
|
|
extern BufferList bufferlist;
|
|
|
|
|
|
BufferView::BufferView(LyXView * owner, int width, int height)
|
|
: pimpl_(new Pimpl(*this, owner, width, height))
|
|
{}
|
|
|
|
|
|
BufferView::~BufferView()
|
|
{
|
|
delete pimpl_;
|
|
}
|
|
|
|
|
|
void BufferView::unsetXSel()
|
|
{
|
|
pimpl_->xsel_cache_.set = false;
|
|
}
|
|
|
|
|
|
Buffer * BufferView::buffer() const
|
|
{
|
|
return pimpl_->buffer_;
|
|
}
|
|
|
|
|
|
LyXScreen & BufferView::screen() const
|
|
{
|
|
return pimpl_->screen();
|
|
}
|
|
|
|
|
|
LyXView * BufferView::owner() const
|
|
{
|
|
return pimpl_->owner_;
|
|
}
|
|
|
|
|
|
Painter & BufferView::painter() const
|
|
{
|
|
return pimpl_->painter();
|
|
}
|
|
|
|
|
|
void BufferView::setBuffer(Buffer * b)
|
|
{
|
|
pimpl_->setBuffer(b);
|
|
}
|
|
|
|
|
|
void BufferView::newFile(string const & fn, string const & tn, bool named)
|
|
{
|
|
pimpl_->newFile(fn, tn, named);
|
|
}
|
|
|
|
|
|
bool BufferView::loadLyXFile(string const & fn, bool tl)
|
|
{
|
|
return pimpl_->loadLyXFile(fn, tl);
|
|
}
|
|
|
|
|
|
void BufferView::reload()
|
|
{
|
|
string const fn = buffer()->fileName();
|
|
if (bufferlist.close(buffer(), false))
|
|
loadLyXFile(fn);
|
|
}
|
|
|
|
|
|
void BufferView::resize()
|
|
{
|
|
if (pimpl_->buffer_)
|
|
pimpl_->resizeCurrentBuffer();
|
|
}
|
|
|
|
|
|
bool BufferView::fitCursor()
|
|
{
|
|
return pimpl_->fitCursor();
|
|
}
|
|
|
|
|
|
void BufferView::update(Update::flags flags)
|
|
{
|
|
pimpl_->update(flags);
|
|
}
|
|
|
|
|
|
void BufferView::updateScrollbar()
|
|
{
|
|
pimpl_->updateScrollbar();
|
|
}
|
|
|
|
|
|
void BufferView::scrollDocView(int value)
|
|
{
|
|
pimpl_->scrollDocView(value);
|
|
}
|
|
|
|
|
|
bool BufferView::available() const
|
|
{
|
|
return pimpl_->available();
|
|
}
|
|
|
|
|
|
Change const BufferView::getCurrentChange()
|
|
{
|
|
return pimpl_->getCurrentChange();
|
|
}
|
|
|
|
|
|
void BufferView::savePosition(unsigned int i)
|
|
{
|
|
pimpl_->savePosition(i);
|
|
}
|
|
|
|
|
|
void BufferView::restorePosition(unsigned int i)
|
|
{
|
|
pimpl_->restorePosition(i);
|
|
}
|
|
|
|
|
|
bool BufferView::isSavedPosition(unsigned int i)
|
|
{
|
|
return pimpl_->isSavedPosition(i);
|
|
}
|
|
|
|
void BufferView::saveSavedPositions()
|
|
{
|
|
return pimpl_->saveSavedPositions();
|
|
}
|
|
|
|
void BufferView::switchKeyMap()
|
|
{
|
|
pimpl_->switchKeyMap();
|
|
}
|
|
|
|
|
|
int BufferView::workWidth() const
|
|
{
|
|
return pimpl_->workarea().workWidth();
|
|
}
|
|
|
|
|
|
void BufferView::center()
|
|
{
|
|
pimpl_->center();
|
|
}
|
|
|
|
|
|
string const BufferView::getClipboard() const
|
|
{
|
|
return pimpl_->workarea().getClipboard();
|
|
}
|
|
|
|
|
|
void BufferView::stuffClipboard(string const & stuff) const
|
|
{
|
|
pimpl_->stuffClipboard(stuff);
|
|
}
|
|
|
|
|
|
FuncStatus BufferView::getStatus(FuncRequest const & cmd)
|
|
{
|
|
return pimpl_->getStatus(cmd);
|
|
}
|
|
|
|
|
|
bool BufferView::dispatch(FuncRequest const & ev)
|
|
{
|
|
return pimpl_->dispatch(ev);
|
|
}
|
|
|
|
|
|
void BufferView::selectionRequested()
|
|
{
|
|
pimpl_->selectionRequested();
|
|
}
|
|
|
|
|
|
void BufferView::selectionLost()
|
|
{
|
|
pimpl_->selectionLost();
|
|
}
|
|
|
|
|
|
void BufferView::workAreaResize()
|
|
{
|
|
pimpl_->workAreaResize();
|
|
}
|
|
|
|
|
|
void BufferView::workAreaKeyPress(LyXKeySymPtr key, key_modifier::state state)
|
|
{
|
|
pimpl_->workAreaKeyPress(key, state);
|
|
}
|
|
|
|
|
|
bool BufferView::workAreaDispatch(FuncRequest const & ev)
|
|
{
|
|
return pimpl_->workAreaDispatch(ev);
|
|
}
|
|
|
|
|
|
void BufferView::scroll(int lines)
|
|
{
|
|
pimpl_->scroll(lines);
|
|
}
|
|
|
|
|
|
void BufferView::showErrorList(string const & action) const
|
|
{
|
|
if (getErrorList().size()) {
|
|
string const title = bformat(_("%1$s Errors (%2$s)"),
|
|
action, buffer()->fileName());
|
|
owner()->getDialogs().show("errorlist", title);
|
|
pimpl_->errorlist_.clear();
|
|
}
|
|
}
|
|
|
|
|
|
ErrorList const & BufferView::getErrorList() const
|
|
{
|
|
return pimpl_->errorlist_;
|
|
}
|
|
|
|
|
|
void BufferView::setCursorFromRow(int row)
|
|
{
|
|
int tmpid = -1;
|
|
int tmppos = -1;
|
|
|
|
buffer()->texrow().getIdFromRow(row, tmpid, tmppos);
|
|
|
|
if (tmpid == -1)
|
|
text()->setCursor(cursor(), 0, 0);
|
|
else
|
|
text()->setCursor(cursor(), buffer()->getParFromID(tmpid).pit(), tmppos);
|
|
}
|
|
|
|
|
|
void BufferView::gotoLabel(string const & label)
|
|
{
|
|
for (InsetIterator it = inset_iterator_begin(buffer()->inset()); it; ++it) {
|
|
vector<string> labels;
|
|
it->getLabelList(*buffer(), labels);
|
|
if (find(labels.begin(),labels.end(),label) != labels.end()) {
|
|
setCursor(it);
|
|
update();
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
void BufferView::hideCursor()
|
|
{
|
|
screen().hideCursor();
|
|
}
|
|
|
|
LyXText * BufferView::getLyXText()
|
|
{
|
|
LyXText * text = cursor().innerText();
|
|
BOOST_ASSERT(text);
|
|
return text;
|
|
}
|
|
|
|
|
|
LyXText const * BufferView::getLyXText() const
|
|
{
|
|
LyXText const * text = cursor().innerText();
|
|
BOOST_ASSERT(text);
|
|
return text;
|
|
}
|
|
|
|
|
|
void BufferView::haveSelection(bool sel)
|
|
{
|
|
pimpl_->workarea().haveSelection(sel);
|
|
}
|
|
|
|
|
|
int BufferView::workHeight() const
|
|
{
|
|
return pimpl_->workarea().workHeight();
|
|
}
|
|
|
|
|
|
LyXText * BufferView::text() const
|
|
{
|
|
return buffer() ? &buffer()->text() : 0;
|
|
}
|
|
|
|
|
|
void BufferView::setCursor(DocIterator const & dit)
|
|
{
|
|
size_t const n = dit.depth();
|
|
for (size_t i = 0; i < n; ++i)
|
|
dit[i].inset().edit(cursor(), true);
|
|
|
|
cursor().setCursor(dit);
|
|
cursor().selection() = false;
|
|
}
|
|
|
|
|
|
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;
|
|
cursor().clearSelection();
|
|
cursor().setTargetX();
|
|
finishUndo();
|
|
|
|
}
|
|
|
|
|
|
void BufferView::putSelectionAt(DocIterator const & cur,
|
|
int length, bool backwards)
|
|
{
|
|
cursor().clearSelection();
|
|
|
|
setCursor(cur);
|
|
|
|
if (length) {
|
|
if (backwards) {
|
|
cursor().pos() += length;
|
|
cursor().setSelection(cursor(), -length);
|
|
} else
|
|
cursor().setSelection(cursor(), length);
|
|
}
|
|
}
|
|
|
|
|
|
bool const BufferView::repaintAll() const
|
|
{
|
|
return pimpl_->repaintAll();
|
|
}
|
|
|
|
|
|
void const BufferView::repaintAll(bool r) const
|
|
{
|
|
pimpl_->repaintAll(r);
|
|
}
|
|
|
|
|
|
LCursor & BufferView::cursor()
|
|
{
|
|
return pimpl_->cursor_;
|
|
}
|
|
|
|
|
|
LCursor const & BufferView::cursor() const
|
|
{
|
|
return pimpl_->cursor_;
|
|
}
|
|
|
|
|
|
lyx::pit_type BufferView::anchor_ref() const
|
|
{
|
|
return pimpl_->anchor_ref_;
|
|
}
|
|
|
|
|
|
int BufferView::offset_ref() const
|
|
{
|
|
return pimpl_->offset_ref_;
|
|
}
|