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 "BufferView_pimpl.h"
|
|
|
|
#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"
|
|
|
|
#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"
|
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
|
|
|
|
#include "insets/inseterror.h"
|
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
|
2003-03-30 20:25:44 +00:00
|
|
|
#include "support/BoostFormat.h"
|
2002-08-29 13:05:55 +00:00
|
|
|
|
|
|
|
#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-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-03-08 05:37:54 +00:00
|
|
|
buffer(bufferlist.loadLyXFile(fn));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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::showCursor()
|
|
|
|
{
|
2000-04-09 22:48:51 +00:00
|
|
|
pimpl_->showCursor();
|
2000-02-17 19:59:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::hideCursor()
|
|
|
|
{
|
2000-04-09 22:48:51 +00:00
|
|
|
pimpl_->hideCursor();
|
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);
|
|
|
|
#if USE_BOOST_FORMAT
|
|
|
|
boost::format fmt(_("The specified document\n%1$s\ncould not be read."));
|
|
|
|
fmt % file;
|
|
|
|
string text = fmt.str();
|
|
|
|
#else
|
|
|
|
string text = _("The specified document\n");
|
|
|
|
text += file + _(" could not be read.");
|
|
|
|
#endif
|
|
|
|
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);
|
|
|
|
#if USE_BOOST_FORMAT
|
2003-03-29 17:35:57 +00:00
|
|
|
boost::format fmt(_("Could not open the specified document\n%1$s."));
|
2003-03-29 09:02:08 +00:00
|
|
|
fmt % file;
|
|
|
|
string text = fmt.str();
|
|
|
|
#else
|
|
|
|
string text = _("Could not open the specified document\n");
|
2003-03-29 17:35:57 +00:00
|
|
|
text += file + ".";
|
2003-03-29 09:02:08 +00:00
|
|
|
#endif
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool BufferView::removeAutoInsets()
|
|
|
|
{
|
|
|
|
// keep track of which pos and par the cursor was on
|
2003-04-09 09:15:20 +00:00
|
|
|
Paragraph * cursor_par = &*text->cursor.par();
|
2002-08-29 13:05:55 +00:00
|
|
|
Paragraph * cursor_par_prev = cursor_par ? cursor_par->previous() : 0;
|
|
|
|
Paragraph * cursor_par_next = cursor_par ? cursor_par->next() : 0;
|
|
|
|
pos_type cursor_pos = text->cursor.pos();
|
|
|
|
|
|
|
|
bool found = false;
|
|
|
|
|
|
|
|
// Trap the deletion of the paragraph the cursor is in.
|
|
|
|
// Iterate until we find a paragraph that won't be immediately deleted.
|
|
|
|
// In reality this should mean we only execute the body of the while
|
|
|
|
// loop once at most. However for safety we iterate rather than just
|
|
|
|
// make this an if () conditional.
|
|
|
|
while ((cursor_par_prev || cursor_par_next)
|
2003-03-17 16:25:00 +00:00
|
|
|
&& text->setCursor(
|
2002-08-29 13:05:55 +00:00
|
|
|
cursor_par_prev ? cursor_par_prev : cursor_par_next,
|
|
|
|
0)) {
|
|
|
|
// We just removed cursor_par so have to fix the "cursor"
|
|
|
|
if (cursor_par_prev) {
|
|
|
|
// '.' = cursor_par
|
|
|
|
// a -> a.
|
|
|
|
// .
|
|
|
|
cursor_par = cursor_par_prev;
|
|
|
|
cursor_pos = cursor_par->size();
|
|
|
|
} else {
|
|
|
|
// . -> .a
|
|
|
|
// a
|
|
|
|
cursor_par = cursor_par_next;
|
|
|
|
cursor_pos = 0;
|
|
|
|
}
|
|
|
|
cursor_par_prev = cursor_par->previous();
|
|
|
|
cursor_par_next = cursor_par->next();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Iterate through the paragraphs removing autoDelete insets as we go.
|
|
|
|
// If the paragraph ends up empty after all the autoDelete insets are
|
|
|
|
// removed that paragraph will be removed by the next setCursor() call.
|
|
|
|
ParIterator it = buffer()->par_iterator_begin();
|
|
|
|
ParIterator end = buffer()->par_iterator_end();
|
|
|
|
for (; it != end; ++it) {
|
|
|
|
Paragraph * par = *it;
|
|
|
|
Paragraph * par_prev = par ? par->previous() : 0;
|
|
|
|
bool removed = false;
|
|
|
|
|
2003-03-17 16:25:00 +00:00
|
|
|
if (text->setCursor(par, 0)
|
2002-08-29 13:05:55 +00:00
|
|
|
&& cursor_par == par_prev) {
|
|
|
|
// The previous setCursor line was deleted and that
|
|
|
|
// was the cursor_par line. This can only happen if an
|
|
|
|
// error box was the sole item on cursor_par.
|
|
|
|
// It is possible for cursor_par_prev to be stray if
|
|
|
|
// the line it pointed to only had a error box on it
|
|
|
|
// so we have to set it to a known correct value.
|
|
|
|
// This is often the same value it already had.
|
|
|
|
cursor_par_prev = par->previous();
|
|
|
|
if (cursor_par_prev) {
|
|
|
|
// '|' = par, '.' = cursor_par, 'E' = error box
|
|
|
|
// First step below may occur before while{}
|
|
|
|
// a |a a a a.
|
|
|
|
// E -> .E -> |.E -> . -> |b
|
|
|
|
// . b b |b
|
|
|
|
// b
|
|
|
|
cursor_par = cursor_par_prev;
|
|
|
|
cursor_pos = cursor_par_prev->size();
|
|
|
|
cursor_par_prev = cursor_par->previous();
|
|
|
|
// cursor_par_next remains the same
|
|
|
|
} else if (cursor_par_next) {
|
|
|
|
// First step below may occur before while{}
|
|
|
|
// .
|
|
|
|
// E -> |.E -> |. -> . -> .|a
|
|
|
|
// a a a |a
|
|
|
|
cursor_par = cursor_par_next;
|
|
|
|
cursor_pos = 0;
|
|
|
|
// cursor_par_prev remains unset
|
|
|
|
cursor_par_next = cursor_par->next();
|
|
|
|
} else {
|
|
|
|
// I can't find a way to trigger this
|
|
|
|
// so it should be unreachable code
|
|
|
|
// unless the buffer is corrupted.
|
|
|
|
lyxerr << "BufferView::removeAutoInsets() is bad\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
InsetList::iterator pit = par->insetlist.begin();
|
|
|
|
InsetList::iterator pend = par->insetlist.end();
|
|
|
|
|
|
|
|
while (pit != pend) {
|
|
|
|
if (pit.getInset()->autoDelete()) {
|
|
|
|
removed = true;
|
|
|
|
pos_type const pos = pit.getPos();
|
|
|
|
|
|
|
|
par->erase(pos);
|
|
|
|
// We just invalidated par's inset iterators so
|
|
|
|
// we get the next valid iterator position
|
|
|
|
pit = par->insetlist.insetIterator(pos);
|
|
|
|
// and ensure we have a valid end iterator.
|
|
|
|
pend = par->insetlist.end();
|
|
|
|
|
|
|
|
if (cursor_par == par) {
|
|
|
|
// update the saved cursor position
|
|
|
|
if (cursor_pos > pos)
|
|
|
|
--cursor_pos;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
++pit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (removed) {
|
|
|
|
found = true;
|
2003-03-17 16:25:00 +00:00
|
|
|
text->redoParagraph();
|
2002-08-29 13:05:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// It is possible that the last line is empty if it was cursor_par
|
|
|
|
// and/or only had an error inset on it. So we set the cursor to the
|
|
|
|
// start of the doc to force its removal and ensure a valid saved cursor
|
2003-04-02 17:11:38 +00:00
|
|
|
if (text->setCursor(&*text->ownerParagraphs().begin(), 0)
|
2002-08-29 13:05:55 +00:00
|
|
|
&& 0 == cursor_par_next) {
|
|
|
|
cursor_par = cursor_par_prev;
|
|
|
|
cursor_pos = cursor_par->size();
|
|
|
|
} else if (cursor_pos > cursor_par->size()) {
|
|
|
|
// Some C-Enter lines were removed by the setCursor call which
|
|
|
|
// then invalidated cursor_pos. It could still be "wrong" because
|
|
|
|
// the cursor may appear to have jumped but since we collapsed
|
|
|
|
// some C-Enter lines this should be a reasonable compromise.
|
|
|
|
cursor_pos = cursor_par->size();
|
|
|
|
}
|
|
|
|
|
|
|
|
// restore the original cursor in its corrected location.
|
2003-03-17 16:25:00 +00:00
|
|
|
text->setCursorIntern(cursor_par, cursor_pos);
|
2002-08-29 13:05:55 +00:00
|
|
|
|
|
|
|
return found;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::insertErrors(TeXErrors & terr)
|
|
|
|
{
|
|
|
|
// Save the cursor position
|
|
|
|
LyXCursor cursor = text->cursor;
|
|
|
|
|
|
|
|
TeXErrors::Errors::const_iterator cit = terr.begin();
|
|
|
|
TeXErrors::Errors::const_iterator end = terr.end();
|
|
|
|
for (; cit != end; ++cit) {
|
|
|
|
string const desctext(cit->error_desc);
|
|
|
|
string const errortext(cit->error_text);
|
|
|
|
string const msgtxt = desctext + '\n' + errortext;
|
|
|
|
int const errorrow = cit->error_in_line;
|
|
|
|
|
|
|
|
// Insert error string for row number
|
|
|
|
int tmpid = -1;
|
|
|
|
int tmppos = -1;
|
|
|
|
|
|
|
|
if (buffer()->texrow.getIdFromRow(errorrow, tmpid, tmppos)) {
|
|
|
|
buffer()->texrow.increasePos(tmpid, tmppos);
|
|
|
|
}
|
|
|
|
|
|
|
|
Paragraph * texrowpar = 0;
|
|
|
|
|
|
|
|
if (tmpid == -1) {
|
2003-04-02 17:11:38 +00:00
|
|
|
texrowpar = &*text->ownerParagraphs().begin();
|
2002-08-29 13:05:55 +00:00
|
|
|
tmppos = 0;
|
|
|
|
} else {
|
|
|
|
texrowpar = buffer()->getParFromID(tmpid);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (texrowpar == 0)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
freezeUndo();
|
|
|
|
InsetError * new_inset = new InsetError(msgtxt);
|
2003-03-17 16:25:00 +00:00
|
|
|
text->setCursorIntern(texrowpar, tmppos);
|
|
|
|
text->insertInset(new_inset);
|
|
|
|
text->fullRebreak();
|
2002-08-29 13:05:55 +00:00
|
|
|
unFreezeUndo();
|
|
|
|
}
|
|
|
|
// Restore the cursor position
|
2003-03-17 16:25:00 +00:00
|
|
|
text->setCursorIntern(cursor.par(), cursor.pos());
|
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);
|
|
|
|
|
|
|
|
Paragraph * texrowpar;
|
|
|
|
|
|
|
|
if (tmpid == -1) {
|
2003-04-02 17:11:38 +00:00
|
|
|
texrowpar = &*text->ownerParagraphs().begin();
|
2002-08-29 13:05:55 +00:00
|
|
|
tmppos = 0;
|
|
|
|
} else {
|
|
|
|
texrowpar = buffer()->getParFromID(tmpid);
|
|
|
|
}
|
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) {
|
|
|
|
vector<string> labels = it->getLabelList();
|
|
|
|
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"));
|
|
|
|
hideCursor();
|
|
|
|
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"));
|
|
|
|
hideCursor();
|
|
|
|
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();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::copyEnvironment()
|
|
|
|
{
|
|
|
|
if (available()) {
|
|
|
|
text->copyEnvironmentType();
|
|
|
|
owner()->message(_("Paragraph environment type copied"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::pasteEnvironment()
|
|
|
|
{
|
|
|
|
if (available()) {
|
2003-03-17 16:25:00 +00:00
|
|
|
text->pasteEnvironmentType();
|
2002-08-29 13:05:55 +00:00
|
|
|
owner()->message(_("Paragraph environment type set"));
|
2003-03-19 14:45:22 +00:00
|
|
|
update(text, BufferView::SELECT);
|
2002-08-29 13:05:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 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;
|
|
|
|
hideCursor();
|
|
|
|
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;
|
|
|
|
|
|
|
|
hideCursor();
|
|
|
|
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();
|
|
|
|
hideCursor();
|
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) {
|
|
|
|
if (it.getInset() == inset) {
|
2003-03-17 16:25:00 +00:00
|
|
|
text->setCursorIntern(&*pit, it.getPos());
|
2002-08-29 13:05:55 +00:00
|
|
|
theLockingInset(inset);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (it.getInset()->getInsetFromID(id)) {
|
2003-03-17 16:25:00 +00:00
|
|
|
text->setCursorIntern(&*pit, it.getPos());
|
2002-08-29 13:05:55 +00:00
|
|
|
it.getInset()->edit(this);
|
|
|
|
return theLockingInset()->lockInsetInInset(this, inset);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return theLockingInset()->lockInsetInInset(this, inset);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::showLockedInsetCursor(int x, int y, int asc, int desc)
|
|
|
|
{
|
|
|
|
if (available() && theLockingInset() && !theLockingInset()->nodraw()) {
|
|
|
|
LyXCursor cursor = text->cursor;
|
|
|
|
Inset * locking_inset = theLockingInset()->getLockingInset();
|
|
|
|
|
|
|
|
if ((cursor.pos() - 1 >= 0) &&
|
|
|
|
cursor.par()->isInset(cursor.pos() - 1) &&
|
|
|
|
(cursor.par()->getInset(cursor.pos() - 1) ==
|
|
|
|
locking_inset))
|
2003-03-17 16:25:00 +00:00
|
|
|
text->setCursor(cursor,
|
2002-08-29 13:05:55 +00:00
|
|
|
cursor.par(), cursor.pos() - 1);
|
|
|
|
LyXScreen::Cursor_Shape shape = LyXScreen::BAR_SHAPE;
|
|
|
|
LyXText * txt = getLyXText();
|
|
|
|
if (locking_inset->isTextInset() &&
|
|
|
|
locking_inset->lyxCode() != Inset::ERT_CODE &&
|
|
|
|
(txt->real_current_font.language() !=
|
|
|
|
buffer()->params.language
|
|
|
|
|| txt->real_current_font.isVisibleRightToLeft()
|
|
|
|
!= buffer()->params.language->RightToLeft()))
|
|
|
|
shape = (txt->real_current_font.isVisibleRightToLeft())
|
|
|
|
? LyXScreen::REVERSED_L_SHAPE
|
|
|
|
: LyXScreen::L_SHAPE;
|
|
|
|
y += cursor.iy() + theLockingInset()->insetInInsetY();
|
|
|
|
screen().showManualCursor(text, x, y, asc, desc,
|
|
|
|
shape);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::hideLockedInsetCursor()
|
|
|
|
{
|
|
|
|
if (theLockingInset() && available()) {
|
|
|
|
screen().hideCursor();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
setUndo(this, kind,
|
2003-04-09 09:15:20 +00:00
|
|
|
&*text->cursor.par(),
|
2002-08-29 13:05:55 +00:00
|
|
|
text->cursor.par()->next());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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) {
|
|
|
|
Paragraph * par = *it;
|
|
|
|
bool changed_inset = false;
|
|
|
|
for (InsetList::iterator it2 = par->insetlist.begin();
|
|
|
|
it2 != par->insetlist.end(); ++it2) {
|
|
|
|
if (it2.getInset()->lyxCode() == code) {
|
|
|
|
InsetCommand * inset = static_cast<InsetCommand *>(it2.getInset());
|
|
|
|
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-03-17 16:25:00 +00:00
|
|
|
text->setCursorIntern(par, 0);
|
|
|
|
text->redoParagraphs(text->cursor,
|
2002-08-29 13:05:55 +00:00
|
|
|
text->cursor.par()->next());
|
2003-03-17 16:25:00 +00:00
|
|
|
text->fullRebreak();
|
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
|
|
|
|
vector<string> labels = buffer()->getLabelList();
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
LyXCursor const & c= t->cursor;
|
|
|
|
LyXFont const font = c.par()->getFont(buffer()->params, c.pos());
|
|
|
|
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();
|
|
|
|
}
|