2000-02-04 09:38:32 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/* This file is part of
|
|
|
|
* ======================================================
|
|
|
|
*
|
|
|
|
* LyX, The Document Processor
|
|
|
|
*
|
|
|
|
* Copyright 1995 Matthias Ettrich
|
|
|
|
* Copyright 1995-2000 The LyX Team.
|
|
|
|
*
|
|
|
|
* ====================================================== */
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
2000-04-08 17:02:02 +00:00
|
|
|
#include <fstream>
|
2000-05-19 16:46:01 +00:00
|
|
|
#include <algorithm>
|
2000-04-08 17:02:02 +00:00
|
|
|
|
2000-02-04 09:38:32 +00:00
|
|
|
#include "BufferView.h"
|
|
|
|
#include "buffer.h"
|
|
|
|
#include "lyxcursor.h"
|
|
|
|
#include "lyxtext.h"
|
|
|
|
#include "insets/inseterror.h"
|
|
|
|
#include "insets/insetinfo.h"
|
|
|
|
#include "insets/insetspecialchar.h"
|
|
|
|
#include "LyXView.h"
|
|
|
|
#include "minibuffer.h"
|
|
|
|
#include "bufferlist.h"
|
|
|
|
#include "support/FileInfo.h"
|
2000-02-17 19:59:08 +00:00
|
|
|
#include "lyxscreen.h"
|
2000-04-08 17:02:02 +00:00
|
|
|
#include "support/filetools.h"
|
|
|
|
#include "lyx_gui_misc.h"
|
|
|
|
#include "LaTeX.h"
|
|
|
|
#include "BufferView_pimpl.h"
|
2000-05-19 16:46:01 +00:00
|
|
|
#include "insets/insetcommand.h" //ChangeRefs
|
2000-02-04 09:38:32 +00:00
|
|
|
|
|
|
|
extern BufferList bufferlist;
|
|
|
|
|
2000-04-04 00:19:15 +00:00
|
|
|
using std::pair;
|
2000-03-28 02:18:55 +00:00
|
|
|
using std::endl;
|
2000-02-08 15:13:01 +00:00
|
|
|
using std::ifstream;
|
2000-05-19 16:46:01 +00:00
|
|
|
using std::vector;
|
|
|
|
using std::find;
|
2000-02-08 15:13:01 +00:00
|
|
|
|
2000-02-04 09:38:32 +00:00
|
|
|
// Inserts a file into current document
|
|
|
|
bool BufferView::insertLyXFile(string const & filen)
|
|
|
|
//
|
2000-03-09 03:36:48 +00:00
|
|
|
// Copyright CHT Software Service GmbH
|
2000-02-04 09:38:32 +00:00
|
|
|
// Uwe C. Schroeder
|
|
|
|
//
|
|
|
|
// Insert a Lyxformat - file into current buffer
|
|
|
|
//
|
|
|
|
// Moved from lyx_cb.C (Lgb)
|
|
|
|
{
|
|
|
|
if (filen.empty()) return false;
|
|
|
|
|
|
|
|
string fname = MakeAbsPath(filen);
|
|
|
|
|
|
|
|
// check if file exist
|
|
|
|
FileInfo fi(fname);
|
|
|
|
|
|
|
|
if (!fi.readable()) {
|
|
|
|
WriteAlert(_("Error!"),
|
|
|
|
_("Specified file is unreadable: "),
|
|
|
|
MakeDisplayPath(fname, 50));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
beforeChange();
|
|
|
|
|
|
|
|
ifstream ifs(fname.c_str());
|
|
|
|
if (!ifs) {
|
|
|
|
WriteAlert(_("Error!"),
|
|
|
|
_("Cannot open specified file: "),
|
|
|
|
MakeDisplayPath(fname, 50));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
LyXLex lex(0, 0);
|
|
|
|
lex.setStream(ifs);
|
|
|
|
char c; ifs.get(c);
|
|
|
|
ifs.putback(c);
|
|
|
|
|
|
|
|
bool res = true;
|
|
|
|
|
|
|
|
if (c == '#') {
|
|
|
|
lyxerr.debug() << "Will insert file with header" << endl;
|
2000-06-08 23:16:16 +00:00
|
|
|
res = buffer()->readFile(lex, text->cursor.par());
|
2000-02-04 09:38:32 +00:00
|
|
|
} else {
|
|
|
|
lyxerr.debug() << "Will insert file without header" << endl;
|
2000-06-08 23:16:16 +00:00
|
|
|
res = buffer()->readLyXformat2(lex, text->cursor.par());
|
2000-02-04 09:38:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
resize();
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool BufferView::removeAutoInsets()
|
|
|
|
{
|
|
|
|
LyXParagraph * par = buffer()->paragraph;
|
|
|
|
|
2000-05-17 14:43:09 +00:00
|
|
|
LyXCursor tmpcursor = text->cursor;
|
|
|
|
LyXCursor cursor;
|
2000-02-04 09:38:32 +00:00
|
|
|
|
|
|
|
bool a = false;
|
|
|
|
while (par) {
|
2000-05-17 14:43:09 +00:00
|
|
|
// this has to be done before the delete
|
2000-06-05 15:12:09 +00:00
|
|
|
if (par->footnoteflag != LyXParagraph::CLOSED_FOOTNOTE)
|
2000-06-12 11:27:15 +00:00
|
|
|
text->SetCursor(this, cursor, par, 0);
|
2000-02-04 09:38:32 +00:00
|
|
|
if (par->AutoDeleteInsets()){
|
|
|
|
a = true;
|
|
|
|
if (par->footnoteflag != LyXParagraph::CLOSED_FOOTNOTE){
|
2000-06-12 11:27:15 +00:00
|
|
|
text->RedoParagraphs(this, cursor,
|
2000-06-08 23:16:16 +00:00
|
|
|
cursor.par()->Next());
|
2000-06-12 11:27:15 +00:00
|
|
|
text->FullRebreak(this);
|
2000-02-04 09:38:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
par = par->next;
|
|
|
|
}
|
|
|
|
// avoid forbidden cursor positions caused by error removing
|
2000-06-08 23:16:16 +00:00
|
|
|
if (tmpcursor.pos() > tmpcursor.par()->Last())
|
|
|
|
tmpcursor.pos(tmpcursor.par()->Last());
|
2000-06-12 11:27:15 +00:00
|
|
|
text->SetCursorIntern(this, tmpcursor.par(), tmpcursor.pos());
|
2000-02-04 09:38:32 +00:00
|
|
|
|
|
|
|
return a;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::insertErrors(TeXErrors & terr)
|
|
|
|
{
|
|
|
|
// Save the cursor position
|
|
|
|
LyXCursor cursor = text->cursor;
|
|
|
|
|
|
|
|
// This is drastic, but it's the only fix, I could find. (Asger)
|
|
|
|
allFloats(1, 0);
|
|
|
|
allFloats(1, 1);
|
|
|
|
|
|
|
|
for (TeXErrors::Errors::const_iterator cit = terr.begin();
|
|
|
|
cit != terr.end();
|
|
|
|
++cit) {
|
|
|
|
string desctext((*cit).error_desc);
|
|
|
|
string errortext((*cit).error_text);
|
|
|
|
string msgtxt = desctext + '\n' + errortext;
|
|
|
|
int errorrow = (*cit).error_in_line;
|
|
|
|
|
|
|
|
// Insert error string for row number
|
|
|
|
int tmpid = -1;
|
|
|
|
int tmppos = -1;
|
|
|
|
|
|
|
|
buffer()->texrow.getIdFromRow(errorrow, tmpid, tmppos);
|
|
|
|
|
|
|
|
LyXParagraph * texrowpar = 0;
|
|
|
|
|
|
|
|
if (tmpid == -1) {
|
|
|
|
texrowpar = text->FirstParagraph();
|
|
|
|
tmppos = 0;
|
|
|
|
} else {
|
|
|
|
texrowpar = text->GetParFromID(tmpid);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (texrowpar == 0)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
InsetError * new_inset = new InsetError(msgtxt);
|
2000-06-12 11:27:15 +00:00
|
|
|
text->SetCursorIntern(this, texrowpar, tmppos);
|
|
|
|
text->InsertInset(this, new_inset);
|
|
|
|
text->FullRebreak(this);
|
2000-02-04 09:38:32 +00:00
|
|
|
}
|
|
|
|
// Restore the cursor position
|
2000-06-12 11:27:15 +00:00
|
|
|
text->SetCursorIntern(this, cursor.par(), cursor.pos());
|
2000-02-04 09:38:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::setCursorFromRow(int row)
|
|
|
|
{
|
|
|
|
int tmpid = -1;
|
|
|
|
int tmppos = -1;
|
|
|
|
|
|
|
|
buffer()->texrow.getIdFromRow(row, tmpid, tmppos);
|
|
|
|
|
|
|
|
LyXParagraph * texrowpar;
|
|
|
|
|
|
|
|
if (tmpid == -1) {
|
|
|
|
texrowpar = text->FirstParagraph();
|
|
|
|
tmppos = 0;
|
|
|
|
} else {
|
|
|
|
texrowpar = text->GetParFromID(tmpid);
|
|
|
|
}
|
2000-06-12 11:27:15 +00:00
|
|
|
text->SetCursor(this, texrowpar, tmppos);
|
2000-02-04 09:38:32 +00:00
|
|
|
}
|
|
|
|
|
2000-05-15 14:49:36 +00:00
|
|
|
bool BufferView::insertInset(Inset * inset, string const & lout,
|
2000-02-04 09:38:32 +00:00
|
|
|
bool no_table)
|
|
|
|
{
|
2000-05-15 14:49:36 +00:00
|
|
|
// if we are in a locking inset we should try to insert the
|
|
|
|
// inset there otherwise this is a illegal function now
|
|
|
|
if (the_locking_inset) {
|
|
|
|
if (the_locking_inset->InsertInsetAllowed(inset) &&
|
|
|
|
the_locking_inset->InsertInset(this, inset))
|
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2000-06-08 23:16:16 +00:00
|
|
|
#ifndef NEW_TABULAR
|
2000-02-04 09:38:32 +00:00
|
|
|
// check for table/list in tables
|
2000-06-08 23:16:16 +00:00
|
|
|
if (no_table && text->cursor.par()->table){
|
2000-02-04 09:38:32 +00:00
|
|
|
WriteAlert(_("Impossible Operation!"),
|
|
|
|
_("Cannot insert table/list in table."),
|
|
|
|
_("Sorry."));
|
2000-05-15 14:49:36 +00:00
|
|
|
return false;
|
2000-02-04 09:38:32 +00:00
|
|
|
}
|
2000-06-08 23:16:16 +00:00
|
|
|
#endif
|
2000-05-15 14:49:36 +00:00
|
|
|
|
2000-02-04 09:38:32 +00:00
|
|
|
// not quite sure if we want this...
|
2000-06-12 11:27:15 +00:00
|
|
|
text->SetCursorParUndo(buffer());
|
2000-02-04 09:38:32 +00:00
|
|
|
text->FreezeUndo();
|
|
|
|
|
|
|
|
beforeChange();
|
|
|
|
if (!lout.empty()) {
|
2000-06-12 11:27:15 +00:00
|
|
|
update(BufferView::SELECT|BufferView::FITCUR);
|
|
|
|
text->BreakParagraph(this);
|
|
|
|
update(BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
|
2000-02-04 09:38:32 +00:00
|
|
|
|
2000-06-08 23:16:16 +00:00
|
|
|
if (text->cursor.par()->Last()) {
|
2000-06-12 11:27:15 +00:00
|
|
|
text->CursorLeft(this);
|
2000-02-04 09:38:32 +00:00
|
|
|
|
2000-06-12 11:27:15 +00:00
|
|
|
text->BreakParagraph(this);
|
|
|
|
update(BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
|
2000-02-04 09:38:32 +00:00
|
|
|
}
|
|
|
|
|
2000-02-29 02:19:17 +00:00
|
|
|
pair<bool, LyXTextClass::size_type> lres =
|
|
|
|
textclasslist.NumberOfLayout(buffer()->params
|
|
|
|
.textclass, lout);
|
|
|
|
LyXTextClass::size_type lay;
|
|
|
|
if (lres.first != false) {
|
|
|
|
// layout found
|
|
|
|
lay = lres.second;
|
|
|
|
} else {
|
|
|
|
// layout not fount using default "Standard" (0)
|
2000-02-04 09:38:32 +00:00
|
|
|
lay = 0;
|
2000-02-29 02:19:17 +00:00
|
|
|
}
|
|
|
|
|
2000-06-12 11:27:15 +00:00
|
|
|
text->SetLayout(this, lay);
|
2000-02-04 09:38:32 +00:00
|
|
|
|
2000-06-12 11:27:15 +00:00
|
|
|
text->SetParagraph(this, 0, 0,
|
2000-02-04 09:38:32 +00:00
|
|
|
0, 0,
|
|
|
|
VSpace(VSpace::NONE), VSpace(VSpace::NONE),
|
|
|
|
LYX_ALIGN_LAYOUT,
|
|
|
|
string(),
|
|
|
|
0);
|
2000-06-12 11:27:15 +00:00
|
|
|
update(BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
|
2000-02-04 09:38:32 +00:00
|
|
|
|
|
|
|
text->current_font.setLatex(LyXFont::OFF);
|
|
|
|
}
|
|
|
|
|
2000-06-12 11:27:15 +00:00
|
|
|
text->InsertInset(this, inset);
|
2000-03-31 10:35:53 +00:00
|
|
|
#if 1
|
|
|
|
// if we enter a text-inset the cursor should be to the left side
|
|
|
|
// of it! This couldn't happen before as Undo was not handled inside
|
|
|
|
// inset now after the Undo LyX tries to call inset->Edit(...) again
|
|
|
|
// and cannot do this as the cursor is behind the inset and GetInset
|
|
|
|
// does not return the inset!
|
|
|
|
if (inset->IsTextInset()) {
|
2000-06-08 23:16:16 +00:00
|
|
|
if (text->cursor.par()->isRightToLeftPar(buffer()->params))
|
2000-06-12 11:27:15 +00:00
|
|
|
text->CursorRight(this);
|
2000-04-10 21:40:13 +00:00
|
|
|
else
|
2000-06-12 11:27:15 +00:00
|
|
|
text->CursorLeft(this);
|
2000-03-31 10:35:53 +00:00
|
|
|
}
|
|
|
|
#endif
|
2000-06-12 11:27:15 +00:00
|
|
|
update(BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
|
2000-02-04 09:38:32 +00:00
|
|
|
|
2000-05-15 14:49:36 +00:00
|
|
|
text->UnFreezeUndo();
|
|
|
|
return true;
|
2000-02-04 09:38:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Open and lock an updatable inset
|
|
|
|
void BufferView::open_new_inset(UpdatableInset * new_inset)
|
|
|
|
{
|
|
|
|
beforeChange();
|
|
|
|
text->FinishUndo();
|
|
|
|
insertInset(new_inset);
|
2000-06-12 11:27:15 +00:00
|
|
|
text->CursorLeft(this);
|
|
|
|
update(BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
|
2000-02-25 12:06:15 +00:00
|
|
|
new_inset->Edit(this, 0, 0, 0);
|
2000-02-04 09:38:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* This is also a buffer property (ale) */
|
|
|
|
// Not so sure about that. a goto Label function can not be buffer local, just
|
|
|
|
// think how this will work in a multiwindo/buffer environment, all the
|
|
|
|
// cursors in all the views showing this buffer will move. (Lgb)
|
|
|
|
// OK, then no cursor action should be allowed in buffer. (ale)
|
|
|
|
bool BufferView::gotoLabel(string const & label)
|
|
|
|
|
|
|
|
{
|
2000-05-19 16:46:01 +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();
|
2000-06-12 11:27:15 +00:00
|
|
|
text->SetCursor(this, it.getPar(), it.getPos());
|
2000-05-19 16:46:01 +00:00
|
|
|
text->sel_cursor = text->cursor;
|
2000-06-12 11:27:15 +00:00
|
|
|
update(BufferView::SELECT|BufferView::FITCUR);
|
2000-05-19 16:46:01 +00:00
|
|
|
return true;
|
|
|
|
}
|
2000-02-04 09:38:32 +00:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void BufferView::allFloats(char flag, char figmar)
|
|
|
|
{
|
|
|
|
if (!available()) return;
|
|
|
|
|
|
|
|
LyXCursor cursor = text->cursor;
|
|
|
|
|
2000-06-08 23:16:16 +00:00
|
|
|
if (!flag && cursor.par()->footnoteflag != LyXParagraph::NO_FOOTNOTE
|
2000-02-04 09:38:32 +00:00
|
|
|
&& ((figmar
|
2000-06-08 23:16:16 +00:00
|
|
|
&& cursor.par()->footnotekind != LyXParagraph::FOOTNOTE
|
|
|
|
&& cursor.par()->footnotekind != LyXParagraph::MARGIN)
|
2000-02-04 09:38:32 +00:00
|
|
|
|| (!figmar
|
2000-06-08 23:16:16 +00:00
|
|
|
&& cursor.par()->footnotekind != LyXParagraph::FIG
|
|
|
|
&& cursor.par()->footnotekind != LyXParagraph::TAB
|
|
|
|
&& cursor.par()->footnotekind != LyXParagraph::WIDE_FIG
|
|
|
|
&& cursor.par()->footnotekind != LyXParagraph::WIDE_TAB
|
|
|
|
&& cursor.par()->footnotekind != LyXParagraph::ALGORITHM)))
|
2000-02-04 09:38:32 +00:00
|
|
|
toggleFloat();
|
|
|
|
else
|
|
|
|
beforeChange();
|
|
|
|
|
|
|
|
LyXCursor tmpcursor = cursor;
|
2000-06-08 23:16:16 +00:00
|
|
|
cursor.par(tmpcursor.par()->ParFromPos(tmpcursor.pos()));
|
|
|
|
cursor.pos(tmpcursor.par()->PositionInParFromPos(tmpcursor.pos()));
|
2000-02-04 09:38:32 +00:00
|
|
|
|
|
|
|
LyXParagraph *par = buffer()->paragraph;
|
|
|
|
while (par) {
|
|
|
|
if (flag) {
|
|
|
|
if (par->footnoteflag == LyXParagraph::CLOSED_FOOTNOTE
|
|
|
|
&& ((figmar
|
|
|
|
&& par->footnotekind != LyXParagraph::FOOTNOTE
|
|
|
|
&& par->footnotekind != LyXParagraph::MARGIN)
|
|
|
|
|| (!figmar
|
|
|
|
&& par->footnotekind != LyXParagraph::FIG
|
|
|
|
&& par->footnotekind != LyXParagraph::TAB
|
|
|
|
&& par->footnotekind != LyXParagraph::WIDE_FIG
|
|
|
|
&& par->footnotekind != LyXParagraph::WIDE_TAB
|
|
|
|
&& par->footnotekind != LyXParagraph::ALGORITHM
|
|
|
|
)
|
|
|
|
)
|
|
|
|
) {
|
|
|
|
if (par->previous
|
|
|
|
&& par->previous->footnoteflag !=
|
|
|
|
LyXParagraph::CLOSED_FOOTNOTE){ /* should be */
|
2000-06-12 11:27:15 +00:00
|
|
|
text->SetCursorIntern(this,
|
|
|
|
par->previous,
|
2000-02-04 09:38:32 +00:00
|
|
|
0);
|
2000-06-12 11:27:15 +00:00
|
|
|
text->OpenFootnote(this);
|
2000-02-04 09:38:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (par->footnoteflag == LyXParagraph::OPEN_FOOTNOTE
|
|
|
|
&& (
|
|
|
|
(figmar
|
|
|
|
&&
|
|
|
|
par->footnotekind != LyXParagraph::FOOTNOTE
|
|
|
|
&&
|
|
|
|
par->footnotekind != LyXParagraph::MARGIN
|
|
|
|
)
|
|
|
|
||
|
|
|
|
(!figmar
|
|
|
|
&&
|
|
|
|
par->footnotekind != LyXParagraph::FIG
|
|
|
|
&&
|
|
|
|
par->footnotekind != LyXParagraph::TAB
|
|
|
|
&&
|
|
|
|
par->footnotekind != LyXParagraph::WIDE_FIG
|
|
|
|
&&
|
|
|
|
par->footnotekind != LyXParagraph::WIDE_TAB
|
|
|
|
&&
|
|
|
|
par->footnotekind != LyXParagraph::ALGORITHM
|
|
|
|
)
|
|
|
|
)
|
|
|
|
) {
|
2000-06-12 11:27:15 +00:00
|
|
|
text->SetCursorIntern(this, par, 0);
|
|
|
|
text->CloseFootnote(this);
|
2000-02-04 09:38:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
par = par->next;
|
|
|
|
}
|
|
|
|
|
2000-06-12 11:27:15 +00:00
|
|
|
text->SetCursorIntern(this, cursor.par(), cursor.pos());
|
2000-02-04 09:38:32 +00:00
|
|
|
redraw();
|
|
|
|
fitCursor();
|
2000-04-26 13:57:28 +00:00
|
|
|
//updateScrollbar();
|
2000-02-04 09:38:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::insertNote()
|
|
|
|
{
|
|
|
|
InsetInfo * new_inset = new InsetInfo();
|
|
|
|
insertInset(new_inset);
|
2000-02-25 12:06:15 +00:00
|
|
|
new_inset->Edit(this, 0, 0, 0);
|
2000-02-04 09:38:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::openStuff()
|
|
|
|
{
|
|
|
|
if (available()) {
|
|
|
|
owner()->getMiniBuffer()->Set(_("Open/Close..."));
|
2000-02-17 19:59:08 +00:00
|
|
|
hideCursor();
|
2000-02-04 09:38:32 +00:00
|
|
|
beforeChange();
|
2000-06-12 11:27:15 +00:00
|
|
|
update(BufferView::SELECT|BufferView::FITCUR);
|
|
|
|
text->OpenStuff(this);
|
|
|
|
update(BufferView::SELECT|BufferView::FITCUR);
|
2000-02-17 19:59:08 +00:00
|
|
|
setState();
|
2000-02-04 09:38:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::toggleFloat()
|
|
|
|
{
|
|
|
|
if (available()) {
|
|
|
|
owner()->getMiniBuffer()->Set(_("Open/Close..."));
|
2000-02-17 19:59:08 +00:00
|
|
|
hideCursor();
|
2000-02-04 09:38:32 +00:00
|
|
|
beforeChange();
|
2000-06-12 11:27:15 +00:00
|
|
|
update(BufferView::SELECT|BufferView::FITCUR);
|
|
|
|
text->ToggleFootnote(this);
|
|
|
|
update(BufferView::SELECT|BufferView::FITCUR);
|
2000-02-17 19:59:08 +00:00
|
|
|
setState();
|
2000-02-04 09:38:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void BufferView::menuUndo()
|
|
|
|
{
|
|
|
|
if (available()) {
|
|
|
|
owner()->getMiniBuffer()->Set(_("Undo"));
|
2000-02-17 19:59:08 +00:00
|
|
|
hideCursor();
|
2000-02-04 09:38:32 +00:00
|
|
|
beforeChange();
|
2000-06-12 11:27:15 +00:00
|
|
|
update(BufferView::SELECT|BufferView::FITCUR);
|
|
|
|
if (!text->TextUndo(this))
|
2000-02-04 09:38:32 +00:00
|
|
|
owner()->getMiniBuffer()->Set(_("No further undo information"));
|
|
|
|
else
|
2000-06-12 11:27:15 +00:00
|
|
|
update(BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
|
2000-02-17 19:59:08 +00:00
|
|
|
setState();
|
2000-02-04 09:38:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::menuRedo()
|
|
|
|
{
|
|
|
|
if (the_locking_inset) {
|
|
|
|
owner()->getMiniBuffer()->Set(_("Redo not yet supported in math mode"));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (available()) {
|
|
|
|
owner()->getMiniBuffer()->Set(_("Redo"));
|
2000-02-17 19:59:08 +00:00
|
|
|
hideCursor();
|
2000-02-04 09:38:32 +00:00
|
|
|
beforeChange();
|
2000-06-12 11:27:15 +00:00
|
|
|
update(BufferView::SELECT|BufferView::FITCUR);
|
|
|
|
if (!text->TextRedo(this))
|
2000-02-04 09:38:32 +00:00
|
|
|
owner()->getMiniBuffer()->Set(_("No further redo information"));
|
|
|
|
else
|
2000-06-12 11:27:15 +00:00
|
|
|
update(BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
|
2000-02-17 19:59:08 +00:00
|
|
|
setState();
|
2000-02-04 09:38:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::hyphenationPoint()
|
|
|
|
{
|
|
|
|
if (available()) {
|
2000-02-17 19:59:08 +00:00
|
|
|
hideCursor();
|
2000-06-12 11:27:15 +00:00
|
|
|
update(BufferView::SELECT|BufferView::FITCUR);
|
2000-02-04 09:38:32 +00:00
|
|
|
InsetSpecialChar * new_inset =
|
|
|
|
new InsetSpecialChar(InsetSpecialChar::HYPHENATION);
|
|
|
|
insertInset(new_inset);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::ldots()
|
|
|
|
{
|
|
|
|
if (available()) {
|
2000-02-17 19:59:08 +00:00
|
|
|
hideCursor();
|
2000-06-12 11:27:15 +00:00
|
|
|
update(BufferView::SELECT|BufferView::FITCUR);
|
2000-02-04 09:38:32 +00:00
|
|
|
InsetSpecialChar * new_inset =
|
|
|
|
new InsetSpecialChar(InsetSpecialChar::LDOTS);
|
|
|
|
insertInset(new_inset);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::endOfSentenceDot()
|
|
|
|
{
|
|
|
|
if (available()) {
|
2000-02-17 19:59:08 +00:00
|
|
|
hideCursor();
|
2000-06-12 11:27:15 +00:00
|
|
|
update(BufferView::SELECT|BufferView::FITCUR);
|
2000-02-04 09:38:32 +00:00
|
|
|
InsetSpecialChar * new_inset =
|
|
|
|
new InsetSpecialChar(InsetSpecialChar::END_OF_SENTENCE);
|
|
|
|
insertInset(new_inset);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::menuSeparator()
|
|
|
|
{
|
|
|
|
if (available()) {
|
2000-02-17 19:59:08 +00:00
|
|
|
hideCursor();
|
2000-06-12 11:27:15 +00:00
|
|
|
update(BufferView::SELECT|BufferView::FITCUR);
|
2000-02-04 09:38:32 +00:00
|
|
|
InsetSpecialChar * new_inset =
|
|
|
|
new InsetSpecialChar(InsetSpecialChar::MENU_SEPARATOR);
|
|
|
|
insertInset(new_inset);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::newline()
|
|
|
|
{
|
|
|
|
if (available()) {
|
2000-02-17 19:59:08 +00:00
|
|
|
hideCursor();
|
2000-06-12 11:27:15 +00:00
|
|
|
update(BufferView::SELECT|BufferView::FITCUR);
|
|
|
|
text->InsertChar(this, LyXParagraph::META_NEWLINE);
|
|
|
|
update(BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
|
2000-02-04 09:38:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::protectedBlank()
|
|
|
|
{
|
|
|
|
if (available()) {
|
2000-02-17 19:59:08 +00:00
|
|
|
hideCursor();
|
2000-06-12 11:27:15 +00:00
|
|
|
update(BufferView::SELECT|BufferView::FITCUR);
|
2000-02-29 02:19:17 +00:00
|
|
|
InsetSpecialChar * new_inset =
|
|
|
|
new InsetSpecialChar(InsetSpecialChar::PROTECTED_SEPARATOR);
|
|
|
|
insertInset(new_inset);
|
2000-02-04 09:38:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::hfill()
|
|
|
|
{
|
|
|
|
if (available()) {
|
2000-02-17 19:59:08 +00:00
|
|
|
hideCursor();
|
2000-06-12 11:27:15 +00:00
|
|
|
update(BufferView::SELECT|BufferView::FITCUR);
|
|
|
|
text->InsertChar(this, LyXParagraph::META_HFILL);
|
|
|
|
update(BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
|
2000-02-04 09:38:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void BufferView::copyEnvironment()
|
|
|
|
{
|
|
|
|
if (available()) {
|
|
|
|
text->copyEnvironmentType();
|
|
|
|
// clear the selection, even if mark_set
|
2000-02-17 19:59:08 +00:00
|
|
|
toggleSelection();
|
2000-02-04 09:38:32 +00:00
|
|
|
text->ClearSelection();
|
2000-06-12 11:27:15 +00:00
|
|
|
update(BufferView::SELECT|BufferView::FITCUR);
|
2000-02-04 09:38:32 +00:00
|
|
|
owner()->getMiniBuffer()->Set(_("Paragraph environment type copied"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::pasteEnvironment()
|
|
|
|
{
|
|
|
|
if (available()) {
|
2000-06-12 11:27:15 +00:00
|
|
|
text->pasteEnvironmentType(this);
|
2000-02-04 09:38:32 +00:00
|
|
|
owner()->getMiniBuffer()->Set(_("Paragraph environment type set"));
|
2000-06-12 11:27:15 +00:00
|
|
|
update(BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
|
2000-02-04 09:38:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::copy()
|
|
|
|
{
|
|
|
|
if (available()) {
|
2000-06-15 15:44:39 +00:00
|
|
|
text->CopySelection(this);
|
2000-02-04 09:38:32 +00:00
|
|
|
// clear the selection, even if mark_set
|
2000-02-17 19:59:08 +00:00
|
|
|
toggleSelection();
|
2000-02-04 09:38:32 +00:00
|
|
|
text->ClearSelection();
|
2000-06-12 11:27:15 +00:00
|
|
|
update(BufferView::SELECT|BufferView::FITCUR);
|
2000-02-04 09:38:32 +00:00
|
|
|
owner()->getMiniBuffer()->Set(_("Copy"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void BufferView::cut()
|
|
|
|
{
|
|
|
|
if (available()) {
|
2000-02-17 19:59:08 +00:00
|
|
|
hideCursor();
|
2000-06-12 11:27:15 +00:00
|
|
|
update(BufferView::SELECT|BufferView::FITCUR);
|
|
|
|
text->CutSelection(this);
|
|
|
|
update(BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
|
2000-02-04 09:38:32 +00:00
|
|
|
owner()->getMiniBuffer()->Set(_("Cut"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::paste()
|
|
|
|
{
|
|
|
|
if (!available()) return;
|
|
|
|
|
|
|
|
owner()->getMiniBuffer()->Set(_("Paste"));
|
2000-02-17 19:59:08 +00:00
|
|
|
hideCursor();
|
2000-02-04 09:38:32 +00:00
|
|
|
// clear the selection
|
2000-02-17 19:59:08 +00:00
|
|
|
toggleSelection();
|
2000-02-04 09:38:32 +00:00
|
|
|
text->ClearSelection();
|
2000-06-12 11:27:15 +00:00
|
|
|
update(BufferView::SELECT|BufferView::FITCUR);
|
2000-02-04 09:38:32 +00:00
|
|
|
|
|
|
|
// paste
|
2000-06-12 11:27:15 +00:00
|
|
|
text->PasteSelection(this);
|
|
|
|
update(BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
|
2000-02-04 09:38:32 +00:00
|
|
|
|
|
|
|
// clear the selection
|
2000-02-17 19:59:08 +00:00
|
|
|
toggleSelection();
|
2000-02-04 09:38:32 +00:00
|
|
|
text->ClearSelection();
|
2000-06-12 11:27:15 +00:00
|
|
|
update(BufferView::SELECT|BufferView::FITCUR);
|
2000-02-04 09:38:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::gotoNote()
|
|
|
|
{
|
2000-02-17 19:59:08 +00:00
|
|
|
if (!available()) return;
|
2000-02-04 09:38:32 +00:00
|
|
|
|
2000-02-17 19:59:08 +00:00
|
|
|
hideCursor();
|
2000-02-04 09:38:32 +00:00
|
|
|
beforeChange();
|
2000-06-12 11:27:15 +00:00
|
|
|
update(BufferView::SELECT|BufferView::FITCUR);
|
2000-02-04 09:38:32 +00:00
|
|
|
LyXCursor tmp;
|
|
|
|
|
2000-06-12 11:27:15 +00:00
|
|
|
if (!text->GotoNextNote(this)) {
|
2000-06-08 23:16:16 +00:00
|
|
|
if (text->cursor.pos()
|
|
|
|
|| text->cursor.par() != text->FirstParagraph()) {
|
2000-02-04 09:38:32 +00:00
|
|
|
tmp = text->cursor;
|
2000-06-08 23:16:16 +00:00
|
|
|
text->cursor.par(text->FirstParagraph());
|
|
|
|
text->cursor.pos(0);
|
2000-06-12 11:27:15 +00:00
|
|
|
if (!text->GotoNextNote(this)) {
|
2000-02-04 09:38:32 +00:00
|
|
|
text->cursor = tmp;
|
|
|
|
owner()->getMiniBuffer()->Set(_("No more notes"));
|
|
|
|
LyXBell();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
owner()->getMiniBuffer()->Set(_("No more notes"));
|
|
|
|
LyXBell();
|
|
|
|
}
|
|
|
|
}
|
2000-06-12 11:27:15 +00:00
|
|
|
update(BufferView::SELECT|BufferView::FITCUR);
|
2000-02-04 09:38:32 +00:00
|
|
|
text->sel_cursor = text->cursor;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::insertCorrectQuote()
|
|
|
|
{
|
|
|
|
char c;
|
|
|
|
|
2000-06-08 23:16:16 +00:00
|
|
|
if (text->cursor.pos())
|
|
|
|
c = text->cursor.par()->GetChar(text->cursor.pos() - 1);
|
2000-02-04 09:38:32 +00:00
|
|
|
else
|
|
|
|
c = ' ';
|
|
|
|
|
|
|
|
insertInset(new InsetQuotes(c, buffer()->params));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* these functions are for the spellchecker */
|
|
|
|
char * BufferView::nextWord(float & value)
|
|
|
|
{
|
|
|
|
if (!available()) {
|
|
|
|
value = 1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2000-06-12 11:27:15 +00:00
|
|
|
char * string = text->SelectNextWord(this, value);
|
2000-02-04 09:38:32 +00:00
|
|
|
|
|
|
|
return string;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::selectLastWord()
|
|
|
|
{
|
|
|
|
if (!available()) return;
|
|
|
|
|
2000-02-17 19:59:08 +00:00
|
|
|
hideCursor();
|
2000-02-04 09:38:32 +00:00
|
|
|
beforeChange();
|
2000-06-12 11:27:15 +00:00
|
|
|
text->SelectSelectedWord(this);
|
2000-02-17 19:59:08 +00:00
|
|
|
toggleSelection(false);
|
2000-06-12 11:27:15 +00:00
|
|
|
update(BufferView::SELECT|BufferView::FITCUR);
|
2000-02-04 09:38:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::endOfSpellCheck()
|
|
|
|
{
|
|
|
|
if (!available()) return;
|
|
|
|
|
2000-02-17 19:59:08 +00:00
|
|
|
hideCursor();
|
2000-02-04 09:38:32 +00:00
|
|
|
beforeChange();
|
2000-06-12 11:27:15 +00:00
|
|
|
text->SelectSelectedWord(this);
|
2000-02-04 09:38:32 +00:00
|
|
|
text->ClearSelection();
|
2000-06-12 11:27:15 +00:00
|
|
|
update(BufferView::SELECT|BufferView::FITCUR);
|
2000-02-04 09:38:32 +00:00
|
|
|
}
|
2000-02-17 19:59:08 +00:00
|
|
|
|
|
|
|
|
2000-02-04 09:38:32 +00:00
|
|
|
void BufferView::replaceWord(string const & replacestring)
|
|
|
|
{
|
2000-02-17 19:59:08 +00:00
|
|
|
if (!available()) return;
|
2000-02-04 09:38:32 +00:00
|
|
|
|
2000-02-17 19:59:08 +00:00
|
|
|
hideCursor();
|
2000-06-12 11:27:15 +00:00
|
|
|
update(BufferView::SELECT|BufferView::FITCUR);
|
2000-02-04 09:38:32 +00:00
|
|
|
|
|
|
|
/* clear the selection (if there is any) */
|
2000-02-17 19:59:08 +00:00
|
|
|
toggleSelection(false);
|
2000-06-12 11:27:15 +00:00
|
|
|
update(BufferView::SELECT|BufferView::FITCUR);
|
2000-02-04 09:38:32 +00:00
|
|
|
|
|
|
|
/* clear the selection (if there is any) */
|
2000-02-17 19:59:08 +00:00
|
|
|
toggleSelection(false);
|
2000-06-12 11:27:15 +00:00
|
|
|
text->ReplaceSelectionWithString(this, replacestring.c_str());
|
2000-02-04 09:38:32 +00:00
|
|
|
|
2000-06-12 11:27:15 +00:00
|
|
|
text->SetSelectionOverString(this, replacestring.c_str());
|
2000-02-04 09:38:32 +00:00
|
|
|
|
|
|
|
// Go back so that replacement string is also spellchecked
|
|
|
|
for (string::size_type i = 0; i < replacestring.length() + 1; ++i) {
|
2000-06-12 11:27:15 +00:00
|
|
|
text->CursorLeftIntern(this);
|
2000-02-04 09:38:32 +00:00
|
|
|
}
|
2000-06-12 11:27:15 +00:00
|
|
|
update(BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
|
2000-02-04 09:38:32 +00:00
|
|
|
}
|
|
|
|
// End of spellchecker stuff
|
|
|
|
|
|
|
|
|
2000-04-19 14:42:19 +00:00
|
|
|
bool BufferView::lockInset(UpdatableInset * inset)
|
2000-02-04 09:38:32 +00:00
|
|
|
{
|
2000-04-19 14:42:19 +00:00
|
|
|
if (!the_locking_inset && inset) {
|
2000-02-04 09:38:32 +00:00
|
|
|
the_locking_inset = inset;
|
2000-04-19 14:42:19 +00:00
|
|
|
return true;
|
|
|
|
} else if (inset) {
|
|
|
|
return the_locking_inset->LockInsetInInset(this, inset);
|
2000-02-04 09:38:32 +00:00
|
|
|
}
|
2000-04-19 14:42:19 +00:00
|
|
|
return false;
|
2000-02-04 09:38:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::showLockedInsetCursor(long x, long y, int asc, int desc)
|
|
|
|
{
|
2000-02-17 19:59:08 +00:00
|
|
|
if (the_locking_inset && available()) {
|
2000-04-19 14:42:19 +00:00
|
|
|
LyXCursor cursor = text->cursor;
|
2000-06-08 23:16:16 +00:00
|
|
|
if ((cursor.pos() - 1 >= 0) &&
|
|
|
|
(cursor.par()->GetChar(cursor.pos() - 1) ==
|
2000-04-19 14:42:19 +00:00
|
|
|
LyXParagraph::META_INSET) &&
|
2000-06-08 23:16:16 +00:00
|
|
|
(cursor.par()->GetInset(cursor.pos() - 1) ==
|
2000-04-19 14:42:19 +00:00
|
|
|
the_locking_inset->GetLockingInset()))
|
2000-06-12 11:27:15 +00:00
|
|
|
text->SetCursor(this, cursor,
|
2000-06-08 23:16:16 +00:00
|
|
|
cursor.par(), cursor.pos() - 1);
|
|
|
|
y += cursor.y() + the_locking_inset->InsetInInsetY();
|
2000-06-22 14:55:46 +00:00
|
|
|
pimpl_->screen_->ShowManualCursor(text, x, y, asc, desc,
|
|
|
|
LyXScreen::BAR_SHAPE);
|
2000-02-04 09:38:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-02-17 19:59:08 +00:00
|
|
|
void BufferView::hideLockedInsetCursor()
|
2000-02-04 09:38:32 +00:00
|
|
|
{
|
2000-02-17 19:59:08 +00:00
|
|
|
if (the_locking_inset && available()) {
|
2000-06-19 15:33:58 +00:00
|
|
|
pimpl_->screen_->HideCursor();
|
2000-02-04 09:38:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::fitLockedInsetCursor(long x, long y, int asc, int desc)
|
|
|
|
{
|
2000-02-17 19:59:08 +00:00
|
|
|
if (the_locking_inset && available()){
|
2000-06-08 23:16:16 +00:00
|
|
|
y += text->cursor.y() + the_locking_inset->InsetInInsetY();
|
2000-06-20 13:49:07 +00:00
|
|
|
if (pimpl_->screen_->FitManualCursor(text, x, y, asc, desc))
|
2000-02-04 09:38:32 +00:00
|
|
|
updateScrollbar();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int BufferView::unlockInset(UpdatableInset * inset)
|
|
|
|
{
|
|
|
|
if (inset && the_locking_inset == inset) {
|
2000-02-22 00:36:17 +00:00
|
|
|
inset->InsetUnlock(this);
|
2000-02-04 09:38:32 +00:00
|
|
|
the_locking_inset = 0;
|
|
|
|
text->FinishUndo();
|
|
|
|
return 0;
|
2000-04-10 14:29:05 +00:00
|
|
|
} else if (inset && the_locking_inset &&
|
|
|
|
the_locking_inset->UnlockInsetInInset(this, inset)) {
|
|
|
|
text->FinishUndo();
|
|
|
|
return 0;
|
2000-02-04 09:38:32 +00:00
|
|
|
}
|
|
|
|
return bufferlist.unlockInset(inset);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::lockedInsetStoreUndo(Undo::undo_kind kind)
|
|
|
|
{
|
|
|
|
if (!the_locking_inset)
|
|
|
|
return; // shouldn't happen
|
|
|
|
if (kind == Undo::EDIT) // in this case insets would not be stored!
|
|
|
|
kind = Undo::FINISH;
|
2000-06-12 11:27:15 +00:00
|
|
|
text->SetUndo(buffer(), kind,
|
2000-06-08 23:16:16 +00:00
|
|
|
text->cursor.par()->
|
|
|
|
ParFromPos(text->cursor.pos())->previous,
|
|
|
|
text->cursor.par()->
|
|
|
|
ParFromPos(text->cursor.pos())->next);
|
2000-02-04 09:38:32 +00:00
|
|
|
}
|
2000-02-23 16:39:03 +00:00
|
|
|
|
|
|
|
|
|
|
|
void BufferView::updateInset(Inset * inset, bool mark_dirty)
|
|
|
|
{
|
|
|
|
if (!inset)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// first check for locking insets
|
2000-02-25 12:06:15 +00:00
|
|
|
if (the_locking_inset) {
|
|
|
|
if (the_locking_inset == inset) {
|
2000-06-12 11:27:15 +00:00
|
|
|
if (text->UpdateInset(this, inset)){
|
2000-02-25 12:06:15 +00:00
|
|
|
update();
|
|
|
|
if (mark_dirty){
|
|
|
|
if (buffer()->isLyxClean())
|
|
|
|
owner()->getMiniBuffer()->
|
|
|
|
setTimer(4);
|
|
|
|
buffer()->markDirty();
|
|
|
|
}
|
|
|
|
updateScrollbar();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
} else if (the_locking_inset->UpdateInsetInInset(this,inset)) {
|
2000-06-12 11:27:15 +00:00
|
|
|
if (text->UpdateInset(this, the_locking_inset)) {
|
2000-02-25 12:06:15 +00:00
|
|
|
update();
|
|
|
|
if (mark_dirty){
|
|
|
|
if (buffer()->isLyxClean())
|
|
|
|
owner()->getMiniBuffer()->
|
|
|
|
setTimer(4);
|
|
|
|
buffer()->markDirty();
|
|
|
|
}
|
|
|
|
updateScrollbar();
|
|
|
|
return;
|
2000-02-23 16:39:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// then check the current buffer
|
|
|
|
if (available()) {
|
|
|
|
hideCursor();
|
2000-06-12 11:27:15 +00:00
|
|
|
update(BufferView::UPDATE);
|
|
|
|
if (text->UpdateInset(this, inset)){
|
2000-02-23 16:39:03 +00:00
|
|
|
if (mark_dirty)
|
2000-06-12 11:27:15 +00:00
|
|
|
update(BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
|
2000-02-23 16:39:03 +00:00
|
|
|
else
|
2000-06-12 11:27:15 +00:00
|
|
|
update(SELECT);
|
2000-02-23 16:39:03 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2000-05-19 16:46:01 +00:00
|
|
|
|
|
|
|
bool BufferView::ChangeRefs(string const & from, string const & to)
|
|
|
|
{
|
|
|
|
bool flag = false;
|
|
|
|
LyXParagraph * par = buffer()->paragraph;
|
|
|
|
LyXCursor cursor = text->cursor;
|
|
|
|
LyXCursor tmpcursor = cursor;
|
2000-06-08 23:16:16 +00:00
|
|
|
cursor.par(tmpcursor.par()->ParFromPos(tmpcursor.pos()));
|
|
|
|
cursor.pos(tmpcursor.par()->PositionInParFromPos(tmpcursor.pos()));
|
2000-05-19 16:46:01 +00:00
|
|
|
|
|
|
|
while (par) {
|
|
|
|
bool flag2 = false;
|
|
|
|
for (LyXParagraph::inset_iterator it = par->inset_iterator_begin();
|
|
|
|
it != par->inset_iterator_end(); ++it) {
|
|
|
|
if ((*it)->LyxCode() == Inset::REF_CODE) {
|
|
|
|
InsetCommand * inset = static_cast<InsetCommand *>(*it);
|
|
|
|
if (inset->getContents() == from) {
|
|
|
|
inset->setContents(to);
|
|
|
|
flag2 = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (flag2) {
|
|
|
|
flag = true;
|
|
|
|
if (par->footnoteflag != LyXParagraph::CLOSED_FOOTNOTE){
|
|
|
|
// this is possible now, since SetCursor takes
|
|
|
|
// care about footnotes
|
2000-06-12 11:27:15 +00:00
|
|
|
text->SetCursorIntern(this, par, 0);
|
|
|
|
text->RedoParagraphs(this, text->cursor,
|
2000-06-08 23:16:16 +00:00
|
|
|
text->cursor.par()->Next());
|
2000-06-12 11:27:15 +00:00
|
|
|
text->FullRebreak(this);
|
2000-05-19 16:46:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
par = par->next;
|
|
|
|
}
|
2000-06-12 11:27:15 +00:00
|
|
|
text->SetCursorIntern(this, cursor.par(), cursor.pos());
|
2000-05-19 16:46:01 +00:00
|
|
|
return flag;
|
|
|
|
}
|