1999-09-27 18:44:28 +00:00
|
|
|
|
/* This file is part of
|
1999-10-07 18:44:17 +00:00
|
|
|
|
* ======================================================
|
|
|
|
|
*
|
|
|
|
|
* LyX, The Document Processor
|
|
|
|
|
*
|
|
|
|
|
* Copyright 1995 Matthias Ettrich
|
2000-03-16 04:29:22 +00:00
|
|
|
|
* Copyright 1995-2000 The LyX Team.
|
1999-10-07 18:44:17 +00:00
|
|
|
|
*
|
1999-11-15 12:01:38 +00:00
|
|
|
|
* ====================================================== */
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
|
|
#include FORMS_H_LOCATION
|
|
|
|
|
|
1999-11-08 13:54:04 +00:00
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
#ifdef __GNUG__
|
|
|
|
|
#pragma implementation "lyxtext.h"
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#include "LString.h"
|
|
|
|
|
#include "lyxparagraph.h"
|
|
|
|
|
#include "insets/inseterror.h"
|
2000-02-18 22:22:42 +00:00
|
|
|
|
#include "insets/insetbib.h"
|
2000-02-29 02:19:17 +00:00
|
|
|
|
#include "insets/insetspecialchar.h"
|
1999-09-27 18:44:28 +00:00
|
|
|
|
#include "layout.h"
|
|
|
|
|
#include "LyXView.h"
|
1999-10-02 16:21:10 +00:00
|
|
|
|
#include "support/textutils.h"
|
1999-09-27 18:44:28 +00:00
|
|
|
|
#include "undo.h"
|
|
|
|
|
#include "minibuffer.h"
|
|
|
|
|
#include "buffer.h"
|
|
|
|
|
#include "bufferparams.h"
|
|
|
|
|
#include "lyx_gui_misc.h"
|
|
|
|
|
#include "lyxtext.h"
|
|
|
|
|
#include "gettext.h"
|
1999-12-19 22:35:36 +00:00
|
|
|
|
#include "BufferView.h"
|
|
|
|
|
#include "LyXView.h"
|
2000-02-04 09:38:32 +00:00
|
|
|
|
#include "lyxrow.h"
|
2000-04-10 14:29:05 +00:00
|
|
|
|
#include "CutAndPaste.h"
|
2000-04-04 00:19:15 +00:00
|
|
|
|
#include "Painter.h"
|
|
|
|
|
#include "font.h"
|
2000-04-08 17:02:02 +00:00
|
|
|
|
#include "debug.h"
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2000-04-10 14:29:05 +00:00
|
|
|
|
//#define USE_OLD_CUT_AND_PASTE 1
|
2000-01-13 16:28:54 +00:00
|
|
|
|
|
1999-12-19 22:35:36 +00:00
|
|
|
|
using std::copy;
|
2000-03-28 02:18:55 +00:00
|
|
|
|
using std::endl;
|
2000-04-04 00:19:15 +00:00
|
|
|
|
using std::pair;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2000-02-10 17:53:36 +00:00
|
|
|
|
LyXText::LyXText(BufferView * bv, int pw, Buffer * p)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2000-02-10 17:53:36 +00:00
|
|
|
|
owner_ = bv;
|
1999-10-02 16:21:10 +00:00
|
|
|
|
firstrow = 0;
|
|
|
|
|
lastrow = 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
paperwidth = pw;
|
2000-04-10 21:40:13 +00:00
|
|
|
|
buffer = p;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
number_of_rows = 0;
|
1999-11-15 12:01:38 +00:00
|
|
|
|
refresh_y = 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
status = LyXText::UNCHANGED;
|
1999-11-04 01:40:20 +00:00
|
|
|
|
LyXParagraph * par = p->paragraph;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
current_font = GetFont(par, 0);
|
|
|
|
|
|
|
|
|
|
height = 0;
|
2000-02-23 16:39:03 +00:00
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
while (par) {
|
|
|
|
|
InsertParagraph(par, lastrow);
|
|
|
|
|
par = par->Next();
|
|
|
|
|
}
|
2000-02-23 16:39:03 +00:00
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// set cursor at the very top position
|
|
|
|
|
selection = true; /* these setting is necessary
|
|
|
|
|
because of the delete-empty-
|
|
|
|
|
paragraph mechanism in
|
|
|
|
|
SetCursor */
|
1999-09-27 18:44:28 +00:00
|
|
|
|
SetCursor(firstrow->par, 0);
|
|
|
|
|
sel_cursor = cursor;
|
|
|
|
|
selection = false;
|
|
|
|
|
mark_set = false;
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// no rebreak necessary
|
1999-10-02 16:21:10 +00:00
|
|
|
|
need_break_row = 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
undo_finished = true;
|
|
|
|
|
undo_frozen = false;
|
|
|
|
|
|
|
|
|
|
// Default layouttype for copy environment type
|
|
|
|
|
copylayouttype = 0;
|
2000-04-26 13:57:28 +00:00
|
|
|
|
|
|
|
|
|
#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
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
LyXText::~LyXText()
|
|
|
|
|
{
|
|
|
|
|
// Delete all rows, this does not touch the paragraphs!
|
1999-11-04 01:40:20 +00:00
|
|
|
|
Row * tmprow = firstrow;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
while (firstrow) {
|
|
|
|
|
tmprow = firstrow->next;
|
|
|
|
|
delete firstrow;
|
|
|
|
|
firstrow = tmprow;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-02-10 17:53:36 +00:00
|
|
|
|
void LyXText::owner(BufferView * bv)
|
|
|
|
|
{
|
2000-02-11 16:56:34 +00:00
|
|
|
|
if (owner_ && bv) lyxerr << "LyXText::owner_ already set!" << endl;
|
2000-02-10 17:53:36 +00:00
|
|
|
|
owner_ = bv;
|
|
|
|
|
}
|
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
// 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.
|
1999-11-04 01:40:20 +00:00
|
|
|
|
LyXFont LyXText::GetFont(LyXParagraph * par,
|
2000-01-13 16:28:54 +00:00
|
|
|
|
LyXParagraph::size_type pos) const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
1999-11-04 01:40:20 +00:00
|
|
|
|
LyXLayout const & layout =
|
2000-04-19 01:42:55 +00:00
|
|
|
|
textclasslist.Style(buffer->params.textclass,
|
|
|
|
|
par->GetLayout());
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
char par_depth = par->GetDepth();
|
|
|
|
|
// We specialize the 95% common case:
|
|
|
|
|
if (par->footnoteflag == LyXParagraph::NO_FOOTNOTE && !par_depth) {
|
|
|
|
|
if (pos >= 0){
|
|
|
|
|
// 95% goes here
|
1999-11-04 01:40:20 +00:00
|
|
|
|
if (layout.labeltype == LABEL_MANUAL
|
1999-09-27 18:44:28 +00:00
|
|
|
|
&& pos < BeginningOfMainBody(par)) {
|
|
|
|
|
// 1% goes here
|
|
|
|
|
return par->GetFontSettings(pos).
|
1999-11-04 01:40:20 +00:00
|
|
|
|
realize(layout.reslabelfont);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
} else
|
|
|
|
|
return par->GetFontSettings(pos).
|
1999-11-04 01:40:20 +00:00
|
|
|
|
realize(layout.resfont);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
} else {
|
|
|
|
|
// 5% goes here.
|
|
|
|
|
// process layoutfont for pos == -1 and labelfont for pos < -1
|
|
|
|
|
if (pos == -1)
|
1999-11-04 01:40:20 +00:00
|
|
|
|
return layout.resfont;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
else
|
1999-11-04 01:40:20 +00:00
|
|
|
|
return layout.reslabelfont;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// The uncommon case need not be optimized as much
|
|
|
|
|
|
|
|
|
|
LyXFont layoutfont, tmpfont;
|
|
|
|
|
|
|
|
|
|
if (pos >= 0){
|
|
|
|
|
// 95% goes here
|
|
|
|
|
if (pos < BeginningOfMainBody(par)) {
|
|
|
|
|
// 1% goes here
|
1999-11-04 01:40:20 +00:00
|
|
|
|
layoutfont = layout.labelfont;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
} else {
|
|
|
|
|
// 99% goes here
|
1999-11-04 01:40:20 +00:00
|
|
|
|
layoutfont = layout.font;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
tmpfont = par->GetFontSettings(pos);
|
|
|
|
|
tmpfont.realize(layoutfont);
|
1999-11-04 01:40:20 +00:00
|
|
|
|
} else {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
// 5% goes here.
|
|
|
|
|
// process layoutfont for pos == -1 and labelfont for pos < -1
|
|
|
|
|
if (pos == -1)
|
1999-11-04 01:40:20 +00:00
|
|
|
|
tmpfont = layout.font;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
else
|
1999-11-04 01:40:20 +00:00
|
|
|
|
tmpfont = layout.labelfont;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Resolve against environment font information
|
1999-11-04 01:40:20 +00:00
|
|
|
|
while (par && par_depth && !tmpfont.resolved()) {
|
|
|
|
|
par = par->DepthHook(par_depth - 1);
|
|
|
|
|
if (par) {
|
|
|
|
|
tmpfont.realize(textclasslist.
|
2000-04-19 01:42:55 +00:00
|
|
|
|
Style(buffer->params.textclass,
|
1999-11-04 01:40:20 +00:00
|
|
|
|
par->GetLayout()).font);
|
|
|
|
|
par_depth = par->GetDepth();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
1999-11-04 01:40:20 +00:00
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2000-04-19 01:42:55 +00:00
|
|
|
|
tmpfont.realize(textclasslist.TextClass(buffer->params.textclass).defaultfont());
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
// Cosmetic improvement: If this is an open footnote, make the font
|
|
|
|
|
// smaller.
|
|
|
|
|
if (par->footnoteflag == LyXParagraph::OPEN_FOOTNOTE
|
|
|
|
|
&& par->footnotekind == LyXParagraph::FOOTNOTE) {
|
|
|
|
|
tmpfont.decSize();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return tmpfont;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
1999-11-04 01:40:20 +00:00
|
|
|
|
void LyXText::SetCharFont(LyXParagraph * par,
|
|
|
|
|
LyXParagraph::size_type pos,
|
2000-01-13 16:28:54 +00:00
|
|
|
|
LyXFont const & fnt)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2000-01-13 16:28:54 +00:00
|
|
|
|
LyXFont font(fnt);
|
1999-12-19 22:35:36 +00:00
|
|
|
|
// Let the insets convert their font
|
1999-11-15 12:01:38 +00:00
|
|
|
|
if (par->GetChar(pos) == LyXParagraph::META_INSET) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (par->GetInset(pos))
|
|
|
|
|
font = par->GetInset(pos)->ConvertFont(font);
|
|
|
|
|
}
|
|
|
|
|
|
2000-04-19 01:42:55 +00:00
|
|
|
|
LyXLayout const & layout =
|
|
|
|
|
textclasslist.Style(buffer->params.textclass,
|
|
|
|
|
par->GetLayout());
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
// Get concrete layout font to reduce against
|
|
|
|
|
LyXFont layoutfont;
|
|
|
|
|
|
|
|
|
|
if (pos < BeginningOfMainBody(par))
|
1999-11-04 01:40:20 +00:00
|
|
|
|
layoutfont = layout.labelfont;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
else
|
1999-11-04 01:40:20 +00:00
|
|
|
|
layoutfont = layout.font;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
// 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)
|
1999-11-04 01:40:20 +00:00
|
|
|
|
layoutfont.realize(textclasslist.
|
2000-04-19 01:42:55 +00:00
|
|
|
|
Style(buffer->params.textclass,
|
1999-11-04 01:40:20 +00:00
|
|
|
|
tp->GetLayout()).font);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2000-04-19 01:42:55 +00:00
|
|
|
|
layoutfont.realize(textclasslist.TextClass(buffer->params.textclass).defaultfont());
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
if (par->footnoteflag == LyXParagraph::OPEN_FOOTNOTE
|
|
|
|
|
&& par->footnotekind == LyXParagraph::FOOTNOTE) {
|
|
|
|
|
layoutfont.decSize();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 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 */
|
1999-11-04 01:40:20 +00:00
|
|
|
|
void LyXText::InsertRow(Row * row, LyXParagraph * par,
|
2000-01-13 16:28:54 +00:00
|
|
|
|
LyXParagraph::size_type pos) const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
1999-11-04 01:40:20 +00:00
|
|
|
|
Row * tmprow = new Row;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (!row) {
|
1999-10-02 16:21:10 +00:00
|
|
|
|
tmprow->previous = 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
tmprow->next = firstrow;
|
|
|
|
|
firstrow = tmprow;
|
2000-02-23 16:39:03 +00:00
|
|
|
|
} else {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
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;
|
2000-02-23 16:39:03 +00:00
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (row == lastrow)
|
|
|
|
|
lastrow = tmprow;
|
2000-01-24 18:34:46 +00:00
|
|
|
|
++number_of_rows; // one more row
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// removes the row and reset the touched counters
|
|
|
|
|
void LyXText::RemoveRow(Row * row) const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
|
|
|
|
/* 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 */
|
|
|
|
|
long unused_y;
|
|
|
|
|
GetRow(row->par, row->pos, unused_y);
|
|
|
|
|
|
|
|
|
|
if (row->next)
|
|
|
|
|
row->next->previous = row->previous;
|
|
|
|
|
if (!row->previous) {
|
|
|
|
|
firstrow = row->next;
|
2000-02-23 16:39:03 +00:00
|
|
|
|
} else {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
row->previous->next = row->next;
|
|
|
|
|
}
|
|
|
|
|
if (row == lastrow)
|
|
|
|
|
lastrow = row->previous;
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
height -= row->height; // the text becomes smaller
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
delete row;
|
2000-01-13 16:28:54 +00:00
|
|
|
|
--number_of_rows; // one row less
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
1999-11-04 01:40:20 +00:00
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// remove all following rows of the paragraph of the specified row.
|
|
|
|
|
void LyXText::RemoveParagraph(Row * row) const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
1999-11-04 01:40:20 +00:00
|
|
|
|
LyXParagraph * tmppar = row->par;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
row = row->next;
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
Row * tmprow;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
while (row && row->par == tmppar) {
|
|
|
|
|
tmprow = row->next;
|
|
|
|
|
RemoveRow(row);
|
|
|
|
|
row = tmprow;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2000-02-23 16:39:03 +00:00
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// insert the specified paragraph behind the specified row
|
|
|
|
|
void LyXText::InsertParagraph(LyXParagraph * par, Row * row) const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
|
|
|
|
InsertRow(row, par, 0); /* insert a new row, starting
|
|
|
|
|
* at postition 0 */
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
SetCounter(par); // set the counters
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// and now append the whole paragraph behind the new row
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (!row) {
|
|
|
|
|
firstrow->height = 0;
|
|
|
|
|
AppendParagraph(firstrow);
|
2000-02-23 16:39:03 +00:00
|
|
|
|
} else {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
row->next->height = 0;
|
|
|
|
|
AppendParagraph(row->next);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void LyXText::ToggleFootnote()
|
|
|
|
|
{
|
1999-11-04 01:40:20 +00:00
|
|
|
|
LyXParagraph * par = cursor.par->ParFromPos(cursor.pos);
|
2000-01-13 16:28:54 +00:00
|
|
|
|
if (par->next
|
|
|
|
|
&& par->next->footnoteflag == LyXParagraph::CLOSED_FOOTNOTE) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
OpenFootnote();
|
2000-02-22 00:36:17 +00:00
|
|
|
|
owner_->owner()->getMiniBuffer()->Set(_("Opened float"));
|
2000-01-13 16:28:54 +00:00
|
|
|
|
} else {
|
2000-02-22 00:36:17 +00:00
|
|
|
|
owner_->owner()->getMiniBuffer()->Set(_("Closed float"));
|
1999-09-27 18:44:28 +00:00
|
|
|
|
CloseFootnote();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void LyXText::OpenStuff()
|
|
|
|
|
{
|
|
|
|
|
if (cursor.pos == 0 && cursor.par->bibkey){
|
2000-02-25 12:06:15 +00:00
|
|
|
|
cursor.par->bibkey->Edit(owner_, 0, 0, 0);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
else if (cursor.pos < cursor.par->Last()
|
1999-11-15 12:01:38 +00:00
|
|
|
|
&& cursor.par->GetChar(cursor.pos) == LyXParagraph::META_INSET
|
1999-09-27 18:44:28 +00:00
|
|
|
|
&& cursor.par->GetInset(cursor.pos)->Editable()) {
|
2000-02-22 00:36:17 +00:00
|
|
|
|
owner_->owner()->getMiniBuffer()
|
2000-01-13 16:28:54 +00:00
|
|
|
|
->Set(cursor.par->GetInset(cursor.pos)->EditMessage());
|
2000-03-08 13:52:57 +00:00
|
|
|
|
if (cursor.par->GetInset(cursor.pos)->Editable() != Inset::HIGHLY_EDITABLE)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
SetCursorParUndo();
|
2000-02-25 12:06:15 +00:00
|
|
|
|
cursor.par->GetInset(cursor.pos)->Edit(owner_, 0, 0, 0);
|
2000-01-13 16:28:54 +00:00
|
|
|
|
} else {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
ToggleFootnote();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void LyXText::CloseFootnote()
|
|
|
|
|
{
|
2000-01-13 16:28:54 +00:00
|
|
|
|
LyXParagraph * tmppar;
|
1999-11-04 01:40:20 +00:00
|
|
|
|
LyXParagraph * par = cursor.par->ParFromPos(cursor.pos);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// if the cursor is not in an open footnote, or
|
|
|
|
|
// there is no open footnote in this paragraph, just return.
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (cursor.par->footnoteflag != LyXParagraph::OPEN_FOOTNOTE) {
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
if (!par->next ||
|
|
|
|
|
par->next->footnoteflag != LyXParagraph::OPEN_FOOTNOTE) {
|
2000-02-22 00:36:17 +00:00
|
|
|
|
owner_->owner()->getMiniBuffer()
|
2000-01-13 16:28:54 +00:00
|
|
|
|
->Set(_("Nothing to do"));
|
1999-09-27 18:44:28 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// ok, move the cursor right before the footnote
|
|
|
|
|
// just a little faster than using CursorRight()
|
|
|
|
|
for (cursor.pos = 0;
|
|
|
|
|
cursor.par->ParFromPos(cursor.pos) != par;
|
|
|
|
|
cursor.pos++)
|
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
// now the cursor is at the beginning of the physical par
|
1999-11-04 01:40:20 +00:00
|
|
|
|
SetCursor(cursor.par,
|
|
|
|
|
cursor.pos +
|
2000-03-16 04:29:22 +00:00
|
|
|
|
cursor.par->ParFromPos(cursor.pos)->size());
|
2000-01-13 16:28:54 +00:00
|
|
|
|
} else {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
/* we are in a footnote, so let us move at the beginning */
|
|
|
|
|
/* this is just faster than using just CursorLeft() */
|
|
|
|
|
|
|
|
|
|
tmppar = cursor.par;
|
|
|
|
|
while (tmppar->footnoteflag == LyXParagraph::OPEN_FOOTNOTE) {
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// just a little bit faster than movin the cursor
|
1999-09-27 18:44:28 +00:00
|
|
|
|
tmppar = tmppar->Previous();
|
|
|
|
|
}
|
|
|
|
|
SetCursor(tmppar, tmppar->Last());
|
|
|
|
|
}
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// the cursor must be exactly before the footnote
|
1999-09-27 18:44:28 +00:00
|
|
|
|
par = cursor.par->ParFromPos(cursor.pos);
|
|
|
|
|
|
|
|
|
|
status = LyXText::NEED_MORE_REFRESH;
|
|
|
|
|
refresh_row = cursor.row;
|
|
|
|
|
refresh_y = cursor.y - cursor.row->baseline;
|
|
|
|
|
|
|
|
|
|
tmppar = cursor.par;
|
2000-01-13 16:28:54 +00:00
|
|
|
|
LyXParagraph * endpar = par->NextAfterFootnote()->Next();
|
|
|
|
|
Row * row = cursor.row;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
tmppar->CloseFootnote(cursor.pos);
|
|
|
|
|
|
|
|
|
|
while (tmppar != endpar) {
|
|
|
|
|
RemoveRow(row->next);
|
|
|
|
|
if (row->next)
|
|
|
|
|
tmppar = row->next->par;
|
|
|
|
|
else
|
1999-10-02 16:21:10 +00:00
|
|
|
|
tmppar = 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
AppendParagraph(cursor.row);
|
|
|
|
|
|
|
|
|
|
SetCursor(cursor.par, cursor.pos);
|
|
|
|
|
sel_cursor = cursor;
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// just necessary
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (cursor.row->next)
|
|
|
|
|
SetHeightOfRow(cursor.row->next);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* used in setlayout */
|
|
|
|
|
// Asger is not sure we want to do this...
|
1999-11-04 01:40:20 +00:00
|
|
|
|
void LyXText::MakeFontEntriesLayoutSpecific(LyXParagraph * par)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
LyXLayout const & layout =
|
2000-04-19 01:42:55 +00:00
|
|
|
|
textclasslist.Style(buffer->params.textclass,
|
|
|
|
|
par->GetLayout());
|
1999-11-04 01:40:20 +00:00
|
|
|
|
|
2000-02-29 02:19:17 +00:00
|
|
|
|
LyXFont layoutfont, tmpfont;
|
1999-11-04 01:40:20 +00:00
|
|
|
|
for (LyXParagraph::size_type pos = 0;
|
|
|
|
|
pos < par->Last(); ++pos) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (pos < BeginningOfMainBody(par))
|
1999-11-04 01:40:20 +00:00
|
|
|
|
layoutfont = layout.labelfont;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
else
|
1999-11-04 01:40:20 +00:00
|
|
|
|
layoutfont = layout.font;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
tmpfont = par->GetFontSettings(pos);
|
|
|
|
|
tmpfont.reduce(layoutfont);
|
|
|
|
|
par->SetFont(pos, tmpfont);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2000-05-04 08:14:34 +00:00
|
|
|
|
LyXParagraph * LyXText::SetLayout(LyXCursor & cur, LyXCursor & sstart_cur,
|
|
|
|
|
LyXCursor & send_cur,
|
|
|
|
|
LyXTextClass::size_type layout)
|
|
|
|
|
{
|
|
|
|
|
LyXParagraph * endpar = send_cur.par->LastPhysicalPar()->Next();
|
|
|
|
|
LyXParagraph * undoendpar = endpar;
|
|
|
|
|
|
|
|
|
|
if (endpar && endpar->GetDepth()) {
|
|
|
|
|
while (endpar && endpar->GetDepth()) {
|
|
|
|
|
endpar = endpar->LastPhysicalPar()->Next();
|
|
|
|
|
undoendpar = endpar;
|
|
|
|
|
}
|
|
|
|
|
} else if (endpar) {
|
|
|
|
|
endpar = endpar->Next(); // because of parindents etc.
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SetUndo(Undo::EDIT,
|
|
|
|
|
sstart_cur.par->ParFromPos(sstart_cur.pos)->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(buffer->params.textclass, layout);
|
|
|
|
|
|
|
|
|
|
while (cur.par != send_cur.par) {
|
|
|
|
|
if (cur.par->footnoteflag == sstart_cur.par->footnoteflag) {
|
|
|
|
|
cur.par->SetLayout(layout);
|
|
|
|
|
MakeFontEntriesLayoutSpecific(cur.par);
|
|
|
|
|
LyXParagraph* fppar = cur.par->FirstPhysicalPar();
|
|
|
|
|
fppar->added_space_top = lyxlayout.fill_top ?
|
|
|
|
|
VSpace(VSpace::VFILL) : VSpace(VSpace::NONE);
|
|
|
|
|
fppar->added_space_bottom = 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();
|
|
|
|
|
}
|
|
|
|
|
if (cur.par->footnoteflag == sstart_cur.par->footnoteflag) {
|
|
|
|
|
cur.par->SetLayout(layout);
|
|
|
|
|
MakeFontEntriesLayoutSpecific(cur.par);
|
|
|
|
|
LyXParagraph* fppar = cur.par->FirstPhysicalPar();
|
|
|
|
|
fppar->added_space_top = lyxlayout.fill_top ?
|
|
|
|
|
VSpace(VSpace::VFILL) : VSpace(VSpace::NONE);
|
|
|
|
|
fppar->added_space_bottom = 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;
|
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// set layout over selection and make a total rebreak of those paragraphs
|
2000-02-29 02:19:17 +00:00
|
|
|
|
void LyXText::SetLayout(LyXTextClass::size_type layout)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2000-05-04 08:14:34 +00:00
|
|
|
|
LyXCursor
|
|
|
|
|
tmpcursor = cursor; /* store the current cursor */
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2000-05-04 08:14:34 +00:00
|
|
|
|
#ifdef USE_OLD_SET_LAYOUT
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// if there is no selection just set the layout
|
|
|
|
|
// of the current paragraph */
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (!selection) {
|
2000-01-13 16:28:54 +00:00
|
|
|
|
sel_start_cursor = cursor; // dummy selection
|
1999-09-27 18:44:28 +00:00
|
|
|
|
sel_end_cursor = cursor;
|
|
|
|
|
}
|
|
|
|
|
|
1999-11-04 01:40:20 +00:00
|
|
|
|
LyXParagraph * endpar = sel_end_cursor.par->LastPhysicalPar()->Next();
|
|
|
|
|
LyXParagraph * undoendpar = endpar;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
if (endpar && endpar->GetDepth()) {
|
|
|
|
|
while (endpar && endpar->GetDepth()) {
|
|
|
|
|
endpar = endpar->LastPhysicalPar()->Next();
|
|
|
|
|
undoendpar = endpar;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if (endpar) {
|
2000-01-13 16:28:54 +00:00
|
|
|
|
endpar = endpar->Next(); // because of parindents etc.
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SetUndo(Undo::EDIT,
|
|
|
|
|
sel_start_cursor.par->ParFromPos(sel_start_cursor.pos)->previous,
|
|
|
|
|
undoendpar);
|
|
|
|
|
|
|
|
|
|
/* ok we have a selection. This is always between sel_start_cursor
|
|
|
|
|
* and sel_end cursor */
|
|
|
|
|
cursor = sel_start_cursor;
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
LyXLayout const & lyxlayout =
|
2000-04-19 01:42:55 +00:00
|
|
|
|
textclasslist.Style(buffer->params.textclass, layout);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
while (cursor.par != sel_end_cursor.par) {
|
|
|
|
|
if (cursor.par->footnoteflag ==
|
|
|
|
|
sel_start_cursor.par->footnoteflag) {
|
|
|
|
|
cursor.par->SetLayout(layout);
|
|
|
|
|
MakeFontEntriesLayoutSpecific(cursor.par);
|
|
|
|
|
LyXParagraph* fppar = cursor.par->FirstPhysicalPar();
|
1999-11-04 01:40:20 +00:00
|
|
|
|
fppar->added_space_top = lyxlayout.fill_top ?
|
1999-09-27 18:44:28 +00:00
|
|
|
|
VSpace(VSpace::VFILL) : VSpace(VSpace::NONE);
|
1999-11-04 01:40:20 +00:00
|
|
|
|
fppar->added_space_bottom = lyxlayout.fill_bottom ?
|
1999-09-27 18:44:28 +00:00
|
|
|
|
VSpace(VSpace::VFILL) : VSpace(VSpace::NONE);
|
1999-11-04 01:40:20 +00:00
|
|
|
|
if (lyxlayout.margintype == MARGIN_MANUAL)
|
|
|
|
|
cursor.par->SetLabelWidthString(lyxlayout.labelstring());
|
|
|
|
|
if (lyxlayout.labeltype != LABEL_BIBLIO
|
1999-09-27 18:44:28 +00:00
|
|
|
|
&& fppar->bibkey) {
|
|
|
|
|
delete fppar->bibkey;
|
|
|
|
|
fppar->bibkey = 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
cursor.par = cursor.par->Next();
|
|
|
|
|
}
|
|
|
|
|
if (cursor.par->footnoteflag ==
|
|
|
|
|
sel_start_cursor.par->footnoteflag) {
|
|
|
|
|
cursor.par->SetLayout(layout);
|
|
|
|
|
MakeFontEntriesLayoutSpecific(cursor.par);
|
|
|
|
|
LyXParagraph* fppar = cursor.par->FirstPhysicalPar();
|
1999-11-04 01:40:20 +00:00
|
|
|
|
fppar->added_space_top = lyxlayout.fill_top ?
|
1999-09-27 18:44:28 +00:00
|
|
|
|
VSpace(VSpace::VFILL) : VSpace(VSpace::NONE);
|
1999-11-04 01:40:20 +00:00
|
|
|
|
fppar->added_space_bottom = lyxlayout.fill_bottom ?
|
1999-09-27 18:44:28 +00:00
|
|
|
|
VSpace(VSpace::VFILL) : VSpace(VSpace::NONE);
|
1999-11-04 01:40:20 +00:00
|
|
|
|
if (lyxlayout.margintype == MARGIN_MANUAL)
|
|
|
|
|
cursor.par->SetLabelWidthString(lyxlayout.labelstring());
|
|
|
|
|
if (lyxlayout.labeltype != LABEL_BIBLIO
|
1999-09-27 18:44:28 +00:00
|
|
|
|
&& fppar->bibkey) {
|
|
|
|
|
delete fppar->bibkey;
|
|
|
|
|
fppar->bibkey = 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
2000-05-04 08:14:34 +00:00
|
|
|
|
#else
|
|
|
|
|
// 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(cursor, sel_start_cursor, sel_end_cursor, layout);
|
|
|
|
|
#endif
|
1999-09-27 18:44:28 +00:00
|
|
|
|
RedoParagraphs(sel_start_cursor, endpar);
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// we have to reset the selection, because the
|
|
|
|
|
// geometry could have changed */
|
2000-04-03 11:36:35 +00:00
|
|
|
|
SetCursor(sel_start_cursor.par, sel_start_cursor.pos, false);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
sel_cursor = cursor;
|
2000-04-03 11:36:35 +00:00
|
|
|
|
SetCursor(sel_end_cursor.par, sel_end_cursor.pos, false);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
UpdateCounters(cursor.row);
|
|
|
|
|
ClearSelection();
|
|
|
|
|
SetSelection();
|
2000-04-03 11:36:35 +00:00
|
|
|
|
SetCursor(tmpcursor.par, tmpcursor.pos, true);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// increment depth over selection and
|
|
|
|
|
// make a total rebreak of those paragraphs
|
1999-09-27 18:44:28 +00:00
|
|
|
|
void LyXText::IncDepth()
|
|
|
|
|
{
|
|
|
|
|
// If there is no selection, just use the current paragraph
|
|
|
|
|
if (!selection) {
|
2000-01-13 16:28:54 +00:00
|
|
|
|
sel_start_cursor = cursor; // dummy selection
|
1999-09-27 18:44:28 +00:00
|
|
|
|
sel_end_cursor = cursor;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// We end at the next paragraph with depth 0
|
1999-11-04 01:40:20 +00:00
|
|
|
|
LyXParagraph * endpar = sel_end_cursor.par->LastPhysicalPar()->Next();
|
|
|
|
|
LyXParagraph * undoendpar = endpar;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
if (endpar && endpar->GetDepth()) {
|
|
|
|
|
while (endpar && endpar->GetDepth()) {
|
|
|
|
|
endpar = endpar->LastPhysicalPar()->Next();
|
|
|
|
|
undoendpar = endpar;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if (endpar) {
|
2000-01-13 16:28:54 +00:00
|
|
|
|
endpar = endpar->Next(); // because of parindents etc.
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SetUndo(Undo::EDIT,
|
2000-01-13 16:28:54 +00:00
|
|
|
|
sel_start_cursor
|
|
|
|
|
.par->ParFromPos(sel_start_cursor.pos)->previous,
|
1999-09-27 18:44:28 +00:00
|
|
|
|
undoendpar);
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
LyXCursor tmpcursor = cursor; // store the current cursor
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// ok we have a selection. This is always between sel_start_cursor
|
|
|
|
|
// and sel_end cursor
|
1999-09-27 18:44:28 +00:00
|
|
|
|
cursor = sel_start_cursor;
|
|
|
|
|
|
|
|
|
|
bool anything_changed = false;
|
|
|
|
|
|
|
|
|
|
while (true) {
|
|
|
|
|
// NOTE: you can't change the depth of a bibliography entry
|
|
|
|
|
if (cursor.par->footnoteflag ==
|
|
|
|
|
sel_start_cursor.par->footnoteflag
|
2000-04-19 01:42:55 +00:00
|
|
|
|
&& textclasslist.Style(buffer->params.textclass,
|
1999-09-27 18:44:28 +00:00
|
|
|
|
cursor.par->GetLayout()
|
1999-11-04 01:40:20 +00:00
|
|
|
|
).labeltype != LABEL_BIBLIO) {
|
2000-01-13 16:28:54 +00:00
|
|
|
|
LyXParagraph * prev =
|
|
|
|
|
cursor.par->FirstPhysicalPar()->Previous();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (prev
|
|
|
|
|
&& (prev->GetDepth() - cursor.par->GetDepth() > 0
|
|
|
|
|
|| (prev->GetDepth() == cursor.par->GetDepth()
|
2000-04-19 01:42:55 +00:00
|
|
|
|
&& textclasslist.Style(buffer->params.textclass,
|
1999-11-04 01:40:20 +00:00
|
|
|
|
prev->GetLayout()).isEnvironment()))) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
cursor.par->FirstPhysicalPar()->depth++;
|
|
|
|
|
anything_changed = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (cursor.par == sel_end_cursor.par)
|
|
|
|
|
break;
|
|
|
|
|
cursor.par = cursor.par->Next();
|
|
|
|
|
}
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// if nothing changed set all depth to 0
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (!anything_changed) {
|
|
|
|
|
cursor = sel_start_cursor;
|
|
|
|
|
while (cursor.par != sel_end_cursor.par) {
|
|
|
|
|
cursor.par->FirstPhysicalPar()->depth = 0;
|
|
|
|
|
cursor.par = cursor.par->Next();
|
|
|
|
|
}
|
|
|
|
|
if (cursor.par->footnoteflag == sel_start_cursor.par->footnoteflag)
|
|
|
|
|
cursor.par->FirstPhysicalPar()->depth = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
RedoParagraphs(sel_start_cursor, endpar);
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// we have to reset the selection, because the
|
|
|
|
|
// geometry could have changed
|
1999-09-27 18:44:28 +00:00
|
|
|
|
SetCursor(sel_start_cursor.par, sel_start_cursor.pos);
|
|
|
|
|
sel_cursor = cursor;
|
|
|
|
|
SetCursor(sel_end_cursor.par, sel_end_cursor.pos);
|
|
|
|
|
UpdateCounters(cursor.row);
|
|
|
|
|
ClearSelection();
|
|
|
|
|
SetSelection();
|
|
|
|
|
SetCursor(tmpcursor.par, tmpcursor.pos);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// decrement depth over selection and
|
|
|
|
|
// make a total rebreak of those paragraphs
|
1999-09-27 18:44:28 +00:00
|
|
|
|
void LyXText::DecDepth()
|
|
|
|
|
{
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// if there is no selection just set the layout
|
|
|
|
|
// of the current paragraph
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (!selection) {
|
2000-01-13 16:28:54 +00:00
|
|
|
|
sel_start_cursor = cursor; // dummy selection
|
1999-09-27 18:44:28 +00:00
|
|
|
|
sel_end_cursor = cursor;
|
|
|
|
|
}
|
|
|
|
|
|
1999-11-04 01:40:20 +00:00
|
|
|
|
LyXParagraph * endpar = sel_end_cursor.par->LastPhysicalPar()->Next();
|
|
|
|
|
LyXParagraph * undoendpar = endpar;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
if (endpar && endpar->GetDepth()) {
|
|
|
|
|
while (endpar && endpar->GetDepth()) {
|
|
|
|
|
endpar = endpar->LastPhysicalPar()->Next();
|
|
|
|
|
undoendpar = endpar;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if (endpar) {
|
2000-01-13 16:28:54 +00:00
|
|
|
|
endpar = endpar->Next(); // because of parindents etc.
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SetUndo(Undo::EDIT,
|
2000-01-13 16:28:54 +00:00
|
|
|
|
sel_start_cursor
|
|
|
|
|
.par->ParFromPos(sel_start_cursor.pos)->previous,
|
1999-09-27 18:44:28 +00:00
|
|
|
|
undoendpar);
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
LyXCursor tmpcursor = cursor; // store the current cursor
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// ok we have a selection. This is always between sel_start_cursor
|
|
|
|
|
// and sel_end cursor
|
1999-09-27 18:44:28 +00:00
|
|
|
|
cursor = sel_start_cursor;
|
|
|
|
|
|
|
|
|
|
while (true) {
|
|
|
|
|
if (cursor.par->footnoteflag ==
|
|
|
|
|
sel_start_cursor.par->footnoteflag) {
|
|
|
|
|
if (cursor.par->FirstPhysicalPar()->depth)
|
|
|
|
|
cursor.par->FirstPhysicalPar()->depth--;
|
|
|
|
|
}
|
|
|
|
|
if (cursor.par == sel_end_cursor.par)
|
|
|
|
|
break;
|
|
|
|
|
cursor.par = cursor.par->Next();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
RedoParagraphs(sel_start_cursor, endpar);
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// we have to reset the selection, because the
|
|
|
|
|
// geometry could have changed
|
1999-09-27 18:44:28 +00:00
|
|
|
|
SetCursor(sel_start_cursor.par, sel_start_cursor.pos);
|
|
|
|
|
sel_cursor = cursor;
|
|
|
|
|
SetCursor(sel_end_cursor.par, sel_end_cursor.pos);
|
|
|
|
|
UpdateCounters(cursor.row);
|
|
|
|
|
ClearSelection();
|
|
|
|
|
SetSelection();
|
|
|
|
|
SetCursor(tmpcursor.par, tmpcursor.pos);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// set font over selection and make a total rebreak of those paragraphs
|
2000-02-29 02:19:17 +00:00
|
|
|
|
void LyXText::SetFont(LyXFont const & font, bool toggleall)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// if there is no selection just set the current_font
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (!selection) {
|
|
|
|
|
// Determine basis font
|
|
|
|
|
LyXFont layoutfont;
|
|
|
|
|
if (cursor.pos < BeginningOfMainBody(cursor.par))
|
|
|
|
|
layoutfont = GetFont(cursor.par, -2);
|
|
|
|
|
else
|
|
|
|
|
layoutfont = GetFont(cursor.par, -1);
|
|
|
|
|
// Update current font
|
2000-04-19 01:42:55 +00:00
|
|
|
|
real_current_font.update(font,
|
|
|
|
|
buffer->params.language_info,
|
|
|
|
|
toggleall);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
// Reduce to implicit settings
|
|
|
|
|
current_font = real_current_font;
|
|
|
|
|
current_font.reduce(layoutfont);
|
|
|
|
|
// And resolve it completely
|
|
|
|
|
real_current_font.realize(layoutfont);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
LyXCursor tmpcursor = cursor; // store the current cursor
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// ok we have a selection. This is always between sel_start_cursor
|
|
|
|
|
// and sel_end cursor
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
SetUndo(Undo::EDIT,
|
|
|
|
|
sel_start_cursor.par->ParFromPos(sel_start_cursor.pos)->previous,
|
|
|
|
|
sel_end_cursor.par->ParFromPos(sel_end_cursor.pos)->next);
|
|
|
|
|
cursor = sel_start_cursor;
|
|
|
|
|
while (cursor.par != sel_end_cursor.par ||
|
|
|
|
|
(cursor.par->footnoteflag == sel_start_cursor.par->footnoteflag
|
|
|
|
|
&& cursor.pos < sel_end_cursor.pos))
|
|
|
|
|
{
|
|
|
|
|
if (cursor.pos < cursor.par->Last()
|
|
|
|
|
&& cursor.par->footnoteflag
|
2000-01-13 16:28:54 +00:00
|
|
|
|
== sel_start_cursor.par->footnoteflag) {
|
|
|
|
|
// an open footnote should behave
|
|
|
|
|
// like a closed one
|
1999-11-15 12:01:38 +00:00
|
|
|
|
LyXFont newfont = GetFont(cursor.par, cursor.pos);
|
2000-04-19 01:42:55 +00:00
|
|
|
|
newfont.update(font,
|
|
|
|
|
buffer->params.language_info,
|
|
|
|
|
toggleall);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
SetCharFont(cursor.par, cursor.pos, newfont);
|
|
|
|
|
cursor.pos++;
|
|
|
|
|
} else {
|
|
|
|
|
cursor.pos = 0;
|
|
|
|
|
cursor.par = cursor.par->Next();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
RedoParagraphs(sel_start_cursor, sel_end_cursor.par->Next());
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// we have to reset the selection, because the
|
|
|
|
|
// geometry could have changed
|
1999-09-27 18:44:28 +00:00
|
|
|
|
SetCursor(sel_start_cursor.par, sel_start_cursor.pos);
|
|
|
|
|
sel_cursor = cursor;
|
|
|
|
|
SetCursor(sel_end_cursor.par, sel_end_cursor.pos);
|
|
|
|
|
ClearSelection();
|
|
|
|
|
SetSelection();
|
|
|
|
|
SetCursor(tmpcursor.par, tmpcursor.pos);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
void LyXText::RedoHeightOfParagraph(LyXCursor const & cur)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
1999-12-21 06:10:21 +00:00
|
|
|
|
Row * tmprow = cur.row;
|
|
|
|
|
long y = cur.y - tmprow->baseline;
|
1999-11-04 01:40:20 +00:00
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
SetHeightOfRow(tmprow);
|
1999-11-04 01:40:20 +00:00
|
|
|
|
LyXParagraph * first_phys_par = tmprow->par->FirstPhysicalPar();
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// find the first row of the paragraph
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (first_phys_par != tmprow->par)
|
2000-01-13 16:28:54 +00:00
|
|
|
|
while (tmprow->previous
|
|
|
|
|
&& tmprow->previous->par != first_phys_par) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
tmprow = tmprow->previous;
|
|
|
|
|
y -= tmprow->height;
|
|
|
|
|
SetHeightOfRow(tmprow);
|
|
|
|
|
}
|
2000-01-13 16:28:54 +00:00
|
|
|
|
while (tmprow->previous && tmprow->previous->par == first_phys_par) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
tmprow = tmprow->previous;
|
|
|
|
|
y -= tmprow->height;
|
|
|
|
|
SetHeightOfRow(tmprow);
|
|
|
|
|
}
|
2000-01-13 16:28:54 +00:00
|
|
|
|
|
|
|
|
|
// we can set the refreshing parameters now
|
1999-09-27 18:44:28 +00:00
|
|
|
|
status = LyXText::NEED_MORE_REFRESH;
|
|
|
|
|
refresh_y = y;
|
|
|
|
|
refresh_row = tmprow;
|
1999-12-21 06:10:21 +00:00
|
|
|
|
SetCursor(cur.par, cur.pos);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
void LyXText::RedoDrawingOfParagraph(LyXCursor const & cur)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
1999-12-21 06:10:21 +00:00
|
|
|
|
Row * tmprow = cur.row;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
1999-12-21 06:10:21 +00:00
|
|
|
|
long y = cur.y - tmprow->baseline;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
SetHeightOfRow(tmprow);
|
1999-11-04 01:40:20 +00:00
|
|
|
|
LyXParagraph * first_phys_par = tmprow->par->FirstPhysicalPar();
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// find the first row of the paragraph
|
1999-09-27 18:44:28 +00:00
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// we can set the refreshing parameters now
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (status == LyXText::UNCHANGED || y < refresh_y) {
|
|
|
|
|
refresh_y = y;
|
|
|
|
|
refresh_row = tmprow;
|
|
|
|
|
}
|
|
|
|
|
status = LyXText::NEED_MORE_REFRESH;
|
1999-12-21 06:10:21 +00:00
|
|
|
|
SetCursor(cur.par, cur.pos);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* deletes and inserts again all paragaphs between the cursor
|
|
|
|
|
* and the specified par
|
|
|
|
|
* This function is needed after SetLayout and SetFont etc. */
|
2000-01-13 16:28:54 +00:00
|
|
|
|
void LyXText::RedoParagraphs(LyXCursor const & cur,
|
|
|
|
|
LyXParagraph const * endpar) const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
1999-11-04 01:40:20 +00:00
|
|
|
|
Row * tmprow2;
|
|
|
|
|
LyXParagraph * tmppar, * first_phys_par;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
1999-12-21 06:10:21 +00:00
|
|
|
|
Row * tmprow = cur.row;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
1999-12-21 06:10:21 +00:00
|
|
|
|
long y = cur.y - tmprow->baseline;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
if (!tmprow->previous){
|
|
|
|
|
first_phys_par = FirstParagraph(); // a trick/hack for UNDO
|
2000-01-13 16:28:54 +00:00
|
|
|
|
} else {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
first_phys_par = tmprow->par->FirstPhysicalPar();
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// find the first row of the paragraph
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (first_phys_par != tmprow->par)
|
2000-03-24 13:24:58 +00:00
|
|
|
|
while (tmprow->previous &&
|
|
|
|
|
(tmprow->previous->par != first_phys_par)) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
tmprow = tmprow->previous;
|
|
|
|
|
y -= tmprow->height;
|
|
|
|
|
}
|
2000-01-13 16:28:54 +00:00
|
|
|
|
while (tmprow->previous
|
|
|
|
|
&& tmprow->previous->par == first_phys_par) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
tmprow = tmprow->previous;
|
|
|
|
|
y -= tmprow->height;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// we can set the refreshing parameters now
|
1999-09-27 18:44:28 +00:00
|
|
|
|
status = LyXText::NEED_MORE_REFRESH;
|
|
|
|
|
refresh_y = y;
|
2000-01-13 16:28:54 +00:00
|
|
|
|
refresh_row = tmprow->previous; /* the real refresh row will
|
|
|
|
|
be deleted, so I store
|
|
|
|
|
the previous here */
|
|
|
|
|
// remove it
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (tmprow->next)
|
|
|
|
|
tmppar = tmprow->next->par;
|
|
|
|
|
else
|
1999-10-02 16:21:10 +00:00
|
|
|
|
tmppar = 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
while (tmppar != endpar) {
|
|
|
|
|
RemoveRow(tmprow->next);
|
|
|
|
|
if (tmprow->next)
|
|
|
|
|
tmppar = tmprow->next->par;
|
|
|
|
|
else
|
1999-10-02 16:21:10 +00:00
|
|
|
|
tmppar = 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// remove the first one
|
|
|
|
|
tmprow2 = tmprow; /* this is because tmprow->previous
|
|
|
|
|
can be 0 */
|
1999-09-27 18:44:28 +00:00
|
|
|
|
tmprow = tmprow->previous;
|
|
|
|
|
RemoveRow(tmprow2);
|
|
|
|
|
|
|
|
|
|
tmppar = first_phys_par;
|
|
|
|
|
|
|
|
|
|
do {
|
|
|
|
|
if (tmppar) {
|
|
|
|
|
InsertParagraph(tmppar, tmprow);
|
|
|
|
|
if (!tmprow)
|
|
|
|
|
tmprow = firstrow;
|
|
|
|
|
while (tmprow->next && tmprow->next->par == tmppar)
|
|
|
|
|
tmprow = tmprow->next;
|
|
|
|
|
tmppar = tmppar->Next();
|
|
|
|
|
}
|
2000-01-13 16:28:54 +00:00
|
|
|
|
} while (tmppar != endpar);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// this is because of layout changes
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (refresh_row) {
|
|
|
|
|
refresh_y -= refresh_row->height;
|
|
|
|
|
SetHeightOfRow(refresh_row);
|
2000-01-13 16:28:54 +00:00
|
|
|
|
} else {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
refresh_row = firstrow;
|
|
|
|
|
refresh_y = 0;
|
|
|
|
|
SetHeightOfRow(refresh_row);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (tmprow && tmprow->next)
|
|
|
|
|
SetHeightOfRow(tmprow->next);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-04-26 13:57:28 +00:00
|
|
|
|
bool LyXText::FullRebreak()
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
|
|
|
|
if (need_break_row) {
|
|
|
|
|
BreakAgain(need_break_row);
|
1999-10-02 16:21:10 +00:00
|
|
|
|
need_break_row = 0;
|
2000-04-26 13:57:28 +00:00
|
|
|
|
return true;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
2000-04-26 13:57:28 +00:00
|
|
|
|
return false;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* 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 delet the corresponding row */
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// need the selection cursor:
|
1999-09-27 18:44:28 +00:00
|
|
|
|
void LyXText::SetSelection()
|
|
|
|
|
{
|
|
|
|
|
if (!selection) {
|
|
|
|
|
last_sel_cursor = sel_cursor;
|
|
|
|
|
sel_start_cursor = sel_cursor;
|
|
|
|
|
sel_end_cursor = sel_cursor;
|
|
|
|
|
}
|
|
|
|
|
|
2000-03-08 01:45:25 +00:00
|
|
|
|
selection = true;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// first the toggling area
|
1999-09-27 18:44:28 +00:00
|
|
|
|
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;
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// and now the whole selection
|
2000-02-03 19:51:27 +00:00
|
|
|
|
|
|
|
|
|
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 ||
|
1999-09-27 18:44:28 +00:00
|
|
|
|
(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;
|
|
|
|
|
}
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// a selection with no contents is not a selection
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (sel_start_cursor.x == sel_end_cursor.x &&
|
|
|
|
|
sel_start_cursor.y == sel_end_cursor.y)
|
|
|
|
|
selection = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
void LyXText::ClearSelection() const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
|
|
|
|
selection = false;
|
|
|
|
|
mark_set = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
void LyXText::CursorHome() const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
|
|
|
|
SetCursor(cursor.par, cursor.row->pos);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
void LyXText::CursorEnd() const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
|
|
|
|
if (!cursor.row->next || cursor.row->next->par != cursor.row->par)
|
|
|
|
|
SetCursor(cursor.par, RowLast(cursor.row) + 1);
|
|
|
|
|
else {
|
|
|
|
|
if (cursor.par->Last() &&
|
|
|
|
|
(cursor.par->GetChar(RowLast(cursor.row)) == ' '
|
|
|
|
|
|| cursor.par->IsNewline(RowLast(cursor.row))))
|
|
|
|
|
SetCursor(cursor.par, RowLast(cursor.row));
|
|
|
|
|
else
|
|
|
|
|
SetCursor(cursor.par, RowLast(cursor.row) + 1);
|
|
|
|
|
}
|
|
|
|
|
if (cursor.par->table) {
|
|
|
|
|
int cell = NumberOfCell(cursor.par, cursor.pos);
|
|
|
|
|
if (cursor.par->table->RowHasContRow(cell) &&
|
|
|
|
|
cursor.par->table->CellHasContRow(cell)<0) {
|
|
|
|
|
if (!cursor.row->next || cursor.row->next->par != cursor.row->par)
|
|
|
|
|
SetCursor(cursor.par, RowLast(cursor.row) + 1);
|
|
|
|
|
else {
|
|
|
|
|
if (cursor.par->Last() &&
|
|
|
|
|
(cursor.par->GetChar(RowLast(cursor.row)) == ' '
|
|
|
|
|
|| cursor.par->IsNewline(RowLast(cursor.row))))
|
|
|
|
|
SetCursor(cursor.par, RowLast(cursor.row));
|
|
|
|
|
else
|
|
|
|
|
SetCursor(cursor.par, RowLast(cursor.row) + 1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
void LyXText::CursorTop() const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
|
|
|
|
while (cursor.par->Previous())
|
|
|
|
|
cursor.par = cursor.par->Previous();
|
|
|
|
|
SetCursor(cursor.par, 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
void LyXText::CursorBottom() const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
|
|
|
|
while (cursor.par->Next())
|
|
|
|
|
cursor.par = cursor.par->Next();
|
|
|
|
|
SetCursor(cursor.par, cursor.par->Last());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* returns a pointer to the row near the specified y-coordinate
|
|
|
|
|
* (relative to the whole text). y is set to the real beginning
|
2000-04-26 13:57:28 +00:00
|
|
|
|
* of this row */
|
2000-01-13 16:28:54 +00:00
|
|
|
|
Row * LyXText::GetRowNearY(long & y) const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2000-04-26 13:57:28 +00:00
|
|
|
|
Row * tmprow = firstrow;
|
|
|
|
|
long tmpy = 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2000-04-26 13:57:28 +00:00
|
|
|
|
while (tmprow->next && tmpy + tmprow->height <= y) {
|
|
|
|
|
tmpy += tmprow->height;
|
|
|
|
|
tmprow = tmprow->next;
|
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
y = tmpy; // return the real y
|
1999-09-27 18:44:28 +00:00
|
|
|
|
return tmprow;
|
|
|
|
|
}
|
2000-04-26 13:57:28 +00:00
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
void LyXText::ToggleFree(LyXFont const & font, bool toggleall)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
|
|
|
|
// If the mask is completely neutral, tell user
|
2000-02-17 19:59:08 +00:00
|
|
|
|
if (font == LyXFont(LyXFont::ALL_IGNORE)) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
// Could only happen with user style
|
2000-02-22 00:36:17 +00:00
|
|
|
|
owner_->owner()->getMiniBuffer()
|
2000-01-13 16:28:54 +00:00
|
|
|
|
->Set(_("No font change defined. Use Character under"
|
1999-09-27 18:44:28 +00:00
|
|
|
|
" the Layout menu to define font change."));
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Try implicit word selection
|
2000-04-24 20:58:23 +00:00
|
|
|
|
// If there is a change in the language the implicit word selection
|
|
|
|
|
// is disabled.
|
1999-09-27 18:44:28 +00:00
|
|
|
|
LyXCursor resetCursor = cursor;
|
2000-04-24 20:58:23 +00:00
|
|
|
|
bool implicitSelection = (font.language() == ignore_language)
|
|
|
|
|
? SelectWordWhenUnderCursor() : false;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
// Set font
|
1999-11-15 12:01:38 +00:00
|
|
|
|
SetFont(font, toggleall);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
/* Implicit selections are cleared afterwards and cursor is set to the
|
|
|
|
|
original position. */
|
|
|
|
|
if (implicitSelection) {
|
|
|
|
|
ClearSelection();
|
|
|
|
|
cursor = resetCursor;
|
|
|
|
|
SetCursor( cursor.par, cursor.pos );
|
|
|
|
|
sel_cursor = cursor;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
1999-11-22 16:19:48 +00:00
|
|
|
|
LyXParagraph::size_type LyXText::BeginningOfMainBody(LyXParagraph * par) const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2000-04-19 01:42:55 +00:00
|
|
|
|
if (textclasslist.Style(buffer->params.textclass,
|
2000-01-13 16:28:54 +00:00
|
|
|
|
par->GetLayout()).labeltype != LABEL_MANUAL)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
return 0;
|
|
|
|
|
else
|
|
|
|
|
return par->BeginningOfMainBody();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* if there is a selection, reset every environment you can find
|
|
|
|
|
* in the selection, otherwise just the environment you are in */
|
|
|
|
|
void LyXText::MeltFootnoteEnvironment()
|
|
|
|
|
{
|
1999-11-04 01:40:20 +00:00
|
|
|
|
LyXParagraph * tmppar, * firsttmppar;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
ClearSelection();
|
|
|
|
|
|
|
|
|
|
/* is is only allowed, if the cursor is IN an open footnote.
|
|
|
|
|
* Otherwise it is too dangerous */
|
|
|
|
|
if (cursor.par->footnoteflag != LyXParagraph::OPEN_FOOTNOTE)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
SetUndo(Undo::FINISH,
|
|
|
|
|
cursor.par->PreviousBeforeFootnote()->previous,
|
|
|
|
|
cursor.par->NextAfterFootnote()->next);
|
|
|
|
|
|
|
|
|
|
/* ok, move to the beginning of the footnote. */
|
|
|
|
|
while (cursor.par->footnoteflag == LyXParagraph::OPEN_FOOTNOTE)
|
|
|
|
|
cursor.par = cursor.par->Previous();
|
|
|
|
|
|
|
|
|
|
SetCursor(cursor.par, cursor.par->Last());
|
|
|
|
|
/* this is just faster than using CursorLeft(); */
|
|
|
|
|
|
|
|
|
|
firsttmppar = cursor.par->ParFromPos(cursor.pos);
|
|
|
|
|
tmppar = firsttmppar;
|
|
|
|
|
/* tmppar is now the paragraph right before the footnote */
|
1999-11-04 01:40:20 +00:00
|
|
|
|
|
2000-03-16 04:29:22 +00:00
|
|
|
|
bool first_footnote_par_is_not_empty = tmppar->next->size();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
while (tmppar->next
|
|
|
|
|
&& tmppar->next->footnoteflag == LyXParagraph::OPEN_FOOTNOTE) {
|
|
|
|
|
tmppar = tmppar->next; /* I use next instead of Next(),
|
|
|
|
|
* because there cannot be any
|
|
|
|
|
* footnotes in a footnote
|
|
|
|
|
* environment */
|
1999-09-27 18:44:28 +00:00
|
|
|
|
tmppar->footnoteflag = LyXParagraph::NO_FOOTNOTE;
|
|
|
|
|
|
|
|
|
|
/* remember the captions and empty paragraphs */
|
2000-04-19 01:42:55 +00:00
|
|
|
|
if ((textclasslist.Style(buffer->params.textclass,
|
2000-01-13 16:28:54 +00:00
|
|
|
|
tmppar->GetLayout())
|
|
|
|
|
.labeltype == LABEL_SENSITIVE)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|| !tmppar->Last())
|
|
|
|
|
tmppar->SetLayout(0);
|
|
|
|
|
}
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// now we will paste the ex-footnote, if the layouts allow it
|
|
|
|
|
// first restore the layout of the paragraph right behind
|
|
|
|
|
// the footnote
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (tmppar->next)
|
|
|
|
|
tmppar->next->MakeSameLayout(cursor.par);
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// first the end
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if ((!tmppar->GetLayout() && !tmppar->table)
|
2000-01-13 16:28:54 +00:00
|
|
|
|
|| (tmppar->Next()
|
|
|
|
|
&& (!tmppar->Next()->Last()
|
|
|
|
|
|| tmppar->Next()->HasSameLayout(tmppar)))) {
|
|
|
|
|
if (tmppar->Next()->Last()
|
|
|
|
|
&& tmppar->Next()->IsLineSeparator(0))
|
1999-09-27 18:44:28 +00:00
|
|
|
|
tmppar->Next()->Erase(0);
|
|
|
|
|
tmppar->PasteParagraph();
|
|
|
|
|
}
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
tmppar = tmppar->Next(); /* make sure tmppar cannot be touched
|
|
|
|
|
* by the pasting of the beginning */
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
/* then the beginning */
|
|
|
|
|
/* if there is no space between the text and the footnote, so we insert
|
|
|
|
|
* a blank
|
|
|
|
|
* (only if the previous par and the footnotepar are not empty!) */
|
|
|
|
|
if ((!firsttmppar->next->GetLayout() && !firsttmppar->next->table)
|
|
|
|
|
|| firsttmppar->HasSameLayout(firsttmppar->next)) {
|
2000-03-16 04:29:22 +00:00
|
|
|
|
if (firsttmppar->size()
|
|
|
|
|
&& !firsttmppar->IsSeparator(firsttmppar->size() - 1)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
&& first_footnote_par_is_not_empty) {
|
|
|
|
|
firsttmppar->next->InsertChar(0, ' ');
|
|
|
|
|
}
|
|
|
|
|
firsttmppar->PasteParagraph();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* now redo the paragaphs */
|
|
|
|
|
RedoParagraphs(cursor, tmppar);
|
|
|
|
|
|
|
|
|
|
SetCursor(cursor.par, cursor.pos);
|
|
|
|
|
|
|
|
|
|
/* sometimes it can happen, that there is a counter change */
|
1999-11-04 01:40:20 +00:00
|
|
|
|
Row * row = cursor.row;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
while (row->next && row->par != tmppar && row->next->par != tmppar)
|
|
|
|
|
row = row->next;
|
|
|
|
|
UpdateCounters(row);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ClearSelection();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* 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(bool line_top, bool line_bottom,
|
|
|
|
|
bool pagebreak_top, bool pagebreak_bottom,
|
2000-01-13 16:28:54 +00:00
|
|
|
|
VSpace const & space_top,
|
|
|
|
|
VSpace const & space_bottom,
|
1999-11-04 01:40:20 +00:00
|
|
|
|
LyXAlignment align,
|
1999-10-02 16:21:10 +00:00
|
|
|
|
string labelwidthstring,
|
1999-09-27 18:44:28 +00:00
|
|
|
|
bool noindent)
|
|
|
|
|
{
|
1999-11-04 01:40:20 +00:00
|
|
|
|
LyXCursor tmpcursor = cursor;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (!selection) {
|
|
|
|
|
sel_start_cursor = cursor;
|
|
|
|
|
sel_end_cursor = cursor;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// make sure that the depth behind the selection are restored, too
|
1999-11-04 01:40:20 +00:00
|
|
|
|
LyXParagraph * endpar = sel_end_cursor.par->LastPhysicalPar()->Next();
|
|
|
|
|
LyXParagraph * undoendpar = endpar;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
if (endpar && endpar->GetDepth()) {
|
|
|
|
|
while (endpar && endpar->GetDepth()) {
|
|
|
|
|
endpar = endpar->LastPhysicalPar()->Next();
|
|
|
|
|
undoendpar = endpar;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if (endpar) {
|
2000-01-13 16:28:54 +00:00
|
|
|
|
endpar = endpar->Next(); // because of parindents etc.
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SetUndo(Undo::EDIT,
|
2000-01-13 16:28:54 +00:00
|
|
|
|
sel_start_cursor
|
|
|
|
|
.par->ParFromPos(sel_start_cursor.pos)->previous,
|
1999-09-27 18:44:28 +00:00
|
|
|
|
undoendpar);
|
|
|
|
|
|
|
|
|
|
|
1999-11-04 01:40:20 +00:00
|
|
|
|
LyXParagraph * tmppar = sel_end_cursor.par;
|
2000-01-13 16:28:54 +00:00
|
|
|
|
while (tmppar != sel_start_cursor.par->FirstPhysicalPar()->Previous()) {
|
1999-11-04 01:40:20 +00:00
|
|
|
|
SetCursor(tmppar->FirstPhysicalPar(), 0);
|
|
|
|
|
status = LyXText::NEED_MORE_REFRESH;
|
|
|
|
|
refresh_row = cursor.row;
|
|
|
|
|
refresh_y = cursor.y - cursor.row->baseline;
|
|
|
|
|
if (cursor.par->footnoteflag ==
|
|
|
|
|
sel_start_cursor.par->footnoteflag) {
|
|
|
|
|
cursor.par->line_top = line_top;
|
|
|
|
|
cursor.par->line_bottom = line_bottom;
|
|
|
|
|
cursor.par->pagebreak_top = pagebreak_top;
|
|
|
|
|
cursor.par->pagebreak_bottom = pagebreak_bottom;
|
|
|
|
|
cursor.par->added_space_top = space_top;
|
|
|
|
|
cursor.par->added_space_bottom = space_bottom;
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// does the layout allow the new alignment?
|
1999-11-04 01:40:20 +00:00
|
|
|
|
if (align == LYX_ALIGN_LAYOUT)
|
|
|
|
|
align = textclasslist
|
2000-04-19 01:42:55 +00:00
|
|
|
|
.Style(buffer->params.textclass,
|
1999-11-04 01:40:20 +00:00
|
|
|
|
cursor.par->GetLayout()).align;
|
|
|
|
|
if (align & textclasslist
|
2000-04-19 01:42:55 +00:00
|
|
|
|
.Style(buffer->params.textclass,
|
1999-11-04 01:40:20 +00:00
|
|
|
|
cursor.par->GetLayout()).alignpossible) {
|
|
|
|
|
if (align == textclasslist
|
2000-04-19 01:42:55 +00:00
|
|
|
|
.Style(buffer->params.textclass,
|
1999-11-04 01:40:20 +00:00
|
|
|
|
cursor.par->GetLayout()).align)
|
|
|
|
|
cursor.par->align = LYX_ALIGN_LAYOUT;
|
|
|
|
|
else
|
|
|
|
|
cursor.par->align = align;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
1999-11-04 01:40:20 +00:00
|
|
|
|
cursor.par->SetLabelWidthString(labelwidthstring);
|
|
|
|
|
cursor.par->noindent = noindent;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
1999-11-04 01:40:20 +00:00
|
|
|
|
|
|
|
|
|
tmppar = cursor.par->FirstPhysicalPar()->Previous();
|
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
RedoParagraphs(sel_start_cursor, endpar);
|
|
|
|
|
|
|
|
|
|
ClearSelection();
|
|
|
|
|
SetCursor(sel_start_cursor.par, sel_start_cursor.pos);
|
|
|
|
|
sel_cursor = cursor;
|
|
|
|
|
SetCursor(sel_end_cursor.par, sel_end_cursor.pos);
|
|
|
|
|
SetSelection();
|
|
|
|
|
SetCursor(tmpcursor.par, tmpcursor.pos);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void LyXText::SetParagraphExtraOpt(int type,
|
1999-11-04 01:40:20 +00:00
|
|
|
|
char const * width,
|
|
|
|
|
char const * widthp,
|
1999-09-27 18:44:28 +00:00
|
|
|
|
int alignment, bool hfill,
|
|
|
|
|
bool start_minipage)
|
|
|
|
|
{
|
1999-11-04 01:40:20 +00:00
|
|
|
|
LyXCursor tmpcursor = cursor;
|
|
|
|
|
LyXParagraph * tmppar;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (!selection) {
|
|
|
|
|
sel_start_cursor = cursor;
|
|
|
|
|
sel_end_cursor = cursor;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// make sure that the depth behind the selection are restored, too
|
1999-11-04 01:40:20 +00:00
|
|
|
|
LyXParagraph * endpar = sel_end_cursor.par->LastPhysicalPar()->Next();
|
|
|
|
|
LyXParagraph * undoendpar = endpar;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
if (endpar && endpar->GetDepth()) {
|
|
|
|
|
while (endpar && endpar->GetDepth()) {
|
|
|
|
|
endpar = endpar->LastPhysicalPar()->Next();
|
|
|
|
|
undoendpar = endpar;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if (endpar) {
|
2000-01-13 16:28:54 +00:00
|
|
|
|
endpar = endpar->Next(); // because of parindents etc.
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SetUndo(Undo::EDIT,
|
2000-01-13 16:28:54 +00:00
|
|
|
|
sel_start_cursor
|
|
|
|
|
.par->ParFromPos(sel_start_cursor.pos)->previous,
|
1999-09-27 18:44:28 +00:00
|
|
|
|
undoendpar);
|
|
|
|
|
|
|
|
|
|
tmppar = sel_end_cursor.par;
|
|
|
|
|
while(tmppar != sel_start_cursor.par->FirstPhysicalPar()->Previous()) {
|
|
|
|
|
SetCursor(tmppar->FirstPhysicalPar(), 0);
|
|
|
|
|
status = LyXText::NEED_MORE_REFRESH;
|
|
|
|
|
refresh_row = cursor.row;
|
|
|
|
|
refresh_y = cursor.y - cursor.row->baseline;
|
|
|
|
|
if (cursor.par->footnoteflag ==
|
|
|
|
|
sel_start_cursor.par->footnoteflag) {
|
1999-11-15 12:01:38 +00:00
|
|
|
|
if (type == LyXParagraph::PEXTRA_NONE) {
|
|
|
|
|
if (cursor.par->pextra_type != LyXParagraph::PEXTRA_NONE) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
cursor.par->UnsetPExtraType();
|
1999-11-15 12:01:38 +00:00
|
|
|
|
cursor.par->pextra_type = LyXParagraph::PEXTRA_NONE;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
} else {
|
1999-11-15 12:01:38 +00:00
|
|
|
|
cursor.par->SetPExtraType(type, width, widthp);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
cursor.par->pextra_hfill = hfill;
|
|
|
|
|
cursor.par->pextra_start_minipage = start_minipage;
|
|
|
|
|
cursor.par->pextra_alignment = alignment;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
tmppar = cursor.par->FirstPhysicalPar()->Previous();
|
|
|
|
|
}
|
|
|
|
|
RedoParagraphs(sel_start_cursor, endpar);
|
|
|
|
|
ClearSelection();
|
|
|
|
|
SetCursor(sel_start_cursor.par, sel_start_cursor.pos);
|
|
|
|
|
sel_cursor = cursor;
|
|
|
|
|
SetCursor(sel_end_cursor.par, sel_end_cursor.pos);
|
|
|
|
|
SetSelection();
|
|
|
|
|
SetCursor(tmpcursor.par, tmpcursor.pos);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-03-10 13:22:20 +00:00
|
|
|
|
char loweralphaCounter(int n)
|
|
|
|
|
{
|
|
|
|
|
if (n < 1 || n > 26)
|
|
|
|
|
return '?';
|
|
|
|
|
else
|
|
|
|
|
return 'a' + n - 1;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-03-10 13:22:20 +00:00
|
|
|
|
char alphaCounter(int n)
|
|
|
|
|
{
|
|
|
|
|
if (n < 1 || n > 26)
|
|
|
|
|
return '?';
|
|
|
|
|
else
|
|
|
|
|
return 'A' + n - 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
char hebrewCounter(int n)
|
|
|
|
|
{
|
|
|
|
|
static const char hebrew[22] = {
|
|
|
|
|
'<EFBFBD>', '<EFBFBD>', '<EFBFBD>', '<EFBFBD>', '<EFBFBD>', '<EFBFBD>', '<EFBFBD>', '<EFBFBD>', '<EFBFBD>',
|
|
|
|
|
'<EFBFBD>', '<EFBFBD>', '<EFBFBD>', '<EFBFBD>', '<EFBFBD>', '<EFBFBD>', '<EFBFBD>', '<EFBFBD>', '<EFBFBD>',
|
|
|
|
|
'<EFBFBD>', '<EFBFBD>', '<EFBFBD>', '<EFBFBD>'
|
|
|
|
|
};
|
|
|
|
|
if (n < 1 || n > 22)
|
|
|
|
|
return '?';
|
|
|
|
|
else
|
|
|
|
|
return hebrew[n-1];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static char 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];
|
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// set the counter of a paragraph. This includes the labels
|
|
|
|
|
void LyXText::SetCounter(LyXParagraph * par) const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// this is only relevant for the beginning of paragraph
|
1999-09-27 18:44:28 +00:00
|
|
|
|
par = par->FirstPhysicalPar();
|
|
|
|
|
|
2000-04-19 01:42:55 +00:00
|
|
|
|
LyXLayout const & layout =
|
|
|
|
|
textclasslist.Style(buffer->params.textclass,
|
|
|
|
|
par->GetLayout());
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
LyXTextClass const & textclass =
|
2000-04-19 01:42:55 +00:00
|
|
|
|
textclasslist.TextClass(buffer->params.textclass);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
/* 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()
|
|
|
|
|
&& !(par->Previous()->footnoteflag == LyXParagraph::NO_FOOTNOTE
|
|
|
|
|
&& par->footnoteflag == LyXParagraph::OPEN_FOOTNOTE
|
|
|
|
|
&& par->footnotekind == LyXParagraph::FOOTNOTE)
|
2000-04-19 01:42:55 +00:00
|
|
|
|
&& !(textclasslist.Style(buffer->params.textclass,
|
1999-09-27 18:44:28 +00:00
|
|
|
|
par->Previous()->GetLayout()
|
1999-11-04 01:40:20 +00:00
|
|
|
|
).labeltype != LABEL_BIBLIO
|
|
|
|
|
&& layout.labeltype == LABEL_BIBLIO)) {
|
2000-01-24 18:34:46 +00:00
|
|
|
|
for (int i = 0; i < 10; ++i) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
par->setCounter(i, par->Previous()->GetFirstCounter(i));
|
|
|
|
|
}
|
|
|
|
|
par->appendix = par->Previous()->FirstPhysicalPar()->appendix;
|
|
|
|
|
if (!par->appendix && par->start_of_appendix){
|
|
|
|
|
par->appendix = true;
|
2000-01-24 18:34:46 +00:00
|
|
|
|
for (int i = 0; i < 10; ++i) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
par->setCounter(i, 0);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
par->enumdepth = par->Previous()->FirstPhysicalPar()->enumdepth;
|
|
|
|
|
par->itemdepth = par->Previous()->FirstPhysicalPar()->itemdepth;
|
|
|
|
|
}
|
|
|
|
|
else {
|
2000-01-24 18:34:46 +00:00
|
|
|
|
for (int i = 0; i < 10; ++i) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
par->setCounter(i, 0);
|
|
|
|
|
}
|
|
|
|
|
par->appendix = par->start_of_appendix;
|
|
|
|
|
par->enumdepth = 0;
|
|
|
|
|
par->itemdepth = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// if this is an open marginnote and this is the first
|
|
|
|
|
// entry in the marginnote and the enclosing
|
|
|
|
|
// environment is an enum/item then correct for the
|
|
|
|
|
// LaTeX behaviour (ARRae)
|
|
|
|
|
if(par->footnoteflag == LyXParagraph::OPEN_FOOTNOTE
|
|
|
|
|
&& par->footnotekind == LyXParagraph::MARGIN
|
|
|
|
|
&& par->Previous()
|
|
|
|
|
&& par->Previous()->footnoteflag != LyXParagraph::OPEN_FOOTNOTE
|
|
|
|
|
&& (par->PreviousBeforeFootnote()
|
2000-04-19 01:42:55 +00:00
|
|
|
|
&& textclasslist.Style(buffer->params.textclass,
|
1999-09-27 18:44:28 +00:00
|
|
|
|
par->PreviousBeforeFootnote()->GetLayout()
|
1999-11-04 01:40:20 +00:00
|
|
|
|
).labeltype >= LABEL_COUNTER_ENUMI)) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
// Any itemize or enumerate environment in a marginnote
|
|
|
|
|
// that is embedded in an itemize or enumerate
|
|
|
|
|
// paragraph is seen by LaTeX as being at a deeper
|
|
|
|
|
// level within that enclosing itemization/enumeration
|
|
|
|
|
// even if there is a "standard" layout at the start of
|
|
|
|
|
// the marginnote.
|
|
|
|
|
par->enumdepth++;
|
|
|
|
|
par->itemdepth++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* 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()
|
2000-04-19 01:42:55 +00:00
|
|
|
|
&& textclasslist.Style(buffer->params.textclass,
|
1999-09-27 18:44:28 +00:00
|
|
|
|
par->Previous()->GetLayout()
|
1999-11-04 01:40:20 +00:00
|
|
|
|
).labeltype == LABEL_COUNTER_ENUMI
|
1999-09-27 18:44:28 +00:00
|
|
|
|
&& par->enumdepth < 3
|
|
|
|
|
&& !(par->Previous()->footnoteflag == LyXParagraph::NO_FOOTNOTE
|
|
|
|
|
&& par->footnoteflag == LyXParagraph::OPEN_FOOTNOTE
|
|
|
|
|
&& par->footnotekind == LyXParagraph::FOOTNOTE)
|
1999-11-04 01:40:20 +00:00
|
|
|
|
&& layout.labeltype != LABEL_BIBLIO) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
par->enumdepth++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Maybe we have to decrement the enumeration depth, see note above */
|
|
|
|
|
if (par->Previous()
|
|
|
|
|
&& par->Previous()->GetDepth() > par->GetDepth()
|
|
|
|
|
&& !(par->Previous()->footnoteflag == LyXParagraph::NO_FOOTNOTE
|
|
|
|
|
&& par->footnoteflag == LyXParagraph::OPEN_FOOTNOTE
|
|
|
|
|
&& par->footnotekind == LyXParagraph::FOOTNOTE)
|
1999-11-04 01:40:20 +00:00
|
|
|
|
&& layout.labeltype != LABEL_BIBLIO) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
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
|
|
|
|
|
*/
|
2000-01-24 18:34:46 +00:00
|
|
|
|
for (int i = 6 + par->enumdepth + 1; i < 10; ++i)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
par->setCounter(i, 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!par->labelstring.empty()) {
|
2000-05-04 10:57:00 +00:00
|
|
|
|
par->labelstring.erase();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
1999-11-04 01:40:20 +00:00
|
|
|
|
if (layout.margintype == MARGIN_MANUAL) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (par->labelwidthstring.empty()) {
|
1999-11-04 01:40:20 +00:00
|
|
|
|
par->SetLabelWidthString(layout.labelstring());
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
2000-02-29 02:19:17 +00:00
|
|
|
|
} else {
|
1999-10-02 16:21:10 +00:00
|
|
|
|
par->SetLabelWidthString(string());
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* is it a layout that has an automatic label ? */
|
1999-11-04 01:40:20 +00:00
|
|
|
|
if (layout.labeltype >= LABEL_FIRST_COUNTER) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
int i = layout.labeltype - LABEL_FIRST_COUNTER;
|
2000-04-19 01:42:55 +00:00
|
|
|
|
if (i >= 0 && i<= buffer->params.secnumdepth) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
par->incCounter(i); // increment the counter
|
|
|
|
|
|
|
|
|
|
// Is there a label? Useful for Chapter layout
|
|
|
|
|
if (!par->appendix){
|
1999-11-04 01:40:20 +00:00
|
|
|
|
if (!layout.labelstring().empty())
|
|
|
|
|
par->labelstring = layout.labelstring();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
else
|
2000-05-04 10:57:00 +00:00
|
|
|
|
par->labelstring.erase();
|
2000-01-13 16:28:54 +00:00
|
|
|
|
} else {
|
1999-11-04 01:40:20 +00:00
|
|
|
|
if (!layout.labelstring_appendix().empty())
|
|
|
|
|
par->labelstring = layout.labelstring_appendix();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
else
|
2000-05-04 10:57:00 +00:00
|
|
|
|
par->labelstring.erase();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
2000-03-08 01:45:25 +00:00
|
|
|
|
|
|
|
|
|
#ifdef HAVE_SSTREAM
|
2000-04-04 00:19:15 +00:00
|
|
|
|
std::ostringstream s;
|
2000-03-08 01:45:25 +00:00
|
|
|
|
#else
|
|
|
|
|
ostrstream s;
|
|
|
|
|
#endif
|
|
|
|
|
if (!par->appendix) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
switch (2 * LABEL_FIRST_COUNTER -
|
1999-11-04 01:40:20 +00:00
|
|
|
|
textclass.maxcounter() + i) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
case LABEL_COUNTER_CHAPTER:
|
2000-03-08 01:45:25 +00:00
|
|
|
|
s << par->getCounter(i);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
break;
|
|
|
|
|
case LABEL_COUNTER_SECTION:
|
2000-03-08 01:45:25 +00:00
|
|
|
|
s << par->getCounter(i - 1) << '.'
|
|
|
|
|
<< par->getCounter(i);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
break;
|
|
|
|
|
case LABEL_COUNTER_SUBSECTION:
|
2000-03-08 01:45:25 +00:00
|
|
|
|
s << par->getCounter(i - 2) << '.'
|
|
|
|
|
<< par->getCounter(i - 1) << '.'
|
|
|
|
|
<< par->getCounter(i);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
break;
|
|
|
|
|
case LABEL_COUNTER_SUBSUBSECTION:
|
2000-03-08 01:45:25 +00:00
|
|
|
|
s << par->getCounter(i - 3) << '.'
|
|
|
|
|
<< par->getCounter(i - 2) << '.'
|
|
|
|
|
<< par->getCounter(i - 1) << '.'
|
|
|
|
|
<< par->getCounter(i);
|
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
break;
|
|
|
|
|
case LABEL_COUNTER_PARAGRAPH:
|
2000-03-08 01:45:25 +00:00
|
|
|
|
s << par->getCounter(i - 4) << '.'
|
|
|
|
|
<< par->getCounter(i - 3) << '.'
|
|
|
|
|
<< par->getCounter(i - 2) << '.'
|
|
|
|
|
<< par->getCounter(i - 1) << '.'
|
|
|
|
|
<< par->getCounter(i);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
break;
|
|
|
|
|
case LABEL_COUNTER_SUBPARAGRAPH:
|
2000-03-08 01:45:25 +00:00
|
|
|
|
s << par->getCounter(i - 5) << '.'
|
|
|
|
|
<< par->getCounter(i - 4) << '.'
|
|
|
|
|
<< par->getCounter(i - 3) << '.'
|
|
|
|
|
<< par->getCounter(i - 2) << '.'
|
|
|
|
|
<< par->getCounter(i - 1) << '.'
|
|
|
|
|
<< par->getCounter(i);
|
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
break;
|
|
|
|
|
default:
|
2000-03-08 01:45:25 +00:00
|
|
|
|
s << par->getCounter(i) << '.';
|
1999-09-27 18:44:28 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
2000-03-08 01:45:25 +00:00
|
|
|
|
} else { // appendix
|
1999-11-04 01:40:20 +00:00
|
|
|
|
switch (2 * LABEL_FIRST_COUNTER - textclass.maxcounter() + i) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
case LABEL_COUNTER_CHAPTER:
|
2000-04-10 21:40:13 +00:00
|
|
|
|
if (par->isRightToLeftPar())
|
2000-03-10 13:22:20 +00:00
|
|
|
|
s << hebrewCounter(par->getCounter(i));
|
2000-04-10 21:40:13 +00:00
|
|
|
|
else
|
|
|
|
|
s << alphaCounter(par->getCounter(i));
|
1999-09-27 18:44:28 +00:00
|
|
|
|
break;
|
|
|
|
|
case LABEL_COUNTER_SECTION:
|
2000-04-10 21:40:13 +00:00
|
|
|
|
if (par->isRightToLeftPar())
|
2000-03-10 13:22:20 +00:00
|
|
|
|
s << hebrewCounter(par->getCounter(i - 1));
|
2000-04-10 21:40:13 +00:00
|
|
|
|
else
|
|
|
|
|
s << alphaCounter(par->getCounter(i - 1));
|
2000-03-10 13:22:20 +00:00
|
|
|
|
|
|
|
|
|
s << '.'
|
2000-03-08 01:45:25 +00:00
|
|
|
|
<< par->getCounter(i);
|
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
break;
|
|
|
|
|
case LABEL_COUNTER_SUBSECTION:
|
2000-04-10 21:40:13 +00:00
|
|
|
|
if (par->isRightToLeftPar())
|
2000-03-10 13:22:20 +00:00
|
|
|
|
s << hebrewCounter(par->getCounter(i - 2));
|
2000-04-10 21:40:13 +00:00
|
|
|
|
else
|
|
|
|
|
s << alphaCounter(par->getCounter(i - 2));
|
2000-03-10 13:22:20 +00:00
|
|
|
|
|
|
|
|
|
s << '.'
|
2000-03-08 01:45:25 +00:00
|
|
|
|
<< par->getCounter(i-1) << '.'
|
|
|
|
|
<< par->getCounter(i);
|
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
break;
|
|
|
|
|
case LABEL_COUNTER_SUBSUBSECTION:
|
2000-04-10 21:40:13 +00:00
|
|
|
|
if (par->isRightToLeftPar())
|
2000-03-10 13:22:20 +00:00
|
|
|
|
s << hebrewCounter(par->getCounter(i-3));
|
2000-04-10 21:40:13 +00:00
|
|
|
|
else
|
|
|
|
|
s << alphaCounter(par->getCounter(i-3));
|
2000-03-10 13:22:20 +00:00
|
|
|
|
|
|
|
|
|
s << '.'
|
2000-03-08 01:45:25 +00:00
|
|
|
|
<< par->getCounter(i-2) << '.'
|
|
|
|
|
<< par->getCounter(i-1) << '.'
|
|
|
|
|
<< par->getCounter(i);
|
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
break;
|
|
|
|
|
case LABEL_COUNTER_PARAGRAPH:
|
2000-04-10 21:40:13 +00:00
|
|
|
|
if (par->isRightToLeftPar())
|
2000-03-10 13:22:20 +00:00
|
|
|
|
s << hebrewCounter(par->getCounter(i-4));
|
2000-04-10 21:40:13 +00:00
|
|
|
|
else
|
|
|
|
|
s << alphaCounter(par->getCounter(i-4));
|
2000-03-10 13:22:20 +00:00
|
|
|
|
|
|
|
|
|
s << '.'
|
2000-03-08 01:45:25 +00:00
|
|
|
|
<< par->getCounter(i-3) << '.'
|
|
|
|
|
<< par->getCounter(i-2) << '.'
|
|
|
|
|
<< par->getCounter(i-1) << '.'
|
|
|
|
|
<< par->getCounter(i);
|
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
break;
|
|
|
|
|
case LABEL_COUNTER_SUBPARAGRAPH:
|
2000-04-10 21:40:13 +00:00
|
|
|
|
if (par->isRightToLeftPar())
|
2000-03-10 13:22:20 +00:00
|
|
|
|
s << hebrewCounter(par->getCounter(i-5));
|
2000-04-10 21:40:13 +00:00
|
|
|
|
else
|
|
|
|
|
s << alphaCounter(par->getCounter(i-5));
|
2000-03-10 13:22:20 +00:00
|
|
|
|
|
|
|
|
|
s << '.'
|
2000-03-08 01:45:25 +00:00
|
|
|
|
<< par->getCounter(i-4) << '.'
|
|
|
|
|
<< par->getCounter(i-3) << '.'
|
|
|
|
|
<< par->getCounter(i-2) << '.'
|
|
|
|
|
<< par->getCounter(i-1) << '.'
|
|
|
|
|
<< par->getCounter(i);
|
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
break;
|
|
|
|
|
default:
|
2000-03-08 01:45:25 +00:00
|
|
|
|
// Can this ever be reached? And in the
|
|
|
|
|
// case it is, how can this be correct?
|
|
|
|
|
// (Lgb)
|
|
|
|
|
s << static_cast<unsigned char>(par->getCounter(i)) << '.';
|
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
2000-03-08 01:45:25 +00:00
|
|
|
|
#ifdef HAVE_SSTREAM
|
|
|
|
|
par->labelstring += s.str().c_str();
|
|
|
|
|
// We really want to remove the c_str as soon as
|
|
|
|
|
// possible...
|
|
|
|
|
#else
|
|
|
|
|
s << '\0';
|
|
|
|
|
char * tmps = s.str();
|
|
|
|
|
par->labelstring += tmps;
|
|
|
|
|
delete [] tmps;
|
|
|
|
|
#endif
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
for (i++; i < 10; ++i) {
|
|
|
|
|
// reset the following counters
|
1999-09-27 18:44:28 +00:00
|
|
|
|
par->setCounter(i, 0);
|
|
|
|
|
}
|
1999-11-04 01:40:20 +00:00
|
|
|
|
} else if (layout.labeltype < LABEL_COUNTER_ENUMI) {
|
2000-01-13 16:28:54 +00:00
|
|
|
|
for (i++; i < 10; ++i) {
|
|
|
|
|
// reset the following counters
|
1999-09-27 18:44:28 +00:00
|
|
|
|
par->setCounter(i, 0);
|
|
|
|
|
}
|
1999-11-04 01:40:20 +00:00
|
|
|
|
} else if (layout.labeltype == LABEL_COUNTER_ENUMI) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
par->incCounter(i + par->enumdepth);
|
|
|
|
|
int number = par->getCounter(i + par->enumdepth);
|
2000-02-03 19:51:27 +00:00
|
|
|
|
|
2000-03-08 01:45:25 +00:00
|
|
|
|
#ifdef HAVE_SSTREAM
|
2000-04-04 00:19:15 +00:00
|
|
|
|
std::ostringstream s;
|
2000-03-08 01:45:25 +00:00
|
|
|
|
#else
|
|
|
|
|
ostrstream s;
|
|
|
|
|
#endif
|
1999-09-27 18:44:28 +00:00
|
|
|
|
switch (par->enumdepth) {
|
|
|
|
|
case 1:
|
2000-04-10 21:40:13 +00:00
|
|
|
|
if (par->isRightToLeftPar())
|
2000-03-08 01:45:25 +00:00
|
|
|
|
s << '('
|
2000-04-10 21:40:13 +00:00
|
|
|
|
<< hebrewCounter(number)
|
2000-03-08 01:45:25 +00:00
|
|
|
|
<< ')';
|
2000-02-03 19:51:27 +00:00
|
|
|
|
else
|
2000-03-08 01:45:25 +00:00
|
|
|
|
s << '('
|
2000-04-10 21:40:13 +00:00
|
|
|
|
<< loweralphaCounter(number)
|
2000-03-08 01:45:25 +00:00
|
|
|
|
<< ')';
|
1999-09-27 18:44:28 +00:00
|
|
|
|
break;
|
|
|
|
|
case 2:
|
2000-04-10 21:40:13 +00:00
|
|
|
|
if (par->isRightToLeftPar())
|
2000-03-10 13:22:20 +00:00
|
|
|
|
s << '.' << romanCounter(number);
|
2000-04-10 21:40:13 +00:00
|
|
|
|
else
|
|
|
|
|
s << romanCounter(number) << '.';
|
1999-09-27 18:44:28 +00:00
|
|
|
|
break;
|
|
|
|
|
case 3:
|
2000-04-10 21:40:13 +00:00
|
|
|
|
if (par->isRightToLeftPar())
|
2000-03-08 01:45:25 +00:00
|
|
|
|
s << '.'
|
2000-03-10 13:22:20 +00:00
|
|
|
|
<< alphaCounter(number);
|
2000-04-10 21:40:13 +00:00
|
|
|
|
else
|
|
|
|
|
s << alphaCounter(number)
|
|
|
|
|
<< '.';
|
1999-09-27 18:44:28 +00:00
|
|
|
|
break;
|
|
|
|
|
default:
|
2000-04-10 21:40:13 +00:00
|
|
|
|
if (par->isRightToLeftPar())
|
2000-03-08 01:45:25 +00:00
|
|
|
|
s << '.' << number;
|
2000-04-10 21:40:13 +00:00
|
|
|
|
else
|
|
|
|
|
s << number << '.';
|
1999-09-27 18:44:28 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
2000-03-08 01:45:25 +00:00
|
|
|
|
#ifdef HAVE_SSTREAM
|
|
|
|
|
par->labelstring = s.str().c_str();
|
|
|
|
|
// we really want to get rid of that c_str()
|
|
|
|
|
#else
|
|
|
|
|
s << '\0';
|
|
|
|
|
char * tmps = s.str();
|
|
|
|
|
par->labelstring = tmps;
|
|
|
|
|
delete [] tmps;
|
|
|
|
|
#endif
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
for (i += par->enumdepth + 1; i < 10; ++i)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
par->setCounter(i, 0); /* reset the following counters */
|
|
|
|
|
|
|
|
|
|
}
|
1999-11-04 01:40:20 +00:00
|
|
|
|
} else if (layout.labeltype == LABEL_BIBLIO) {// ale970302
|
2000-01-13 16:28:54 +00:00
|
|
|
|
int i = LABEL_COUNTER_ENUMI - LABEL_FIRST_COUNTER + par->enumdepth;
|
|
|
|
|
par->incCounter(i);
|
|
|
|
|
int number = par->getCounter(i);
|
|
|
|
|
if (!par->bibkey)
|
|
|
|
|
par->bibkey = new InsetBibKey();
|
|
|
|
|
par->bibkey->setCounter(number);
|
|
|
|
|
par->labelstring = layout.labelstring();
|
|
|
|
|
|
|
|
|
|
// In biblio should't be following counters but...
|
|
|
|
|
} else {
|
1999-11-04 01:40:20 +00:00
|
|
|
|
string s = layout.labelstring();
|
2000-01-13 16:28:54 +00:00
|
|
|
|
|
|
|
|
|
// the caption hack:
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
1999-11-04 01:40:20 +00:00
|
|
|
|
if (layout.labeltype == LABEL_SENSITIVE) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (par->footnoteflag != LyXParagraph::NO_FOOTNOTE
|
|
|
|
|
&& (par->footnotekind == LyXParagraph::FIG
|
2000-01-13 16:28:54 +00:00
|
|
|
|
|| par->footnotekind == LyXParagraph::WIDE_FIG))
|
2000-04-10 21:40:13 +00:00
|
|
|
|
s = (par->getParLanguage()->lang == "hebrew")
|
|
|
|
|
? ":<3A><><EFBFBD><EFBFBD>" : "Figure:";
|
1999-09-27 18:44:28 +00:00
|
|
|
|
else if (par->footnoteflag != LyXParagraph::NO_FOOTNOTE
|
|
|
|
|
&& (par->footnotekind == LyXParagraph::TAB
|
2000-01-13 16:28:54 +00:00
|
|
|
|
|| par->footnotekind == LyXParagraph::WIDE_TAB))
|
2000-04-10 21:40:13 +00:00
|
|
|
|
s = (par->getParLanguage()->lang == "hebrew")
|
|
|
|
|
? ":<3A><><EFBFBD><EFBFBD>" : "Table:";
|
1999-09-27 18:44:28 +00:00
|
|
|
|
else if (par->footnoteflag != LyXParagraph::NO_FOOTNOTE
|
|
|
|
|
&& par->footnotekind == LyXParagraph::ALGORITHM)
|
2000-04-10 21:40:13 +00:00
|
|
|
|
s = (par->getParLanguage()->lang == "hebrew")
|
|
|
|
|
? ":<3A><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" : "Algorithm:";
|
1999-09-27 18:44:28 +00:00
|
|
|
|
else {
|
|
|
|
|
/* par->SetLayout(0);
|
|
|
|
|
s = layout->labelstring; */
|
2000-04-10 21:40:13 +00:00
|
|
|
|
s = (par->getParLanguage()->lang == "hebrew")
|
|
|
|
|
? " :<3A><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>" : "Senseless: ";
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
par->labelstring = s;
|
2000-01-13 16:28:54 +00:00
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
/* reset the enumeration counter. They are always resetted
|
|
|
|
|
* when there is any other layout between */
|
2000-01-13 16:28:54 +00:00
|
|
|
|
for (int i = 6 + par->enumdepth; i < 10; ++i)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
par->setCounter(i, 0);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Updates all counters BEHIND the row. Changed paragraphs
|
|
|
|
|
* with a dynamic left margin will be rebroken. */
|
2000-01-13 16:28:54 +00:00
|
|
|
|
void LyXText::UpdateCounters(Row * row) const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
1999-11-04 01:40:20 +00:00
|
|
|
|
LyXParagraph * par;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (!row) {
|
|
|
|
|
row = firstrow;
|
|
|
|
|
par = row->par;
|
|
|
|
|
}
|
|
|
|
|
else {
|
2000-01-13 16:28:54 +00:00
|
|
|
|
if (row->par->next
|
|
|
|
|
&& row->par->next->footnoteflag != LyXParagraph::OPEN_FOOTNOTE) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
par = row->par->LastPhysicalPar()->Next();
|
|
|
|
|
} else {
|
|
|
|
|
par = row->par->next;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
while (par) {
|
|
|
|
|
while (row->par != par)
|
|
|
|
|
row = row->next;
|
2000-01-13 16:28:54 +00:00
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
SetCounter(par);
|
2000-01-13 16:28:54 +00:00
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
/* now check for the headline layouts. remember that they
|
|
|
|
|
* have a dynamic left margin */
|
|
|
|
|
if (!par->IsDummy()
|
2000-04-19 01:42:55 +00:00
|
|
|
|
&& ( textclasslist.Style(buffer->params.textclass,
|
|
|
|
|
par->layout).margintype == MARGIN_DYNAMIC
|
|
|
|
|
|| textclasslist.Style(buffer->params.textclass,
|
|
|
|
|
par->layout).labeltype == LABEL_SENSITIVE)
|
|
|
|
|
) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
/* Rebreak the paragraph */
|
|
|
|
|
RemoveParagraph(row);
|
|
|
|
|
AppendParagraph(row);
|
|
|
|
|
|
|
|
|
|
/* think about the damned open footnotes! */
|
|
|
|
|
while (par->Next() &&
|
|
|
|
|
(par->Next()->footnoteflag == LyXParagraph::OPEN_FOOTNOTE
|
|
|
|
|
|| par->Next()->IsDummy())){
|
|
|
|
|
par = par->Next();
|
|
|
|
|
if (par->IsDummy()) {
|
|
|
|
|
while (row->par != par)
|
|
|
|
|
row = row->next;
|
|
|
|
|
RemoveParagraph(row);
|
|
|
|
|
AppendParagraph(row);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
par = par->LastPhysicalPar()->Next();
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* insets an inset. */
|
|
|
|
|
void LyXText::InsertInset(Inset *inset)
|
|
|
|
|
{
|
2000-04-10 14:29:05 +00:00
|
|
|
|
if (!cursor.par->InsertInsetAllowed(inset))
|
|
|
|
|
return;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
SetUndo(Undo::INSERT,
|
|
|
|
|
cursor.par->ParFromPos(cursor.pos)->previous,
|
|
|
|
|
cursor.par->ParFromPos(cursor.pos)->next);
|
1999-11-15 12:01:38 +00:00
|
|
|
|
cursor.par->InsertChar(cursor.pos, LyXParagraph::META_INSET);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
cursor.par->InsertInset(cursor.pos, inset);
|
1999-11-15 12:01:38 +00:00
|
|
|
|
InsertChar(LyXParagraph::META_INSET); /* just to rebreak and refresh correctly.
|
1999-09-27 18:44:28 +00:00
|
|
|
|
* The character will not be inserted a
|
|
|
|
|
* second time */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-04-10 14:29:05 +00:00
|
|
|
|
#ifdef USE_OLD_CUT_AND_PASTE
|
2000-01-17 21:01:30 +00:00
|
|
|
|
// this is for the simple cut and paste mechanism
|
1999-11-04 01:40:20 +00:00
|
|
|
|
static LyXParagraph * simple_cut_buffer = 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
static char simple_cut_buffer_textclass = 0;
|
|
|
|
|
|
|
|
|
|
void DeleteSimpleCutBuffer()
|
|
|
|
|
{
|
|
|
|
|
if (!simple_cut_buffer)
|
|
|
|
|
return;
|
2000-01-17 21:01:30 +00:00
|
|
|
|
LyXParagraph * tmppar;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
while (simple_cut_buffer) {
|
|
|
|
|
tmppar = simple_cut_buffer;
|
|
|
|
|
simple_cut_buffer = simple_cut_buffer->next;
|
|
|
|
|
delete tmppar;
|
|
|
|
|
}
|
1999-10-02 16:21:10 +00:00
|
|
|
|
simple_cut_buffer = 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
2000-04-10 14:29:05 +00:00
|
|
|
|
#endif
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
void LyXText::copyEnvironmentType()
|
|
|
|
|
{
|
|
|
|
|
copylayouttype = cursor.par->GetLayout();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void LyXText::pasteEnvironmentType()
|
|
|
|
|
{
|
|
|
|
|
SetLayout(copylayouttype);
|
|
|
|
|
}
|
|
|
|
|
|
2000-04-10 14:29:05 +00:00
|
|
|
|
#ifdef USE_OLD_CUT_AND_PASTE
|
1999-09-27 18:44:28 +00:00
|
|
|
|
void LyXText::CutSelection(bool doclear)
|
|
|
|
|
{
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// This doesn't make sense, if there is no selection
|
|
|
|
|
if (!selection)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
return;
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// OK, we have a selection. This is always between sel_start_cursor
|
|
|
|
|
// and sel_end cursor
|
1999-11-04 01:40:20 +00:00
|
|
|
|
LyXParagraph * tmppar;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// Check whether there are half footnotes in the selection
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (sel_start_cursor.par->footnoteflag != LyXParagraph::NO_FOOTNOTE
|
2000-01-17 21:01:30 +00:00
|
|
|
|
|| sel_end_cursor.par->footnoteflag != LyXParagraph::NO_FOOTNOTE) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
tmppar = sel_start_cursor.par;
|
|
|
|
|
while (tmppar != sel_end_cursor.par){
|
2000-01-13 16:28:54 +00:00
|
|
|
|
if (tmppar->footnoteflag != sel_end_cursor.par->footnoteflag) {
|
|
|
|
|
WriteAlert(_("Impossible operation"),
|
|
|
|
|
_("Don't know what to do with half floats."),
|
|
|
|
|
_("sorry."));
|
1999-09-27 18:44:28 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
tmppar = tmppar->Next();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
/* table stuff -- begin */
|
|
|
|
|
if (sel_start_cursor.par->table || sel_end_cursor.par->table) {
|
|
|
|
|
if ( sel_start_cursor.par != sel_end_cursor.par) {
|
|
|
|
|
WriteAlert(_("Impossible operation"),
|
|
|
|
|
_("Don't know what to do with half tables."),
|
|
|
|
|
_("sorry."));
|
1999-09-27 18:44:28 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
sel_start_cursor.par->table->Reinit();
|
|
|
|
|
}
|
2000-01-13 16:28:54 +00:00
|
|
|
|
/* table stuff -- end */
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
// make sure that the depth behind the selection are restored, too
|
1999-11-04 01:40:20 +00:00
|
|
|
|
LyXParagraph * endpar = sel_end_cursor.par->LastPhysicalPar()->Next();
|
|
|
|
|
LyXParagraph * undoendpar = endpar;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
if (endpar && endpar->GetDepth()) {
|
|
|
|
|
while (endpar && endpar->GetDepth()) {
|
|
|
|
|
endpar = endpar->LastPhysicalPar()->Next();
|
|
|
|
|
undoendpar = endpar;
|
|
|
|
|
}
|
2000-01-13 16:28:54 +00:00
|
|
|
|
} else if (endpar) {
|
|
|
|
|
endpar = endpar->Next(); // because of parindents etc.
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SetUndo(Undo::DELETE,
|
2000-01-13 16:28:54 +00:00
|
|
|
|
sel_start_cursor
|
|
|
|
|
.par->ParFromPos(sel_start_cursor.pos)->previous,
|
1999-09-27 18:44:28 +00:00
|
|
|
|
undoendpar);
|
|
|
|
|
|
2000-01-17 21:01:30 +00:00
|
|
|
|
// clear the simple_cut_buffer
|
1999-09-27 18:44:28 +00:00
|
|
|
|
DeleteSimpleCutBuffer();
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// set the textclass
|
2000-04-19 01:42:55 +00:00
|
|
|
|
simple_cut_buffer_textclass = buffer->params.textclass;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
#ifdef WITH_WARNINGS
|
|
|
|
|
#warning Asger: Make cut more intelligent here.
|
|
|
|
|
#endif
|
2000-01-13 16:28:54 +00:00
|
|
|
|
/*
|
|
|
|
|
White paper for "intelligent" cutting:
|
|
|
|
|
|
|
|
|
|
Example: "This is our text."
|
|
|
|
|
Using " our " as selection, cutting will give "This istext.".
|
|
|
|
|
Using "our" as selection, cutting will give "This is text.".
|
|
|
|
|
Using " our" as selection, cutting will give "This is text.".
|
|
|
|
|
Using "our " as selection, cutting will give "This is text.".
|
|
|
|
|
|
|
|
|
|
All those four selections will (however) paste identically:
|
|
|
|
|
Pasting with the cursor right after the "is" will give the
|
|
|
|
|
original text with all four selections.
|
|
|
|
|
|
|
|
|
|
The rationale is to be intelligent such that words are copied,
|
|
|
|
|
cut and pasted in a functional manner.
|
|
|
|
|
|
|
|
|
|
This is not implemented yet. (Asger)
|
|
|
|
|
|
|
|
|
|
The changes below sees to do a lot of what you want. However
|
|
|
|
|
I have not verified that all cases work as they should:
|
|
|
|
|
- cut in single row
|
|
|
|
|
- cut in multiple row
|
|
|
|
|
- cut with insets
|
|
|
|
|
- cut across footnotes and paragraph
|
|
|
|
|
My simplistic tests show that the idea are basically sound but
|
|
|
|
|
there are some items to fix up...we only need to find them
|
2000-01-17 21:01:30 +00:00
|
|
|
|
first.
|
|
|
|
|
|
|
|
|
|
As do redo Asger's example above (with | beeing the cursor in the
|
|
|
|
|
result after cutting.):
|
|
|
|
|
|
|
|
|
|
Example: "This is our text."
|
|
|
|
|
Using " our " as selection, cutting will give "This is|text.".
|
|
|
|
|
Using "our" as selection, cutting will give "This is | text.".
|
|
|
|
|
Using " our" as selection, cutting will give "This is| text.".
|
|
|
|
|
Using "our " as selection, cutting will give "This is |text.".
|
|
|
|
|
|
|
|
|
|
(Lgb)
|
2000-01-13 16:28:54 +00:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
// there are two cases: cut only within one paragraph or
|
|
|
|
|
// more than one paragraph
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
if (sel_start_cursor.par->ParFromPos(sel_start_cursor.pos)
|
|
|
|
|
== sel_end_cursor.par->ParFromPos(sel_end_cursor.pos)) {
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// only within one paragraph
|
1999-11-05 06:02:34 +00:00
|
|
|
|
simple_cut_buffer = new LyXParagraph;
|
1999-11-04 01:40:20 +00:00
|
|
|
|
LyXParagraph::size_type i =
|
|
|
|
|
sel_start_cursor.pos;
|
2000-01-13 16:28:54 +00:00
|
|
|
|
for (; i < sel_end_cursor.pos; ++i) {
|
|
|
|
|
/* table stuff -- begin */
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (sel_start_cursor.par->table
|
2000-01-17 21:01:30 +00:00
|
|
|
|
&& sel_start_cursor.par->IsNewline(sel_start_cursor.pos)) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
sel_start_cursor.par->CopyIntoMinibuffer(sel_start_cursor.pos);
|
|
|
|
|
sel_start_cursor.pos++;
|
|
|
|
|
} else {
|
2000-01-13 16:28:54 +00:00
|
|
|
|
/* table stuff -- end */
|
1999-09-27 18:44:28 +00:00
|
|
|
|
sel_start_cursor.par->CopyIntoMinibuffer(sel_start_cursor.pos);
|
|
|
|
|
sel_start_cursor.par->Erase(sel_start_cursor.pos);
|
|
|
|
|
}
|
|
|
|
|
simple_cut_buffer->InsertFromMinibuffer(simple_cut_buffer->Last());
|
|
|
|
|
}
|
|
|
|
|
endpar = sel_end_cursor.par->Next();
|
2000-01-17 21:01:30 +00:00
|
|
|
|
} else {
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// cut more than one paragraph
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2000-01-17 21:01:30 +00:00
|
|
|
|
sel_end_cursor.par
|
|
|
|
|
->BreakParagraphConservative(sel_end_cursor.pos);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
sel_end_cursor.par = sel_end_cursor.par->Next();
|
|
|
|
|
sel_end_cursor.pos = 0;
|
|
|
|
|
|
|
|
|
|
cursor = sel_end_cursor;
|
2000-01-13 16:28:54 +00:00
|
|
|
|
|
|
|
|
|
sel_start_cursor.par
|
|
|
|
|
->BreakParagraphConservative(sel_start_cursor.pos);
|
|
|
|
|
// store the endparagraph for redoing later
|
2000-01-17 21:01:30 +00:00
|
|
|
|
endpar = sel_end_cursor.par->Next(); /* needed because
|
|
|
|
|
the sel_end_
|
|
|
|
|
cursor.par
|
|
|
|
|
will be pasted! */
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// store the selection
|
|
|
|
|
simple_cut_buffer = sel_start_cursor.par
|
|
|
|
|
->ParFromPos(sel_start_cursor.pos)->next;
|
1999-10-02 16:21:10 +00:00
|
|
|
|
simple_cut_buffer->previous = 0;
|
|
|
|
|
sel_end_cursor.par->previous->next = 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// cut the selection
|
1999-09-27 18:44:28 +00:00
|
|
|
|
sel_start_cursor.par->ParFromPos(sel_start_cursor.pos)->next
|
|
|
|
|
= sel_end_cursor.par;
|
|
|
|
|
|
|
|
|
|
sel_end_cursor.par->previous
|
|
|
|
|
= sel_start_cursor.par->ParFromPos(sel_start_cursor.pos);
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// care about footnotes
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (simple_cut_buffer->footnoteflag) {
|
2000-01-17 21:01:30 +00:00
|
|
|
|
LyXParagraph * tmppar = simple_cut_buffer;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
while (tmppar){
|
|
|
|
|
tmppar->footnoteflag = LyXParagraph::NO_FOOTNOTE;
|
|
|
|
|
tmppar = tmppar->next;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// the cut selection should begin with standard layout
|
1999-09-27 18:44:28 +00:00
|
|
|
|
simple_cut_buffer->Clear();
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// paste the paragraphs again, if possible
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (doclear)
|
|
|
|
|
sel_start_cursor.par->Next()->ClearParagraph();
|
|
|
|
|
if (sel_start_cursor.par->FirstPhysicalPar()->HasSameLayout(sel_start_cursor.par->Next())
|
|
|
|
|
||
|
|
|
|
|
!sel_start_cursor.par->Next()->Last())
|
|
|
|
|
sel_start_cursor.par->ParFromPos(sel_start_cursor.pos)->PasteParagraph();
|
2000-01-17 21:01:30 +00:00
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// sometimes necessary
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (doclear)
|
|
|
|
|
sel_start_cursor.par->ClearParagraph();
|
|
|
|
|
|
|
|
|
|
RedoParagraphs(sel_start_cursor, endpar);
|
|
|
|
|
|
|
|
|
|
ClearSelection();
|
|
|
|
|
cursor = sel_start_cursor;
|
|
|
|
|
SetCursor(cursor.par, cursor.pos);
|
|
|
|
|
sel_cursor = cursor;
|
|
|
|
|
UpdateCounters(cursor.row);
|
|
|
|
|
}
|
|
|
|
|
|
2000-04-10 14:29:05 +00:00
|
|
|
|
#else ///////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
void LyXText::CutSelection(bool doclear)
|
|
|
|
|
{
|
|
|
|
|
// 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
|
|
|
|
|
LyXParagraph * tmppar;
|
|
|
|
|
|
|
|
|
|
// Check whether there are half footnotes in the selection
|
|
|
|
|
if (sel_start_cursor.par->footnoteflag != LyXParagraph::NO_FOOTNOTE
|
|
|
|
|
|| sel_end_cursor.par->footnoteflag != LyXParagraph::NO_FOOTNOTE) {
|
|
|
|
|
tmppar = sel_start_cursor.par;
|
|
|
|
|
while (tmppar != sel_end_cursor.par){
|
|
|
|
|
if (tmppar->footnoteflag != sel_end_cursor.par->footnoteflag) {
|
|
|
|
|
WriteAlert(_("Impossible operation"),
|
|
|
|
|
_("Don't know what to do with half floats."),
|
|
|
|
|
_("sorry."));
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
tmppar = tmppar->Next();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* table stuff -- begin */
|
|
|
|
|
if (sel_start_cursor.par->table || sel_end_cursor.par->table) {
|
|
|
|
|
if ( sel_start_cursor.par != sel_end_cursor.par) {
|
|
|
|
|
WriteAlert(_("Impossible operation"),
|
|
|
|
|
_("Don't know what to do with half tables."),
|
|
|
|
|
_("sorry."));
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
sel_start_cursor.par->table->Reinit();
|
|
|
|
|
}
|
|
|
|
|
/* table stuff -- end */
|
|
|
|
|
|
|
|
|
|
// make sure that the depth behind the selection are restored, too
|
|
|
|
|
LyXParagraph * endpar = sel_end_cursor.par->LastPhysicalPar()->Next();
|
|
|
|
|
LyXParagraph * undoendpar = endpar;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2000-04-10 14:29:05 +00:00
|
|
|
|
if (endpar && endpar->GetDepth()) {
|
|
|
|
|
while (endpar && endpar->GetDepth()) {
|
|
|
|
|
endpar = endpar->LastPhysicalPar()->Next();
|
|
|
|
|
undoendpar = endpar;
|
|
|
|
|
}
|
|
|
|
|
} else if (endpar) {
|
|
|
|
|
endpar = endpar->Next(); // because of parindents etc.
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SetUndo(Undo::DELETE, sel_start_cursor
|
|
|
|
|
.par->ParFromPos(sel_start_cursor.pos)->previous, undoendpar);
|
|
|
|
|
|
|
|
|
|
CutAndPaste cap;
|
|
|
|
|
|
|
|
|
|
// there are two cases: cut only within one paragraph or
|
|
|
|
|
// more than one paragraph
|
|
|
|
|
if (sel_start_cursor.par->ParFromPos(sel_start_cursor.pos)
|
|
|
|
|
== sel_end_cursor.par->ParFromPos(sel_end_cursor.pos)) {
|
|
|
|
|
// only within one paragraph
|
|
|
|
|
endpar = sel_start_cursor.par;
|
|
|
|
|
cap.cutSelection(sel_start_cursor.par, &endpar,
|
|
|
|
|
sel_start_cursor.pos, sel_end_cursor.pos,
|
2000-04-19 01:42:55 +00:00
|
|
|
|
buffer->params.textclass, doclear);
|
2000-04-10 14:29:05 +00:00
|
|
|
|
} else {
|
|
|
|
|
endpar = sel_end_cursor.par;
|
|
|
|
|
|
|
|
|
|
cap.cutSelection(sel_start_cursor.par, &endpar,
|
|
|
|
|
sel_start_cursor.pos, sel_end_cursor.pos,
|
2000-04-19 01:42:55 +00:00
|
|
|
|
buffer->params.textclass, doclear);
|
2000-04-10 14:29:05 +00:00
|
|
|
|
cursor.par = sel_end_cursor.par = endpar;
|
|
|
|
|
cursor.pos = sel_end_cursor.pos;
|
|
|
|
|
}
|
|
|
|
|
endpar = sel_end_cursor.par->Next();
|
|
|
|
|
|
|
|
|
|
// sometimes necessary
|
|
|
|
|
if (doclear)
|
|
|
|
|
sel_start_cursor.par->ClearParagraph();
|
|
|
|
|
|
|
|
|
|
RedoParagraphs(sel_start_cursor, endpar);
|
|
|
|
|
|
|
|
|
|
ClearSelection();
|
|
|
|
|
cursor = sel_start_cursor;
|
|
|
|
|
SetCursor(cursor.par, cursor.pos);
|
|
|
|
|
sel_cursor = cursor;
|
|
|
|
|
UpdateCounters(cursor.row);
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef USE_OLD_CUT_AND_PASTE
|
1999-09-27 18:44:28 +00:00
|
|
|
|
void LyXText::CopySelection()
|
|
|
|
|
{
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// this doesnt make sense, if there is no selection
|
|
|
|
|
if (!selection)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
return;
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// ok we have a selection. This is always between sel_start_cursor
|
|
|
|
|
// and sel_end cursor
|
1999-11-04 01:40:20 +00:00
|
|
|
|
LyXParagraph * tmppar;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
/* check wether there are half footnotes in the selection */
|
|
|
|
|
if (sel_start_cursor.par->footnoteflag != LyXParagraph::NO_FOOTNOTE
|
2000-01-17 21:01:30 +00:00
|
|
|
|
|| sel_end_cursor.par->footnoteflag != LyXParagraph::NO_FOOTNOTE) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
tmppar = sel_start_cursor.par;
|
2000-01-17 21:01:30 +00:00
|
|
|
|
while (tmppar != sel_end_cursor.par) {
|
|
|
|
|
if (tmppar->footnoteflag !=
|
|
|
|
|
sel_end_cursor.par->footnoteflag) {
|
2000-01-13 16:28:54 +00:00
|
|
|
|
WriteAlert(_("Impossible operation"),
|
2000-01-17 21:01:30 +00:00
|
|
|
|
_("Don't know what to do"
|
|
|
|
|
" with half floats."),
|
2000-01-13 16:28:54 +00:00
|
|
|
|
_("sorry."));
|
1999-09-27 18:44:28 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
tmppar = tmppar->Next();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
/* table stuff -- begin */
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (sel_start_cursor.par->table || sel_end_cursor.par->table){
|
|
|
|
|
if ( sel_start_cursor.par != sel_end_cursor.par){
|
2000-01-13 16:28:54 +00:00
|
|
|
|
WriteAlert(_("Impossible operation"),
|
|
|
|
|
_("Don't know what to do with half tables."),
|
|
|
|
|
_("sorry."));
|
1999-09-27 18:44:28 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
2000-01-13 16:28:54 +00:00
|
|
|
|
/* table stuff -- end */
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// delete the simple_cut_buffer
|
1999-09-27 18:44:28 +00:00
|
|
|
|
DeleteSimpleCutBuffer();
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// set the textclass
|
2000-05-04 08:14:34 +00:00
|
|
|
|
simple_cut_buffer_textclass = buffer->params.textclass;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
// copy behind a space if there is one
|
|
|
|
|
while (sel_start_cursor.par->Last() > 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++;
|
2000-04-24 20:58:23 +00:00
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// there are two cases: copy only within one paragraph
|
|
|
|
|
// or more than one paragraph
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (sel_start_cursor.par->ParFromPos(sel_start_cursor.pos)
|
|
|
|
|
== sel_end_cursor.par->ParFromPos(sel_end_cursor.pos)) {
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// only within one paragraph
|
1999-11-04 01:40:20 +00:00
|
|
|
|
simple_cut_buffer = new LyXParagraph;
|
2000-01-13 16:28:54 +00:00
|
|
|
|
LyXParagraph::size_type i = 0;
|
1999-11-04 01:40:20 +00:00
|
|
|
|
for (i = sel_start_cursor.pos; i < sel_end_cursor.pos; ++i){
|
1999-09-27 18:44:28 +00:00
|
|
|
|
sel_start_cursor.par->CopyIntoMinibuffer(i);
|
|
|
|
|
simple_cut_buffer->InsertFromMinibuffer(i - sel_start_cursor.pos);
|
|
|
|
|
}
|
2000-01-13 16:28:54 +00:00
|
|
|
|
} else {
|
|
|
|
|
// copy more than one paragraph
|
|
|
|
|
// clone the paragraphs within the selection
|
|
|
|
|
tmppar =
|
|
|
|
|
sel_start_cursor.par->ParFromPos(sel_start_cursor.pos);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
simple_cut_buffer = tmppar->Clone();
|
|
|
|
|
LyXParagraph *tmppar2 = simple_cut_buffer;
|
|
|
|
|
|
|
|
|
|
while (tmppar != sel_end_cursor.par->ParFromPos(sel_end_cursor.pos)
|
|
|
|
|
&& tmppar->next) {
|
|
|
|
|
tmppar = tmppar->next;
|
|
|
|
|
tmppar2->next = tmppar->Clone();
|
|
|
|
|
tmppar2->next->previous = tmppar2;
|
1999-11-15 12:01:38 +00:00
|
|
|
|
tmppar2 = tmppar2->next;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
1999-10-02 16:21:10 +00:00
|
|
|
|
tmppar2->next = 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// care about footnotes
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (simple_cut_buffer->footnoteflag) {
|
|
|
|
|
tmppar = simple_cut_buffer;
|
|
|
|
|
while (tmppar){
|
2000-01-13 16:28:54 +00:00
|
|
|
|
tmppar->footnoteflag =
|
|
|
|
|
LyXParagraph::NO_FOOTNOTE;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
tmppar = tmppar->next;
|
|
|
|
|
}
|
|
|
|
|
}
|
2000-01-17 21:01:30 +00:00
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// the simple_cut_buffer paragraph is too big
|
1999-11-04 01:40:20 +00:00
|
|
|
|
LyXParagraph::size_type tmpi2 =
|
|
|
|
|
sel_start_cursor.par->PositionInParFromPos(sel_start_cursor.pos);
|
2000-01-13 16:28:54 +00:00
|
|
|
|
for (; tmpi2; --tmpi2)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
simple_cut_buffer->Erase(0);
|
2000-01-17 21:01:30 +00:00
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// now tmppar 2 is too big, delete all after sel_end_cursor.pos
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
tmpi2 = sel_end_cursor.par->PositionInParFromPos(sel_end_cursor.pos);
|
1999-11-04 01:40:20 +00:00
|
|
|
|
while (tmppar2->size() > tmpi2) {
|
2000-03-16 04:29:22 +00:00
|
|
|
|
tmppar2->Erase(tmppar2->size() - 1);
|
1999-11-04 01:40:20 +00:00
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2000-04-10 14:29:05 +00:00
|
|
|
|
#else //////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
void LyXText::CopySelection()
|
|
|
|
|
{
|
|
|
|
|
// 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
|
|
|
|
|
LyXParagraph * tmppar;
|
|
|
|
|
|
|
|
|
|
/* check wether there are half footnotes in the selection */
|
|
|
|
|
if (sel_start_cursor.par->footnoteflag != LyXParagraph::NO_FOOTNOTE
|
|
|
|
|
|| sel_end_cursor.par->footnoteflag != LyXParagraph::NO_FOOTNOTE) {
|
|
|
|
|
tmppar = sel_start_cursor.par;
|
|
|
|
|
while (tmppar != sel_end_cursor.par) {
|
|
|
|
|
if (tmppar->footnoteflag !=
|
|
|
|
|
sel_end_cursor.par->footnoteflag) {
|
|
|
|
|
WriteAlert(_("Impossible operation"),
|
|
|
|
|
_("Don't know what to do"
|
|
|
|
|
" with half floats."),
|
|
|
|
|
_("sorry."));
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
tmppar = tmppar->Next();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* table stuff -- begin */
|
|
|
|
|
if (sel_start_cursor.par->table || sel_end_cursor.par->table){
|
|
|
|
|
if ( sel_start_cursor.par != sel_end_cursor.par){
|
|
|
|
|
WriteAlert(_("Impossible operation"),
|
|
|
|
|
_("Don't know what to do with half tables."),
|
|
|
|
|
_("sorry."));
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
/* table stuff -- end */
|
|
|
|
|
|
|
|
|
|
// copy behind a space if there is one
|
|
|
|
|
while (sel_start_cursor.par->Last() > 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++;
|
|
|
|
|
|
|
|
|
|
CutAndPaste cap;
|
|
|
|
|
|
|
|
|
|
cap.copySelection(sel_start_cursor.par, sel_end_cursor.par,
|
|
|
|
|
sel_start_cursor.pos, sel_end_cursor.pos,
|
2000-04-19 01:42:55 +00:00
|
|
|
|
buffer->params.textclass);
|
2000-04-10 14:29:05 +00:00
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef USE_OLD_CUT_AND_PASTE
|
1999-09-27 18:44:28 +00:00
|
|
|
|
void LyXText::PasteSelection()
|
|
|
|
|
{
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// this does not make sense, if there is nothing to paste
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (!simple_cut_buffer)
|
|
|
|
|
return;
|
|
|
|
|
|
1999-11-04 01:40:20 +00:00
|
|
|
|
LyXParagraph * tmppar;
|
|
|
|
|
LyXParagraph * endpar;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
LyXCursor tmpcursor;
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// be carefull with footnotes in footnotes
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (cursor.par->footnoteflag != LyXParagraph::NO_FOOTNOTE) {
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// check whether the cut_buffer includes a footnote
|
1999-09-27 18:44:28 +00:00
|
|
|
|
tmppar = simple_cut_buffer;
|
2000-01-13 16:28:54 +00:00
|
|
|
|
while (tmppar
|
|
|
|
|
&& tmppar->footnoteflag == LyXParagraph::NO_FOOTNOTE)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
tmppar = tmppar->next;
|
|
|
|
|
|
|
|
|
|
if (tmppar) {
|
|
|
|
|
WriteAlert(_("Impossible operation"),
|
2000-01-13 16:28:54 +00:00
|
|
|
|
_("Can't paste float into float!"),
|
|
|
|
|
_("Sorry."));
|
1999-09-27 18:44:28 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
/* table stuff -- begin */
|
2000-01-17 21:01:30 +00:00
|
|
|
|
if (cursor.par->table) {
|
|
|
|
|
if (simple_cut_buffer->next) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
WriteAlert(_("Impossible operation"),
|
|
|
|
|
_("Table cell cannot include more than one paragraph!"),
|
|
|
|
|
_("Sorry."));
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
2000-01-13 16:28:54 +00:00
|
|
|
|
/* table stuff -- end */
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
SetUndo(Undo::INSERT,
|
|
|
|
|
cursor.par->ParFromPos(cursor.pos)->previous,
|
|
|
|
|
cursor.par->ParFromPos(cursor.pos)->next);
|
|
|
|
|
|
|
|
|
|
tmpcursor = cursor;
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// There are two cases: cutbuffer only one paragraph or many
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (!simple_cut_buffer->next) {
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// only within a paragraph
|
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
tmppar = simple_cut_buffer->Clone();
|
2000-01-13 16:28:54 +00:00
|
|
|
|
/* table stuff -- begin */
|
1999-09-27 18:44:28 +00:00
|
|
|
|
bool table_too_small = false;
|
|
|
|
|
if (tmpcursor.par->table) {
|
2000-03-16 04:29:22 +00:00
|
|
|
|
while (simple_cut_buffer->size()
|
1999-11-04 01:40:20 +00:00
|
|
|
|
&& !table_too_small) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (simple_cut_buffer->IsNewline(0)){
|
|
|
|
|
while(tmpcursor.pos < tmpcursor.par->Last() && !tmpcursor.par->IsNewline(tmpcursor.pos))
|
|
|
|
|
tmpcursor.pos++;
|
|
|
|
|
simple_cut_buffer->Erase(0);
|
|
|
|
|
if (tmpcursor.pos < tmpcursor.par->Last())
|
|
|
|
|
tmpcursor.pos++;
|
|
|
|
|
else
|
|
|
|
|
table_too_small = true;
|
|
|
|
|
} else {
|
2000-01-17 21:01:30 +00:00
|
|
|
|
// This is an attempt to fix the
|
|
|
|
|
// "never insert a space at the
|
|
|
|
|
// beginning of a paragraph" problem.
|
|
|
|
|
if (tmpcursor.pos == 0
|
|
|
|
|
&& simple_cut_buffer->IsLineSeparator(0)) {
|
|
|
|
|
simple_cut_buffer->Erase(0);
|
|
|
|
|
} else {
|
|
|
|
|
simple_cut_buffer->CutIntoMinibuffer(0);
|
|
|
|
|
simple_cut_buffer->Erase(0);
|
|
|
|
|
tmpcursor.par->InsertFromMinibuffer(tmpcursor.pos);
|
|
|
|
|
tmpcursor.pos++;
|
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else {
|
2000-01-13 16:28:54 +00:00
|
|
|
|
/* table stuff -- end */
|
2000-01-17 21:01:30 +00:00
|
|
|
|
// Some provisions should be done here for checking
|
|
|
|
|
// if we are inserting at the beginning of a
|
|
|
|
|
// paragraph. If there are a space at the beginning
|
|
|
|
|
// of the text to insert and we are inserting at
|
|
|
|
|
// the beginning of the paragraph the space should
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// be removed.
|
2000-03-16 04:29:22 +00:00
|
|
|
|
while (simple_cut_buffer->size()) {
|
2000-01-17 21:01:30 +00:00
|
|
|
|
// This is an attempt to fix the
|
|
|
|
|
// "never insert a space at the
|
|
|
|
|
// beginning of a paragraph" problem.
|
|
|
|
|
if (tmpcursor.pos == 0
|
|
|
|
|
&& simple_cut_buffer->IsLineSeparator(0)) {
|
|
|
|
|
simple_cut_buffer->Erase(0);
|
|
|
|
|
} else {
|
|
|
|
|
simple_cut_buffer->CutIntoMinibuffer(0);
|
|
|
|
|
simple_cut_buffer->Erase(0);
|
|
|
|
|
tmpcursor.par->InsertFromMinibuffer(tmpcursor.pos);
|
|
|
|
|
tmpcursor.pos++;
|
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
delete simple_cut_buffer;
|
|
|
|
|
simple_cut_buffer = tmppar;
|
|
|
|
|
endpar = tmpcursor.par->Next();
|
|
|
|
|
} else {
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// many paragraphs
|
2000-04-10 14:29:05 +00:00
|
|
|
|
CutAndPaste cap;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// make a copy of the simple cut_buffer
|
1999-09-27 18:44:28 +00:00
|
|
|
|
tmppar = simple_cut_buffer;
|
1999-11-04 01:40:20 +00:00
|
|
|
|
LyXParagraph * simple_cut_clone = tmppar->Clone();
|
|
|
|
|
LyXParagraph * tmppar2 = simple_cut_clone;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (cursor.par->footnoteflag){
|
|
|
|
|
tmppar->footnoteflag = cursor.par->footnoteflag;
|
|
|
|
|
tmppar->footnotekind = cursor.par->footnotekind;
|
|
|
|
|
}
|
|
|
|
|
while (tmppar->next) {
|
|
|
|
|
tmppar = tmppar->next;
|
|
|
|
|
tmppar2->next = tmppar->Clone();
|
|
|
|
|
tmppar2->next->previous = tmppar2;
|
1999-11-15 12:01:38 +00:00
|
|
|
|
tmppar2 = tmppar2->next;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (cursor.par->footnoteflag){
|
|
|
|
|
tmppar->footnoteflag = cursor.par->footnoteflag;
|
|
|
|
|
tmppar->footnotekind = cursor.par->footnotekind;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// make sure there is no class difference
|
2000-04-10 14:29:05 +00:00
|
|
|
|
cap.SwitchLayoutsBetweenClasses(simple_cut_buffer_textclass,
|
2000-05-04 08:14:34 +00:00
|
|
|
|
buffer->params.textclass,
|
2000-04-10 14:29:05 +00:00
|
|
|
|
simple_cut_buffer);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// make the simple_cut_buffer exactly the same layout than
|
|
|
|
|
// the cursor paragraph
|
1999-09-27 18:44:28 +00:00
|
|
|
|
simple_cut_buffer->MakeSameLayout(cursor.par);
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// find the end of the buffer
|
2000-01-17 21:01:30 +00:00
|
|
|
|
LyXParagraph * lastbuffer = simple_cut_buffer;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
while (lastbuffer->Next())
|
1999-11-15 12:01:38 +00:00
|
|
|
|
lastbuffer = lastbuffer->Next();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
bool paste_the_end = false;
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// open the paragraph for inserting the simple_cut_buffer
|
|
|
|
|
// if necessary
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (cursor.par->Last() > cursor.pos || !cursor.par->Next()){
|
|
|
|
|
cursor.par->BreakParagraphConservative(cursor.pos);
|
|
|
|
|
paste_the_end = true;
|
|
|
|
|
}
|
2000-01-13 16:28:54 +00:00
|
|
|
|
|
|
|
|
|
// set the end for redoing later
|
1999-09-27 18:44:28 +00:00
|
|
|
|
endpar = cursor.par->ParFromPos(cursor.pos)->next->Next();
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// paste it!
|
2000-01-17 21:01:30 +00:00
|
|
|
|
lastbuffer->ParFromPos(lastbuffer->Last())->next =
|
|
|
|
|
cursor.par->ParFromPos(cursor.pos)->next;
|
|
|
|
|
cursor.par->ParFromPos(cursor.pos)->next->previous =
|
|
|
|
|
lastbuffer->ParFromPos(lastbuffer->Last());
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
cursor.par->ParFromPos(cursor.pos)->next = simple_cut_buffer;
|
2000-01-17 21:01:30 +00:00
|
|
|
|
simple_cut_buffer->previous =
|
|
|
|
|
cursor.par->ParFromPos(cursor.pos);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
if (cursor.par->ParFromPos(cursor.pos)->Next() == lastbuffer)
|
|
|
|
|
lastbuffer = cursor.par;
|
|
|
|
|
|
|
|
|
|
cursor.par->ParFromPos(cursor.pos)->PasteParagraph();
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// store the new cursor position
|
1999-09-27 18:44:28 +00:00
|
|
|
|
tmpcursor.par = lastbuffer;
|
|
|
|
|
tmpcursor.pos = lastbuffer->Last();
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// maybe some pasting
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (lastbuffer->Next() && paste_the_end) {
|
|
|
|
|
if (lastbuffer->Next()->HasSameLayout(lastbuffer)) {
|
|
|
|
|
lastbuffer->ParFromPos(lastbuffer->Last())->PasteParagraph();
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
} else if (!lastbuffer->Next()->Last()) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
lastbuffer->Next()->MakeSameLayout(lastbuffer);
|
|
|
|
|
lastbuffer->ParFromPos(lastbuffer->Last())->PasteParagraph();
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
} else if (!lastbuffer->Last()) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
lastbuffer->MakeSameLayout(lastbuffer->next);
|
|
|
|
|
lastbuffer->ParFromPos(lastbuffer->Last())->PasteParagraph();
|
|
|
|
|
|
2000-01-17 21:01:30 +00:00
|
|
|
|
} else
|
|
|
|
|
lastbuffer->Next()->ClearParagraph();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// restore the simple cut buffer
|
1999-09-27 18:44:28 +00:00
|
|
|
|
simple_cut_buffer = simple_cut_clone;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
RedoParagraphs(cursor, endpar);
|
|
|
|
|
|
|
|
|
|
SetCursor(cursor.par, cursor.pos);
|
|
|
|
|
ClearSelection();
|
|
|
|
|
|
|
|
|
|
sel_cursor = cursor;
|
|
|
|
|
SetCursor(tmpcursor.par, tmpcursor.pos);
|
|
|
|
|
SetSelection();
|
|
|
|
|
UpdateCounters(cursor.row);
|
|
|
|
|
}
|
2000-04-10 14:29:05 +00:00
|
|
|
|
|
|
|
|
|
#else ////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
void LyXText::PasteSelection()
|
|
|
|
|
{
|
|
|
|
|
CutAndPaste cap;
|
|
|
|
|
|
|
|
|
|
// this does not make sense, if there is nothing to paste
|
|
|
|
|
if (!cap.checkPastePossible(cursor.par, cursor.pos))
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
SetUndo(Undo::INSERT,
|
|
|
|
|
cursor.par->ParFromPos(cursor.pos)->previous,
|
|
|
|
|
cursor.par->ParFromPos(cursor.pos)->next);
|
|
|
|
|
|
|
|
|
|
LyXParagraph *endpar;
|
|
|
|
|
LyXParagraph *actpar = cursor.par;
|
|
|
|
|
int endpos = cursor.pos;
|
|
|
|
|
|
2000-04-19 01:42:55 +00:00
|
|
|
|
cap.pasteSelection(&actpar, &endpar, endpos, buffer->params.textclass);
|
2000-04-10 14:29:05 +00:00
|
|
|
|
|
|
|
|
|
RedoParagraphs(cursor, endpar);
|
|
|
|
|
|
|
|
|
|
SetCursor(cursor.par, cursor.pos);
|
|
|
|
|
ClearSelection();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2000-04-10 14:29:05 +00:00
|
|
|
|
sel_cursor = cursor;
|
|
|
|
|
SetCursor(actpar, endpos);
|
|
|
|
|
SetSelection();
|
|
|
|
|
UpdateCounters(cursor.row);
|
|
|
|
|
}
|
|
|
|
|
#endif
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// returns a pointer to the very first LyXParagraph
|
|
|
|
|
LyXParagraph * LyXText::FirstParagraph() const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2000-04-10 21:40:13 +00:00
|
|
|
|
return buffer->paragraph;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// returns true if the specified string is at the specified position
|
1999-11-04 01:40:20 +00:00
|
|
|
|
bool LyXText::IsStringInText(LyXParagraph * par,
|
|
|
|
|
LyXParagraph::size_type pos,
|
2000-01-13 16:28:54 +00:00
|
|
|
|
char const * str) const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
|
|
|
|
if (par) {
|
|
|
|
|
int i = 0;
|
1999-11-04 01:40:20 +00:00
|
|
|
|
while (pos + i < par->Last() && str[i] &&
|
1999-11-05 06:02:34 +00:00
|
|
|
|
str[i] == par->GetChar(pos + i)) {
|
|
|
|
|
++i;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
1999-11-04 01:40:20 +00:00
|
|
|
|
if (!str[i])
|
1999-09-27 18:44:28 +00:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// sets the selection over the number of characters of string, no check!!
|
1999-11-04 01:40:20 +00:00
|
|
|
|
void LyXText::SetSelectionOverString(char const * string)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
|
|
|
|
sel_cursor = cursor;
|
1999-11-04 01:40:20 +00:00
|
|
|
|
for (int i = 0; string[i]; ++i)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
CursorRight();
|
|
|
|
|
SetSelection();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// simple replacing. The font of the first selected character is used
|
1999-11-04 01:40:20 +00:00
|
|
|
|
void LyXText::ReplaceSelectionWithString(char const * str)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
|
|
|
|
SetCursorParUndo();
|
|
|
|
|
FreezeUndo();
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
if (!selection) { // create a dummy selection
|
1999-09-27 18:44:28 +00:00
|
|
|
|
sel_end_cursor = cursor;
|
|
|
|
|
sel_start_cursor = cursor;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Get font setting before we cut
|
1999-11-04 01:40:20 +00:00
|
|
|
|
LyXParagraph::size_type pos = sel_end_cursor.pos;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
LyXFont font = sel_start_cursor.par->GetFontSettings(sel_start_cursor.pos);
|
|
|
|
|
|
|
|
|
|
// Insert the new string
|
1999-11-04 01:40:20 +00:00
|
|
|
|
for (int i = 0; str[i]; ++i) {
|
|
|
|
|
sel_end_cursor.par->InsertChar(pos, str[i]);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
sel_end_cursor.par->SetFont(pos, font);
|
1999-11-04 01:40:20 +00:00
|
|
|
|
++pos;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Cut the selection
|
|
|
|
|
CutSelection();
|
|
|
|
|
|
|
|
|
|
UnFreezeUndo();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// if the string can be found: return true and set the cursor to
|
|
|
|
|
// the new position
|
|
|
|
|
bool LyXText::SearchForward(char const * str) const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
1999-11-04 01:40:20 +00:00
|
|
|
|
LyXParagraph * par = cursor.par;
|
|
|
|
|
LyXParagraph::size_type pos = cursor.pos;
|
|
|
|
|
while (par && !IsStringInText(par, pos, str)) {
|
|
|
|
|
if (pos < par->Last() - 1)
|
|
|
|
|
++pos;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
else {
|
|
|
|
|
pos = 0;
|
|
|
|
|
par = par->Next();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (par) {
|
1999-11-15 12:01:38 +00:00
|
|
|
|
SetCursor(par, pos);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
bool LyXText::SearchBackward(char const * string) const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
1999-11-04 01:40:20 +00:00
|
|
|
|
LyXParagraph * par = cursor.par;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
int pos = cursor.pos;
|
|
|
|
|
|
|
|
|
|
do {
|
2000-01-13 16:28:54 +00:00
|
|
|
|
if (pos > 0)
|
|
|
|
|
--pos;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
else {
|
|
|
|
|
// We skip empty paragraphs (Asger)
|
|
|
|
|
do {
|
|
|
|
|
par = par->Previous();
|
|
|
|
|
if (par)
|
2000-01-13 16:28:54 +00:00
|
|
|
|
pos = par->Last() - 1;
|
|
|
|
|
} while (par && pos < 0);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
1999-11-15 12:01:38 +00:00
|
|
|
|
} while (par && !IsStringInText(par, pos, string));
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
if (par) {
|
1999-11-15 12:01:38 +00:00
|
|
|
|
SetCursor(par, pos);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
return true;
|
2000-01-13 16:28:54 +00:00
|
|
|
|
} else
|
1999-09-27 18:44:28 +00:00
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// needed to insert the selection
|
2000-03-16 04:29:22 +00:00
|
|
|
|
void LyXText::InsertStringA(string const & str)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
1999-11-04 01:40:20 +00:00
|
|
|
|
LyXParagraph * par = cursor.par;
|
|
|
|
|
LyXParagraph::size_type pos = cursor.pos;
|
|
|
|
|
LyXParagraph::size_type a = 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
int cell = 0;
|
1999-11-04 01:40:20 +00:00
|
|
|
|
LyXParagraph * endpar = cursor.par->Next();
|
2000-01-13 16:28:54 +00:00
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
SetCursorParUndo();
|
2000-01-13 16:28:54 +00:00
|
|
|
|
|
2000-02-29 02:19:17 +00:00
|
|
|
|
bool flag =
|
2000-04-19 01:42:55 +00:00
|
|
|
|
textclasslist.Style(buffer->params.textclass,
|
2000-01-13 16:28:54 +00:00
|
|
|
|
cursor.par->GetLayout()).isEnvironment();
|
|
|
|
|
// only to be sure, should not be neccessary
|
1999-09-27 18:44:28 +00:00
|
|
|
|
ClearSelection();
|
2000-01-13 16:28:54 +00:00
|
|
|
|
|
|
|
|
|
// insert the string, don't insert doublespace
|
1999-11-19 14:50:33 +00:00
|
|
|
|
string::size_type i = 0;
|
|
|
|
|
while (i < str.length()) {
|
|
|
|
|
if (str[i] != '\n') {
|
|
|
|
|
if (str[i] == ' '
|
2000-01-13 16:28:54 +00:00
|
|
|
|
&& i + 1 < str.length() && str[i + 1] != ' '
|
|
|
|
|
&& pos && par->GetChar(pos - 1)!= ' ') {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
par->InsertChar(pos,' ');
|
2000-03-17 10:14:46 +00:00
|
|
|
|
par->SetFont(pos, current_font);
|
2000-01-13 16:28:54 +00:00
|
|
|
|
++pos;
|
|
|
|
|
} else if (par->table) {
|
|
|
|
|
if (str[i] == '\t') {
|
|
|
|
|
while((pos < par->size()) &&
|
|
|
|
|
(par->GetChar(pos) != LyXParagraph::META_NEWLINE))
|
|
|
|
|
++pos;
|
|
|
|
|
if (pos < par->size())
|
|
|
|
|
++pos;
|
|
|
|
|
else // no more fields to fill skip the rest
|
|
|
|
|
break;
|
|
|
|
|
} else if ((str[i] != 13) &&
|
|
|
|
|
((str[i] & 127) >= ' ')) {
|
|
|
|
|
par->InsertChar(pos, str[i]);
|
2000-03-17 10:14:46 +00:00
|
|
|
|
par->SetFont(pos, current_font);
|
2000-01-13 16:28:54 +00:00
|
|
|
|
++pos;
|
|
|
|
|
}
|
|
|
|
|
} else if (str[i] == ' ') {
|
2000-02-29 02:19:17 +00:00
|
|
|
|
InsetSpecialChar * new_inset =
|
|
|
|
|
new InsetSpecialChar(InsetSpecialChar::PROTECTED_SEPARATOR);
|
2000-04-10 14:29:05 +00:00
|
|
|
|
if (par->InsertInsetAllowed(new_inset)) {
|
|
|
|
|
par->InsertChar(pos, LyXParagraph::META_INSET);
|
|
|
|
|
par->SetFont(pos, current_font);
|
|
|
|
|
par->InsertInset(pos, new_inset);
|
|
|
|
|
} else {
|
|
|
|
|
delete new_inset;
|
|
|
|
|
}
|
2000-01-13 16:28:54 +00:00
|
|
|
|
++pos;
|
|
|
|
|
} else if (str[i] == '\t') {
|
|
|
|
|
for (a = pos; a < (pos / 8 + 1) * 8 ; ++a) {
|
2000-02-29 02:19:17 +00:00
|
|
|
|
InsetSpecialChar * new_inset =
|
|
|
|
|
new InsetSpecialChar(InsetSpecialChar::PROTECTED_SEPARATOR);
|
2000-04-10 14:29:05 +00:00
|
|
|
|
if (par->InsertInsetAllowed(new_inset)) {
|
|
|
|
|
par->InsertChar(pos, LyXParagraph::META_INSET);
|
|
|
|
|
par->SetFont(pos, current_font);
|
|
|
|
|
par->InsertInset(pos, new_inset);
|
|
|
|
|
} else {
|
|
|
|
|
delete new_inset;
|
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
pos = a;
|
2000-03-16 04:29:22 +00:00
|
|
|
|
} else if (str[i] != 13 &&
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// Ignore unprintables
|
|
|
|
|
(str[i] & 127) >= ' ') {
|
1999-11-15 12:01:38 +00:00
|
|
|
|
par->InsertChar(pos, str[i]);
|
2000-03-17 10:14:46 +00:00
|
|
|
|
par->SetFont(pos, current_font);
|
2000-01-13 16:28:54 +00:00
|
|
|
|
++pos;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
if (par->table) {
|
2000-01-13 16:28:54 +00:00
|
|
|
|
if (i + 1 >= str.length()) {
|
|
|
|
|
++pos;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
1999-11-04 01:40:20 +00:00
|
|
|
|
while((pos < par->size()) &&
|
1999-11-15 12:01:38 +00:00
|
|
|
|
(par->GetChar(pos) != LyXParagraph::META_NEWLINE))
|
2000-01-13 16:28:54 +00:00
|
|
|
|
++pos;
|
|
|
|
|
++pos;
|
1999-11-15 12:01:38 +00:00
|
|
|
|
cell = NumberOfCell(par, pos);
|
1999-11-04 01:40:20 +00:00
|
|
|
|
while((pos < par->size()) &&
|
|
|
|
|
!(par->table->IsFirstCell(cell))) {
|
2000-02-29 02:19:17 +00:00
|
|
|
|
|
1999-11-04 01:40:20 +00:00
|
|
|
|
while((pos < par->size()) &&
|
1999-11-15 12:01:38 +00:00
|
|
|
|
(par->GetChar(pos) != LyXParagraph::META_NEWLINE))
|
1999-11-04 01:40:20 +00:00
|
|
|
|
++pos;
|
|
|
|
|
++pos;
|
1999-11-15 12:01:38 +00:00
|
|
|
|
cell = NumberOfCell(par, pos);
|
1999-11-04 01:40:20 +00:00
|
|
|
|
}
|
|
|
|
|
if (pos >= par->size())
|
|
|
|
|
// no more fields to fill skip the rest
|
|
|
|
|
break;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
} else {
|
2000-03-16 04:29:22 +00:00
|
|
|
|
if (!par->size()) { // par is empty
|
2000-02-29 02:19:17 +00:00
|
|
|
|
InsetSpecialChar * new_inset =
|
|
|
|
|
new InsetSpecialChar(InsetSpecialChar::PROTECTED_SEPARATOR);
|
2000-04-10 14:29:05 +00:00
|
|
|
|
if (par->InsertInsetAllowed(new_inset)) {
|
|
|
|
|
par->InsertChar(pos, LyXParagraph::META_INSET);
|
|
|
|
|
par->SetFont(pos, current_font);
|
|
|
|
|
par->InsertInset(pos, new_inset);
|
|
|
|
|
} else {
|
|
|
|
|
delete new_inset;
|
|
|
|
|
}
|
2000-01-13 16:28:54 +00:00
|
|
|
|
++pos;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
par->BreakParagraph(pos, flag);
|
|
|
|
|
par = par->Next();
|
|
|
|
|
pos = 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
2000-01-13 16:28:54 +00:00
|
|
|
|
++i;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
2000-01-13 16:28:54 +00:00
|
|
|
|
|
1999-11-15 12:01:38 +00:00
|
|
|
|
RedoParagraphs(cursor, endpar);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
SetCursor(cursor.par, cursor.pos);
|
|
|
|
|
sel_cursor = cursor;
|
|
|
|
|
SetCursor(par, pos);
|
|
|
|
|
SetSelection();
|
|
|
|
|
}
|
|
|
|
|
|
1999-11-04 01:40:20 +00:00
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
/* 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 */
|
2000-03-16 04:29:22 +00:00
|
|
|
|
void LyXText::InsertStringB(string const & s)
|
1999-11-04 01:40:20 +00:00
|
|
|
|
{
|
|
|
|
|
string str(s);
|
|
|
|
|
LyXParagraph * par = cursor.par;
|
1999-11-19 14:50:33 +00:00
|
|
|
|
string::size_type i = 1;
|
|
|
|
|
while (i < str.length()) {
|
1999-11-04 01:40:20 +00:00
|
|
|
|
if (str[i] == '\t' && !par->table)
|
|
|
|
|
str[i] = ' ';
|
2000-01-13 16:28:54 +00:00
|
|
|
|
if (str[i] == ' ' && i + 1 < str.length() && str[i + 1] == ' ')
|
1999-11-04 01:40:20 +00:00
|
|
|
|
str[i] = 13;
|
2000-01-13 16:28:54 +00:00
|
|
|
|
if (str[i] == '\n' && i + 1 < str.length() && !par->table){
|
1999-11-04 01:40:20 +00:00
|
|
|
|
if (str[i + 1] != '\n') {
|
|
|
|
|
if (str[i - 1] != ' ')
|
|
|
|
|
str[i] = ' ';
|
1999-09-27 18:44:28 +00:00
|
|
|
|
else
|
1999-11-04 01:40:20 +00:00
|
|
|
|
str[i] = 13;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
2000-01-13 16:28:54 +00:00
|
|
|
|
while (i + 1 < str.length()
|
1999-11-19 14:50:33 +00:00
|
|
|
|
&& (str[i + 1] == ' '
|
|
|
|
|
|| str[i + 1] == '\t'
|
|
|
|
|
|| str[i + 1] == '\n'
|
|
|
|
|
|| str[i + 1] == 13)) {
|
1999-11-04 01:40:20 +00:00
|
|
|
|
str[i + 1] = 13;
|
|
|
|
|
++i;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
1999-11-04 01:40:20 +00:00
|
|
|
|
++i;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
2000-03-16 04:29:22 +00:00
|
|
|
|
InsertStringA(str);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
bool LyXText::GotoNextError() const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
1999-11-15 12:01:38 +00:00
|
|
|
|
LyXCursor res = cursor;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
do {
|
1999-11-04 01:40:20 +00:00
|
|
|
|
if (res.pos < res.par->Last() - 1) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
res.pos++;
|
|
|
|
|
}
|
|
|
|
|
else {
|
1999-11-15 12:01:38 +00:00
|
|
|
|
res.par = res.par->Next();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
res.pos = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} while (res.par &&
|
1999-11-15 12:01:38 +00:00
|
|
|
|
!(res.par->GetChar(res.pos) == LyXParagraph::META_INSET
|
1999-09-27 18:44:28 +00:00
|
|
|
|
&& res.par->GetInset(res.pos)->AutoDelete()));
|
|
|
|
|
|
|
|
|
|
if (res.par) {
|
|
|
|
|
SetCursor(res.par, res.pos);
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
bool LyXText::GotoNextNote() const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
1999-11-15 12:01:38 +00:00
|
|
|
|
LyXCursor res = cursor;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
do {
|
2000-01-13 16:28:54 +00:00
|
|
|
|
if (res.pos < res.par->Last() - 1) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
res.pos++;
|
2000-01-13 16:28:54 +00:00
|
|
|
|
} else {
|
1999-11-15 12:01:38 +00:00
|
|
|
|
res.par = res.par->Next();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
res.pos = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} while (res.par &&
|
1999-11-15 12:01:38 +00:00
|
|
|
|
!(res.par->GetChar(res.pos) == LyXParagraph::META_INSET
|
|
|
|
|
&& res.par->GetInset(res.pos)->LyxCode() == Inset::IGNORE_CODE));
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
if (res.par) {
|
|
|
|
|
SetCursor(res.par, res.pos);
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
1999-11-04 01:40:20 +00:00
|
|
|
|
void LyXText::CheckParagraph(LyXParagraph * par,
|
|
|
|
|
LyXParagraph::size_type pos)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2000-04-26 13:57:28 +00:00
|
|
|
|
LyXCursor tmpcursor;
|
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
/* table stuff -- begin*/
|
|
|
|
|
|
|
|
|
|
if (par->table) {
|
|
|
|
|
CheckParagraphInTable(par, pos);
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
/* table stuff -- end*/
|
|
|
|
|
|
|
|
|
|
long y = 0;
|
1999-11-04 01:40:20 +00:00
|
|
|
|
LyXParagraph::size_type z;
|
|
|
|
|
Row * row = GetRow(par, pos, y);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// is there a break one row above
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (row->previous && row->previous->par == row->par) {
|
|
|
|
|
z = NextBreakPoint(row->previous, paperwidth);
|
|
|
|
|
if ( z >= row->pos) {
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// set the dimensions of the row above
|
1999-09-27 18:44:28 +00:00
|
|
|
|
y -= row->previous->height;
|
|
|
|
|
refresh_y = y;
|
|
|
|
|
refresh_row = row->previous;
|
|
|
|
|
status = LyXText::NEED_MORE_REFRESH;
|
|
|
|
|
|
|
|
|
|
BreakAgain(row->previous);
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// set the cursor again. Otherwise
|
|
|
|
|
// dangling pointers are possible
|
1999-09-27 18:44:28 +00:00
|
|
|
|
SetCursor(cursor.par, cursor.pos);
|
|
|
|
|
sel_cursor = cursor;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int tmpheight = row->height;
|
1999-11-04 01:40:20 +00:00
|
|
|
|
LyXParagraph::size_type tmplast = RowLast(row);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
refresh_y = y;
|
|
|
|
|
refresh_row = row;
|
|
|
|
|
|
|
|
|
|
BreakAgain(row);
|
|
|
|
|
if (row->height == tmpheight && RowLast(row) == tmplast)
|
|
|
|
|
status = LyXText::NEED_VERY_LITTLE_REFRESH;
|
|
|
|
|
else
|
|
|
|
|
status = LyXText::NEED_MORE_REFRESH;
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// check the special right address boxes
|
2000-04-19 01:42:55 +00:00
|
|
|
|
if (textclasslist.Style(buffer->params.textclass,
|
2000-01-13 16:28:54 +00:00
|
|
|
|
par->GetLayout()).margintype
|
|
|
|
|
== MARGIN_RIGHT_ADDRESS_BOX) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
tmpcursor.par = par;
|
|
|
|
|
tmpcursor.row = row;
|
|
|
|
|
tmpcursor.y = y;
|
|
|
|
|
tmpcursor.x = 0;
|
|
|
|
|
tmpcursor.x_fix = 0;
|
|
|
|
|
tmpcursor.pos = pos;
|
|
|
|
|
RedoDrawingOfParagraph(tmpcursor);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// set the cursor again. Otherwise dangling pointers are possible
|
1999-09-27 18:44:28 +00:00
|
|
|
|
// also set the selection
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
if (selection) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
tmpcursor = cursor;
|
|
|
|
|
SetCursorIntern(sel_cursor.par, sel_cursor.pos);
|
|
|
|
|
sel_cursor = cursor;
|
|
|
|
|
SetCursorIntern(sel_start_cursor.par, sel_start_cursor.pos);
|
|
|
|
|
sel_start_cursor = cursor;
|
|
|
|
|
SetCursorIntern(sel_end_cursor.par, sel_end_cursor.pos);
|
|
|
|
|
sel_end_cursor = cursor;
|
|
|
|
|
SetCursorIntern(last_sel_cursor.par, last_sel_cursor.pos);
|
|
|
|
|
last_sel_cursor = cursor;
|
|
|
|
|
cursor = tmpcursor;
|
|
|
|
|
}
|
|
|
|
|
SetCursorIntern(cursor.par, cursor.pos);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// returns 0 if inset wasn't found
|
1999-11-04 01:40:20 +00:00
|
|
|
|
int LyXText::UpdateInset(Inset * inset)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// first check the current paragraph
|
1999-11-04 01:40:20 +00:00
|
|
|
|
int pos = cursor.par->GetPositionOfInset(inset);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (pos != -1){
|
|
|
|
|
CheckParagraph(cursor.par, pos);
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// check every paragraph
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
1999-11-04 01:40:20 +00:00
|
|
|
|
LyXParagraph * par = FirstParagraph();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
do {
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// make sure the paragraph is open
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (par->footnoteflag != LyXParagraph::CLOSED_FOOTNOTE){
|
|
|
|
|
pos = par->GetPositionOfInset(inset);
|
|
|
|
|
if (pos != -1){
|
|
|
|
|
CheckParagraph(par, pos);
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
par = par->Next();
|
|
|
|
|
} while (par);
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
1999-11-04 01:40:20 +00:00
|
|
|
|
void LyXText::SetCursor(LyXParagraph * par,
|
2000-02-03 19:51:27 +00:00
|
|
|
|
LyXParagraph::size_type pos, bool setfont) const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
|
|
|
|
LyXCursor old_cursor = cursor;
|
2000-02-03 19:51:27 +00:00
|
|
|
|
SetCursorIntern(par, pos, setfont);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
DeleteEmptyParagraphMechanism(old_cursor);
|
|
|
|
|
}
|
|
|
|
|
|
2000-04-24 20:58:23 +00:00
|
|
|
|
|
2000-04-19 14:42:19 +00:00
|
|
|
|
void LyXText::SetCursor(LyXCursor & cur, LyXParagraph * par,
|
|
|
|
|
LyXParagraph::size_type pos) const
|
|
|
|
|
{
|
|
|
|
|
// correct the cursor position if impossible
|
|
|
|
|
if (pos > par->Last()){
|
|
|
|
|
LyXParagraph * tmppar = par->ParFromPos(pos);
|
|
|
|
|
pos = par->PositionInParFromPos(pos);
|
|
|
|
|
par = tmppar;
|
|
|
|
|
}
|
|
|
|
|
if (par->IsDummy() && par->previous &&
|
|
|
|
|
par->previous->footnoteflag == LyXParagraph::CLOSED_FOOTNOTE) {
|
|
|
|
|
while (par->previous &&
|
|
|
|
|
((par->previous->IsDummy() &&
|
|
|
|
|
(par->previous->previous->footnoteflag ==
|
|
|
|
|
LyXParagraph::CLOSED_FOOTNOTE)) ||
|
|
|
|
|
(par->previous->footnoteflag ==
|
|
|
|
|
LyXParagraph::CLOSED_FOOTNOTE))) {
|
|
|
|
|
par = par->previous ;
|
|
|
|
|
if (par->IsDummy() &&
|
|
|
|
|
(par->previous->footnoteflag ==
|
|
|
|
|
LyXParagraph::CLOSED_FOOTNOTE))
|
|
|
|
|
pos += par->size() + 1;
|
|
|
|
|
}
|
|
|
|
|
if (par->previous) {
|
|
|
|
|
par = par->previous;
|
|
|
|
|
}
|
|
|
|
|
pos += par->size() + 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
cur.par = par;
|
|
|
|
|
cur.pos = pos;
|
|
|
|
|
|
|
|
|
|
/* get the cursor y position in text */
|
|
|
|
|
long 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(row, x, fill_separator, fill_hfill, fill_label_hfill);
|
|
|
|
|
LyXParagraph::size_type cursor_vpos;
|
|
|
|
|
LyXParagraph::size_type last = RowLastPrintable(row);
|
|
|
|
|
|
|
|
|
|
if (pos > last + 1) // This shouldn't happen.
|
|
|
|
|
pos = last+1;
|
|
|
|
|
|
|
|
|
|
if (last < row->pos)
|
|
|
|
|
cursor_vpos = 0;
|
|
|
|
|
else if ((pos > last) ||
|
|
|
|
|
((pos - 1 >= row->pos) &&
|
|
|
|
|
(row->par->IsSeparator(pos) ||
|
|
|
|
|
(row->par->table && row->par->IsNewline(pos)))))
|
|
|
|
|
/// Place cursor after char at (logical) position pos-1
|
|
|
|
|
cursor_vpos = !(bidi_level(pos-1) % 2)
|
|
|
|
|
? log2vis(pos-1) + 1 : log2vis(pos-1);
|
|
|
|
|
else
|
|
|
|
|
/// Place cursor before char at (logical) position pos
|
|
|
|
|
cursor_vpos = !(bidi_level(pos) % 2)
|
|
|
|
|
? log2vis(pos) : log2vis(pos) + 1;
|
|
|
|
|
|
|
|
|
|
/* table stuff -- begin*/
|
|
|
|
|
if (row->par->table) {
|
|
|
|
|
int cell = NumberOfCell(row->par, row->pos);
|
|
|
|
|
float x_old = x;
|
|
|
|
|
x += row->par->table->GetBeginningOfTextInCell(cell);
|
|
|
|
|
for (LyXParagraph::size_type vpos = row->pos;
|
|
|
|
|
vpos < cursor_vpos; ++vpos) {
|
|
|
|
|
pos = vis2log(vpos);
|
|
|
|
|
if (row->par->IsNewline(pos)) {
|
|
|
|
|
x = x_old + row->par->table->WidthOfColumn(cell);
|
|
|
|
|
x_old = x;
|
|
|
|
|
++cell;
|
|
|
|
|
x += row->par->table->GetBeginningOfTextInCell(cell);
|
|
|
|
|
} else {
|
|
|
|
|
x += SingleWidth(row->par, pos);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
/* table stuff -- end*/
|
|
|
|
|
LyXParagraph::size_type main_body =
|
|
|
|
|
BeginningOfMainBody(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(
|
|
|
|
|
buffer->params.textclass,
|
|
|
|
|
row->par->GetLayout())
|
|
|
|
|
.labelsep,
|
|
|
|
|
GetFont(row->par, -2));
|
|
|
|
|
if (row->par->IsLineSeparator(main_body-1))
|
|
|
|
|
x -= SingleWidth(row->par,main_body-1);
|
|
|
|
|
}
|
|
|
|
|
if (HfillExpansion(row, pos)) {
|
|
|
|
|
x += SingleWidth(row->par, pos);
|
|
|
|
|
if (pos >= main_body)
|
|
|
|
|
x += fill_hfill;
|
|
|
|
|
else
|
|
|
|
|
x += fill_label_hfill;
|
|
|
|
|
} else if (row->par->IsSeparator(pos)) {
|
|
|
|
|
x += SingleWidth(row->par, pos);
|
|
|
|
|
if (pos >= main_body)
|
|
|
|
|
x += fill_separator;
|
|
|
|
|
} else
|
|
|
|
|
x += SingleWidth(row->par, pos);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
cur.x = int(x);
|
|
|
|
|
cur.x_fix = cur.x;
|
|
|
|
|
cur.row = row;
|
|
|
|
|
}
|
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
void LyXText::SetCursorIntern(LyXParagraph * par,
|
2000-02-03 19:51:27 +00:00
|
|
|
|
LyXParagraph::size_type pos, bool setfont) const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2000-04-19 14:42:19 +00:00
|
|
|
|
SetCursor(cursor, par, pos);
|
|
|
|
|
#warning Remove this when verified working (Jug 20000413)
|
|
|
|
|
#if 0
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// correct the cursor position if impossible
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (pos > par->Last()){
|
2000-03-17 10:14:46 +00:00
|
|
|
|
LyXParagraph * tmppar = par->ParFromPos(pos);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
pos = par->PositionInParFromPos(pos);
|
|
|
|
|
par = tmppar;
|
|
|
|
|
}
|
1999-10-21 12:39:45 +00:00
|
|
|
|
if (par->IsDummy() && par->previous &&
|
1999-09-27 18:44:28 +00:00
|
|
|
|
par->previous->footnoteflag == LyXParagraph::CLOSED_FOOTNOTE) {
|
1999-10-21 12:39:45 +00:00
|
|
|
|
while (par->previous &&
|
|
|
|
|
((par->previous->IsDummy() && par->previous->previous->footnoteflag == LyXParagraph::CLOSED_FOOTNOTE) ||
|
|
|
|
|
(par->previous->footnoteflag == LyXParagraph::CLOSED_FOOTNOTE))) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
par = par->previous ;
|
1999-10-21 12:39:45 +00:00
|
|
|
|
if (par->IsDummy() &&
|
|
|
|
|
par->previous->footnoteflag == LyXParagraph::CLOSED_FOOTNOTE)
|
2000-03-16 04:29:22 +00:00
|
|
|
|
pos += par->size() + 1;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
if (par->previous) {
|
|
|
|
|
par = par->previous;
|
|
|
|
|
}
|
2000-03-16 04:29:22 +00:00
|
|
|
|
pos += par->size() + 1;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
cursor.par = par;
|
|
|
|
|
cursor.pos = pos;
|
|
|
|
|
|
|
|
|
|
/* get the cursor y position in text */
|
2000-03-17 10:14:46 +00:00
|
|
|
|
long y = 0;
|
|
|
|
|
Row * row = GetRow(par, pos, y);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
/* y is now the beginning of the cursor row */
|
|
|
|
|
y += row->baseline;
|
|
|
|
|
/* y is now the cursor baseline */
|
|
|
|
|
cursor.y = y;
|
|
|
|
|
|
|
|
|
|
/* now get the cursors x position */
|
|
|
|
|
float x;
|
|
|
|
|
float fill_separator, fill_hfill, fill_label_hfill;
|
|
|
|
|
PrepareToPrint(row, x, fill_separator, fill_hfill, fill_label_hfill);
|
2000-03-17 10:14:46 +00:00
|
|
|
|
LyXParagraph::size_type cursor_vpos;
|
2000-04-10 21:40:13 +00:00
|
|
|
|
LyXParagraph::size_type last = RowLastPrintable(row);
|
|
|
|
|
|
|
|
|
|
if (pos > last + 1) // This shouldn't happen.
|
|
|
|
|
pos = last+1;
|
|
|
|
|
|
|
|
|
|
if (last < row->pos)
|
|
|
|
|
cursor_vpos = 0;
|
|
|
|
|
else if (pos > last ||
|
|
|
|
|
(pos - 1 >= row->pos &&
|
|
|
|
|
(row->par->IsSeparator(pos) ||
|
|
|
|
|
(row->par->table && row->par->IsNewline(pos))
|
|
|
|
|
)))
|
|
|
|
|
/// 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;
|
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
/* table stuff -- begin*/
|
|
|
|
|
if (row->par->table) {
|
|
|
|
|
int cell = NumberOfCell(row->par, row->pos);
|
|
|
|
|
float x_old = x;
|
|
|
|
|
x += row->par->table->GetBeginningOfTextInCell(cell);
|
2000-03-17 10:14:46 +00:00
|
|
|
|
for (LyXParagraph::size_type vpos = row->pos; vpos < cursor_vpos; ++vpos) {
|
2000-02-03 19:51:27 +00:00
|
|
|
|
pos = vis2log(vpos);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (row->par->IsNewline(pos)) {
|
|
|
|
|
x = x_old + row->par->table->WidthOfColumn(cell);
|
|
|
|
|
x_old = x;
|
2000-01-24 18:34:46 +00:00
|
|
|
|
++cell;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
x += row->par->table->GetBeginningOfTextInCell(cell);
|
|
|
|
|
} else {
|
|
|
|
|
x += SingleWidth(row->par, pos);
|
|
|
|
|
}
|
|
|
|
|
}
|
2000-02-03 19:51:27 +00:00
|
|
|
|
} else {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
/* table stuff -- end*/
|
2000-02-03 19:51:27 +00:00
|
|
|
|
LyXParagraph::size_type main_body =
|
|
|
|
|
BeginningOfMainBody(row->par);
|
|
|
|
|
if (main_body > 0 &&
|
|
|
|
|
(main_body-1 > last ||
|
|
|
|
|
!row->par->IsLineSeparator(main_body-1)))
|
|
|
|
|
main_body = 0;
|
|
|
|
|
|
2000-03-17 10:14:46 +00:00
|
|
|
|
for (LyXParagraph::size_type vpos = row->pos; vpos < cursor_vpos; ++vpos) {
|
2000-02-03 19:51:27 +00:00
|
|
|
|
pos = vis2log(vpos);
|
|
|
|
|
if (main_body > 0 && pos == main_body-1) {
|
|
|
|
|
x += fill_label_hfill +
|
2000-04-04 00:19:15 +00:00
|
|
|
|
lyxfont::width(textclasslist
|
2000-04-19 01:42:55 +00:00
|
|
|
|
.Style(buffer->params.textclass,
|
2000-04-04 00:19:15 +00:00
|
|
|
|
row->par->GetLayout())
|
|
|
|
|
.labelsep,
|
|
|
|
|
GetFont(row->par, -2));
|
2000-02-03 19:51:27 +00:00
|
|
|
|
if (row->par->IsLineSeparator(main_body-1))
|
|
|
|
|
x -= SingleWidth(row->par, main_body-1);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
if (HfillExpansion(row, pos)) {
|
2000-04-03 11:36:35 +00:00
|
|
|
|
x += SingleWidth(row->par, pos);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (pos >= main_body)
|
|
|
|
|
x += fill_hfill;
|
|
|
|
|
else
|
|
|
|
|
x += fill_label_hfill;
|
|
|
|
|
}
|
2000-04-03 11:36:35 +00:00
|
|
|
|
else if (row->par->IsSeparator(pos)) {
|
2000-04-10 21:40:13 +00:00
|
|
|
|
x += SingleWidth(row->par, pos);
|
|
|
|
|
if (pos >= main_body)
|
|
|
|
|
x += fill_separator;
|
2000-04-03 11:36:35 +00:00
|
|
|
|
} else
|
|
|
|
|
x += SingleWidth(row->par, pos);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
2000-02-03 19:51:27 +00:00
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
cursor.x = int(x);
|
|
|
|
|
|
|
|
|
|
cursor.x_fix = cursor.x;
|
|
|
|
|
cursor.row = row;
|
2000-04-19 14:42:19 +00:00
|
|
|
|
#endif
|
|
|
|
|
if (setfont) {
|
|
|
|
|
if (cursor.pos &&
|
|
|
|
|
(cursor.pos == cursor.par->Last() || cursor.par->IsSeparator(cursor.pos)
|
|
|
|
|
|| (cursor.par->table && cursor.par->IsNewline(cursor.pos))
|
|
|
|
|
)) {
|
|
|
|
|
current_font = cursor.par->GetFontSettings(cursor.pos - 1);
|
|
|
|
|
real_current_font = GetFont(cursor.par, cursor.pos - 1);
|
|
|
|
|
} else {
|
|
|
|
|
current_font = cursor.par->GetFontSettings(cursor.pos);
|
|
|
|
|
real_current_font = GetFont(cursor.par, cursor.pos);
|
|
|
|
|
}
|
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
void LyXText::SetCursorFromCoordinates(int x, long y) const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
1999-11-04 01:40:20 +00:00
|
|
|
|
LyXCursor old_cursor = cursor;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
/* get the row first */
|
|
|
|
|
|
1999-11-04 01:40:20 +00:00
|
|
|
|
Row * row = GetRowNearY(y);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
cursor.par = row->par;
|
|
|
|
|
|
1999-11-04 01:40:20 +00:00
|
|
|
|
int column = GetColumnNearX(row, x);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
cursor.pos = row->pos + column;
|
|
|
|
|
cursor.x = x;
|
|
|
|
|
cursor.y = y + row->baseline;
|
|
|
|
|
|
|
|
|
|
cursor.row = row;
|
|
|
|
|
|
|
|
|
|
if (cursor.pos &&
|
|
|
|
|
(cursor.pos == cursor.par->Last()
|
|
|
|
|
|| cursor.par->IsSeparator(cursor.pos)
|
|
|
|
|
|| (cursor.pos && cursor.pos == BeginningOfMainBody(cursor.par)
|
|
|
|
|
&& !cursor.par->IsSeparator(cursor.pos))
|
2000-02-03 19:51:27 +00:00
|
|
|
|
|| (cursor.par->table && cursor.par->IsNewline(cursor.pos))
|
1999-09-27 18:44:28 +00:00
|
|
|
|
)) {
|
|
|
|
|
current_font = cursor.par->GetFontSettings(cursor.pos - 1);
|
|
|
|
|
real_current_font = GetFont(cursor.par, cursor.pos - 1);
|
|
|
|
|
} else {
|
|
|
|
|
current_font = cursor.par->GetFontSettings(cursor.pos);
|
|
|
|
|
real_current_font = GetFont(cursor.par, cursor.pos);
|
|
|
|
|
}
|
|
|
|
|
DeleteEmptyParagraphMechanism(old_cursor);
|
|
|
|
|
}
|
|
|
|
|
|
2000-03-27 15:13:47 +00:00
|
|
|
|
void LyXText::SetCursorFromCoordinates(LyXCursor & cur, int x, long y) const
|
|
|
|
|
{
|
|
|
|
|
/* get the row first */
|
|
|
|
|
|
|
|
|
|
Row * row = GetRowNearY(y);
|
|
|
|
|
int column = GetColumnNearX(row, x);
|
|
|
|
|
|
|
|
|
|
cur.par = row->par;
|
|
|
|
|
cur.pos = row->pos + column;
|
|
|
|
|
cur.x = x;
|
|
|
|
|
cur.y = y + row->baseline;
|
|
|
|
|
cur.row = row;
|
|
|
|
|
}
|
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
void LyXText::CursorLeft() const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
|
|
|
|
CursorLeftIntern();
|
|
|
|
|
if (cursor.par->table) {
|
|
|
|
|
int cell = NumberOfCell(cursor.par, cursor.pos);
|
|
|
|
|
if (cursor.par->table->IsContRow(cell) &&
|
2000-04-04 00:19:15 +00:00
|
|
|
|
cursor.par->table->CellHasContRow(cursor.par->table->GetCellAbove(cell)) < 0) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
CursorUp();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
void LyXText::CursorLeftIntern() const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
|
|
|
|
if (cursor.pos > 0) {
|
|
|
|
|
SetCursor(cursor.par, cursor.pos - 1);
|
|
|
|
|
}
|
2000-03-17 10:14:46 +00:00
|
|
|
|
else if (cursor.par->Previous()) { // steps into the above paragraph.
|
1999-09-27 18:44:28 +00:00
|
|
|
|
SetCursor(cursor.par->Previous(), cursor.par->Previous()->Last());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
void LyXText::CursorRight() const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
|
|
|
|
CursorRightIntern();
|
|
|
|
|
if (cursor.par->table) {
|
|
|
|
|
int cell = NumberOfCell(cursor.par, cursor.pos);
|
|
|
|
|
if (cursor.par->table->IsContRow(cell) &&
|
|
|
|
|
cursor.par->table->CellHasContRow(cursor.par->table->GetCellAbove(cell))<0) {
|
|
|
|
|
CursorUp();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
void LyXText::CursorRightIntern() const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
|
|
|
|
if (cursor.pos < cursor.par->Last()) {
|
|
|
|
|
SetCursor(cursor.par, cursor.pos + 1);
|
|
|
|
|
}
|
|
|
|
|
else if (cursor.par->Next()) {
|
|
|
|
|
SetCursor(cursor.par->Next(), 0);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
void LyXText::CursorUp() const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
|
|
|
|
SetCursorFromCoordinates(cursor.x_fix,
|
|
|
|
|
cursor.y - cursor.row->baseline - 1);
|
|
|
|
|
if (cursor.par->table) {
|
|
|
|
|
int cell = NumberOfCell(cursor.par, cursor.pos);
|
|
|
|
|
if (cursor.par->table->IsContRow(cell) &&
|
|
|
|
|
cursor.par->table->CellHasContRow(cursor.par->table->GetCellAbove(cell))<0) {
|
|
|
|
|
CursorUp();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
void LyXText::CursorDown() const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
|
|
|
|
if (cursor.par->table &&
|
|
|
|
|
cursor.par->table->ShouldBeVeryLastRow(NumberOfCell(cursor.par, cursor.pos)) &&
|
|
|
|
|
!cursor.par->next)
|
|
|
|
|
return;
|
|
|
|
|
SetCursorFromCoordinates(cursor.x_fix,
|
|
|
|
|
cursor.y - cursor.row->baseline
|
|
|
|
|
+ cursor.row->height + 1);
|
|
|
|
|
if (cursor.par->table) {
|
|
|
|
|
int cell = NumberOfCell(cursor.par, cursor.pos);
|
|
|
|
|
int cell_above = cursor.par->table->GetCellAbove(cell);
|
|
|
|
|
while(cursor.par->table &&
|
|
|
|
|
cursor.par->table->IsContRow(cell) &&
|
|
|
|
|
(cursor.par->table->CellHasContRow(cell_above)<0)) {
|
|
|
|
|
SetCursorFromCoordinates(cursor.x_fix,
|
|
|
|
|
cursor.y - cursor.row->baseline
|
|
|
|
|
+ cursor.row->height + 1);
|
|
|
|
|
if (cursor.par->table) {
|
|
|
|
|
cell = NumberOfCell(cursor.par, cursor.pos);
|
|
|
|
|
cell_above = cursor.par->table->GetCellAbove(cell);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
void LyXText::CursorUpParagraph() const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
|
|
|
|
if (cursor.pos > 0) {
|
|
|
|
|
SetCursor(cursor.par, 0);
|
|
|
|
|
}
|
|
|
|
|
else if (cursor.par->Previous()) {
|
|
|
|
|
SetCursor(cursor.par->Previous(), 0);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
void LyXText::CursorDownParagraph() const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
|
|
|
|
if (cursor.par->Next()) {
|
|
|
|
|
SetCursor(cursor.par->Next(), 0);
|
|
|
|
|
} else {
|
1999-11-15 12:01:38 +00:00
|
|
|
|
SetCursor(cursor.par, cursor.par->Last());
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
void LyXText::DeleteEmptyParagraphMechanism(LyXCursor const & old_cursor) const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2000-03-14 23:33:15 +00:00
|
|
|
|
// Would be wrong to delete anything if we have a selection.
|
2000-01-13 16:28:54 +00:00
|
|
|
|
if (selection) return;
|
|
|
|
|
|
2000-03-14 23:33:15 +00:00
|
|
|
|
// We allow all kinds of "mumbo-jumbo" when freespacing.
|
2000-04-19 01:42:55 +00:00
|
|
|
|
if (textclasslist.Style(buffer->params.textclass,
|
2000-03-10 19:32:14 +00:00
|
|
|
|
old_cursor.par->GetLayout()).free_spacing)
|
2000-03-09 03:36:48 +00:00
|
|
|
|
return;
|
|
|
|
|
|
2000-03-14 23:33:15 +00:00
|
|
|
|
bool deleted = false;
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
/* 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.
|
2000-03-14 23:33:15 +00:00
|
|
|
|
if (old_cursor.par != cursor.par || old_cursor.pos != cursor.pos) { // Only if the cursor has really moved
|
2000-03-17 10:14:46 +00:00
|
|
|
|
|
2000-03-14 23:33:15 +00:00
|
|
|
|
if (old_cursor.pos > 0
|
|
|
|
|
&& old_cursor.pos < old_cursor.par->Last()
|
|
|
|
|
&& old_cursor.par->IsLineSeparator(old_cursor.pos)
|
|
|
|
|
&& old_cursor.par->IsLineSeparator(old_cursor.pos - 1)) {
|
|
|
|
|
old_cursor.par->Erase(old_cursor.pos - 1);
|
2000-04-11 22:55:29 +00:00
|
|
|
|
RedoParagraphs(old_cursor, old_cursor.par->Next());
|
2000-03-14 23:33:15 +00:00
|
|
|
|
// correct cursor
|
2000-03-17 10:14:46 +00:00
|
|
|
|
if (old_cursor.par == cursor.par &&
|
|
|
|
|
cursor.pos > old_cursor.pos) {
|
2000-04-09 22:48:51 +00:00
|
|
|
|
SetCursorIntern(cursor.par, cursor.pos - 1);
|
2000-04-12 14:58:27 +00:00
|
|
|
|
} else
|
|
|
|
|
SetCursorIntern(cursor.par, cursor.pos);
|
2000-03-17 10:14:46 +00:00
|
|
|
|
return;
|
2000-03-14 23:33:15 +00:00
|
|
|
|
}
|
2000-01-13 16:28:54 +00:00
|
|
|
|
}
|
2000-04-24 20:58:23 +00:00
|
|
|
|
|
2000-03-14 23:33:15 +00:00
|
|
|
|
// Do not delete empty paragraphs with keepempty set.
|
2000-04-19 01:42:55 +00:00
|
|
|
|
if ((textclasslist.Style(buffer->params.textclass,
|
2000-01-13 16:28:54 +00:00
|
|
|
|
old_cursor.par->GetLayout())).keepempty)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
LyXCursor tmpcursor;
|
|
|
|
|
|
|
|
|
|
if (old_cursor.par != cursor.par) {
|
|
|
|
|
if ( (old_cursor.par->Last() == 0
|
|
|
|
|
|| (old_cursor.par->Last() == 1
|
2000-03-14 23:33:15 +00:00
|
|
|
|
&& old_cursor.par->IsLineSeparator(0)))
|
2000-01-13 16:28:54 +00:00
|
|
|
|
&& old_cursor.par->FirstPhysicalPar()
|
|
|
|
|
== old_cursor.par->LastPhysicalPar()) {
|
|
|
|
|
// ok, we will delete anything
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// make sure that you do not delete any environments
|
|
|
|
|
if ((old_cursor.par->footnoteflag != LyXParagraph::OPEN_FOOTNOTE &&
|
|
|
|
|
!(old_cursor.row->previous
|
|
|
|
|
&& old_cursor.row->previous->par->footnoteflag == LyXParagraph::OPEN_FOOTNOTE)
|
|
|
|
|
&& !(old_cursor.row->next
|
|
|
|
|
&& old_cursor.row->next->par->footnoteflag == LyXParagraph::OPEN_FOOTNOTE))
|
2000-03-17 10:14:46 +00:00
|
|
|
|
|| (old_cursor.par->footnoteflag == LyXParagraph::OPEN_FOOTNOTE
|
|
|
|
|
&& ((old_cursor.row->previous
|
|
|
|
|
&& old_cursor.row->previous->par->footnoteflag == LyXParagraph::OPEN_FOOTNOTE)
|
|
|
|
|
|| (old_cursor.row->next
|
|
|
|
|
&& old_cursor.row->next->par->footnoteflag == LyXParagraph::OPEN_FOOTNOTE))
|
2000-01-13 16:28:54 +00:00
|
|
|
|
)) {
|
|
|
|
|
status = LyXText::NEED_MORE_REFRESH;
|
|
|
|
|
deleted = true;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
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->LastPhysicalPar()->Next();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
SetUndo(Undo::DELETE,
|
|
|
|
|
old_cursor.par->previous,
|
|
|
|
|
endpar);
|
|
|
|
|
cursor = tmpcursor;
|
|
|
|
|
|
|
|
|
|
// delete old row
|
|
|
|
|
RemoveRow(old_cursor.row);
|
2000-04-10 21:40:13 +00:00
|
|
|
|
if (buffer->paragraph == old_cursor.par) {
|
|
|
|
|
buffer->paragraph = buffer->paragraph->next;
|
2000-01-13 16:28:54 +00:00
|
|
|
|
}
|
|
|
|
|
// delete old par
|
|
|
|
|
delete old_cursor.par;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
/* 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(refresh_row->next);
|
|
|
|
|
UpdateCounters(refresh_row);
|
|
|
|
|
}
|
|
|
|
|
SetHeightOfRow(refresh_row);
|
|
|
|
|
} else {
|
|
|
|
|
refresh_row = old_cursor.row->next;
|
|
|
|
|
refresh_y = old_cursor.y - old_cursor.row->baseline;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
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->LastPhysicalPar()->Next();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
SetUndo(Undo::DELETE,
|
|
|
|
|
old_cursor.par->previous,
|
|
|
|
|
endpar);
|
|
|
|
|
cursor = tmpcursor;
|
|
|
|
|
|
|
|
|
|
// delete old row
|
|
|
|
|
RemoveRow(old_cursor.row);
|
|
|
|
|
// delete old par
|
2000-04-10 21:40:13 +00:00
|
|
|
|
if (buffer->paragraph == old_cursor.par) {
|
|
|
|
|
buffer->paragraph = buffer->paragraph->next;
|
2000-01-13 16:28:54 +00:00
|
|
|
|
}
|
|
|
|
|
delete old_cursor.par;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
/* 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(refresh_row);
|
|
|
|
|
UpdateCounters(refresh_row->previous);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// correct cursor y
|
2000-04-24 20:58:23 +00:00
|
|
|
|
|
2000-04-09 22:48:51 +00:00
|
|
|
|
SetCursorIntern(cursor.par, cursor.pos);
|
2000-04-24 20:58:23 +00:00
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
if (sel_cursor.par == old_cursor.par
|
|
|
|
|
&& sel_cursor.pos == sel_cursor.pos) {
|
|
|
|
|
// correct selection
|
|
|
|
|
sel_cursor = cursor;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (!deleted) {
|
2000-04-04 00:19:15 +00:00
|
|
|
|
if (old_cursor.par->ClearParagraph()) {
|
2000-01-13 16:28:54 +00:00
|
|
|
|
RedoParagraphs(old_cursor, old_cursor.par->Next());
|
|
|
|
|
// correct cursor y
|
2000-04-09 22:48:51 +00:00
|
|
|
|
SetCursorIntern(cursor.par, cursor.pos);
|
2000-01-13 16:28:54 +00:00
|
|
|
|
sel_cursor = cursor;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
1999-11-04 01:40:20 +00:00
|
|
|
|
LyXParagraph * LyXText::GetParFromID(int id)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
1999-11-04 01:40:20 +00:00
|
|
|
|
LyXParagraph * result = FirstParagraph();
|
1999-11-22 16:19:48 +00:00
|
|
|
|
while (result && result->id() != id)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
result = result->next;
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// undo functions
|
2000-01-13 16:28:54 +00:00
|
|
|
|
bool LyXText::TextUndo()
|
|
|
|
|
{
|
|
|
|
|
// returns false if no undo possible
|
2000-04-10 21:40:13 +00:00
|
|
|
|
Undo * undo = buffer->undostack.pop();
|
2000-01-13 16:28:54 +00:00
|
|
|
|
if (undo) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
FinishUndo();
|
|
|
|
|
if (!undo_frozen)
|
2000-04-10 21:40:13 +00:00
|
|
|
|
buffer->redostack
|
2000-01-13 16:28:54 +00:00
|
|
|
|
.push(CreateUndo(undo->kind,
|
|
|
|
|
GetParFromID(undo->number_of_before_par),
|
|
|
|
|
GetParFromID(undo->number_of_behind_par)));
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
return TextHandleUndo(undo);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool LyXText::TextRedo()
|
2000-01-13 16:28:54 +00:00
|
|
|
|
{
|
|
|
|
|
// returns false if no redo possible
|
2000-04-10 21:40:13 +00:00
|
|
|
|
Undo * undo = buffer->redostack.pop();
|
2000-01-13 16:28:54 +00:00
|
|
|
|
if (undo) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
FinishUndo();
|
|
|
|
|
if (!undo_frozen)
|
2000-04-10 21:40:13 +00:00
|
|
|
|
buffer->undostack
|
2000-01-13 16:28:54 +00:00
|
|
|
|
.push(CreateUndo(undo->kind,
|
|
|
|
|
GetParFromID(undo->number_of_before_par),
|
|
|
|
|
GetParFromID(undo->number_of_behind_par)));
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
return TextHandleUndo(undo);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
bool LyXText::TextHandleUndo(Undo * undo)
|
|
|
|
|
{
|
|
|
|
|
// returns false if no undo possible
|
1999-09-27 18:44:28 +00:00
|
|
|
|
bool result = false;
|
2000-01-13 16:28:54 +00:00
|
|
|
|
if (undo) {
|
|
|
|
|
LyXParagraph * before =
|
|
|
|
|
GetParFromID(undo->number_of_before_par);
|
|
|
|
|
LyXParagraph * behind =
|
|
|
|
|
GetParFromID(undo->number_of_behind_par);
|
1999-11-04 01:40:20 +00:00
|
|
|
|
LyXParagraph * tmppar;
|
|
|
|
|
LyXParagraph * tmppar2;
|
|
|
|
|
LyXParagraph * endpar;
|
|
|
|
|
LyXParagraph * tmppar5;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// if there's no before take the beginning
|
|
|
|
|
// of the document for redoing
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (!before)
|
|
|
|
|
SetCursorIntern(FirstParagraph(), 0);
|
|
|
|
|
|
|
|
|
|
// replace the paragraphs with the undo informations
|
|
|
|
|
|
2000-03-16 04:29:22 +00:00
|
|
|
|
LyXParagraph * tmppar3 = undo->par;
|
1999-10-02 16:21:10 +00:00
|
|
|
|
undo->par = 0; // otherwise the undo destructor would delete the paragraph
|
2000-03-16 04:29:22 +00:00
|
|
|
|
LyXParagraph * tmppar4 = tmppar3;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
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
|
2000-04-10 21:40:13 +00:00
|
|
|
|
tmppar5 = buffer->paragraph;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
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.
|
2000-03-16 04:29:22 +00:00
|
|
|
|
if (undo->kind == Undo::EDIT) {
|
|
|
|
|
tmppar2->setContentsFromPar(tmppar);
|
|
|
|
|
tmppar->clearContents();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
tmppar2 = tmppar2->next;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// put the new stuff in the list if there is one
|
|
|
|
|
if (tmppar3){
|
|
|
|
|
if (before)
|
|
|
|
|
before->next = tmppar3;
|
|
|
|
|
else
|
2000-04-10 21:40:13 +00:00
|
|
|
|
buffer->paragraph = tmppar3;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
tmppar3->previous = before;
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
if (!before)
|
2000-04-10 21:40:13 +00:00
|
|
|
|
buffer->paragraph = behind;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
if (tmppar4) {
|
|
|
|
|
tmppar4->next = behind;
|
|
|
|
|
if (behind)
|
|
|
|
|
behind->previous = tmppar4;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Set the cursor for redoing
|
2000-03-16 04:29:22 +00:00
|
|
|
|
if (before) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
SetCursorIntern(before->FirstSelfrowPar(), 0);
|
|
|
|
|
// check wether before points to a closed float and open it if necessary
|
|
|
|
|
if (before && before->footnoteflag == LyXParagraph::CLOSED_FOOTNOTE
|
|
|
|
|
&& before->next && before->next->footnoteflag != LyXParagraph::NO_FOOTNOTE){
|
1999-11-15 12:01:38 +00:00
|
|
|
|
tmppar4 = before;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
while (tmppar4->previous &&
|
|
|
|
|
tmppar4->previous->footnoteflag == LyXParagraph::CLOSED_FOOTNOTE)
|
|
|
|
|
tmppar4 = tmppar4->previous;
|
|
|
|
|
while (tmppar4 && tmppar4->footnoteflag == LyXParagraph::CLOSED_FOOTNOTE){
|
|
|
|
|
tmppar4->footnoteflag = LyXParagraph::OPEN_FOOTNOTE;
|
|
|
|
|
tmppar4 = tmppar4->next;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// open a cosed footnote at the end if necessary
|
|
|
|
|
if (behind && behind->previous &&
|
|
|
|
|
behind->previous->footnoteflag != LyXParagraph::NO_FOOTNOTE &&
|
|
|
|
|
behind->footnoteflag == LyXParagraph::CLOSED_FOOTNOTE){
|
|
|
|
|
while (behind && behind->footnoteflag == LyXParagraph::CLOSED_FOOTNOTE){
|
|
|
|
|
behind->footnoteflag = LyXParagraph::OPEN_FOOTNOTE;
|
|
|
|
|
behind = behind->next;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// calculate the endpar for redoing the paragraphs.
|
|
|
|
|
if (behind){
|
|
|
|
|
if (behind->footnoteflag != LyXParagraph::CLOSED_FOOTNOTE)
|
|
|
|
|
endpar = behind->LastPhysicalPar()->Next();
|
|
|
|
|
else
|
|
|
|
|
endpar = behind->NextAfterFootnote()->LastPhysicalPar()->Next();
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
endpar = behind;
|
|
|
|
|
|
|
|
|
|
tmppar = GetParFromID(undo->number_of_cursor_par);
|
|
|
|
|
RedoParagraphs(cursor, endpar);
|
|
|
|
|
if (tmppar){
|
|
|
|
|
SetCursorIntern(tmppar, undo->cursor_pos);
|
|
|
|
|
UpdateCounters(cursor.row);
|
|
|
|
|
}
|
|
|
|
|
result = true;
|
|
|
|
|
delete undo;
|
|
|
|
|
}
|
|
|
|
|
FinishUndo();
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void LyXText::FinishUndo()
|
2000-01-13 16:28:54 +00:00
|
|
|
|
{
|
|
|
|
|
// makes sure the next operation will be stored
|
1999-09-27 18:44:28 +00:00
|
|
|
|
undo_finished = True;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void LyXText::FreezeUndo()
|
2000-01-13 16:28:54 +00:00
|
|
|
|
{
|
|
|
|
|
// this is dangerous and for internal use only
|
1999-09-27 18:44:28 +00:00
|
|
|
|
undo_frozen = True;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void LyXText::UnFreezeUndo()
|
2000-01-13 16:28:54 +00:00
|
|
|
|
{
|
|
|
|
|
// this is dangerous and for internal use only
|
1999-09-27 18:44:28 +00:00
|
|
|
|
undo_frozen = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
void LyXText::SetUndo(Undo::undo_kind kind, LyXParagraph const * before,
|
|
|
|
|
LyXParagraph const * behind) const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
|
|
|
|
if (!undo_frozen)
|
2000-04-10 21:40:13 +00:00
|
|
|
|
buffer->undostack.push(CreateUndo(kind, before, behind));
|
|
|
|
|
buffer->redostack.clear();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
void LyXText::SetRedo(Undo::undo_kind kind, LyXParagraph const * before,
|
|
|
|
|
LyXParagraph const * behind)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2000-04-10 21:40:13 +00:00
|
|
|
|
buffer->redostack.push(CreateUndo(kind, before, behind));
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
Undo * LyXText::CreateUndo(Undo::undo_kind kind, LyXParagraph const * before,
|
|
|
|
|
LyXParagraph const * behind) const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
|
|
|
|
int before_number = -1;
|
|
|
|
|
int behind_number = -1;
|
|
|
|
|
if (before)
|
1999-11-22 16:19:48 +00:00
|
|
|
|
before_number = before->id();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (behind)
|
1999-11-22 16:19:48 +00:00
|
|
|
|
behind_number = behind->id();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
// 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
|
2000-04-10 21:40:13 +00:00
|
|
|
|
if (!buffer->undostack.empty() &&
|
|
|
|
|
buffer->undostack.top()->kind == kind &&
|
|
|
|
|
buffer->undostack.top()->number_of_before_par == before_number &&
|
|
|
|
|
buffer->undostack.top()->number_of_behind_par == behind_number ){
|
1999-09-27 18:44:28 +00:00
|
|
|
|
// no undo needed
|
1999-10-02 16:21:10 +00:00
|
|
|
|
return 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
// create a new Undo
|
1999-11-04 01:40:20 +00:00
|
|
|
|
LyXParagraph * undopar;
|
|
|
|
|
LyXParagraph * tmppar;
|
|
|
|
|
LyXParagraph * tmppar2;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
1999-11-04 01:40:20 +00:00
|
|
|
|
LyXParagraph * start = 0;
|
|
|
|
|
LyXParagraph * end = 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
if (before)
|
|
|
|
|
start = before->next;
|
|
|
|
|
else
|
|
|
|
|
start = FirstParagraph();
|
|
|
|
|
if (behind)
|
|
|
|
|
end = behind->previous;
|
|
|
|
|
else {
|
|
|
|
|
end = FirstParagraph();
|
|
|
|
|
while (end->next)
|
|
|
|
|
end = end->next;
|
|
|
|
|
}
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
if (start && end
|
|
|
|
|
&& start != end->next
|
|
|
|
|
&& (before != behind || (!before && !behind))) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
tmppar = start;
|
|
|
|
|
tmppar2 = tmppar->Clone();
|
1999-11-22 16:19:48 +00:00
|
|
|
|
tmppar2->id(tmppar->id());
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// a memory optimization: Just store the layout information
|
|
|
|
|
// when only edit
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (kind == Undo::EDIT){
|
2000-03-16 04:29:22 +00:00
|
|
|
|
//tmppar2->text.clear();
|
|
|
|
|
tmppar2->clearContents();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
undopar = tmppar2;
|
|
|
|
|
|
|
|
|
|
while (tmppar != end && tmppar->next) {
|
|
|
|
|
tmppar = tmppar->next;
|
|
|
|
|
tmppar2->next = tmppar->Clone();
|
1999-11-22 16:19:48 +00:00
|
|
|
|
tmppar2->next->id(tmppar->id());
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// a memory optimization: Just store the layout
|
|
|
|
|
// information when only edit
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (kind == Undo::EDIT){
|
2000-03-16 04:29:22 +00:00
|
|
|
|
//tmppar2->next->text.clear();
|
|
|
|
|
tmppar2->clearContents();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
tmppar2->next->previous = tmppar2;
|
1999-11-15 12:01:38 +00:00
|
|
|
|
tmppar2 = tmppar2->next;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
1999-10-02 16:21:10 +00:00
|
|
|
|
tmppar2->next = 0;
|
2000-01-13 16:28:54 +00:00
|
|
|
|
} else
|
1999-10-02 16:21:10 +00:00
|
|
|
|
undopar = 0; // nothing to replace (undo of delete maybe)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
1999-11-22 16:19:48 +00:00
|
|
|
|
int cursor_par = cursor.par->ParFromPos(cursor.pos)->id();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
int cursor_pos = cursor.par->PositionInParFromPos(cursor.pos);
|
|
|
|
|
|
1999-11-04 01:40:20 +00:00
|
|
|
|
Undo * undo = new Undo(kind,
|
2000-01-13 16:28:54 +00:00
|
|
|
|
before_number, behind_number,
|
|
|
|
|
cursor_par, cursor_pos,
|
|
|
|
|
undopar);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
undo_finished = false;
|
|
|
|
|
return undo;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void LyXText::SetCursorParUndo()
|
|
|
|
|
{
|
|
|
|
|
SetUndo(Undo::FINISH,
|
|
|
|
|
cursor.par->ParFromPos(cursor.pos)->previous,
|
|
|
|
|
cursor.par->ParFromPos(cursor.pos)->next);
|
|
|
|
|
}
|
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
|
|
|
|
|
void LyXText::RemoveTableRow(LyXCursor * cur) const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
1999-12-21 06:10:21 +00:00
|
|
|
|
int cell = -1;
|
|
|
|
|
int cell_org = 0;
|
|
|
|
|
int ocell = 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2000-01-13 16:28:54 +00:00
|
|
|
|
// move to the previous row
|
|
|
|
|
int cell_act = NumberOfCell(cur->par, cur->pos);
|
|
|
|
|
if (cell < 0)
|
|
|
|
|
cell = cell_act;
|
|
|
|
|
while (cur->pos && !cur->par->IsNewline(cur->pos - 1))
|
|
|
|
|
cur->pos--;
|
|
|
|
|
while (cur->pos &&
|
|
|
|
|
!cur->par->table->IsFirstCell(cell_act)) {
|
|
|
|
|
cur->pos--;
|
|
|
|
|
while (cur->pos && !cur->par->IsNewline(cur->pos - 1))
|
|
|
|
|
cur->pos--;
|
|
|
|
|
--cell;
|
|
|
|
|
--cell_act;
|
|
|
|
|
}
|
|
|
|
|
// now we have to pay attention if the actual table is the
|
|
|
|
|
// main row of TableContRows and if yes to delete all of them
|
|
|
|
|
if (!cell_org)
|
|
|
|
|
cell_org = cell;
|
|
|
|
|
do {
|
|
|
|
|
ocell = cell;
|
|
|
|
|
// delete up to the next row
|
|
|
|
|
while (cur->pos < cur->par->Last() &&
|
|
|
|
|
(cell_act == ocell
|
|
|
|
|
|| !cur->par->table->IsFirstCell(cell_act))) {
|
|
|
|
|
while (cur->pos < cur->par->Last() &&
|
|
|
|
|
!cur->par->IsNewline(cur->pos))
|
|
|
|
|
cur->par->Erase(cur->pos);
|
|
|
|
|
++cell;
|
|
|
|
|
++cell_act;
|
|
|
|
|
if (cur->pos < cur->par->Last())
|
|
|
|
|
cur->par->Erase(cur->pos);
|
|
|
|
|
}
|
|
|
|
|
if (cur->pos && cur->pos == cur->par->Last()) {
|
|
|
|
|
cur->pos--;
|
|
|
|
|
cur->par->Erase(cur->pos); // no newline at very end!
|
|
|
|
|
}
|
|
|
|
|
} while (((cell + 1) < cur->par->table->GetNumberOfCells()) &&
|
|
|
|
|
!cur->par->table->IsContRow(cell_org) &&
|
|
|
|
|
cur->par->table->IsContRow(cell));
|
|
|
|
|
cur->par->table->DeleteRow(cell_org);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
1999-11-22 16:19:48 +00:00
|
|
|
|
bool LyXText::IsEmptyTableCell() const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
1999-11-04 01:40:20 +00:00
|
|
|
|
LyXParagraph::size_type pos = cursor.pos - 1;
|
|
|
|
|
while (pos >= 0 && pos < cursor.par->Last()
|
|
|
|
|
&& !cursor.par->IsNewline(pos))
|
|
|
|
|
--pos;
|
|
|
|
|
return cursor.par->IsNewline(pos + 1);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
1999-11-15 12:01:38 +00:00
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
void LyXText::toggleAppendix(){
|
2000-01-13 16:28:54 +00:00
|
|
|
|
LyXParagraph * par = cursor.par->FirstPhysicalPar();
|
|
|
|
|
bool start = !par->start_of_appendix;
|
|
|
|
|
|
|
|
|
|
// ensure that we have only one start_of_appendix in this document
|
|
|
|
|
LyXParagraph * tmp = FirstParagraph();
|
|
|
|
|
for (; tmp; tmp = tmp->next)
|
|
|
|
|
tmp->start_of_appendix = 0;
|
|
|
|
|
par->start_of_appendix = 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(0);
|
|
|
|
|
SetCursor(cursor.par, cursor.pos);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|