lyx_mirror/src/BufferView2.C
Lars Gullik Bjønnes 7cb3b05491 change LyXScreen names to begin with lower case
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2179 a592a061-630c-0410-9148-cb99ea01b6c8
2001-07-04 07:19:09 +00:00

609 lines
14 KiB
C

/* This file is part of
* ======================================================
*
* LyX, The Document Processor
*
* Copyright 1995 Matthias Ettrich
* Copyright 1995-2001 The LyX Team.
*
* ====================================================== */
#include <fstream>
#include <algorithm>
#include <config.h>
#include "BufferView.h"
#include "buffer.h"
#include "lyxcursor.h"
#include "lyxtext.h"
#include "insets/inseterror.h"
#include "LyXView.h"
#include "bufferlist.h"
#include "support/FileInfo.h"
#include "lyxscreen.h"
#include "support/filetools.h"
#include "lyx_gui_misc.h"
#include "LaTeX.h"
#include "BufferView_pimpl.h"
#include "insets/insetcommand.h" //ChangeRefs
#include "support/lyxfunctional.h" //equal_1st_in_pair
#include "language.h"
#include "gettext.h"
extern BufferList bufferlist;
using std::pair;
using std::endl;
using std::ifstream;
using std::vector;
using std::find;
using std::count;
using std::count_if;
// 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()) {
WriteAlert(_("Error!"),
_("Specified file is unreadable: "),
MakeDisplayPath(fname, 50));
return false;
}
beforeChange(text);
ifstream ifs(fname.c_str());
if (!ifs) {
WriteAlert(_("Error!"),
_("Cannot open specified file: "),
MakeDisplayPath(fname, 50));
return false;
}
char const c = ifs.peek();
LyXLex lex(0, 0);
lex.setStream(ifs);
bool res = true;
if (c == '#') {
lyxerr[Debug::INFO] << "Will insert file with header" << endl;
res = buffer()->readFile(lex, text->cursor.par());
} else {
lyxerr[Debug::INFO] << "Will insert file without header"
<< endl;
res = buffer()->readLyXformat2(lex, text->cursor.par());
}
resize();
return res;
}
bool BufferView::removeAutoInsets()
{
Paragraph * par = buffer()->paragraph;
LyXCursor tmpcursor = text->cursor;
LyXCursor cursor;
bool a = false;
while (par) {
// this has to be done before the delete
text->setCursor(this, cursor, par, 0);
if (par->autoDeleteInsets()){
a = true;
text->redoParagraphs(this, cursor,
cursor.par()->next());
text->fullRebreak(this);
}
par = par->next();
}
// avoid forbidden cursor positions caused by error removing
if (tmpcursor.pos() > tmpcursor.par()->size())
tmpcursor.pos(tmpcursor.par()->size());
text->setCursorIntern(this, tmpcursor.par(), tmpcursor.pos());
return a;
}
void BufferView::insertErrors(TeXErrors & terr)
{
// Save the cursor position
LyXCursor cursor = text->cursor;
for (TeXErrors::Errors::const_iterator cit = terr.begin();
cit != terr.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) {
texrowpar = text->firstParagraph();
tmppos = 0;
} else {
texrowpar = text->getParFromID(tmpid);
}
if (texrowpar == 0)
continue;
InsetError * new_inset = new InsetError(msgtxt);
text->setCursorIntern(this, texrowpar, tmppos);
text->insertInset(this, new_inset);
text->fullRebreak(this);
}
// Restore the cursor position
text->setCursorIntern(this, cursor.par(), cursor.pos());
}
void BufferView::setCursorFromRow(int row)
{
int tmpid = -1;
int tmppos = -1;
buffer()->texrow.getIdFromRow(row, tmpid, tmppos);
Paragraph * texrowpar;
if (tmpid == -1) {
texrowpar = text->firstParagraph();
tmppos = 0;
} else {
texrowpar = text->getParFromID(tmpid);
}
text->setCursor(this, texrowpar, tmppos);
}
bool BufferView::insertInset(Inset * inset, string const & lout)
{
return pimpl_->insertInset(inset, lout);
}
/* 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)
{
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);
text->setCursor(this, it.getPar(), it.getPos());
text->selection.cursor = text->cursor;
update(text, BufferView::SELECT|BufferView::FITCUR);
return true;
}
}
return false;
}
void BufferView::menuUndo()
{
if (available()) {
owner()->message(_("Undo"));
hideCursor();
beforeChange(text);
update(text, BufferView::SELECT|BufferView::FITCUR);
if (!text->textUndo(this))
owner()->message(_("No forther undo information"));
else
update(text, BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
setState();
}
}
void BufferView::menuRedo()
{
if (theLockingInset()) {
owner()->message(_("Redo not yet supported in math mode"));
return;
}
if (available()) {
owner()->message(_("Redo"));
hideCursor();
beforeChange(text);
update(text, BufferView::SELECT|BufferView::FITCUR);
if (!text->textRedo(this))
owner()->message(_("No further redo information"));
else
update(text, BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
setState();
}
}
void BufferView::copyEnvironment()
{
if (available()) {
text->copyEnvironmentType();
// clear the selection, even if mark_set
toggleSelection();
text->clearSelection(this);
update(text, BufferView::SELECT|BufferView::FITCUR);
owner()->message(_("Paragraph environment type copied"));
}
}
void BufferView::pasteEnvironment()
{
if (available()) {
text->pasteEnvironmentType(this);
owner()->message(_("Paragraph environment type set"));
update(text, BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
}
}
void BufferView::copy()
{
if (available()) {
text->copySelection(this);
// clear the selection, even if mark_set
toggleSelection();
text->clearSelection(this);
update(text, BufferView::SELECT|BufferView::FITCUR);
owner()->message(_("Copy"));
}
}
void BufferView::cut()
{
if (available()) {
hideCursor();
update(text, BufferView::SELECT|BufferView::FITCUR);
text->cutSelection(this);
update(text, BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
owner()->message(_("Cut"));
}
}
void BufferView::paste()
{
if (!available()) return;
owner()->message(_("Paste"));
hideCursor();
// clear the selection
toggleSelection();
text->clearSelection(this);
update(text, BufferView::SELECT|BufferView::FITCUR);
// paste
text->pasteSelection(this);
update(text, BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
// clear the selection
toggleSelection();
text->clearSelection(this);
update(text, BufferView::SELECT|BufferView::FITCUR);
}
void BufferView::insertCorrectQuote()
{
char c;
if (text->cursor.pos())
c = text->cursor.par()->getChar(text->cursor.pos() - 1);
else
c = ' ';
insertInset(new InsetQuotes(c, buffer()->params));
}
/* these functions are for the spellchecker */
string const BufferView::nextWord(float & value)
{
if (!available()) {
value = 1;
return string();
}
return text->selectNextWord(this, value);
}
void BufferView::selectLastWord()
{
if (!available()) return;
hideCursor();
beforeChange(text);
text->selectSelectedWord(this);
toggleSelection(false);
update(text, BufferView::SELECT|BufferView::FITCUR);
}
void BufferView::endOfSpellCheck()
{
if (!available()) return;
hideCursor();
beforeChange(text);
text->selectSelectedWord(this);
text->clearSelection(this);
update(text, BufferView::SELECT|BufferView::FITCUR);
}
void BufferView::replaceWord(string const & replacestring)
{
if (!available()) return;
hideCursor();
update(text, BufferView::SELECT|BufferView::FITCUR);
/* clear the selection (if there is any) */
toggleSelection(false);
update(text, BufferView::SELECT|BufferView::FITCUR);
/* clear the selection (if there is any) */
toggleSelection(false);
text->replaceSelectionWithString(this, replacestring);
text->setSelectionOverString(this, replacestring);
// Go back so that replacement string is also spellchecked
for (string::size_type i = 0; i < replacestring.length() + 1; ++i) {
text->cursorLeft(this);
}
update(text, BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
}
// End of spellchecker stuff
bool BufferView::lockInset(UpdatableInset * inset)
{
if (!theLockingInset() && inset) {
theLockingInset(inset);
return true;
} else if (inset) {
return theLockingInset()->lockInsetInInset(this, inset);
}
return false;
}
void BufferView::showLockedInsetCursor(int x, int y, int asc, int desc)
{
if (theLockingInset() && available()) {
LyXCursor cursor = text->cursor;
if ((cursor.pos() - 1 >= 0) &&
(cursor.par()->getChar(cursor.pos() - 1) ==
Paragraph::META_INSET) &&
(cursor.par()->getInset(cursor.pos() - 1) ==
theLockingInset()->getLockingInset()))
text->setCursor(this, cursor,
cursor.par(), cursor.pos() - 1);
LyXScreen::Cursor_Shape shape = LyXScreen::BAR_SHAPE;
LyXText * txt = getLyXText();
if (theLockingInset()->getLockingInset()->lyxCode() ==
Inset::TEXT_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.y() + theLockingInset()->insetInInsetY();
pimpl_->screen_->showManualCursor(text, x, y, asc, desc,
shape);
}
}
void BufferView::hideLockedInsetCursor()
{
if (theLockingInset() && available()) {
pimpl_->screen_->hideCursor();
}
}
void BufferView::fitLockedInsetCursor(int x, int y, int asc, int desc)
{
if (theLockingInset() && available()) {
y += text->cursor.y() + theLockingInset()->insetInInsetY();
if (pimpl_->screen_->fitManualCursor(text, this, x, y, asc, desc))
updateScrollbar();
}
}
int BufferView::unlockInset(UpdatableInset * inset)
{
if (inset && theLockingInset() == inset) {
inset->insetUnlock(this);
theLockingInset(0);
text->finishUndo();
return 0;
} else if (inset && theLockingInset() &&
theLockingInset()->unlockInsetInInset(this, inset)) {
text->finishUndo();
return 0;
}
return bufferlist.unlockInset(inset);
}
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;
text->setUndo(buffer(), kind,
text->cursor.par()->previous(),
text->cursor.par()->next());
}
void BufferView::updateInset(Inset * inset, bool mark_dirty)
{
pimpl_->updateInset(inset, mark_dirty);
}
bool BufferView::ChangeInsets(Inset::Code code,
string const & from, string const & to)
{
bool flag = false;
Paragraph * par = buffer()->paragraph;
LyXCursor cursor = text->cursor;
LyXCursor tmpcursor = cursor;
cursor.par(tmpcursor.par());
cursor.pos(tmpcursor.pos());
while (par) {
bool flag2 = false;
for (Paragraph::inset_iterator it = par->inset_iterator_begin();
it != par->inset_iterator_end(); ++it) {
if ((*it)->lyxCode() == code) {
InsetCommand * inset = static_cast<InsetCommand *>(*it);
if (inset->getContents() == from) {
inset->setContents(to);
flag2 = true;
}
}
}
if (flag2) {
flag = true;
// this is possible now, since SetCursor takes
// care about footnotes
text->setCursorIntern(this, par, 0);
text->redoParagraphs(this, text->cursor,
text->cursor.par()->next());
text->fullRebreak(this);
}
par = par->next();
}
text->setCursorIntern(this, cursor.par(), cursor.pos());
return flag;
}
bool BufferView::ChangeRefsIfUnique(string const & from, string const & to)
{
// Check if the label 'from' appears more than once
vector<string> labels = buffer()->getLabelList();
if (count(labels.begin(), labels.end(), from) > 1)
return false;
return ChangeInsets(Inset::REF_CODE, from, to);
}
bool BufferView::ChangeCitationsIfUnique(string const & from, string const & to)
{
vector<pair<string,string> > keys = buffer()->getBibkeyList();
if (count_if(keys.begin(), keys.end(),
lyx::equal_1st_in_pair<string,string>(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();
}