/* This file is part of * ====================================================== * * LyX, The Document Processor * * Copyright 1995 Matthias Ettrich * Copyright 1995-2000 The LyX Team. * * ====================================================== */ #include #include FORMS_H_LOCATION #ifdef __GNUG__ #pragma implementation "lyxtext.h" #endif #include "lyxtext.h" #include "LString.h" #include "lyxparagraph.h" #include "insets/inseterror.h" #include "insets/insetbib.h" #include "insets/insetspecialchar.h" #include "insets/insettext.h" #include "insets/insetfloat.h" #include "layout.h" #include "LyXView.h" #include "support/textutils.h" #include "undo.h" #include "buffer.h" #include "bufferparams.h" #include "lyx_gui_misc.h" #include "gettext.h" #include "BufferView.h" #include "LyXView.h" #include "CutAndPaste.h" #include "Painter.h" #include "font.h" #include "debug.h" #include "lyxrc.h" #include "FloatList.h" #include "language.h" using std::copy; using std::find; using std::endl; using std::find; using std::pair; LyXText::LyXText(BufferView * bv) { bv_owner = bv; inset_owner = 0; init(); } LyXText::LyXText(InsetText * inset) { inset_owner = inset; bv_owner = 0; init(); } void LyXText::init() { the_locking_inset = 0; firstrow = 0; lastrow = 0; number_of_rows = 0; refresh_y = 0; height = 0; width = 0; first = 0; status = LyXText::UNCHANGED; // set cursor at the very top position selection = true; /* these setting is necessary because of the delete-empty- paragraph mechanism in SetCursor */ if (bv_owner) { LyXParagraph * par = OwnerParagraph(); current_font = GetFont(bv_owner->buffer(), par, 0); while (par) { InsertParagraph(bv_owner, par, lastrow); par = par->next(); } SetCursor(bv_owner, firstrow->par(), 0); } else current_font = LyXFont(LyXFont::ALL_SANE); sel_cursor = cursor; selection = false; mark_set = false; // no rebreak necessary need_break_row = 0; undo_finished = true; undo_frozen = false; // Default layouttype for copy environment type copylayouttype = 0; #if 0 // Dump all rowinformation: Row * tmprow = firstrow; lyxerr << "Baseline Paragraph Pos Height Ascent Fill\n"; while (tmprow) { lyxerr << tmprow->baseline() << '\t' << tmprow->par << '\t' << tmprow->pos() << '\t' << tmprow->height << '\t' << tmprow->ascent_of_text << '\t' << tmprow->fill << '\n'; tmprow = tmprow->next(); } lyxerr.flush(); #endif } void LyXText::init(BufferView * bview) { if (firstrow) return; LyXParagraph * par = OwnerParagraph(); current_font = GetFont(bview->buffer(), par, 0); while (par) { InsertParagraph(bview, par, lastrow); par = par->next(); } SetCursorIntern(bview, firstrow->par(), 0); sel_cursor = cursor; #if 0 // Dump all rowinformation: Row * tmprow = firstrow; lyxerr << "Width = " << width << endl; lyxerr << "Baseline Paragraph Pos Height Ascent Fill\n"; while (tmprow) { lyxerr << tmprow->baseline() << '\t' << tmprow->par() << '\t' << tmprow->pos() << '\t' << tmprow->height() << '\t' << tmprow->ascent_of_text() << '\t' << tmprow->fill() << '\n'; tmprow = tmprow->next(); } lyxerr.flush(); #endif } LyXText::~LyXText() { // Delete all rows, this does not touch the paragraphs! Row * tmprow = firstrow; while (firstrow) { tmprow = firstrow->next(); delete firstrow; firstrow = tmprow; } } // Gets the fully instantiated font at a given position in a paragraph // Basically the same routine as LyXParagraph::getFont() in paragraph.C. // The difference is that this one is used for displaying, and thus we // are allowed to make cosmetic improvements. For instance make footnotes // smaller. (Asger) // If position is -1, we get the layout font of the paragraph. // If position is -2, we get the font of the manual label of the paragraph. LyXFont const LyXText::GetFont(Buffer const * buf, LyXParagraph * par, LyXParagraph::size_type pos) const { LyXLayout const & layout = textclasslist.Style(buf->params.textclass, par->GetLayout()); char par_depth = par->GetDepth(); // We specialize the 95% common case: if (!par_depth) { if (pos >= 0){ // 95% goes here if (layout.labeltype == LABEL_MANUAL && pos < BeginningOfMainBody(buf, par)) { // 1% goes here LyXFont f = par->GetFontSettings(buf->params, pos); return f.realize(layout.reslabelfont); } else { LyXFont f = par->GetFontSettings(buf->params, pos); return f.realize(layout.resfont); } } else { // 5% goes here. // process layoutfont for pos == -1 and labelfont for pos < -1 if (pos == -1) return layout.resfont; else return layout.reslabelfont; } } // The uncommon case need not be optimized as much LyXFont layoutfont, tmpfont; if (pos >= 0){ // 95% goes here if (pos < BeginningOfMainBody(buf, par)) { // 1% goes here layoutfont = layout.labelfont; } else { // 99% goes here layoutfont = layout.font; } tmpfont = par->GetFontSettings(buf->params, pos); tmpfont.realize(layoutfont); } else { // 5% goes here. // process layoutfont for pos == -1 and labelfont for pos < -1 if (pos == -1) tmpfont = layout.font; else tmpfont = layout.labelfont; } // Resolve against environment font information while (par && par_depth && !tmpfont.resolved()) { par = par->DepthHook(par_depth - 1); if (par) { tmpfont.realize(textclasslist. Style(buf->params.textclass, par->GetLayout()).font); par_depth = par->GetDepth(); } } tmpfont.realize(textclasslist.TextClass(buf->params.textclass).defaultfont()); return tmpfont; } void LyXText::SetCharFont(Buffer const * buf, LyXParagraph * par, LyXParagraph::size_type pos, LyXFont const & fnt) { LyXFont font(fnt); // Let the insets convert their font if (par->GetChar(pos) == LyXParagraph::META_INSET) { if (par->GetInset(pos)) font = par->GetInset(pos)->ConvertFont(font); } LyXLayout const & layout = textclasslist.Style(buf->params.textclass, par->GetLayout()); // Get concrete layout font to reduce against LyXFont layoutfont; if (pos < BeginningOfMainBody(buf, par)) layoutfont = layout.labelfont; else layoutfont = layout.font; // Realize against environment font information if (par->GetDepth()){ LyXParagraph * tp = par; while (!layoutfont.resolved() && tp && tp->GetDepth()) { tp = tp->DepthHook(tp->GetDepth()-1); if (tp) layoutfont.realize(textclasslist. Style(buf->params.textclass, tp->GetLayout()).font); } } layoutfont.realize(textclasslist.TextClass(buf->params.textclass).defaultfont()); // Now, reduce font against full layout font font.reduce(layoutfont); par->SetFont(pos, font); } /* inserts a new row behind the specified row, increments * the touched counters */ void LyXText::InsertRow(Row * row, LyXParagraph * par, LyXParagraph::size_type pos) const { Row * tmprow = new Row; if (!row) { tmprow->previous(0); tmprow->next(firstrow); firstrow = tmprow; } else { tmprow->previous(row); tmprow->next(row->next()); row->next(tmprow); } if (tmprow->next()) tmprow->next()->previous(tmprow); if (tmprow->previous()) tmprow->previous()->next(tmprow); tmprow->par(par); tmprow->pos(pos); if (row == lastrow) lastrow = tmprow; ++number_of_rows; // one more row } // removes the row and reset the touched counters void LyXText::RemoveRow(Row * row) const { /* this must not happen before the currentrow for clear reasons. so the trick is just to set the current row onto the previous row of this row */ int unused_y; GetRow(row->par(), row->pos(), unused_y); if (row->next()) row->next()->previous(row->previous()); if (!row->previous()) { firstrow = row->next(); } else { row->previous()->next(row->next()); } if (row == lastrow) lastrow = row->previous(); height -= row->height(); // the text becomes smaller delete row; --number_of_rows; // one row less } // remove all following rows of the paragraph of the specified row. void LyXText::RemoveParagraph(Row * row) const { LyXParagraph * tmppar = row->par(); row = row->next(); Row * tmprow; while (row && row->par() == tmppar) { tmprow = row->next(); RemoveRow(row); row = tmprow; } } // insert the specified paragraph behind the specified row void LyXText::InsertParagraph(BufferView * bview, LyXParagraph * par, Row * row) const { InsertRow(row, par, 0); /* insert a new row, starting * at postition 0 */ SetCounter(bview->buffer(), par); // set the counters // and now append the whole paragraph behind the new row if (!row) { firstrow->height(0); AppendParagraph(bview, firstrow); } else { row->next()->height(0); AppendParagraph(bview, row->next()); } } /* used in setlayout */ // Asger is not sure we want to do this... void LyXText::MakeFontEntriesLayoutSpecific(Buffer const * buf, LyXParagraph * par) { LyXLayout const & layout = textclasslist.Style(buf->params.textclass, par->GetLayout()); LyXFont layoutfont, tmpfont; for (LyXParagraph::size_type pos = 0; pos < par->size(); ++pos) { if (pos < BeginningOfMainBody(buf, par)) layoutfont = layout.labelfont; else layoutfont = layout.font; tmpfont = par->GetFontSettings(buf->params, pos); tmpfont.reduce(layoutfont); par->SetFont(pos, tmpfont); } } LyXParagraph * LyXText::SetLayout(BufferView * bview, LyXCursor & cur, LyXCursor & sstart_cur, LyXCursor & send_cur, LyXTextClass::size_type layout) { LyXParagraph * endpar = send_cur.par()->next(); LyXParagraph * undoendpar = endpar; if (endpar && endpar->GetDepth()) { while (endpar && endpar->GetDepth()) { endpar = endpar->next(); undoendpar = endpar; } } else if (endpar) { endpar = endpar->next(); // because of parindents etc. } SetUndo(bview->buffer(), Undo::EDIT, sstart_cur.par()->previous(), undoendpar); /* ok we have a selection. This is always between sstart_cur * and sel_end cursor */ cur = sstart_cur; LyXLayout const & lyxlayout = textclasslist.Style(bview->buffer()->params.textclass, layout); while (cur.par() != send_cur.par()) { cur.par()->SetLayout(layout); MakeFontEntriesLayoutSpecific(bview->buffer(), cur.par()); LyXParagraph * fppar = cur.par(); fppar->params.spaceTop(lyxlayout.fill_top ? VSpace(VSpace::VFILL) : VSpace(VSpace::NONE)); fppar->params.spaceBottom(lyxlayout.fill_bottom ? VSpace(VSpace::VFILL) : VSpace(VSpace::NONE)); if (lyxlayout.margintype == MARGIN_MANUAL) cur.par()->SetLabelWidthString(lyxlayout.labelstring()); if (lyxlayout.labeltype != LABEL_BIBLIO && fppar->bibkey) { delete fppar->bibkey; fppar->bibkey = 0; } cur.par(cur.par()->next()); } cur.par()->SetLayout(layout); MakeFontEntriesLayoutSpecific(bview->buffer(), cur.par()); LyXParagraph * fppar = cur.par(); fppar->params.spaceTop(lyxlayout.fill_top ? VSpace(VSpace::VFILL) : VSpace(VSpace::NONE)); fppar->params.spaceBottom(lyxlayout.fill_bottom ? VSpace(VSpace::VFILL) : VSpace(VSpace::NONE)); if (lyxlayout.margintype == MARGIN_MANUAL) cur.par()->SetLabelWidthString(lyxlayout.labelstring()); if (lyxlayout.labeltype != LABEL_BIBLIO && fppar->bibkey) { delete fppar->bibkey; fppar->bibkey = 0; } return endpar; } // set layout over selection and make a total rebreak of those paragraphs void LyXText::SetLayout(BufferView * bview, LyXTextClass::size_type layout) { LyXCursor tmpcursor = cursor; /* store the current cursor */ // if there is no selection just set the layout // of the current paragraph */ if (!selection) { sel_start_cursor = cursor; // dummy selection sel_end_cursor = cursor; } LyXParagraph * endpar = SetLayout(bview, cursor, sel_start_cursor, sel_end_cursor, layout); RedoParagraphs(bview, sel_start_cursor, endpar); // we have to reset the selection, because the // geometry could have changed SetCursor(bview, sel_start_cursor.par(), sel_start_cursor.pos(), false); sel_cursor = cursor; SetCursor(bview, sel_end_cursor.par(), sel_end_cursor.pos(), false); UpdateCounters(bview, cursor.row()); ClearSelection(bview); SetSelection(bview); SetCursor(bview, tmpcursor.par(), tmpcursor.pos(), true); } // increment depth over selection and // make a total rebreak of those paragraphs void LyXText::IncDepth(BufferView * bview) { // If there is no selection, just use the current paragraph if (!selection) { sel_start_cursor = cursor; // dummy selection sel_end_cursor = cursor; } // We end at the next paragraph with depth 0 LyXParagraph * endpar = sel_end_cursor.par()->next(); LyXParagraph * undoendpar = endpar; if (endpar && endpar->GetDepth()) { while (endpar && endpar->GetDepth()) { endpar = endpar->next(); undoendpar = endpar; } } else if (endpar) { endpar = endpar->next(); // because of parindents etc. } SetUndo(bview->buffer(), Undo::EDIT, sel_start_cursor.par()->previous(), undoendpar); LyXCursor tmpcursor = cursor; // store the current cursor // ok we have a selection. This is always between sel_start_cursor // and sel_end cursor cursor = sel_start_cursor; bool anything_changed = false; while (true) { // NOTE: you can't change the depth of a bibliography entry if ( textclasslist.Style(bview->buffer()->params.textclass, cursor.par()->GetLayout() ).labeltype != LABEL_BIBLIO) { LyXParagraph * prev = cursor.par()->previous(); if (prev && (prev->GetDepth() - cursor.par()->GetDepth() > 0 || (prev->GetDepth() == cursor.par()->GetDepth() && textclasslist.Style(bview->buffer()->params.textclass, prev->GetLayout()).isEnvironment()))) { cursor.par()->params.depth(cursor.par()->params.depth() + 1); anything_changed = true; } } if (cursor.par() == sel_end_cursor.par()) break; cursor.par(cursor.par()->next()); } // if nothing changed set all depth to 0 if (!anything_changed) { cursor = sel_start_cursor; while (cursor.par() != sel_end_cursor.par()) { cursor.par()->params.depth(0); cursor.par(cursor.par()->next()); } cursor.par()->params.depth(0); } RedoParagraphs(bview, sel_start_cursor, endpar); // we have to reset the selection, because the // geometry could have changed SetCursor(bview, sel_start_cursor.par(), sel_start_cursor.pos()); sel_cursor = cursor; SetCursor(bview, sel_end_cursor.par(), sel_end_cursor.pos()); UpdateCounters(bview, cursor.row()); ClearSelection(bview); SetSelection(bview); SetCursor(bview, tmpcursor.par(), tmpcursor.pos()); } // decrement depth over selection and // make a total rebreak of those paragraphs void LyXText::DecDepth(BufferView * bview) { // if there is no selection just set the layout // of the current paragraph if (!selection) { sel_start_cursor = cursor; // dummy selection sel_end_cursor = cursor; } LyXParagraph * endpar = sel_end_cursor.par()->next(); LyXParagraph * undoendpar = endpar; if (endpar && endpar->GetDepth()) { while (endpar && endpar->GetDepth()) { endpar = endpar->next(); undoendpar = endpar; } } else if (endpar) { endpar = endpar->next(); // because of parindents etc. } SetUndo(bview->buffer(), Undo::EDIT, sel_start_cursor.par()->previous(), undoendpar); LyXCursor tmpcursor = cursor; // store the current cursor // ok we have a selection. This is always between sel_start_cursor // and sel_end cursor cursor = sel_start_cursor; while (true) { if (cursor.par()->params.depth()) cursor.par()->params.depth(cursor.par()->params.depth() - 1); if (cursor.par() == sel_end_cursor.par()) break; cursor.par(cursor.par()->next()); } RedoParagraphs(bview, sel_start_cursor, endpar); // we have to reset the selection, because the // geometry could have changed SetCursor(bview, sel_start_cursor.par(), sel_start_cursor.pos()); sel_cursor = cursor; SetCursor(bview, sel_end_cursor.par(), sel_end_cursor.pos()); UpdateCounters(bview, cursor.row()); ClearSelection(bview); SetSelection(bview); SetCursor(bview, tmpcursor.par(), tmpcursor.pos()); } // set font over selection and make a total rebreak of those paragraphs void LyXText::SetFont(BufferView * bview, LyXFont const & font, bool toggleall) { // if there is no selection just set the current_font if (!selection) { // Determine basis font LyXFont layoutfont; if (cursor.pos() < BeginningOfMainBody(bview->buffer(), cursor.par())) layoutfont = GetFont(bview->buffer(), cursor.par(),-2); else layoutfont = GetFont(bview->buffer(), cursor.par(),-1); // Update current font real_current_font.update(font, bview->buffer()->params.language, toggleall); // Reduce to implicit settings current_font = real_current_font; current_font.reduce(layoutfont); // And resolve it completely real_current_font.realize(layoutfont); return; } LyXCursor tmpcursor = cursor; // store the current cursor // ok we have a selection. This is always between sel_start_cursor // and sel_end cursor SetUndo(bview->buffer(), Undo::EDIT, sel_start_cursor.par()->previous(), sel_end_cursor.par()->next()); cursor = sel_start_cursor; while (cursor.par() != sel_end_cursor.par() || (cursor.pos() < sel_end_cursor.pos())) { if (cursor.pos() < cursor.par()->size()) { // an open footnote should behave // like a closed one LyXFont newfont = GetFont(bview->buffer(), cursor.par(), cursor.pos()); newfont.update(font, bview->buffer()->params.language, toggleall); SetCharFont(bview->buffer(), cursor.par(), cursor.pos(), newfont); cursor.pos(cursor.pos() + 1); } else { cursor.pos(0); cursor.par(cursor.par()->next()); } } RedoParagraphs(bview, sel_start_cursor, sel_end_cursor.par()->next()); // we have to reset the selection, because the // geometry could have changed SetCursor(bview, sel_start_cursor.par(), sel_start_cursor.pos()); sel_cursor = cursor; SetCursor(bview, sel_end_cursor.par(), sel_end_cursor.pos()); ClearSelection(bview); SetSelection(bview); SetCursor(bview, tmpcursor.par(), tmpcursor.pos(), true, tmpcursor.boundary()); } void LyXText::RedoHeightOfParagraph(BufferView * bview, LyXCursor const & cur) { Row * tmprow = cur.row(); int y = cur.y() - tmprow->baseline(); SetHeightOfRow(bview, tmprow); LyXParagraph * first_phys_par = tmprow->par(); // find the first row of the paragraph if (first_phys_par != tmprow->par()) while (tmprow->previous() && tmprow->previous()->par() != first_phys_par) { tmprow = tmprow->previous(); y -= tmprow->height(); SetHeightOfRow(bview, tmprow); } while (tmprow->previous() && tmprow->previous()->par() == first_phys_par) { tmprow = tmprow->previous(); y -= tmprow->height(); SetHeightOfRow(bview, tmprow); } // we can set the refreshing parameters now status = LyXText::NEED_MORE_REFRESH; refresh_y = y; refresh_row = tmprow; SetCursor(bview, cur.par(), cur.pos(), false, cursor.boundary()); } void LyXText::RedoDrawingOfParagraph(BufferView * bview, LyXCursor const & cur) { Row * tmprow = cur.row(); int y = cur.y() - tmprow->baseline(); SetHeightOfRow(bview, tmprow); LyXParagraph * first_phys_par = tmprow->par(); // find the first row of the paragraph if (first_phys_par != tmprow->par()) while (tmprow->previous() && tmprow->previous()->par() != first_phys_par) { tmprow = tmprow->previous(); y -= tmprow->height(); } while (tmprow->previous() && tmprow->previous()->par() == first_phys_par) { tmprow = tmprow->previous(); y -= tmprow->height(); } // we can set the refreshing parameters now if (status == LyXText::UNCHANGED || y < refresh_y) { refresh_y = y; refresh_row = tmprow; } status = LyXText::NEED_MORE_REFRESH; SetCursor(bview, cur.par(), cur.pos()); } /* deletes and inserts again all paragaphs between the cursor * and the specified par * This function is needed after SetLayout and SetFont etc. */ void LyXText::RedoParagraphs(BufferView * bview, LyXCursor const & cur, LyXParagraph const * endpar) const { Row * tmprow2; LyXParagraph * tmppar = 0, * first_phys_par = 0; Row * tmprow = cur.row(); int y = cur.y() - tmprow->baseline(); if (!tmprow->previous()){ first_phys_par = FirstParagraph(); // a trick/hack for UNDO } else { first_phys_par = tmprow->par(); // find the first row of the paragraph if (first_phys_par != tmprow->par()) while (tmprow->previous() && (tmprow->previous()->par() != first_phys_par)) { tmprow = tmprow->previous(); y -= tmprow->height(); } while (tmprow->previous() && tmprow->previous()->par() == first_phys_par) { tmprow = tmprow->previous(); y -= tmprow->height(); } } // we can set the refreshing parameters now status = LyXText::NEED_MORE_REFRESH; refresh_y = y; refresh_row = tmprow->previous(); /* the real refresh row will be deleted, so I store the previous here */ // remove it if (tmprow->next()) tmppar = tmprow->next()->par(); else tmppar = 0; while (tmppar != endpar) { RemoveRow(tmprow->next()); if (tmprow->next()) tmppar = tmprow->next()->par(); else tmppar = 0; } // remove the first one tmprow2 = tmprow; /* this is because tmprow->previous() can be 0 */ tmprow = tmprow->previous(); RemoveRow(tmprow2); tmppar = first_phys_par; do { if (tmppar) { InsertParagraph(bview, tmppar, tmprow); if (!tmprow) tmprow = firstrow; while (tmprow->next() && tmprow->next()->par() == tmppar) tmprow = tmprow->next(); tmppar = tmppar->next(); } } while (tmppar != endpar); // this is because of layout changes if (refresh_row) { refresh_y -= refresh_row->height(); SetHeightOfRow(bview, refresh_row); } else { refresh_row = firstrow; refresh_y = 0; SetHeightOfRow(bview, refresh_row); } if (tmprow && tmprow->next()) SetHeightOfRow(bview, tmprow->next()); } bool LyXText::FullRebreak(BufferView * bview) { if (!firstrow) { init(bview); return true; } if (need_break_row) { BreakAgain(bview, need_break_row); need_break_row = 0; return true; } return false; } /* important for the screen */ /* the cursor set functions have a special mechanism. When they * realize, that you left an empty paragraph, they will delete it. * They also delete the corresponding row */ // need the selection cursor: void LyXText::SetSelection(BufferView * bview) { const bool lsel = selection; if (!selection) { last_sel_cursor = sel_cursor; sel_start_cursor = sel_cursor; sel_end_cursor = sel_cursor; } selection = true; // first the toggling area if (cursor.y() < last_sel_cursor.y() || (cursor.y() == last_sel_cursor.y() && cursor.x() < last_sel_cursor.x())) { toggle_end_cursor = last_sel_cursor; toggle_cursor = cursor; } else { toggle_end_cursor = cursor; toggle_cursor = last_sel_cursor; } last_sel_cursor = cursor; // and now the whole selection if (sel_cursor.par() == cursor.par()) if (sel_cursor.pos() < cursor.pos()) { sel_end_cursor = cursor; sel_start_cursor = sel_cursor; } else { sel_end_cursor = sel_cursor; sel_start_cursor = cursor; } else if (sel_cursor.y() < cursor.y() || (sel_cursor.y() == cursor.y() && sel_cursor.x() < cursor.x())) { sel_end_cursor = cursor; sel_start_cursor = sel_cursor; } else { sel_end_cursor = sel_cursor; sel_start_cursor = cursor; } // a selection with no contents is not a selection if (sel_start_cursor.par() == sel_end_cursor.par() && sel_start_cursor.pos() == sel_end_cursor.pos()) selection = false; if (inset_owner && (selection || lsel)) inset_owner->SetUpdateStatus(bview, InsetText::SELECTION); } string const LyXText::selectionAsString(Buffer const * buffer) const { if (!selection) return string(); string result; // Special handling if the whole selection is within one paragraph if (sel_start_cursor.par() == sel_end_cursor.par()) { result += sel_start_cursor.par()->String(buffer, sel_start_cursor.pos(), sel_end_cursor.pos()); return result; } // The selection spans more than one paragraph // First paragraph in selection result += sel_start_cursor.par()->String(buffer, sel_start_cursor.pos(), sel_start_cursor.par()->size()) + "\n\n"; // The paragraphs in between (if any) LyXCursor tmpcur(sel_start_cursor); tmpcur.par(tmpcur.par()->next()); while (tmpcur.par() != sel_end_cursor.par()) { result += tmpcur.par()->String(buffer, 0, tmpcur.par()->size()) + "\n\n"; tmpcur.par(tmpcur.par()->next()); // Or NextAfterFootnote?? } // Last paragraph in selection result += sel_end_cursor.par()->String(buffer, 0, sel_end_cursor.pos()); return result; } void LyXText::ClearSelection(BufferView * /*bview*/) const { selection = false; mark_set = false; } void LyXText::CursorHome(BufferView * bview) const { SetCursor(bview, cursor.par(), cursor.row()->pos()); } void LyXText::CursorEnd(BufferView * bview) const { if (!cursor.row()->next() || cursor.row()->next()->par() != cursor.row()->par()) SetCursor(bview, cursor.par(), RowLast(cursor.row()) + 1); else { if (cursor.par()->size() && (cursor.par()->GetChar(RowLast(cursor.row())) == ' ' || cursor.par()->IsNewline(RowLast(cursor.row())))) SetCursor(bview, cursor.par(), RowLast(cursor.row())); else SetCursor(bview,cursor.par(), RowLast(cursor.row()) + 1); } } void LyXText::CursorTop(BufferView * bview) const { while (cursor.par()->previous()) cursor.par(cursor.par()->previous()); SetCursor(bview, cursor.par(), 0); } void LyXText::CursorBottom(BufferView * bview) const { while (cursor.par()->next()) cursor.par(cursor.par()->next()); SetCursor(bview, cursor.par(), cursor.par()->size()); } void LyXText::ToggleFree(BufferView * bview, LyXFont const & font, bool toggleall) { // If the mask is completely neutral, tell user if (font == LyXFont(LyXFont::ALL_IGNORE)) { // Could only happen with user style bview->owner()->message(_("No font change defined. Use Character under the Layout menu to define font change.")); return; } // Try implicit word selection // If there is a change in the language the implicit word selection // is disabled. LyXCursor resetCursor = cursor; bool implicitSelection = (font.language() == ignore_language && font.number() == LyXFont::IGNORE) ? SelectWordWhenUnderCursor(bview) : false; // Set font SetFont(bview, font, toggleall); /* Implicit selections are cleared afterwards and cursor is set to the original position. */ if (implicitSelection) { ClearSelection(bview); cursor = resetCursor; SetCursor(bview, cursor.par(), cursor.pos()); sel_cursor = cursor; } if (inset_owner) inset_owner->SetUpdateStatus(bview, InsetText::CURSOR_PAR); } LyXParagraph::size_type LyXText::BeginningOfMainBody(Buffer const * buf, LyXParagraph const * par) const { if (textclasslist.Style(buf->params.textclass, par->GetLayout()).labeltype != LABEL_MANUAL) return 0; else return par->BeginningOfMainBody(); } /* the DTP switches for paragraphs. LyX will store them in the * first physicla paragraph. When a paragraph is broken, the top settings * rest, the bottom settings are given to the new one. So I can make shure, * they do not duplicate themself and you cannnot make dirty things with * them! */ void LyXText::SetParagraph(BufferView * bview, bool line_top, bool line_bottom, bool pagebreak_top, bool pagebreak_bottom, VSpace const & space_top, VSpace const & space_bottom, LyXAlignment align, string labelwidthstring, bool noindent) { LyXCursor tmpcursor = cursor; if (!selection) { sel_start_cursor = cursor; sel_end_cursor = cursor; } // make sure that the depth behind the selection are restored, too LyXParagraph * endpar = sel_end_cursor.par()->next(); LyXParagraph * undoendpar = endpar; if (endpar && endpar->GetDepth()) { while (endpar && endpar->GetDepth()) { endpar = endpar->next(); undoendpar = endpar; } } else if (endpar) { endpar = endpar->next(); // because of parindents etc. } SetUndo(bview->buffer(), Undo::EDIT, sel_start_cursor.par()->previous(), undoendpar); LyXParagraph * tmppar = sel_end_cursor.par(); while (tmppar != sel_start_cursor.par()->previous()) { SetCursor(bview, tmppar, 0); status = LyXText::NEED_MORE_REFRESH; refresh_row = cursor.row(); refresh_y = cursor.y() - cursor.row()->baseline(); cursor.par()->params.lineTop(line_top); cursor.par()->params.lineBottom(line_bottom); cursor.par()->params.pagebreakTop(pagebreak_top); cursor.par()->params.pagebreakBottom(pagebreak_bottom); cursor.par()->params.spaceTop(space_top); cursor.par()->params.spaceBottom(space_bottom); // does the layout allow the new alignment? if (align == LYX_ALIGN_LAYOUT) align = textclasslist .Style(bview->buffer()->params.textclass, cursor.par()->GetLayout()).align; if (align & textclasslist .Style(bview->buffer()->params.textclass, cursor.par()->GetLayout()).alignpossible) { if (align == textclasslist .Style(bview->buffer()->params.textclass, cursor.par()->GetLayout()).align) cursor.par()->params.align(LYX_ALIGN_LAYOUT); else cursor.par()->params.align(align); } cursor.par()->SetLabelWidthString(labelwidthstring); cursor.par()->params.noindent(noindent); tmppar = cursor.par()->previous(); } RedoParagraphs(bview, sel_start_cursor, endpar); ClearSelection(bview); SetCursor(bview, sel_start_cursor.par(), sel_start_cursor.pos()); sel_cursor = cursor; SetCursor(bview, sel_end_cursor.par(), sel_end_cursor.pos()); SetSelection(bview); SetCursor(bview, tmpcursor.par(), tmpcursor.pos()); if (inset_owner) bview->updateInset(inset_owner, true); } char loweralphaCounter(int n) { if (n < 1 || n > 26) return '?'; else return 'a' + n - 1; } namespace { inline char alphaCounter(int n) { if (n < 1 || n > 26) return '?'; else return 'A' + n - 1; } inline char hebrewCounter(int n) { static const char hebrew[22] = { 'à', 'á', 'â', 'ã', 'ä', 'å', 'æ', 'ç', 'è', 'é', 'ë', 'ì', 'î', 'ð', 'ñ', 'ò', 'ô', 'ö', '÷', 'ø', 'ù', 'ú' }; if (n < 1 || n > 22) return '?'; else return hebrew[n-1]; } inline string const romanCounter(int n) { static char const * roman[20] = { "i", "ii", "iii", "iv", "v", "vi", "vii", "viii", "ix", "x", "xi", "xii", "xiii", "xiv", "xv", "xvi", "xvii", "xviii", "xix", "xx" }; if (n < 1 || n > 20) return "??"; else return roman[n-1]; } } // namespace anon // set the counter of a paragraph. This includes the labels void LyXText::SetCounter(Buffer const * buf, LyXParagraph * par) const { LyXLayout const & layout = textclasslist.Style(buf->params.textclass, par->GetLayout()); LyXTextClass const & textclass = textclasslist.TextClass(buf->params.textclass); /* copy the prev-counters to this one, unless this is the start of a footnote or of a bibliography or the very first paragraph */ if (par->previous() && !(textclasslist.Style(buf->params.textclass, par->previous()->GetLayout() ).labeltype != LABEL_BIBLIO && layout.labeltype == LABEL_BIBLIO)) { for (int i = 0; i < 10; ++i) { par->setCounter(i, par->previous()->GetFirstCounter(i)); } par->params.appendix(par->previous()->params.appendix()); if (!par->params.appendix() && par->params.startOfAppendix()) { par->params.appendix(true); for (int i = 0; i < 10; ++i) { par->setCounter(i, 0); } } par->enumdepth = par->previous()->enumdepth; par->itemdepth = par->previous()->itemdepth; } else { for (int i = 0; i < 10; ++i) { par->setCounter(i, 0); } par->params.appendix(par->params.startOfAppendix()); par->enumdepth = 0; par->itemdepth = 0; } /* Maybe we have to increment the enumeration depth. * BUT, enumeration in a footnote is considered in isolation from its * surrounding paragraph so don't increment if this is the * first line of the footnote * AND, bibliographies can't have their depth changed ie. they * are always of depth 0 */ if (par->previous() && par->previous()->GetDepth() < par->GetDepth() && textclasslist.Style(buf->params.textclass, par->previous()->GetLayout() ).labeltype == LABEL_COUNTER_ENUMI && par->enumdepth < 3 && layout.labeltype != LABEL_BIBLIO) { par->enumdepth++; } /* Maybe we have to decrement the enumeration depth, see note above */ if (par->previous() && par->previous()->GetDepth() > par->GetDepth() && layout.labeltype != LABEL_BIBLIO) { par->enumdepth = par->DepthHook(par->GetDepth())->enumdepth; par->setCounter(6 + par->enumdepth, par->DepthHook(par->GetDepth())->getCounter(6 + par->enumdepth)); /* reset the counters. * A depth change is like a breaking layout */ for (int i = 6 + par->enumdepth + 1; i < 10; ++i) par->setCounter(i, 0); } if (!par->params.labelString().empty()) { par->params.labelString(string()); } if (layout.margintype == MARGIN_MANUAL) { if (par->params.labelWidthString().empty()) { par->SetLabelWidthString(layout.labelstring()); } } else { par->SetLabelWidthString(string()); } /* is it a layout that has an automatic label ? */ if (layout.labeltype >= LABEL_COUNTER_CHAPTER) { int i = layout.labeltype - LABEL_COUNTER_CHAPTER; if (i >= 0 && i<= buf->params.secnumdepth) { par->incCounter(i); // increment the counter // Is there a label? Useful for Chapter layout if (!par->params.appendix()) { if (!layout.labelstring().empty()) par->params.labelString(layout.labelstring()); else par->params.labelString(string()); } else { if (!layout.labelstring_appendix().empty()) par->params.labelString(layout.labelstring_appendix()); else par->params.labelString(string()); } std::ostringstream s; if (!par->params.appendix()) { switch (2 * LABEL_COUNTER_CHAPTER - textclass.maxcounter() + i) { case LABEL_COUNTER_CHAPTER: s << par->getCounter(i); break; case LABEL_COUNTER_SECTION: s << par->getCounter(i - 1) << '.' << par->getCounter(i); break; case LABEL_COUNTER_SUBSECTION: s << par->getCounter(i - 2) << '.' << par->getCounter(i - 1) << '.' << par->getCounter(i); break; case LABEL_COUNTER_SUBSUBSECTION: s << par->getCounter(i - 3) << '.' << par->getCounter(i - 2) << '.' << par->getCounter(i - 1) << '.' << par->getCounter(i); break; case LABEL_COUNTER_PARAGRAPH: s << par->getCounter(i - 4) << '.' << par->getCounter(i - 3) << '.' << par->getCounter(i - 2) << '.' << par->getCounter(i - 1) << '.' << par->getCounter(i); break; case LABEL_COUNTER_SUBPARAGRAPH: s << par->getCounter(i - 5) << '.' << par->getCounter(i - 4) << '.' << par->getCounter(i - 3) << '.' << par->getCounter(i - 2) << '.' << par->getCounter(i - 1) << '.' << par->getCounter(i); break; default: // Can this ever be reached? And in the // case it is, how can this be correct? // (Lgb) s << par->getCounter(i) << '.'; break; } } else { // appendix switch (2 * LABEL_COUNTER_CHAPTER - textclass.maxcounter() + i) { case LABEL_COUNTER_CHAPTER: if (par->isRightToLeftPar(buf->params)) s << hebrewCounter(par->getCounter(i)); else s << alphaCounter(par->getCounter(i)); break; case LABEL_COUNTER_SECTION: if (par->isRightToLeftPar(buf->params)) s << hebrewCounter(par->getCounter(i - 1)); else s << alphaCounter(par->getCounter(i - 1)); s << '.' << par->getCounter(i); break; case LABEL_COUNTER_SUBSECTION: if (par->isRightToLeftPar(buf->params)) s << hebrewCounter(par->getCounter(i - 2)); else s << alphaCounter(par->getCounter(i - 2)); s << '.' << par->getCounter(i-1) << '.' << par->getCounter(i); break; case LABEL_COUNTER_SUBSUBSECTION: if (par->isRightToLeftPar(buf->params)) s << hebrewCounter(par->getCounter(i-3)); else s << alphaCounter(par->getCounter(i-3)); s << '.' << par->getCounter(i-2) << '.' << par->getCounter(i-1) << '.' << par->getCounter(i); break; case LABEL_COUNTER_PARAGRAPH: if (par->isRightToLeftPar(buf->params)) s << hebrewCounter(par->getCounter(i-4)); else s << alphaCounter(par->getCounter(i-4)); s << '.' << par->getCounter(i-3) << '.' << par->getCounter(i-2) << '.' << par->getCounter(i-1) << '.' << par->getCounter(i); break; case LABEL_COUNTER_SUBPARAGRAPH: if (par->isRightToLeftPar(buf->params)) s << hebrewCounter(par->getCounter(i-5)); else s << alphaCounter(par->getCounter(i-5)); s << '.' << par->getCounter(i-4) << '.' << par->getCounter(i-3) << '.' << par->getCounter(i-2) << '.' << par->getCounter(i-1) << '.' << par->getCounter(i); break; default: // Can this ever be reached? And in the // case it is, how can this be correct? // (Lgb) s << par->getCounter(i) << '.'; break; } } par->params.labelString(par->params.labelString() +s.str().c_str()); // We really want to remove the c_str as soon as // possible... for (i++; i < 10; ++i) { // reset the following counters par->setCounter(i, 0); } } else if (layout.labeltype < LABEL_COUNTER_ENUMI) { for (i++; i < 10; ++i) { // reset the following counters par->setCounter(i, 0); } } else if (layout.labeltype == LABEL_COUNTER_ENUMI) { par->incCounter(i + par->enumdepth); int number = par->getCounter(i + par->enumdepth); std::ostringstream s; switch (par->enumdepth) { case 1: if (par->isRightToLeftPar(buf->params)) s << '(' << hebrewCounter(number) << ')'; else s << '(' << loweralphaCounter(number) << ')'; break; case 2: if (par->isRightToLeftPar(buf->params)) s << '.' << romanCounter(number); else s << romanCounter(number) << '.'; break; case 3: if (par->isRightToLeftPar(buf->params)) s << '.' << alphaCounter(number); else s << alphaCounter(number) << '.'; break; default: if (par->isRightToLeftPar(buf->params)) s << '.' << number; else s << number << '.'; break; } par->params.labelString(s.str().c_str()); // we really want to get rid of that c_str() for (i += par->enumdepth + 1; i < 10; ++i) par->setCounter(i, 0); /* reset the following counters */ } } else if (layout.labeltype == LABEL_BIBLIO) {// ale970302 int i = LABEL_COUNTER_ENUMI - LABEL_COUNTER_CHAPTER + par->enumdepth; par->incCounter(i); int number = par->getCounter(i); if (!par->bibkey) { InsetCommandParams p( "bibitem" ); par->bibkey = new InsetBibKey(p); } par->bibkey->setCounter(number); par->params.labelString(layout.labelstring()); // In biblio should't be following counters but... } else { string s = layout.labelstring(); // the caption hack: if (layout.labeltype == LABEL_SENSITIVE) { bool isOK (par->InInset() && par->InInset()->owner() && (par->InInset()->owner()->LyxCode() == Inset::FLOAT_CODE)); if (isOK) { InsetFloat * tmp = static_cast(par->InInset()->owner()); Floating const & fl = floatList.getType(tmp->type()); // We should get the correct number here too. s = fl.name() + " #:"; } else { /* par->SetLayout(0); s = layout->labelstring; */ s = (par->getParLanguage(buf->params)->lang() == "hebrew") ? " :úåòîùî øñç" : "Senseless: "; } } par->params.labelString(s); /* reset the enumeration counter. They are always resetted * when there is any other layout between */ for (int i = 6 + par->enumdepth; i < 10; ++i) par->setCounter(i, 0); } } /* Updates all counters BEHIND the row. Changed paragraphs * with a dynamic left margin will be rebroken. */ void LyXText::UpdateCounters(BufferView * bview, Row * row) const { LyXParagraph * par; if (!row) { row = firstrow; par = row->par(); } else { par = row->par()->next(); } while (par) { while (row->par() != par) row = row->next(); SetCounter(bview->buffer(), par); /* now check for the headline layouts. remember that they * have a dynamic left margin */ if ((textclasslist.Style(bview->buffer()->params.textclass, par->layout).margintype == MARGIN_DYNAMIC || textclasslist.Style(bview->buffer()->params.textclass, par->layout).labeltype == LABEL_SENSITIVE)) { /* Rebreak the paragraph */ RemoveParagraph(row); AppendParagraph(bview, row); } par = par->next(); } } /* insets an inset. */ void LyXText::InsertInset(BufferView * bview, Inset * inset) { if (!cursor.par()->InsertInsetAllowed(inset)) return; SetUndo(bview->buffer(), Undo::INSERT, cursor.par()->previous(), cursor.par()->next()); cursor.par()->InsertInset(cursor.pos(), inset); InsertChar(bview, LyXParagraph::META_INSET); /* just to rebreak and refresh correctly. * The character will not be inserted a * second time */ #if 1 // If we enter a highly editable inset the cursor should be to before // the inset. 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->Editable() == Inset::HIGHLY_EDITABLE) { CursorLeft(bview, true); } #endif } void LyXText::copyEnvironmentType() { copylayouttype = cursor.par()->GetLayout(); } void LyXText::pasteEnvironmentType(BufferView * bview) { SetLayout(bview, copylayouttype); } void LyXText::CutSelection(BufferView * bview, bool doclear) { // Stuff what we got on the clipboard. Even if there is no selection. // There is a problem with having the stuffing here in that the // larger the selection the slower LyX will get. This can be // solved by running the line below only when the selection has // finished. The solution used currently just works, to make it // faster we need to be more clever and probably also have more // calls to stuffClipboard. (Lgb) bview->stuffClipboard(selectionAsString(bview->buffer())); // This doesn't make sense, if there is no selection if (!selection) return; // OK, we have a selection. This is always between sel_start_cursor // and sel_end_cursor // make sure that the depth behind the selection are restored, too LyXParagraph * endpar = sel_end_cursor.par()->next(); LyXParagraph * undoendpar = endpar; if (endpar && endpar->GetDepth()) { while (endpar && endpar->GetDepth()) { endpar = endpar->next(); undoendpar = endpar; } } else if (endpar) { endpar = endpar->next(); // because of parindents etc. } SetUndo(bview->buffer(), Undo::DELETE, sel_start_cursor.par()->previous(), undoendpar); CutAndPaste cap; // there are two cases: cut only within one paragraph or // more than one paragraph if (sel_start_cursor.par() == sel_end_cursor.par()) { // only within one paragraph endpar = sel_start_cursor.par(); int pos = sel_end_cursor.pos(); cap.cutSelection(sel_start_cursor.par(), &endpar, sel_start_cursor.pos(), pos, bview->buffer()->params.textclass, doclear); sel_end_cursor.pos(pos); } else { endpar = sel_end_cursor.par(); int pos = sel_end_cursor.pos(); cap.cutSelection(sel_start_cursor.par(), &endpar, sel_start_cursor.pos(), pos, bview->buffer()->params.textclass, doclear); cursor.par(endpar); sel_end_cursor.par(endpar); sel_end_cursor.pos(pos); cursor.pos(sel_end_cursor.pos()); } endpar = endpar->next(); // sometimes necessary if (doclear) sel_start_cursor.par()->StripLeadingSpaces(bview->buffer()->params.textclass); RedoParagraphs(bview, sel_start_cursor, endpar); ClearSelection(bview); cursor = sel_start_cursor; SetCursor(bview, cursor.par(), cursor.pos()); sel_cursor = cursor; UpdateCounters(bview, cursor.row()); } void LyXText::CopySelection(BufferView * bview) { // Stuff what we got on the clipboard. Even if there is no selection. // There is a problem with having the stuffing here in that the // larger the selection the slower LyX will get. This can be // solved by running the line below only when the selection has // finished. The solution used currently just works, to make it // faster we need to be more clever and probably also have more // calls to stuffClipboard. (Lgb) bview->stuffClipboard(selectionAsString(bview->buffer())); // this doesnt make sense, if there is no selection if (!selection) return; // ok we have a selection. This is always between sel_start_cursor // and sel_end cursor // copy behind a space if there is one while (sel_start_cursor.par()->size() > sel_start_cursor.pos() && sel_start_cursor.par()->IsLineSeparator(sel_start_cursor.pos()) && (sel_start_cursor.par() != sel_end_cursor.par() || sel_start_cursor.pos() < sel_end_cursor.pos())) sel_start_cursor.pos(sel_start_cursor.pos() + 1); CutAndPaste cap; cap.copySelection(sel_start_cursor.par(), sel_end_cursor.par(), sel_start_cursor.pos(), sel_end_cursor.pos(), bview->buffer()->params.textclass); } void LyXText::PasteSelection(BufferView * bview) { CutAndPaste cap; // this does not make sense, if there is nothing to paste if (!cap.checkPastePossible(cursor.par())) return; SetUndo(bview->buffer(), Undo::INSERT, cursor.par()->previous(), cursor.par()->next()); LyXParagraph * endpar; LyXParagraph * actpar = cursor.par(); int pos = cursor.pos(); cap.pasteSelection(&actpar, &endpar, pos, bview->buffer()->params.textclass); RedoParagraphs(bview, cursor, endpar); SetCursor(bview, cursor.par(), cursor.pos()); ClearSelection(bview); sel_cursor = cursor; SetCursor(bview, actpar, pos); SetSelection(bview); UpdateCounters(bview, cursor.row()); } // returns a pointer to the very first LyXParagraph LyXParagraph * LyXText::FirstParagraph() const { return OwnerParagraph(); } // sets the selection over the number of characters of string, no check!! void LyXText::SetSelectionOverString(BufferView * bview, string const & str) { sel_cursor = cursor; for (int i = 0; str[i]; ++i) CursorRight(bview); SetSelection(bview); } // simple replacing. The font of the first selected character is used void LyXText::ReplaceSelectionWithString(BufferView * bview, string const & str) { SetCursorParUndo(bview->buffer()); FreezeUndo(); if (!selection) { // create a dummy selection sel_end_cursor = cursor; sel_start_cursor = cursor; } // Get font setting before we cut LyXParagraph::size_type pos = sel_end_cursor.pos(); LyXFont const font = sel_start_cursor.par() ->GetFontSettings(bview->buffer()->params, sel_start_cursor.pos()); // Insert the new string for (string::const_iterator cit = str.begin(); cit != str.end(); ++cit) { sel_end_cursor.par()->InsertChar(pos, (*cit), font); ++pos; } // Cut the selection CutSelection(bview); UnFreezeUndo(); } // needed to insert the selection void LyXText::InsertStringA(BufferView * bview, string const & str) { LyXParagraph * par = cursor.par(); LyXParagraph::size_type pos = cursor.pos(); LyXParagraph::size_type a = 0; LyXParagraph * endpar = cursor.par()->next(); SetCursorParUndo(bview->buffer()); bool flag = textclasslist.Style(bview->buffer()->params.textclass, cursor.par()->GetLayout()).isEnvironment(); // only to be sure, should not be neccessary ClearSelection(bview); // insert the string, don't insert doublespace string::size_type i = 0; while (i < str.length()) { if (str[i] != '\n') { if (str[i] == ' ' && i + 1 < str.length() && str[i + 1] != ' ' && pos && par->GetChar(pos - 1)!= ' ') { par->InsertChar(pos, ' ', current_font); ++pos; } else if (str[i] == ' ') { InsetSpecialChar * new_inset = new InsetSpecialChar(InsetSpecialChar::PROTECTED_SEPARATOR); if (par->InsertInsetAllowed(new_inset)) { par->InsertInset(pos, new_inset, current_font); } else { delete new_inset; } ++pos; } else if (str[i] == '\t') { for (a = pos; a < (pos / 8 + 1) * 8 ; ++a) { InsetSpecialChar * new_inset = new InsetSpecialChar(InsetSpecialChar::PROTECTED_SEPARATOR); if (par->InsertInsetAllowed(new_inset)) { par->InsertInset(pos, new_inset, current_font); } else { delete new_inset; } } pos = a; } else if (str[i] != 13 && // Ignore unprintables (str[i] & 127) >= ' ') { par->InsertChar(pos, str[i], current_font); ++pos; } } else { if (!par->size()) { // par is empty InsetSpecialChar * new_inset = new InsetSpecialChar(InsetSpecialChar::PROTECTED_SEPARATOR); if (par->InsertInsetAllowed(new_inset)) { par->InsertInset(pos, new_inset, current_font); } else { delete new_inset; } ++pos; } par->BreakParagraph(bview->buffer()->params, pos, flag); par = par->next(); pos = 0; } ++i; } RedoParagraphs(bview, cursor, endpar); SetCursor(bview, cursor.par(), cursor.pos()); sel_cursor = cursor; SetCursor(bview, par, pos); SetSelection(bview); } /* turns double-CR to single CR, others where converted into one blank and 13s * that are ignored .Double spaces are also converted into one. Spaces at * the beginning of a paragraph are forbidden. tabs are converted into one * space. then InsertStringA is called */ void LyXText::InsertStringB(BufferView * bview, string const & s) { string str(s); string::size_type i = 1; while (i < str.length()) { if (str[i] == '\t') str[i] = ' '; if (str[i] == ' ' && i + 1 < str.length() && str[i + 1] == ' ') str[i] = 13; if (str[i] == '\n' && i + 1 < str.length()) { if (str[i + 1] != '\n') { if (str[i - 1] != ' ') str[i] = ' '; else str[i] = 13; } while (i + 1 < str.length() && (str[i + 1] == ' ' || str[i + 1] == '\t' || str[i + 1] == '\n' || str[i + 1] == 13)) { str[i + 1] = 13; ++i; } } ++i; } InsertStringA(bview, str); } bool LyXText::GotoNextInset(BufferView * bview, std::vector const & codes, string const & contents) const { LyXCursor res = cursor; Inset * inset; do { if (res.pos() < res.par()->size() - 1) { res.pos(res.pos() + 1); } else { res.par(res.par()->next()); res.pos(0); } } while (res.par() && !(res.par()->GetChar(res.pos()) == LyXParagraph::META_INSET && (inset = res.par()->GetInset(res.pos())) != 0 && find(codes.begin(), codes.end(), inset->LyxCode()) != codes.end() && (contents.empty() || static_cast(res.par()->GetInset(res.pos()))->getContents() == contents))); if (res.par()) { SetCursor(bview, res.par(), res.pos()); return true; } return false; } void LyXText::CheckParagraph(BufferView * bview, LyXParagraph * par, LyXParagraph::size_type pos) { LyXCursor tmpcursor; int y = 0; LyXParagraph::size_type z; Row * row = GetRow(par, pos, y); // is there a break one row above if (row->previous() && row->previous()->par() == row->par()) { z = NextBreakPoint(bview, row->previous(), workWidth(bview)); if (z >= row->pos()) { // set the dimensions of the row above y -= row->previous()->height(); refresh_y = y; refresh_row = row->previous(); status = LyXText::NEED_MORE_REFRESH; BreakAgain(bview, row->previous()); // set the cursor again. Otherwise // dangling pointers are possible SetCursor(bview, cursor.par(), cursor.pos(), false, cursor.boundary()); sel_cursor = cursor; return; } } int const tmpheight = row->height(); LyXParagraph::size_type const tmplast = RowLast(row); refresh_y = y; refresh_row = row; BreakAgain(bview, row); if (row->height() == tmpheight && RowLast(row) == tmplast) status = LyXText::NEED_VERY_LITTLE_REFRESH; else status = LyXText::NEED_MORE_REFRESH; // check the special right address boxes if (textclasslist.Style(bview->buffer()->params.textclass, par->GetLayout()).margintype == MARGIN_RIGHT_ADDRESS_BOX) { tmpcursor.par(par); tmpcursor.row(row); tmpcursor.y(y); tmpcursor.x(0); tmpcursor.x_fix(0); tmpcursor.pos(pos); RedoDrawingOfParagraph(bview, tmpcursor); } // set the cursor again. Otherwise dangling pointers are possible // also set the selection if (selection) { tmpcursor = cursor; SetCursorIntern(bview, sel_cursor.par(), sel_cursor.pos(), false, sel_cursor.boundary()); sel_cursor = cursor; SetCursorIntern(bview, sel_start_cursor.par(), sel_start_cursor.pos(), false, sel_start_cursor.boundary()); sel_start_cursor = cursor; SetCursorIntern(bview, sel_end_cursor.par(), sel_end_cursor.pos(), false, sel_end_cursor.boundary()); sel_end_cursor = cursor; SetCursorIntern(bview, last_sel_cursor.par(), last_sel_cursor.pos(), false, last_sel_cursor.boundary()); last_sel_cursor = cursor; cursor = tmpcursor; } SetCursorIntern(bview, cursor.par(), cursor.pos(), false, cursor.boundary()); } // returns false if inset wasn't found bool LyXText::UpdateInset(BufferView * bview, Inset * inset) { // first check the current paragraph int pos = cursor.par()->GetPositionOfInset(inset); if (pos != -1){ CheckParagraph(bview, cursor.par(), pos); return true; } // check every paragraph LyXParagraph * par = FirstParagraph(); do { pos = par->GetPositionOfInset(inset); if (pos != -1){ CheckParagraph(bview, par, pos); return true; } par = par->next(); } while (par); return false; } void LyXText::SetCursor(BufferView * bview, LyXParagraph * par, LyXParagraph::size_type pos, bool setfont, bool boundary) const { LyXCursor old_cursor = cursor; SetCursorIntern(bview, par, pos, setfont, boundary); DeleteEmptyParagraphMechanism(bview, old_cursor); } void LyXText::SetCursor(BufferView *bview, LyXCursor & cur, LyXParagraph * par, LyXParagraph::size_type pos, bool boundary) const { cur.par(par); cur.pos(pos); cur.boundary(boundary); /* get the cursor y position in text */ int y = 0; Row * row = GetRow(par, pos, y); /* y is now the beginning of the cursor row */ y += row->baseline(); /* y is now the cursor baseline */ cur.y(y); /* now get the cursors x position */ float x; float fill_separator, fill_hfill, fill_label_hfill; PrepareToPrint(bview, row, x, fill_separator, fill_hfill, fill_label_hfill); LyXParagraph::size_type cursor_vpos = 0; LyXParagraph::size_type last = RowLastPrintable(row); if (pos > last + 1) // This shouldn't happen. pos = last + 1; else if (pos < row->pos()) pos = row->pos(); if (last < row->pos()) cursor_vpos = row->pos(); else if (pos > last && !boundary) cursor_vpos = (row->par()->isRightToLeftPar(bview->buffer()->params)) ? row->pos() : last + 1; else if (pos > row->pos() && (pos > last || boundary)) /// Place cursor after char at (logical) position pos - 1 cursor_vpos = (bidi_level(pos - 1) % 2 == 0) ? log2vis(pos - 1) + 1 : log2vis(pos - 1); else /// Place cursor before char at (logical) position pos cursor_vpos = (bidi_level(pos) % 2 == 0) ? log2vis(pos) : log2vis(pos) + 1; LyXParagraph::size_type main_body = BeginningOfMainBody(bview->buffer(), row->par()); if ((main_body > 0) && ((main_body-1 > last) || !row->par()->IsLineSeparator(main_body-1))) main_body = 0; for (LyXParagraph::size_type vpos = row->pos(); vpos < cursor_vpos; ++vpos) { pos = vis2log(vpos); if (main_body > 0 && pos == main_body - 1) { x += fill_label_hfill + lyxfont::width(textclasslist.Style( bview->buffer()->params.textclass, row->par()->GetLayout()) .labelsep, GetFont(bview->buffer(), row->par(), -2)); if (row->par()->IsLineSeparator(main_body-1)) x -= SingleWidth(bview, row->par(),main_body-1); } if (HfillExpansion(bview->buffer(), row, pos)) { x += SingleWidth(bview, row->par(), pos); if (pos >= main_body) x += fill_hfill; else x += fill_label_hfill; } else if (row->par()->IsSeparator(pos)) { x += SingleWidth(bview, row->par(), pos); if (pos >= main_body) x += fill_separator; } else x += SingleWidth(bview, row->par(), pos); } cur.x(int(x)); cur.x_fix(cur.x()); cur.row(row); } void LyXText::SetCursorIntern(BufferView * bview, LyXParagraph * par, LyXParagraph::size_type pos, bool setfont, bool boundary) const { SetCursor(bview, cursor, par, pos, boundary); if (setfont) SetCurrentFont(bview); } void LyXText::SetCurrentFont(BufferView * bview) const { LyXParagraph::size_type pos = cursor.pos(); if (cursor.boundary() && pos > 0) --pos; if (pos > 0) { if (pos == cursor.par()->size()) --pos; else if (cursor.par()->IsSeparator(pos)) { if (pos > cursor.row()->pos() && bidi_level(pos) % 2 == bidi_level(pos - 1) % 2) --pos; else if (pos + 1 < cursor.par()->size()) ++pos; } } current_font = cursor.par()->GetFontSettings(bview->buffer()->params, pos); real_current_font = GetFont(bview->buffer(), cursor.par(), pos); if (cursor.pos() == cursor.par()->size() && IsBoundary(bview->buffer(), cursor.par(), cursor.pos()) && !cursor.boundary()) { Language const * lang = cursor.par()->getParLanguage(bview->buffer()->params); current_font.setLanguage(lang); current_font.setNumber(LyXFont::OFF); real_current_font.setLanguage(lang); real_current_font.setNumber(LyXFont::OFF); } } void LyXText::SetCursorFromCoordinates(BufferView * bview, int x, int y) const { LyXCursor old_cursor = cursor; /* get the row first */ Row * row = GetRowNearY(y); cursor.par(row->par()); bool bound = false; int column = GetColumnNearX(bview, row, x, bound); cursor.pos(row->pos() + column); cursor.x(x); cursor.y(y + row->baseline()); cursor.row(row); cursor.boundary(bound); SetCurrentFont(bview); DeleteEmptyParagraphMechanism(bview, old_cursor); } void LyXText::SetCursorFromCoordinates(BufferView * bview, LyXCursor & cur, int x, int y) const { /* get the row first */ Row * row = GetRowNearY(y); bool bound = false; int column = GetColumnNearX(bview, row, x, bound); cur.par(row->par()); cur.pos(row->pos() + column); cur.x(x); cur.y(y + row->baseline()); cur.row(row); cur.boundary(bound); } void LyXText::CursorLeft(BufferView * bview, bool internal) const { if (cursor.pos() > 0) { bool boundary = cursor.boundary(); SetCursor(bview, cursor.par(), cursor.pos() - 1, true, false); if (!internal && !boundary && IsBoundary(bview->buffer(), cursor.par(), cursor.pos() + 1)) SetCursor(bview, cursor.par(), cursor.pos() + 1, true, true); } else if (cursor.par()->previous()) { // steps into the above paragraph. LyXParagraph * par = cursor.par()->previous(); SetCursor(bview, par, par->size()); } } void LyXText::CursorRight(BufferView * bview, bool internal) const { if (!internal && cursor.boundary() && !cursor.par()->IsNewline(cursor.pos())) SetCursor(bview, cursor.par(), cursor.pos(), true, false); else if (cursor.pos() < cursor.par()->size()) { SetCursor(bview, cursor.par(), cursor.pos() + 1, true, false); if (!internal && IsBoundary(bview->buffer(), cursor.par(), cursor.pos())) SetCursor(bview, cursor.par(), cursor.pos(), true, true); } else if (cursor.par()->next()) SetCursor(bview, cursor.par()->next(), 0); } void LyXText::CursorUp(BufferView * bview) const { SetCursorFromCoordinates(bview, cursor.x_fix(), cursor.y() - cursor.row()->baseline() - 1); } void LyXText::CursorDown(BufferView * bview) const { SetCursorFromCoordinates(bview, cursor.x_fix(), cursor.y() - cursor.row()->baseline() + cursor.row()->height() + 1); } void LyXText::CursorUpParagraph(BufferView * bview) const { if (cursor.pos() > 0) { SetCursor(bview, cursor.par(), 0); } else if (cursor.par()->previous()) { SetCursor(bview, cursor.par()->previous(), 0); } } void LyXText::CursorDownParagraph(BufferView * bview) const { if (cursor.par()->next()) { SetCursor(bview, cursor.par()->next(), 0); } else { SetCursor(bview, cursor.par(), cursor.par()->size()); } } void LyXText::DeleteEmptyParagraphMechanism(BufferView * bview, LyXCursor const & old_cursor) const { // Would be wrong to delete anything if we have a selection. if (selection) return; // We allow all kinds of "mumbo-jumbo" when freespacing. if (textclasslist.Style(bview->buffer()->params.textclass, old_cursor.par()->GetLayout()).free_spacing) return; bool deleted = false; /* Ok I'll put some comments here about what is missing. I have fixed BackSpace (and thus Delete) to not delete double-spaces automagically. I have also changed Cut, Copy and Paste to hopefully do some sensible things. There are still some small problems that can lead to double spaces stored in the document file or space at the beginning of paragraphs. This happens if you have the cursor betwenn to spaces and then save. Or if you cut and paste and the selection have a space at the beginning and then save right after the paste. I am sure none of these are very hard to fix, but I will put out 1.1.4pre2 with FIX_DOUBLE_SPACE defined so that I can get some feedback. (Lgb) */ // If old_cursor.pos() == 0 and old_cursor.pos()(1) == LineSeparator // delete the LineSeparator. // MISSING // If old_cursor.pos() == 1 and old_cursor.pos()(0) == LineSeparator // delete the LineSeparator. // MISSING // If the pos around the old_cursor were spaces, delete one of them. if (old_cursor.par() != cursor.par() || old_cursor.pos() != cursor.pos()) { // Only if the cursor has really moved if (old_cursor.pos() > 0 && old_cursor.pos() < old_cursor.par()->size() && old_cursor.par()->IsLineSeparator(old_cursor.pos()) && old_cursor.par()->IsLineSeparator(old_cursor.pos() - 1)) { old_cursor.par()->Erase(old_cursor.pos() - 1); RedoParagraphs(bview, old_cursor, old_cursor.par()->next()); // correct cursor if (old_cursor.par() == cursor.par() && cursor.pos() > old_cursor.pos()) { SetCursorIntern(bview, cursor.par(), cursor.pos() - 1); } else SetCursorIntern(bview, cursor.par(), cursor.pos()); return; } } // Do not delete empty paragraphs with keepempty set. if ((textclasslist.Style(bview->buffer()->params.textclass, old_cursor.par()->GetLayout())).keepempty) return; LyXCursor tmpcursor; if (old_cursor.par() != cursor.par()) { if ((old_cursor.par()->size() == 0 || (old_cursor.par()->size() == 1 && old_cursor.par()->IsLineSeparator(0)))) { // ok, we will delete anything // make sure that you do not delete any environments status = LyXText::NEED_MORE_REFRESH; deleted = true; if (old_cursor.row()->previous()) { refresh_row = old_cursor.row()->previous(); refresh_y = old_cursor.y() - old_cursor.row()->baseline() - refresh_row->height(); tmpcursor = cursor; cursor = old_cursor; // that undo can restore the right cursor position LyXParagraph * endpar = old_cursor.par()->next(); if (endpar && endpar->GetDepth()) { while (endpar && endpar->GetDepth()) { endpar = endpar->next(); } } SetUndo(bview->buffer(), Undo::DELETE, old_cursor.par()->previous(), endpar); cursor = tmpcursor; // delete old row RemoveRow(old_cursor.row()); if (OwnerParagraph() == old_cursor.par()) { OwnerParagraph(OwnerParagraph()->next()); } // delete old par delete old_cursor.par(); /* Breakagain the next par. Needed * because of the parindent that * can occur or dissappear. The * next row can change its height, * if there is another layout before */ if (refresh_row->next()) { BreakAgain(bview, refresh_row->next()); UpdateCounters(bview, refresh_row); } SetHeightOfRow(bview, refresh_row); } else { refresh_row = old_cursor.row()->next(); refresh_y = old_cursor.y() - old_cursor.row()->baseline(); tmpcursor = cursor; cursor = old_cursor; // that undo can restore the right cursor position LyXParagraph * endpar = old_cursor.par()->next(); if (endpar && endpar->GetDepth()) { while (endpar && endpar->GetDepth()) { endpar = endpar->next(); } } SetUndo(bview->buffer(), Undo::DELETE, old_cursor.par()->previous(), endpar); cursor = tmpcursor; // delete old row RemoveRow(old_cursor.row()); // delete old par if (OwnerParagraph() == old_cursor.par()) { OwnerParagraph(OwnerParagraph()->next()); } delete old_cursor.par(); /* Breakagain the next par. Needed because of the parindent that can occur or dissappear. The next row can change its height, if there is another layout before */ if (refresh_row) { BreakAgain(bview, refresh_row); UpdateCounters(bview, refresh_row->previous()); } } // correct cursor y SetCursorIntern(bview, cursor.par(), cursor.pos()); if (sel_cursor.par() == old_cursor.par() && sel_cursor.pos() == sel_cursor.pos()) { // correct selection sel_cursor = cursor; } } if (!deleted) { if (old_cursor.par()->StripLeadingSpaces(bview->buffer()->params.textclass)) { RedoParagraphs(bview, old_cursor, old_cursor.par()->next()); // correct cursor y SetCursorIntern(bview, cursor.par(), cursor.pos()); sel_cursor = cursor; } } } } LyXParagraph * LyXText::GetParFromID(int id) { LyXParagraph * result = FirstParagraph(); while (result && result->id() != id) result = result->next(); return result; } // undo functions bool LyXText::TextUndo(BufferView * bview) { if (inset_owner) return false; // returns false if no undo possible Undo * undo = bview->buffer()->undostack.pop(); if (undo) { FinishUndo(); if (!undo_frozen) bview->buffer()->redostack .push(CreateUndo(bview->buffer(), undo->kind, GetParFromID(undo->number_of_before_par), GetParFromID(undo->number_of_behind_par))); } return TextHandleUndo(bview, undo); } bool LyXText::TextRedo(BufferView * bview) { if (inset_owner) return false; // returns false if no redo possible Undo * undo = bview->buffer()->redostack.pop(); if (undo) { FinishUndo(); if (!undo_frozen) bview->buffer()->undostack .push(CreateUndo(bview->buffer(), undo->kind, GetParFromID(undo->number_of_before_par), GetParFromID(undo->number_of_behind_par))); } return TextHandleUndo(bview, undo); } bool LyXText::TextHandleUndo(BufferView * bview, Undo * undo) { if (inset_owner) return false; // returns false if no undo possible bool result = false; if (undo) { LyXParagraph * before = GetParFromID(undo->number_of_before_par); LyXParagraph * behind = GetParFromID(undo->number_of_behind_par); LyXParagraph * tmppar; LyXParagraph * tmppar2; LyXParagraph * endpar; LyXParagraph * tmppar5; // if there's no before take the beginning // of the document for redoing if (!before) SetCursorIntern(bview, FirstParagraph(), 0); // replace the paragraphs with the undo informations LyXParagraph * tmppar3 = undo->par; undo->par = 0; // otherwise the undo destructor would delete the paragraph LyXParagraph * tmppar4 = tmppar3; if (tmppar4) { while (tmppar4->next()) tmppar4 = tmppar4->next(); } // get last undo par // now remove the old text if there is any if (before != behind || (!behind && !before)) { if (before) tmppar5 = before->next(); else tmppar5 = OwnerParagraph(); tmppar2 = tmppar3; while (tmppar5 && tmppar5 != behind) { tmppar = tmppar5; tmppar5 = tmppar5->next(); // a memory optimization for edit: Only layout information // is stored in the undo. So restore the text informations. if (undo->kind == Undo::EDIT) { tmppar2->setContentsFromPar(tmppar); tmppar->clearContents(); tmppar2 = tmppar2->next(); } } } // put the new stuff in the list if there is one if (tmppar3){ if (before) before->next(tmppar3); else OwnerParagraph(tmppar3); tmppar3->previous(before); } else { if (!before) OwnerParagraph(behind); } if (tmppar4) { tmppar4->next(behind); if (behind) behind->previous(tmppar4); } // Set the cursor for redoing if (before) { SetCursorIntern(bview, before, 0); } // calculate the endpar for redoing the paragraphs. if (behind) { endpar = behind->next(); } else endpar = behind; tmppar = GetParFromID(undo->number_of_cursor_par); RedoParagraphs(bview, cursor, endpar); if (tmppar){ SetCursorIntern(bview, tmppar, undo->cursor_pos); UpdateCounters(bview, cursor.row()); } result = true; delete undo; } FinishUndo(); return result; } void LyXText::FinishUndo() { if (inset_owner) return; // makes sure the next operation will be stored undo_finished = true; } void LyXText::FreezeUndo() { if (inset_owner) return; // this is dangerous and for internal use only undo_frozen = true; } void LyXText::UnFreezeUndo() { if (inset_owner) return; // this is dangerous and for internal use only undo_frozen = false; } void LyXText::SetUndo(Buffer * buf, Undo::undo_kind kind, LyXParagraph const * before, LyXParagraph const * behind) const { if (inset_owner) return; if (!undo_frozen) buf->undostack.push(CreateUndo(buf, kind, before, behind)); buf->redostack.clear(); } void LyXText::SetRedo(Buffer * buf, Undo::undo_kind kind, LyXParagraph const * before, LyXParagraph const * behind) { if (inset_owner) return; buf->redostack.push(CreateUndo(buf, kind, before, behind)); } Undo * LyXText::CreateUndo(Buffer * buf, Undo::undo_kind kind, LyXParagraph const * before, LyXParagraph const * behind) const { if (inset_owner) return 0; int before_number = -1; int behind_number = -1; if (before) before_number = before->id(); if (behind) behind_number = behind->id(); // Undo::EDIT and Undo::FINISH are // always finished. (no overlapping there) // overlapping only with insert and delete inside one paragraph: // Nobody wants all removed character // appear one by one when undoing. // EDIT is special since only layout information, not the // contents of a paragaph are stored. if (!undo_finished && (kind != Undo::EDIT) && (kind != Undo::FINISH)){ // check wether storing is needed if (!buf->undostack.empty() && buf->undostack.top()->kind == kind && buf->undostack.top()->number_of_before_par == before_number && buf->undostack.top()->number_of_behind_par == behind_number ){ // no undo needed return 0; } } // create a new Undo LyXParagraph * undopar; LyXParagraph * start = 0; LyXParagraph * end = 0; if (before) start = const_cast(before->next()); else start = FirstParagraph(); if (behind) end = const_cast(behind->previous()); else { end = FirstParagraph(); while (end->next()) end = end->next(); } if (start && end && (start != end->next()) && ((before != behind) || (!before && !behind))) { LyXParagraph * tmppar = start; LyXParagraph * tmppar2 = new LyXParagraph(*tmppar); tmppar2->id(tmppar->id()); // a memory optimization: Just store the layout information // when only edit if (kind == Undo::EDIT){ //tmppar2->text.clear(); tmppar2->clearContents(); } undopar = tmppar2; while (tmppar != end && tmppar->next()) { tmppar = tmppar->next(); tmppar2->next(new LyXParagraph(*tmppar)); tmppar2->next()->id(tmppar->id()); // a memory optimization: Just store the layout // information when only edit if (kind == Undo::EDIT){ //tmppar2->next->text.clear(); tmppar2->clearContents(); } tmppar2->next()->previous(tmppar2); tmppar2 = tmppar2->next(); } tmppar2->next(0); } else undopar = 0; // nothing to replace (undo of delete maybe) int cursor_par = cursor.par()->id(); int cursor_pos = cursor.pos(); Undo * undo = new Undo(kind, before_number, behind_number, cursor_par, cursor_pos, undopar); undo_finished = false; return undo; } void LyXText::SetCursorParUndo(Buffer * buf) { if (inset_owner) return; SetUndo(buf, Undo::FINISH, cursor.par()->previous(), cursor.par()->next()); } void LyXText::toggleAppendix(BufferView * bview) { LyXParagraph * par = cursor.par(); bool start = !par->params.startOfAppendix(); // ensure that we have only one start_of_appendix in this document LyXParagraph * tmp = FirstParagraph(); for (; tmp; tmp = tmp->next()) tmp->params.startOfAppendix(false); par->params.startOfAppendix(start); // we can set the refreshing parameters now status = LyXText::NEED_MORE_REFRESH; refresh_y = 0; refresh_row = 0; // not needed for full update UpdateCounters(bview, 0); SetCursor(bview, cursor.par(), cursor.pos()); } LyXParagraph * LyXText::OwnerParagraph() const { if (inset_owner) return inset_owner->par; return bv_owner->buffer()->paragraph; } LyXParagraph * LyXText::OwnerParagraph(LyXParagraph * p) const { if (inset_owner) inset_owner->par = p; else bv_owner->buffer()->paragraph = p; return 0; }