2002-06-12 02:54:19 +00:00
|
|
|
/**
|
|
|
|
* \file BufferView.C
|
|
|
|
* Copyright 1995-2002 the LyX Team
|
|
|
|
* Read the file COPYING
|
2002-03-21 17:27:08 +00:00
|
|
|
*
|
2002-06-12 02:54:19 +00:00
|
|
|
* \author unknown
|
|
|
|
* \author John Levon <moz@compsoc.man.ac.uk>
|
|
|
|
*/
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include "BufferView.h"
|
2000-04-08 17:02:02 +00:00
|
|
|
#include "BufferView_pimpl.h"
|
2002-08-29 13:05:55 +00:00
|
|
|
|
|
|
|
#include "LaTeX.h"
|
2003-03-13 13:56:25 +00:00
|
|
|
#include "ParagraphParameters.h"
|
2002-08-29 13:05:55 +00:00
|
|
|
#include "WordLangTuple.h"
|
|
|
|
#include "buffer.h"
|
|
|
|
#include "bufferlist.h"
|
|
|
|
#include "debug.h"
|
|
|
|
#include "gettext.h"
|
2003-05-20 16:51:31 +00:00
|
|
|
#include "errorlist.h"
|
2002-08-29 13:05:55 +00:00
|
|
|
#include "iterators.h"
|
|
|
|
#include "language.h"
|
|
|
|
#include "lyxcursor.h"
|
|
|
|
#include "lyxlex.h"
|
2000-04-09 22:48:51 +00:00
|
|
|
#include "lyxtext.h"
|
2002-08-29 13:05:55 +00:00
|
|
|
#include "undo_funcs.h"
|
2003-02-08 19:18:01 +00:00
|
|
|
#include "changes.h"
|
2003-04-15 00:11:03 +00:00
|
|
|
#include "paragraph_funcs.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/WorkArea.h"
|
|
|
|
#include "frontends/screen.h"
|
|
|
|
|
|
|
|
#include "insets/insetcommand.h" // ChangeRefs
|
2003-02-20 17:39:48 +00:00
|
|
|
#include "insets/updatableinset.h"
|
2002-08-29 13:05:55 +00:00
|
|
|
|
|
|
|
#include "support/FileInfo.h"
|
|
|
|
#include "support/filetools.h"
|
|
|
|
#include "support/lyxfunctional.h" // equal_1st_in_pair
|
|
|
|
#include "support/types.h"
|
|
|
|
#include "support/lyxalgo.h" // lyx_count
|
|
|
|
|
|
|
|
#include <fstream>
|
|
|
|
|
|
|
|
extern BufferList bufferlist;
|
|
|
|
|
|
|
|
using lyx::pos_type;
|
|
|
|
|
|
|
|
using std::pair;
|
|
|
|
using std::endl;
|
|
|
|
using std::ifstream;
|
|
|
|
using std::vector;
|
|
|
|
using std::find;
|
|
|
|
using std::count_if;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
2002-08-20 13:00:25 +00:00
|
|
|
BufferView::BufferView(LyXView * owner, int xpos, int ypos,
|
1999-09-27 18:44:28 +00:00
|
|
|
int width, int height)
|
2002-08-20 13:00:25 +00:00
|
|
|
: pimpl_(new Pimpl(this, owner, xpos, ypos, width, height))
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
1999-12-10 00:07:59 +00:00
|
|
|
text = 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-12-10 00:07:59 +00:00
|
|
|
BufferView::~BufferView()
|
|
|
|
{
|
|
|
|
delete text;
|
2000-04-08 17:02:02 +00:00
|
|
|
delete pimpl_;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-12-13 00:05:34 +00:00
|
|
|
void BufferView::buffer(Buffer * b)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2000-04-09 22:48:51 +00:00
|
|
|
pimpl_->buffer(b);
|
2000-02-10 17:53:36 +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()
|
|
|
|
{
|
2002-07-15 18:01:29 +00:00
|
|
|
if (pimpl_->buffer_) {
|
|
|
|
pimpl_->resizeCurrentBuffer();
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-06-21 02:22:13 +00:00
|
|
|
void BufferView::repaint()
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2002-06-21 02:22:13 +00:00
|
|
|
pimpl_->repaint();
|
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
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::update()
|
|
|
|
{
|
2000-04-09 22:48:51 +00:00
|
|
|
pimpl_->update();
|
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
|
|
|
void BufferView::redoCurrentBuffer()
|
|
|
|
{
|
2000-04-09 22:48:51 +00:00
|
|
|
pimpl_->redoCurrentBuffer();
|
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-02-14 10:11:22 +00:00
|
|
|
void BufferView::beforeChange(LyXText * text)
|
2000-01-07 03:42:16 +00:00
|
|
|
{
|
2001-02-14 10:11:22 +00:00
|
|
|
pimpl_->beforeChange(text);
|
2000-01-07 03:42:16 +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
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-02-14 08:38:21 +00:00
|
|
|
void BufferView::update(LyXText * text, UpdateCodes f)
|
1999-12-10 00:07:59 +00:00
|
|
|
{
|
2001-02-14 08:38:21 +00:00
|
|
|
pimpl_->update(text, f);
|
1999-12-10 00:07:59 +00:00
|
|
|
}
|
2000-01-06 02:44:26 +00:00
|
|
|
|
|
|
|
|
2003-03-19 14:45:22 +00:00
|
|
|
void BufferView::update(UpdateCodes f)
|
|
|
|
{
|
|
|
|
pimpl_->update(f);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
|
|
|
void BufferView::insetUnlock()
|
|
|
|
{
|
2000-04-09 22:48:51 +00:00
|
|
|
pimpl_->insetUnlock();
|
2000-01-07 03:42:16 +00:00
|
|
|
}
|
2000-02-10 17:53:36 +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
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-02-17 19:59:08 +00:00
|
|
|
void BufferView::toggleSelection(bool b)
|
|
|
|
{
|
2000-04-09 22:48:51 +00:00
|
|
|
pimpl_->toggleSelection(b);
|
2000-02-17 19:59:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::toggleToggle()
|
|
|
|
{
|
2000-04-09 22:48:51 +00:00
|
|
|
pimpl_->toggleToggle();
|
2000-02-17 19:59:08 +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
|
|
|
|
|
|
|
|
|
|
|
BufferView::UpdateCodes operator|(BufferView::UpdateCodes uc1,
|
|
|
|
BufferView::UpdateCodes uc2)
|
|
|
|
{
|
|
|
|
return static_cast<BufferView::UpdateCodes>
|
|
|
|
(static_cast<int>(uc1) | static_cast<int>(uc2));
|
|
|
|
}
|
2001-02-23 16:10:03 +00:00
|
|
|
|
2002-08-04 23:11:50 +00:00
|
|
|
|
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
|
|
|
|
|
|
|
|
|
|
|
// Inserts a file into current document
|
|
|
|
bool BufferView::insertLyXFile(string const & filen)
|
|
|
|
//
|
|
|
|
// Copyright CHT Software Service GmbH
|
|
|
|
// Uwe C. Schroeder
|
|
|
|
//
|
|
|
|
// Insert a LyXformat - file into current buffer
|
|
|
|
//
|
|
|
|
// Moved from lyx_cb.C (Lgb)
|
|
|
|
{
|
|
|
|
if (filen.empty())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
string const fname = MakeAbsPath(filen);
|
|
|
|
|
|
|
|
// check if file exist
|
|
|
|
FileInfo const fi(fname);
|
|
|
|
|
|
|
|
if (!fi.readable()) {
|
2003-03-29 09:48:03 +00:00
|
|
|
string const file = MakeDisplayPath(fname, 50);
|
2003-05-13 09:48:57 +00:00
|
|
|
string const text =
|
|
|
|
bformat(_("The specified document\n%1$s\ncould not be read."), file);
|
2003-03-29 09:48:03 +00:00
|
|
|
Alert::error(_("Could not read document"), text);
|
2002-08-29 13:05:55 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
beforeChange(text);
|
|
|
|
|
|
|
|
ifstream ifs(fname.c_str());
|
|
|
|
if (!ifs) {
|
2003-03-29 09:02:08 +00:00
|
|
|
string const file = MakeDisplayPath(fname, 50);
|
2003-05-13 09:48:57 +00:00
|
|
|
string const text =
|
2003-05-14 09:16:05 +00:00
|
|
|
bformat(_("Could not open the specified document %1$s\n"), file);
|
2003-03-29 09:02:08 +00:00
|
|
|
Alert::error(_("Could not open file"), text);
|
2002-08-29 13:05:55 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
int const c = ifs.peek();
|
|
|
|
|
|
|
|
LyXLex lex(0, 0);
|
|
|
|
lex.setStream(ifs);
|
|
|
|
|
|
|
|
bool res = true;
|
|
|
|
|
|
|
|
if (c == '#') {
|
2003-03-12 05:46:35 +00:00
|
|
|
// FIXME: huh ? No we won't !
|
2002-08-29 13:05:55 +00:00
|
|
|
lyxerr[Debug::INFO] << "Will insert file with header" << endl;
|
2003-03-12 05:46:35 +00:00
|
|
|
res = buffer()->readFile(lex, fname, ParagraphList::iterator(text->cursor.par()));
|
2002-08-29 13:05:55 +00:00
|
|
|
} else {
|
|
|
|
lyxerr[Debug::INFO] << "Will insert file without header"
|
|
|
|
<< endl;
|
2003-03-12 05:46:35 +00:00
|
|
|
res = buffer()->readBody(lex, ParagraphList::iterator(text->cursor.par()));
|
2002-08-29 13:05:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
resize();
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-05-20 16:51:31 +00:00
|
|
|
void BufferView::showErrorList(string const & action) const
|
|
|
|
{
|
|
|
|
if (getErrorList().size()) {
|
|
|
|
string const title = bformat(_("LyX: %1$s errors (%2$s)"), action, buffer()->fileName());
|
|
|
|
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-05-21 21:20:50 +00:00
|
|
|
ErrorList const &
|
2003-05-20 16:51:31 +00:00
|
|
|
BufferView::getErrorList() const
|
|
|
|
{
|
|
|
|
return pimpl_->errorlist_;
|
2002-08-29 13:05:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::setCursorFromRow(int row)
|
|
|
|
{
|
|
|
|
int tmpid = -1;
|
|
|
|
int tmppos = -1;
|
|
|
|
|
|
|
|
buffer()->texrow.getIdFromRow(row, tmpid, tmppos);
|
|
|
|
|
2003-05-22 08:01:41 +00:00
|
|
|
ParagraphList::iterator texrowpar;
|
2002-08-29 13:05:55 +00:00
|
|
|
|
|
|
|
if (tmpid == -1) {
|
2003-05-22 08:01:41 +00:00
|
|
|
texrowpar = text->ownerParagraphs().begin();
|
2002-08-29 13:05:55 +00:00
|
|
|
tmppos = 0;
|
|
|
|
} else {
|
2003-06-12 11:09:55 +00:00
|
|
|
texrowpar = buffer()->getParFromID(tmpid).pit();
|
2002-08-29 13:05:55 +00:00
|
|
|
}
|
2003-03-17 16:25:00 +00:00
|
|
|
text->setCursor(texrowpar, tmppos);
|
2002-08-29 13:05:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool BufferView::insertInset(Inset * inset, string const & lout)
|
|
|
|
{
|
|
|
|
return pimpl_->insertInset(inset, lout);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-03-29 10:29:38 +00:00
|
|
|
void BufferView::gotoLabel(string const & label)
|
2002-08-29 13:05:55 +00:00
|
|
|
{
|
|
|
|
for (Buffer::inset_iterator it = buffer()->inset_iterator_begin();
|
|
|
|
it != buffer()->inset_iterator_end(); ++it) {
|
2003-06-16 11:49:38 +00:00
|
|
|
vector<string> labels;
|
|
|
|
it->getLabelList(labels);
|
2002-08-29 13:05:55 +00:00
|
|
|
if (find(labels.begin(),labels.end(),label)
|
|
|
|
!= labels.end()) {
|
|
|
|
beforeChange(text);
|
2003-03-17 16:25:00 +00:00
|
|
|
text->setCursor(it.getPar(), it.getPos());
|
2002-08-29 13:05:55 +00:00
|
|
|
text->selection.cursor = text->cursor;
|
2003-03-19 14:45:22 +00:00
|
|
|
update(text, BufferView::SELECT);
|
2003-03-29 10:29:38 +00:00
|
|
|
return;
|
2002-08-29 13:05:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-10-21 16:21:56 +00:00
|
|
|
void BufferView::undo()
|
2002-08-29 13:05:55 +00:00
|
|
|
{
|
|
|
|
if (!available())
|
|
|
|
return;
|
|
|
|
|
|
|
|
owner()->message(_("Undo"));
|
|
|
|
beforeChange(text);
|
2003-03-19 14:45:22 +00:00
|
|
|
update(text, BufferView::SELECT);
|
2002-08-29 13:05:55 +00:00
|
|
|
if (!textUndo(this))
|
|
|
|
owner()->message(_("No further undo information"));
|
|
|
|
else
|
2003-03-19 14:45:22 +00:00
|
|
|
update(text, BufferView::SELECT);
|
2002-08-29 13:05:55 +00:00
|
|
|
switchKeyMap();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-10-21 16:21:56 +00:00
|
|
|
void BufferView::redo()
|
2002-08-29 13:05:55 +00:00
|
|
|
{
|
|
|
|
if (!available())
|
|
|
|
return;
|
|
|
|
|
|
|
|
owner()->message(_("Redo"));
|
|
|
|
beforeChange(text);
|
2003-03-19 14:45:22 +00:00
|
|
|
update(text, BufferView::SELECT);
|
2002-08-29 13:05:55 +00:00
|
|
|
if (!textRedo(this))
|
|
|
|
owner()->message(_("No further redo information"));
|
|
|
|
else
|
2003-03-19 14:45:22 +00:00
|
|
|
update(text, BufferView::SELECT);
|
2002-08-29 13:05:55 +00:00
|
|
|
switchKeyMap();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// these functions are for the spellchecker
|
|
|
|
WordLangTuple const BufferView::nextWord(float & value)
|
|
|
|
{
|
|
|
|
if (!available()) {
|
|
|
|
value = 1;
|
|
|
|
return WordLangTuple();
|
|
|
|
}
|
|
|
|
|
2003-03-17 16:25:00 +00:00
|
|
|
return text->selectNextWordToSpellcheck(value);
|
2002-08-29 13:05:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::selectLastWord()
|
|
|
|
{
|
|
|
|
if (!available())
|
|
|
|
return;
|
|
|
|
|
|
|
|
LyXCursor cur = text->selection.cursor;
|
|
|
|
beforeChange(text);
|
|
|
|
text->selection.cursor = cur;
|
2003-03-17 16:25:00 +00:00
|
|
|
text->selectSelectedWord();
|
2002-08-29 13:05:55 +00:00
|
|
|
toggleSelection(false);
|
2003-03-19 14:45:22 +00:00
|
|
|
update(text, BufferView::SELECT);
|
2002-08-29 13:05:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::endOfSpellCheck()
|
|
|
|
{
|
|
|
|
if (!available()) return;
|
|
|
|
|
|
|
|
beforeChange(text);
|
2003-03-17 16:25:00 +00:00
|
|
|
text->selectSelectedWord();
|
2002-08-29 13:05:55 +00:00
|
|
|
text->clearSelection();
|
2003-03-19 14:45:22 +00:00
|
|
|
update(text, BufferView::SELECT);
|
2002-08-29 13:05:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::replaceWord(string const & replacestring)
|
|
|
|
{
|
|
|
|
if (!available())
|
|
|
|
return;
|
|
|
|
|
|
|
|
LyXText * tt = getLyXText();
|
2003-03-19 14:45:22 +00:00
|
|
|
update(tt, BufferView::SELECT);
|
2002-08-29 13:05:55 +00:00
|
|
|
|
|
|
|
// clear the selection (if there is any)
|
|
|
|
toggleSelection(false);
|
2003-03-19 14:45:22 +00:00
|
|
|
update(tt, BufferView::SELECT);
|
2002-08-29 13:05:55 +00:00
|
|
|
|
|
|
|
// clear the selection (if there is any)
|
|
|
|
toggleSelection(false);
|
2003-03-17 16:25:00 +00:00
|
|
|
tt->replaceSelectionWithString(replacestring);
|
2002-08-29 13:05:55 +00:00
|
|
|
|
2003-03-17 16:25:00 +00:00
|
|
|
tt->setSelectionRange(replacestring.length());
|
2002-08-29 13:05:55 +00:00
|
|
|
|
|
|
|
// Go back so that replacement string is also spellchecked
|
|
|
|
for (string::size_type i = 0; i < replacestring.length() + 1; ++i) {
|
|
|
|
tt->cursorLeft(this);
|
|
|
|
}
|
2003-03-19 14:45:22 +00:00
|
|
|
update(tt, BufferView::SELECT);
|
|
|
|
|
|
|
|
// FIXME: should be done through LFUN
|
|
|
|
buffer()->markDirty();
|
|
|
|
fitCursor();
|
2002-08-29 13:05:55 +00:00
|
|
|
}
|
|
|
|
// End of spellchecker stuff
|
|
|
|
|
|
|
|
|
|
|
|
bool BufferView::lockInset(UpdatableInset * inset)
|
|
|
|
{
|
|
|
|
if (!inset)
|
|
|
|
return false;
|
|
|
|
// don't relock if we're already locked
|
|
|
|
if (theLockingInset() == inset)
|
|
|
|
return true;
|
|
|
|
if (!theLockingInset()) {
|
|
|
|
// first check if it's the inset under the cursor we want lock
|
|
|
|
// should be most of the time
|
2003-04-09 09:15:20 +00:00
|
|
|
if (text->cursor.pos() < text->cursor.par()->size()
|
2003-04-08 18:51:27 +00:00
|
|
|
&& text->cursor.par()->getChar(text->cursor.pos()) ==
|
|
|
|
Paragraph::META_INSET) {
|
2002-08-29 13:05:55 +00:00
|
|
|
Inset * in = text->cursor.par()->getInset(text->cursor.pos());
|
|
|
|
if (inset == in) {
|
|
|
|
theLockingInset(inset);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Then do a deep look of the inset and lock the right one
|
|
|
|
int const id = inset->id();
|
|
|
|
ParagraphList::iterator pit = buffer()->paragraphs.begin();
|
|
|
|
ParagraphList::iterator pend = buffer()->paragraphs.end();
|
|
|
|
for (; pit != pend; ++pit) {
|
|
|
|
InsetList::iterator it = pit->insetlist.begin();
|
|
|
|
InsetList::iterator end = pit->insetlist.end();
|
|
|
|
for (; it != end; ++it) {
|
2003-05-29 01:13:18 +00:00
|
|
|
if (it->inset == inset) {
|
|
|
|
text->setCursorIntern(pit, it->pos);
|
2002-08-29 13:05:55 +00:00
|
|
|
theLockingInset(inset);
|
|
|
|
return true;
|
|
|
|
}
|
2003-05-29 01:13:18 +00:00
|
|
|
if (it->inset->getInsetFromID(id)) {
|
|
|
|
text->setCursorIntern(pit, it->pos);
|
2003-05-16 07:44:00 +00:00
|
|
|
FuncRequest cmd(this, LFUN_INSET_EDIT, "left");
|
2003-05-29 01:13:18 +00:00
|
|
|
it->inset->localDispatch(cmd);
|
2002-08-29 13:05:55 +00:00
|
|
|
return theLockingInset()->lockInsetInInset(this, inset);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return theLockingInset()->lockInsetInInset(this, inset);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool BufferView::fitLockedInsetCursor(int x, int y, int asc, int desc)
|
|
|
|
{
|
|
|
|
if (theLockingInset() && available()) {
|
|
|
|
y += text->cursor.iy() + theLockingInset()->insetInInsetY();
|
|
|
|
if (screen().fitManualCursor(this, text, x, y, asc, desc)) {
|
|
|
|
updateScrollbar();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-05-03 18:05:53 +00:00
|
|
|
void BufferView::hideCursor()
|
|
|
|
{
|
|
|
|
screen().hideCursor();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-08-29 13:05:55 +00:00
|
|
|
int BufferView::unlockInset(UpdatableInset * inset)
|
|
|
|
{
|
|
|
|
if (!inset)
|
|
|
|
return 0;
|
|
|
|
if (inset && theLockingInset() == inset) {
|
|
|
|
inset->insetUnlock(this);
|
|
|
|
theLockingInset(0);
|
|
|
|
// make sure we update the combo !
|
|
|
|
owner()->setLayout(getLyXText()->cursor.par()->layout()->name());
|
|
|
|
// Tell the paragraph dialog that we changed paragraph
|
2003-03-13 13:56:25 +00:00
|
|
|
dispatch(FuncRequest(LFUN_PARAGRAPH_UPDATE));
|
2002-08-29 13:05:55 +00:00
|
|
|
finishUndo();
|
|
|
|
return 0;
|
|
|
|
} else if (inset && theLockingInset() &&
|
|
|
|
theLockingInset()->unlockInsetInInset(this, inset)) {
|
|
|
|
// Tell the paragraph dialog that we changed paragraph
|
2003-03-13 13:56:25 +00:00
|
|
|
dispatch(FuncRequest(LFUN_PARAGRAPH_UPDATE));
|
2002-08-29 13:05:55 +00:00
|
|
|
// owner inset has updated the layout combo
|
|
|
|
finishUndo();
|
|
|
|
return 0;
|
|
|
|
}
|
2003-02-15 19:21:11 +00:00
|
|
|
return 1;
|
2002-08-29 13:05:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::lockedInsetStoreUndo(Undo::undo_kind kind)
|
|
|
|
{
|
|
|
|
if (!theLockingInset())
|
|
|
|
return; // shouldn't happen
|
|
|
|
if (kind == Undo::EDIT) // in this case insets would not be stored!
|
|
|
|
kind = Undo::FINISH;
|
2003-05-23 10:33:40 +00:00
|
|
|
setUndo(this, kind, text->cursor.par());
|
2002-08-29 13:05:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-03-19 14:45:22 +00:00
|
|
|
void BufferView::updateInset(Inset * inset)
|
2002-08-29 13:05:55 +00:00
|
|
|
{
|
2003-03-19 14:45:22 +00:00
|
|
|
pimpl_->updateInset(inset);
|
2002-08-29 13:05:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool BufferView::ChangeInsets(Inset::Code code,
|
|
|
|
string const & from, string const & to)
|
|
|
|
{
|
|
|
|
bool need_update = false;
|
|
|
|
LyXCursor cursor = text->cursor;
|
|
|
|
LyXCursor tmpcursor = cursor;
|
|
|
|
cursor.par(tmpcursor.par());
|
|
|
|
cursor.pos(tmpcursor.pos());
|
|
|
|
|
|
|
|
ParIterator end = buffer()->par_iterator_end();
|
|
|
|
for (ParIterator it = buffer()->par_iterator_begin();
|
|
|
|
it != end; ++it) {
|
|
|
|
bool changed_inset = false;
|
2003-05-22 10:47:31 +00:00
|
|
|
for (InsetList::iterator it2 = it->insetlist.begin();
|
|
|
|
it2 != it->insetlist.end(); ++it2) {
|
2003-05-29 01:13:18 +00:00
|
|
|
if (it2->inset->lyxCode() == code) {
|
|
|
|
InsetCommand * inset = static_cast<InsetCommand *>(it2->inset);
|
2002-08-29 13:05:55 +00:00
|
|
|
if (inset->getContents() == from) {
|
|
|
|
inset->setContents(to);
|
|
|
|
changed_inset = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (changed_inset) {
|
|
|
|
need_update = true;
|
|
|
|
|
|
|
|
// FIXME
|
|
|
|
|
|
|
|
// The test it.size()==1 was needed to prevent crashes.
|
|
|
|
// How to set the cursor corretly when it.size()>1 ??
|
|
|
|
if (it.size() == 1) {
|
2003-06-12 11:09:55 +00:00
|
|
|
text->setCursorIntern(it.pit(), 0);
|
2003-03-17 16:25:00 +00:00
|
|
|
text->redoParagraphs(text->cursor,
|
2003-05-07 09:26:33 +00:00
|
|
|
boost::next(text->cursor.par()));
|
2003-06-27 09:44:26 +00:00
|
|
|
text->partialRebreak();
|
2002-08-29 13:05:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2003-03-17 16:25:00 +00:00
|
|
|
text->setCursorIntern(cursor.par(), cursor.pos());
|
2002-08-29 13:05:55 +00:00
|
|
|
return need_update;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool BufferView::ChangeRefsIfUnique(string const & from, string const & to)
|
|
|
|
{
|
|
|
|
// Check if the label 'from' appears more than once
|
2003-06-16 11:49:38 +00:00
|
|
|
vector<string> labels;
|
|
|
|
buffer()->getLabelList(labels);
|
2002-08-29 13:05:55 +00:00
|
|
|
|
|
|
|
if (lyx::count(labels.begin(), labels.end(), from) > 1)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return ChangeInsets(Inset::REF_CODE, from, to);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-02-18 13:25:18 +00:00
|
|
|
bool BufferView::ChangeCitationsIfUnique(string const & from, string const & to)
|
2002-08-29 13:05:55 +00:00
|
|
|
{
|
|
|
|
typedef pair<string, string> StringPair;
|
|
|
|
|
2003-02-18 13:25:18 +00:00
|
|
|
vector<StringPair> keys;
|
|
|
|
buffer()->fillWithBibKeys(keys);
|
2002-08-29 13:05:55 +00:00
|
|
|
if (count_if(keys.begin(), keys.end(),
|
|
|
|
lyx::equal_1st_in_pair<StringPair>(from))
|
|
|
|
> 1)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return ChangeInsets(Inset::CITE_CODE, from, to);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
UpdatableInset * BufferView::theLockingInset() const
|
|
|
|
{
|
|
|
|
// If NULL is not allowed we should put an Assert here. (Lgb)
|
|
|
|
if (text)
|
|
|
|
return text->the_locking_inset;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::theLockingInset(UpdatableInset * inset)
|
|
|
|
{
|
|
|
|
text->the_locking_inset = inset;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LyXText * BufferView::getLyXText() const
|
|
|
|
{
|
|
|
|
if (theLockingInset()) {
|
|
|
|
LyXText * txt = theLockingInset()->getLyXText(this, true);
|
|
|
|
if (txt)
|
|
|
|
return txt;
|
|
|
|
}
|
|
|
|
return text;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LyXText * BufferView::getParentText(Inset * inset) const
|
|
|
|
{
|
|
|
|
if (inset->owner()) {
|
|
|
|
LyXText * txt = inset->getLyXText(this);
|
|
|
|
inset = inset->owner();
|
|
|
|
while (inset && inset->getLyXText(this) == txt)
|
|
|
|
inset = inset->owner();
|
|
|
|
if (inset)
|
|
|
|
return inset->getLyXText(this);
|
|
|
|
}
|
|
|
|
return text;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Language const * BufferView::getParentLanguage(Inset * inset) const
|
|
|
|
{
|
|
|
|
LyXText * text = getParentText(inset);
|
|
|
|
return text->cursor.par()->getFontSettings(buffer()->params,
|
|
|
|
text->cursor.pos()).language();
|
|
|
|
}
|
2002-08-29 13:41:58 +00:00
|
|
|
|
|
|
|
|
2003-01-05 22:38:42 +00:00
|
|
|
Encoding const * BufferView::getEncoding() const
|
|
|
|
{
|
|
|
|
LyXText * t = getLyXText();
|
|
|
|
if (!t)
|
|
|
|
return 0;
|
|
|
|
|
2003-04-15 00:11:03 +00:00
|
|
|
LyXCursor const & c = t->cursor;
|
|
|
|
LyXFont const font = c.par()->getFont(buffer()->params, c.pos(),
|
2003-04-16 04:35:43 +00:00
|
|
|
outerFont(c.par(), t->ownerParagraphs()));
|
2003-01-05 22:38:42 +00:00
|
|
|
return font.language()->encoding();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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();
|
|
|
|
}
|