]> git.lyx.org Git - lyx.git/blob - src/text2.C
add romanian splash; add svglobal layout (+fixes to svjour) [bug 1430]; update CREDITS
[lyx.git] / src / text2.C
1 /**
2  * \file text2.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Asger Alstrup
7  * \author Lars Gullik Bjønnes
8  * \author Alfredo Braunstein
9  * \author Jean-Marc Lasgouttes
10  * \author Angus Leeming
11  * \author John Levon
12  * \author André Pönitz
13  * \author Allan Rae
14  * \author Dekel Tsur
15  * \author Jürgen Vigna
16  *
17  * Full author contact details are available in file CREDITS.
18  */
19
20 #include <config.h>
21
22 #include "lyxtext.h"
23
24 #include "buffer.h"
25 #include "buffer_funcs.h"
26 #include "bufferparams.h"
27 #include "BufferView.h"
28 #include "Bullet.h"
29 #include "counters.h"
30 #include "cursor.h"
31 #include "CutAndPaste.h"
32 #include "debug.h"
33 #include "dispatchresult.h"
34 #include "errorlist.h"
35 #include "Floating.h"
36 #include "FloatList.h"
37 #include "funcrequest.h"
38 #include "gettext.h"
39 #include "language.h"
40 #include "LColor.h"
41 #include "lyxrc.h"
42 #include "lyxrow.h"
43 #include "lyxrow_funcs.h"
44 #include "paragraph.h"
45 #include "paragraph_funcs.h"
46 #include "ParagraphParameters.h"
47 #include "PosIterator.h"
48 #include "undo.h"
49 #include "vspace.h"
50
51 #include "frontends/font_metrics.h"
52 #include "frontends/LyXView.h"
53
54 #include "insets/insetbibitem.h"
55 #include "insets/insetenv.h"
56 #include "insets/insetfloat.h"
57 #include "insets/insetwrap.h"
58
59 #include "support/lstrings.h"
60 #include "support/textutils.h"
61 #include "support/tostr.h"
62 #include "support/std_sstream.h"
63
64 #include <boost/tuple/tuple.hpp>
65
66 using lyx::pos_type;
67 using lyx::support::bformat;
68
69 using std::endl;
70 using std::ostringstream;
71 using std::string;
72
73
74 LyXText::LyXText(BufferView * bv, bool in_inset)
75         : height(0), width(0), textwidth_(bv ? bv->workWidth() : 100),
76                 background_color_(LColor::background),
77           bv_owner(bv), in_inset_(in_inset), xo_(0), yo_(0)
78 {}
79
80
81 void LyXText::init(BufferView * bv)
82 {
83         bv_owner = bv;
84
85         ParagraphList::iterator const beg = paragraphs().begin();
86         ParagraphList::iterator const end = paragraphs().end();
87         for (ParagraphList::iterator pit = beg; pit != end; ++pit)
88                 pit->rows.clear();
89
90         width = 0;
91         height = 0;
92
93         current_font = getFont(beg, 0);
94
95         redoParagraphs(beg, end);
96         bv->cursor().resetAnchor();
97
98         updateCounters();
99 }
100
101
102 // Gets the fully instantiated font at a given position in a paragraph
103 // Basically the same routine as Paragraph::getFont() in paragraph.C.
104 // The difference is that this one is used for displaying, and thus we
105 // are allowed to make cosmetic improvements. For instance make footnotes
106 // smaller. (Asger)
107 LyXFont LyXText::getFont(ParagraphList::iterator pit, pos_type pos) const
108 {
109         BOOST_ASSERT(pos >= 0);
110
111         LyXLayout_ptr const & layout = pit->layout();
112 #warning broken?
113         BufferParams const & params = bv()->buffer()->params();
114         pos_type const body_pos = pit->beginOfBody();
115
116         // We specialize the 95% common case:
117         if (!pit->getDepth()) {
118                 LyXFont f = pit->getFontSettings(params, pos);
119                 if (in_inset_)
120                         f.realize(font_);
121                 if (layout->labeltype == LABEL_MANUAL && pos < body_pos)
122                         return f.realize(layout->reslabelfont);
123                 else
124                         return f.realize(layout->resfont);
125         }
126
127         // The uncommon case need not be optimized as much
128         LyXFont layoutfont;
129         if (pos < body_pos)
130                 layoutfont = layout->labelfont;
131         else
132                 layoutfont = layout->font;
133
134         LyXFont font = pit->getFontSettings(params, pos);
135         font.realize(layoutfont);
136
137         if (in_inset_)
138                 font.realize(font_);
139
140         // Realize with the fonts of lesser depth.
141         //font.realize(outerFont(pit, paragraphs()));
142         font.realize(defaultfont_);
143
144         return font;
145 }
146
147
148 LyXFont LyXText::getLayoutFont(ParagraphList::iterator pit) const
149 {
150         LyXLayout_ptr const & layout = pit->layout();
151
152         if (!pit->getDepth())
153                 return layout->resfont;
154
155         LyXFont font = layout->font;
156         // Realize with the fonts of lesser depth.
157         //font.realize(outerFont(pit, paragraphs()));
158         font.realize(defaultfont_);
159
160         return font;
161 }
162
163
164 LyXFont LyXText::getLabelFont(ParagraphList::iterator pit) const
165 {
166         LyXLayout_ptr const & layout = pit->layout();
167
168         if (!pit->getDepth())
169                 return layout->reslabelfont;
170
171         LyXFont font = layout->labelfont;
172         // Realize with the fonts of lesser depth.
173         font.realize(outerFont(pit, paragraphs()));
174         font.realize(defaultfont_);
175
176         return font;
177 }
178
179
180 void LyXText::setCharFont(
181         ParagraphList::iterator pit, pos_type pos, LyXFont const & fnt)
182 {
183         LyXFont font = fnt;
184         LyXLayout_ptr const & layout = pit->layout();
185
186         // Get concrete layout font to reduce against
187         LyXFont layoutfont;
188
189         if (pos < pit->beginOfBody())
190                 layoutfont = layout->labelfont;
191         else
192                 layoutfont = layout->font;
193
194         // Realize against environment font information
195         if (pit->getDepth()) {
196                 ParagraphList::iterator tp = pit;
197                 while (!layoutfont.resolved() &&
198                        tp != paragraphs().end() &&
199                        tp->getDepth()) {
200                         tp = outerHook(tp, paragraphs());
201                         if (tp != paragraphs().end())
202                                 layoutfont.realize(tp->layout()->font);
203                 }
204         }
205
206         layoutfont.realize(defaultfont_);
207
208         // Now, reduce font against full layout font
209         font.reduce(layoutfont);
210
211         pit->setFont(pos, font);
212 }
213
214
215 // used in setLayout
216 // Asger is not sure we want to do this...
217 void LyXText::makeFontEntriesLayoutSpecific(BufferParams const & params,
218                                             Paragraph & par)
219 {
220         LyXLayout_ptr const & layout = par.layout();
221         pos_type const psize = par.size();
222
223         LyXFont layoutfont;
224         for (pos_type pos = 0; pos < psize; ++pos) {
225                 if (pos < par.beginOfBody())
226                         layoutfont = layout->labelfont;
227                 else
228                         layoutfont = layout->font;
229
230                 LyXFont tmpfont = par.getFontSettings(params, pos);
231                 tmpfont.reduce(layoutfont);
232                 par.setFont(pos, tmpfont);
233         }
234 }
235
236
237 // return past-the-last paragraph influenced by a layout change on pit
238 ParagraphList::iterator LyXText::undoSpan(ParagraphList::iterator pit)
239 {
240         ParagraphList::iterator end = paragraphs().end();
241         ParagraphList::iterator nextpit = boost::next(pit);
242         if (nextpit == end)
243                 return nextpit;
244         //because of parindents
245         if (!pit->getDepth())
246                 return boost::next(nextpit);
247         //because of depth constrains
248         for (; nextpit != end; ++pit, ++nextpit) {
249                 if (!pit->getDepth())
250                         break;
251         }
252         return nextpit;
253 }
254
255
256 ParagraphList::iterator
257 LyXText::setLayout(ParagraphList::iterator start,
258                    ParagraphList::iterator end,
259                    string const & layout)
260 {
261         BOOST_ASSERT(start != end);
262         ParagraphList::iterator undopit = undoSpan(boost::prior(end));
263         recUndo(parOffset(start), parOffset(undopit) - 1);
264
265         BufferParams const & bufparams = bv()->buffer()->params();
266         LyXLayout_ptr const & lyxlayout =
267                 bufparams.getLyXTextClass()[layout];
268
269         for (ParagraphList::iterator pit = start; pit != end; ++pit) {
270                 pit->applyLayout(lyxlayout);
271                 makeFontEntriesLayoutSpecific(bufparams, *pit);
272                 if (lyxlayout->margintype == MARGIN_MANUAL)
273                         pit->setLabelWidthString(lyxlayout->labelstring());
274         }
275
276         return undopit;
277 }
278
279
280 // set layout over selection and make a total rebreak of those paragraphs
281 void LyXText::setLayout(LCursor & cur, string const & layout)
282 {
283         BOOST_ASSERT(this == cur.text());
284         // special handling of new environment insets
285         BufferParams const & params = bv()->buffer()->params();
286         LyXLayout_ptr const & lyxlayout = params.getLyXTextClass()[layout];
287         if (lyxlayout->is_environment) {
288                 // move everything in a new environment inset
289                 lyxerr << "setting layout " << layout << endl;
290                 bv()->owner()->dispatch(FuncRequest(LFUN_HOME));
291                 bv()->owner()->dispatch(FuncRequest(LFUN_ENDSEL));
292                 bv()->owner()->dispatch(FuncRequest(LFUN_CUT));
293                 InsetBase * inset = new InsetEnvironment(params, layout);
294                 insertInset(cur, inset);
295                 //inset->edit(cur, true);
296                 //bv()->owner()->dispatch(FuncRequest(LFUN_PASTE));
297                 return;
298         }
299
300         ParagraphList::iterator start = getPar(cur.selBegin().par());
301         ParagraphList::iterator end = boost::next(getPar(cur.selEnd().par()));
302         ParagraphList::iterator endpit = setLayout(start, end, layout);
303         redoParagraphs(start, endpit);
304         updateCounters();
305 }
306
307
308 namespace {
309
310
311 void getSelectionSpan(LCursor & cur, LyXText & text,
312         ParagraphList::iterator & beg,
313         ParagraphList::iterator & end)
314 {
315         if (!cur.selection()) {
316                 beg = text.getPar(cur.par());
317                 end = boost::next(beg);
318         } else {
319                 beg = text.getPar(cur.selBegin());
320                 end = boost::next(text.getPar(cur.selEnd()));
321         }
322 }
323
324
325 bool changeDepthAllowed(bv_funcs::DEPTH_CHANGE type,
326                         Paragraph const & par,
327                         int max_depth)
328 {
329         if (par.layout()->labeltype == LABEL_BIBLIO)
330                 return false;
331         int const depth = par.params().depth();
332         if (type == bv_funcs::INC_DEPTH && depth < max_depth)
333                 return true;
334         if (type == bv_funcs::DEC_DEPTH && depth > 0)
335                 return true;
336         return false;
337 }
338
339
340 }
341
342
343 bool LyXText::changeDepthAllowed(LCursor & cur, bv_funcs::DEPTH_CHANGE type)
344 {
345         BOOST_ASSERT(this == cur.text());
346         ParagraphList::iterator beg, end; 
347         getSelectionSpan(cur, *this, beg, end);
348         int max_depth = 0;
349         if (beg != paragraphs().begin())
350                 max_depth = boost::prior(beg)->getMaxDepthAfter();
351
352         for (ParagraphList::iterator pit = beg; pit != end; ++pit) {
353                 if (::changeDepthAllowed(type, *pit, max_depth))
354                         return true;
355                 max_depth = pit->getMaxDepthAfter();
356         }
357         return false;
358 }
359
360
361 void LyXText::changeDepth(LCursor & cur, bv_funcs::DEPTH_CHANGE type)
362 {
363         BOOST_ASSERT(this == cur.text());
364         ParagraphList::iterator beg, end;
365         getSelectionSpan(cur, *this, beg, end);
366         recordUndoSelection(cur);
367
368         int max_depth = 0;
369         if (beg != paragraphs().begin())
370                 max_depth = boost::prior(beg)->getMaxDepthAfter();
371
372         for (ParagraphList::iterator pit = beg; pit != end; ++pit) {
373                 if (::changeDepthAllowed(type, *pit, max_depth)) {
374                         int const depth = pit->params().depth();
375                         if (type == bv_funcs::INC_DEPTH)
376                                 pit->params().depth(depth + 1);
377                         else
378                                 pit->params().depth(depth - 1);
379                 }
380                 max_depth = pit->getMaxDepthAfter();
381         }
382         // this handles the counter labels, and also fixes up
383         // depth values for follow-on (child) paragraphs
384         updateCounters();
385 }
386
387
388 // set font over selection and make a total rebreak of those paragraphs
389 void LyXText::setFont(LCursor & cur, LyXFont const & font, bool toggleall)
390 {
391         BOOST_ASSERT(this == cur.text());
392         // if there is no selection just set the current_font
393         if (!cur.selection()) {
394                 // Determine basis font
395                 LyXFont layoutfont;
396                 ParagraphList::iterator pit = getPar(cur.par());
397                 if (cur.pos() < pit->beginOfBody())
398                         layoutfont = getLabelFont(pit);
399                 else
400                         layoutfont = getLayoutFont(pit);
401
402                 // Update current font
403                 real_current_font.update(font,
404                                          bv()->buffer()->params().language,
405                                          toggleall);
406
407                 // Reduce to implicit settings
408                 current_font = real_current_font;
409                 current_font.reduce(layoutfont);
410                 // And resolve it completely
411                 real_current_font.realize(layoutfont);
412
413                 return;
414         }
415
416         // ok we have a selection.
417         recordUndoSelection(cur);
418         freezeUndo();
419
420         ParagraphList::iterator beg = getPar(cur.selBegin().par());
421         ParagraphList::iterator end = getPar(cur.selEnd().par());
422         
423         PosIterator pos(&paragraphs(), beg, cur.selBegin().pos());
424         PosIterator posend(&paragraphs(), end, cur.selEnd().pos());
425
426         BufferParams const & params = bv()->buffer()->params();
427
428         for (; pos != posend; ++pos) {
429                 LyXFont f = getFont(pos.pit(), pos.pos());
430                 f.update(font, params.language, toggleall);
431                 setCharFont(pos.pit(), pos.pos(), f);
432         }
433         
434         unFreezeUndo();
435
436         redoParagraphs(beg, ++end);
437 }
438
439
440 // the cursor set functions have a special mechanism. When they
441 // realize you left an empty paragraph, they will delete it.
442
443 void LyXText::cursorHome(LCursor & cur)
444 {
445         BOOST_ASSERT(this == cur.text());
446         setCursor(cur, cur.par(), cur.textRow().pos());
447 }
448
449
450 void LyXText::cursorEnd(LCursor & cur)
451 {
452         BOOST_ASSERT(this == cur.text());
453         // if not on the last row of the par, put the cursor before
454         // the final space
455         pos_type const end = cur.textRow().endpos();
456         setCursor(cur, cur.par(), end == cur.lastpos() ? end : end - 1);
457 }
458
459
460 void LyXText::cursorTop(LCursor & cur)
461 {
462         BOOST_ASSERT(this == cur.text());
463         setCursor(cur, 0, 0);
464 }
465
466
467 void LyXText::cursorBottom(LCursor & cur)
468 {
469         BOOST_ASSERT(this == cur.text());
470         setCursor(cur, cur.lastpar(), boost::prior(paragraphs().end())->size());
471 }
472
473
474 void LyXText::toggleFree(LCursor & cur, LyXFont const & font, bool toggleall)
475 {
476         BOOST_ASSERT(this == cur.text());
477         // If the mask is completely neutral, tell user
478         if (font == LyXFont(LyXFont::ALL_IGNORE)) {
479                 // Could only happen with user style
480                 cur.message(_("No font change defined. "
481                         "Use Character under the Layout menu to define font change."));
482                 return;
483         }
484
485         // Try implicit word selection
486         // If there is a change in the language the implicit word selection
487         // is disabled.
488         CursorSlice resetCursor = cur.current();
489         bool implicitSelection =
490                 font.language() == ignore_language
491                 && font.number() == LyXFont::IGNORE
492                 && selectWordWhenUnderCursor(cur, lyx::WHOLE_WORD_STRICT);
493
494         // Set font
495         setFont(cur, font, toggleall);
496
497         // Implicit selections are cleared afterwards
498         // and cursor is set to the original position.
499         if (implicitSelection) {
500                 cur.clearSelection();
501                 cur.current() = resetCursor;
502                 cur.resetAnchor();
503         }
504 }
505
506
507 string LyXText::getStringToIndex(LCursor & cur)
508 {
509         BOOST_ASSERT(this == cur.text());
510         // Try implicit word selection
511         // If there is a change in the language the implicit word selection
512         // is disabled.
513         CursorSlice const reset_cursor = cur.current();
514         bool const implicitSelection =
515                 selectWordWhenUnderCursor(cur, lyx::PREVIOUS_WORD);
516
517         string idxstring;
518         if (!cur.selection())
519                 cur.message(_("Nothing to index!"));
520         else if (cur.selBegin().par() != cur.selEnd().par())
521                 cur.message(_("Cannot index more than one paragraph!"));
522         else
523                 idxstring = cur.selectionAsString(false);
524
525         // Reset cursors to their original position.
526         cur.current() = reset_cursor;
527         cur.resetAnchor();
528
529         // Clear the implicit selection.
530         if (implicitSelection)
531                 cur.clearSelection();
532
533         return idxstring;
534 }
535
536
537 // the DTP switches for paragraphs(). LyX will store them in the first
538 // physical paragraph. When a paragraph is broken, the top settings rest,
539 // the bottom settings are given to the new one. So I can make sure,
540 // they do not duplicate themself and you cannot play dirty tricks with
541 // them!
542
543 void LyXText::setParagraph(LCursor & cur,
544         Spacing const & spacing, LyXAlignment align,
545         string const & labelwidthstring, bool noindent)
546 {
547         BOOST_ASSERT(cur.text());
548         // make sure that the depth behind the selection are restored, too
549         ParagraphList::iterator undopit = undoSpan(getPar(cur.selEnd()));
550         recUndo(cur.selBegin().par(), parOffset(undopit) - 1);
551
552         ParagraphList::reverse_iterator pit(getPar(cur.selEnd().par()));
553         ParagraphList::reverse_iterator beg(getPar(cur.selBegin().par()));
554
555         for (--pit; pit != beg; ++pit) {
556                 ParagraphParameters & params = pit->params();
557                 params.spacing(spacing);
558
559                 // does the layout allow the new alignment?
560                 LyXLayout_ptr const & layout = pit->layout();
561
562                 if (align == LYX_ALIGN_LAYOUT)
563                         align = layout->align;
564                 if (align & layout->alignpossible) {
565                         if (align == layout->align)
566                                 params.align(LYX_ALIGN_LAYOUT);
567                         else
568                                 params.align(align);
569                 }
570                 pit->setLabelWidthString(labelwidthstring);
571                 params.noindent(noindent);
572         }
573
574         redoParagraphs(getPar(cur.selBegin()), undopit);
575 }
576
577
578 string expandLabel(LyXTextClass const & textclass,
579         LyXLayout_ptr const & layout, bool appendix)
580 {
581         string fmt = appendix ?
582                 layout->labelstring_appendix() : layout->labelstring();
583
584         // handle 'inherited level parts' in 'fmt',
585         // i.e. the stuff between '@' in   '@Section@.\arabic{subsection}'
586         size_t const i = fmt.find('@', 0);
587         if (i != string::npos) {
588                 size_t const j = fmt.find('@', i + 1);
589                 if (j != string::npos) {
590                         string parent(fmt, i + 1, j - i - 1);
591                         string label = expandLabel(textclass, textclass[parent], appendix);
592                         fmt = string(fmt, 0, i) + label + string(fmt, j + 1, string::npos);
593                 }
594         }
595
596         return textclass.counters().counterLabel(fmt);
597 }
598
599
600 namespace {
601
602 void incrementItemDepth(ParagraphList::iterator pit,
603                         ParagraphList::iterator first_pit)
604 {
605         int const cur_labeltype = pit->layout()->labeltype;
606
607         if (cur_labeltype != LABEL_ENUMERATE && cur_labeltype != LABEL_ITEMIZE)
608                 return;
609
610         int const cur_depth = pit->getDepth();
611
612         ParagraphList::iterator prev_pit = boost::prior(pit);
613         while (true) {
614                 int const prev_depth = prev_pit->getDepth();
615                 int const prev_labeltype = prev_pit->layout()->labeltype;
616                 if (prev_depth == 0 && cur_depth > 0) {
617                         if (prev_labeltype == cur_labeltype) {
618                                 pit->itemdepth = prev_pit->itemdepth + 1;
619                         }
620                         break;
621                 } else if (prev_depth < cur_depth) {
622                         if (prev_labeltype == cur_labeltype) {
623                                 pit->itemdepth = prev_pit->itemdepth + 1;
624                                 break;
625                         }
626                 } else if (prev_depth == cur_depth) {
627                         if (prev_labeltype == cur_labeltype) {
628                                 pit->itemdepth = prev_pit->itemdepth;
629                                 break;
630                         }
631                 }
632                 if (prev_pit == first_pit)
633                         break;
634
635                 --prev_pit;
636         }
637 }
638
639
640 void resetEnumCounterIfNeeded(ParagraphList::iterator pit,
641                               ParagraphList::iterator firstpit,
642                               Counters & counters)
643 {
644         if (pit == firstpit)
645                 return;
646
647         int const cur_depth = pit->getDepth();
648         ParagraphList::iterator prev_pit = boost::prior(pit);
649         while (true) {
650                 int const prev_depth = prev_pit->getDepth();
651                 int const prev_labeltype = prev_pit->layout()->labeltype;
652                 if (prev_depth <= cur_depth) {
653                         if (prev_labeltype != LABEL_ENUMERATE) {
654                                 switch (pit->itemdepth) {
655                                 case 0:
656                                         counters.reset("enumi");
657                                 case 1:
658                                         counters.reset("enumii");
659                                 case 2:
660                                         counters.reset("enumiii");
661                                 case 3:
662                                         counters.reset("enumiv");
663                                 }
664                         }
665                         break;
666                 }
667
668                 if (prev_pit == firstpit)
669                         break;
670
671                 --prev_pit;
672         }
673 }
674
675 } // anon namespace
676
677
678 // set the counter of a paragraph. This includes the labels
679 void LyXText::setCounter(Buffer const & buf, ParagraphList::iterator pit)
680 {
681         BufferParams const & bufparams = buf.params();
682         LyXTextClass const & textclass = bufparams.getLyXTextClass();
683         LyXLayout_ptr const & layout = pit->layout();
684         ParagraphList::iterator first_pit = paragraphs().begin();
685         Counters & counters = textclass.counters();
686
687         // Always reset
688         pit->itemdepth = 0;
689
690         if (pit == first_pit) {
691                 pit->params().appendix(pit->params().startOfAppendix());
692         } else {
693                 pit->params().appendix(boost::prior(pit)->params().appendix());
694                 if (!pit->params().appendix() &&
695                     pit->params().startOfAppendix()) {
696                         pit->params().appendix(true);
697                         textclass.counters().reset();
698                 }
699
700                 // Maybe we have to increment the item depth.
701                 incrementItemDepth(pit, first_pit);
702         }
703
704         // erase what was there before
705         pit->params().labelString(string());
706
707         if (layout->margintype == MARGIN_MANUAL) {
708                 if (pit->params().labelWidthString().empty())
709                         pit->setLabelWidthString(layout->labelstring());
710         } else {
711                 pit->setLabelWidthString(string());
712         }
713
714         // is it a layout that has an automatic label?
715         if (layout->labeltype == LABEL_COUNTER) {
716                 BufferParams const & bufparams = buf.params();
717                 LyXTextClass const & textclass = bufparams.getLyXTextClass();
718                 counters.step(layout->counter);
719                 string label = expandLabel(textclass, layout, pit->params().appendix());
720                 pit->params().labelString(label);
721         } else if (layout->labeltype == LABEL_ITEMIZE) {
722                 // At some point of time we should do something more
723                 // clever here, like:
724                 //   pit->params().labelString(
725                 //    bufparams.user_defined_bullet(pit->itemdepth).getText());
726                 // for now, use a simple hardcoded label
727                 string itemlabel;
728                 switch (pit->itemdepth) {
729                 case 0:
730                         itemlabel = "*";
731                         break;
732                 case 1:
733                         itemlabel = "-";
734                         break;
735                 case 2:
736                         itemlabel = "@";
737                         break;
738                 case 3:
739                         itemlabel = "·";
740                         break;
741                 }
742
743                 pit->params().labelString(itemlabel);
744         } else if (layout->labeltype == LABEL_ENUMERATE) {
745                 // Maybe we have to reset the enumeration counter.
746                 resetEnumCounterIfNeeded(pit, first_pit, counters);
747
748                 // FIXME
749                 // Yes I know this is a really, really! bad solution
750                 // (Lgb)
751                 string enumcounter = "enum";
752
753                 switch (pit->itemdepth) {
754                 case 2:
755                         enumcounter += 'i';
756                 case 1:
757                         enumcounter += 'i';
758                 case 0:
759                         enumcounter += 'i';
760                         break;
761                 case 3:
762                         enumcounter += "iv";
763                         break;
764                 default:
765                         // not a valid enumdepth...
766                         break;
767                 }
768
769                 counters.step(enumcounter);
770
771                 pit->params().labelString(counters.enumLabel(enumcounter));
772         } else if (layout->labeltype == LABEL_BIBLIO) {// ale970302
773                 counters.step("bibitem");
774                 int number = counters.value("bibitem");
775                 if (pit->bibitem()) {
776                         pit->bibitem()->setCounter(number);
777                         pit->params().labelString(layout->labelstring());
778                 }
779                 // In biblio should't be following counters but...
780         } else {
781                 string s = buf.B_(layout->labelstring());
782
783                 // the caption hack:
784                 if (layout->labeltype == LABEL_SENSITIVE) {
785                         ParagraphList::iterator end = paragraphs().end();
786                         ParagraphList::iterator tmppit = pit;
787                         InsetBase * in = 0;
788                         bool isOK = false;
789                         while (tmppit != end && tmppit->inInset()
790                                // the single '=' is intended below
791                                && (in = tmppit->inInset()->owner()))
792                         {
793                                 if (in->lyxCode() == InsetBase::FLOAT_CODE ||
794                                     in->lyxCode() == InsetBase::WRAP_CODE) {
795                                         isOK = true;
796                                         break;
797                                 } else {
798                                         Paragraph const * owner = &ownerPar(buf, in);
799                                         tmppit = first_pit;
800                                         for ( ; tmppit != end; ++tmppit)
801                                                 if (&*tmppit == owner)
802                                                         break;
803                                 }
804                         }
805
806                         if (isOK) {
807                                 string type;
808
809                                 if (in->lyxCode() == InsetBase::FLOAT_CODE)
810                                         type = static_cast<InsetFloat*>(in)->params().type;
811                                 else if (in->lyxCode() == InsetBase::WRAP_CODE)
812                                         type = static_cast<InsetWrap*>(in)->params().type;
813                                 else
814                                         BOOST_ASSERT(false);
815
816                                 Floating const & fl = textclass.floats().getType(type);
817
818                                 counters.step(fl.type());
819
820                                 // Doesn't work... yet.
821                                 s = bformat(_("%1$s #:"), buf.B_(fl.name()));
822                         } else {
823                                 // par->SetLayout(0);
824                                 // s = layout->labelstring;
825                                 s = _("Senseless: ");
826                         }
827                 }
828                 pit->params().labelString(s);
829
830         }
831 }
832
833
834 // Updates all counters.
835 void LyXText::updateCounters()
836 {
837         // start over
838         bv()->buffer()->params().getLyXTextClass().counters().reset();
839
840         bool update_pos = false;
841         
842         ParagraphList::iterator beg = paragraphs().begin();
843         ParagraphList::iterator end = paragraphs().end();
844         for (ParagraphList::iterator pit = beg; pit != end; ++pit) {
845                 string const oldLabel = pit->params().labelString();
846                 size_t maxdepth = 0;
847                 if (pit != beg)
848                         maxdepth = boost::prior(pit)->getMaxDepthAfter();
849
850                 if (pit->params().depth() > maxdepth)
851                         pit->params().depth(maxdepth);
852
853                 // setCounter can potentially change the labelString.
854                 setCounter(*bv()->buffer(), pit);
855                 string const & newLabel = pit->params().labelString();
856                 if (oldLabel != newLabel) {
857                         redoParagraphInternal(pit);
858                         update_pos = true;
859                 }
860                 
861         }
862         if (update_pos)
863                 updateParPositions();
864 }
865
866
867 void LyXText::insertInset(LCursor & cur, InsetBase * inset)
868 {
869         BOOST_ASSERT(this == cur.text());
870         recordUndo(cur);
871         freezeUndo();
872         cur.paragraph().insertInset(cur.pos(), inset);
873         // Just to rebreak and refresh correctly.
874         // The character will not be inserted a second time
875         insertChar(cur, Paragraph::META_INSET);
876         // If we enter a highly editable inset the cursor should be before
877         // the inset. After an undo LyX tries to call inset->edit(...)
878         // and fails if the cursor is behind the inset and getInset
879         // does not return the inset!
880         if (isHighlyEditableInset(inset))
881                 cursorLeft(cur);
882         unFreezeUndo();
883 }
884
885
886 void LyXText::cutSelection(LCursor & cur, bool doclear, bool realcut)
887 {
888         BOOST_ASSERT(this == cur.text());
889         // Stuff what we got on the clipboard. Even if there is no selection.
890
891         // There is a problem with having the stuffing here in that the
892         // larger the selection the slower LyX will get. This can be
893         // solved by running the line below only when the selection has
894         // finished. The solution used currently just works, to make it
895         // faster we need to be more clever and probably also have more
896         // calls to stuffClipboard. (Lgb)
897         bv()->stuffClipboard(cur.selectionAsString(true));
898
899         // This doesn't make sense, if there is no selection
900         if (!cur.selection())
901                 return;
902
903         // OK, we have a selection. This is always between cur.selBegin()
904         // and cur.selEnd()
905
906         // make sure that the depth behind the selection are restored, too
907         recordUndoSelection(cur);
908         ParagraphList::iterator begpit = getPar(cur.selBegin().par());
909         ParagraphList::iterator endpit = getPar(cur.selEnd().par());
910         ParagraphList::iterator undopit = undoSpan(endpit);
911
912         int endpos = cur.selEnd().pos();
913
914         BufferParams const & bufparams = bv()->buffer()->params();
915         boost::tie(endpit, endpos) = realcut ?
916                 CutAndPaste::cutSelection(bufparams,
917                                           paragraphs(),
918                                           begpit, endpit,
919                                           cur.selBegin().pos(), endpos,
920                                           bufparams.textclass,
921                                           doclear)
922                 : CutAndPaste::eraseSelection(bufparams,
923                                               paragraphs(),
924                                               begpit, endpit,
925                                               cur.selBegin().pos(), endpos,
926                                               doclear);
927         // sometimes necessary
928         if (doclear)
929                 begpit->stripLeadingSpaces();
930
931         redoParagraphs(begpit, undopit);
932         // cutSelection can invalidate the cursor so we need to set
933         // it anew. (Lgb)
934         // we prefer the end for when tracking changes
935         cur.pos() = endpos;
936         cur.par() = parOffset(endpit);
937
938         // need a valid cursor. (Lgb)
939         cur.clearSelection();
940         updateCounters();
941 }
942
943
944 void LyXText::copySelection(LCursor & cur)
945 {
946         BOOST_ASSERT(this == cur.text());
947         // stuff the selection onto the X clipboard, from an explicit copy request
948         bv()->stuffClipboard(cur.selectionAsString(true));
949
950         // this doesnt make sense, if there is no selection
951         if (!cur.selection())
952                 return;
953
954         // ok we have a selection. This is always between cur.selBegin()
955         // and sel_end cursor
956
957         // copy behind a space if there is one
958         while (getPar(cur.selBegin())->size() > cur.selBegin().pos()
959                && getPar(cur.selBegin())->isLineSeparator(cur.selBegin().pos())
960                && (cur.selBegin().par() != cur.selEnd().par()
961                    || cur.selBegin().pos() < cur.selEnd().pos()))
962                 ++cur.selBegin().pos();
963
964         CutAndPaste::copySelection(getPar(cur.selBegin().par()),
965                                    getPar(cur.selEnd().par()),
966                                    cur.selBegin().pos(), 
967                                    cur.selEnd().pos(),
968                                    bv()->buffer()->params().textclass);
969 }
970
971
972 void LyXText::pasteSelection(LCursor & cur, size_t sel_index)
973 {
974         // this does not make sense, if there is nothing to paste
975         if (!CutAndPaste::checkPastePossible())
976                 return;
977
978         recordUndo(cur);
979
980         ParagraphList::iterator endpit;
981         PitPosPair ppp;
982
983         ErrorList el;
984
985         boost::tie(ppp, endpit) =
986                 CutAndPaste::pasteSelection(*bv()->buffer(),
987                                             paragraphs(),
988                                             getPar(cur.par()), cur.pos(),
989                                             bv()->buffer()->params().textclass,
990                                             sel_index, el);
991         bufferErrors(*bv()->buffer(), el);
992         bv()->showErrorList(_("Paste"));
993
994         redoParagraphs(getPar(cur.par()), endpit);
995
996         cur.clearSelection();
997         cur.resetAnchor();
998         setCursor(cur, parOffset(ppp.first), ppp.second);
999         cur.setSelection();
1000         updateCounters();
1001 }
1002
1003
1004 void LyXText::setSelectionRange(LCursor & cur, lyx::pos_type length)
1005 {
1006         if (!length)
1007                 return;
1008         cur.resetAnchor();
1009         while (length--)
1010                 cursorRight(cur);
1011         cur.setSelection();
1012 }
1013
1014
1015 // simple replacing. The font of the first selected character is used
1016 void LyXText::replaceSelectionWithString(LCursor & cur, string const & str)
1017 {
1018         recordUndo(cur);
1019         freezeUndo();
1020
1021         // Get font setting before we cut
1022         pos_type pos = cur.selEnd().pos();
1023         LyXFont const font = getPar(cur.selBegin())
1024                 ->getFontSettings(bv()->buffer()->params(),
1025                                   cur.selBegin().pos());
1026
1027         // Insert the new string
1028         string::const_iterator cit = str.begin();
1029         string::const_iterator end = str.end();
1030         for (; cit != end; ++cit) {
1031                 getPar(cur.selEnd())->insertChar(pos, (*cit), font);
1032                 ++pos;
1033         }
1034
1035         // Cut the selection
1036         cutSelection(cur, true, false);
1037         unFreezeUndo();
1038 }
1039
1040
1041 // needed to insert the selection
1042 void LyXText::insertStringAsLines(LCursor & cur, string const & str)
1043 {
1044         ParagraphList::iterator pit = getPar(cur.par());
1045         ParagraphList::iterator endpit = boost::next(pit);
1046         pos_type pos = cursor().pos();
1047         recordUndo(cur);
1048
1049         // only to be sure, should not be neccessary
1050         cur.clearSelection();
1051         bv()->buffer()->insertStringAsLines(pit, pos, current_font, str);
1052
1053         redoParagraphs(getPar(cur.par()), endpit);
1054         cur.resetAnchor();
1055         setCursor(cur, cur.par(), pos);
1056         cur.setSelection();
1057 }
1058
1059
1060 // turn double CR to single CR, others are converted into one
1061 // blank. Then insertStringAsLines is called
1062 void LyXText::insertStringAsParagraphs(LCursor & cur, string const & str)
1063 {
1064         string linestr = str;
1065         bool newline_inserted = false;
1066
1067         for (string::size_type i = 0, siz = linestr.size(); i < siz; ++i) {
1068                 if (linestr[i] == '\n') {
1069                         if (newline_inserted) {
1070                                 // we know that \r will be ignored by
1071                                 // insertStringAsLines. Of course, it is a dirty
1072                                 // trick, but it works...
1073                                 linestr[i - 1] = '\r';
1074                                 linestr[i] = '\n';
1075                         } else {
1076                                 linestr[i] = ' ';
1077                                 newline_inserted = true;
1078                         }
1079                 } else if (IsPrintable(linestr[i])) {
1080                         newline_inserted = false;
1081                 }
1082         }
1083         insertStringAsLines(cur, linestr);
1084 }
1085
1086
1087 bool LyXText::setCursor(LCursor & cur, par_type par, pos_type pos,
1088         bool setfont, bool boundary)
1089 {
1090         CursorSlice old_cursor = cur.current();
1091         setCursorIntern(cur, par, pos, setfont, boundary);
1092         return deleteEmptyParagraphMechanism(cur.current(), old_cursor);
1093 }
1094
1095
1096 void LyXText::setCursor(CursorSlice & cur, par_type par,
1097         pos_type pos, bool boundary)
1098 {
1099         BOOST_ASSERT(par != int(paragraphs().size()));
1100
1101         cur.par() = par;
1102         cur.pos() = pos;
1103         cur.boundary() = boundary;
1104
1105         // no rows, no fun...
1106         if (paragraphs().begin()->rows.empty())
1107                 return;
1108
1109         // now some strict checking
1110         Paragraph & para = *getPar(par);
1111         Row const & row = *para.getRow(pos);
1112         pos_type const end = row.endpos();
1113
1114         // None of these should happen, but we're scaredy-cats
1115         if (pos < 0) {
1116                 lyxerr << "dont like -1" << endl;
1117                 BOOST_ASSERT(false);
1118         }
1119
1120         if (pos > para.size()) {
1121                 lyxerr << "dont like 1, pos: " << pos
1122                        << " size: " << para.size()
1123                        << " row.pos():" << row.pos()
1124                        << " par: " << par << endl;
1125                 BOOST_ASSERT(false);
1126         }
1127
1128         if (pos > end) {
1129                 lyxerr << "dont like 2 please report" << endl;
1130                 // This shouldn't happen.
1131                 BOOST_ASSERT(false);
1132         }
1133         
1134         if (pos < row.pos()) {
1135                 lyxerr << "dont like 3 please report pos:" << pos
1136                        << " size: " << para.size()
1137                        << " row.pos():" << row.pos()
1138                        << " par: " << par << endl;
1139                 BOOST_ASSERT(false);
1140         }
1141 }
1142
1143
1144 void LyXText::setCursorIntern(LCursor & cur,
1145         par_type par, pos_type pos, bool setfont, bool boundary)
1146 {
1147         setCursor(cur.current(), par, pos, boundary);
1148         cur.x_target() = cursorX(cur.current());
1149         if (setfont)
1150                 setCurrentFont(cur);
1151 }
1152
1153
1154 void LyXText::setCurrentFont(LCursor & cur)
1155 {
1156         BOOST_ASSERT(this == cur.text());
1157         pos_type pos = cur.pos();
1158         ParagraphList::iterator pit = getPar(cur.par());
1159
1160         if (cur.boundary() && pos > 0)
1161                 --pos;
1162
1163         if (pos > 0) {
1164                 if (pos == cur.lastpos())
1165                         --pos;
1166                 else // potentional bug... BUG (Lgb)
1167                         if (pit->isSeparator(pos)) {
1168                                 if (pos > cur.textRow().pos() &&
1169                                     bidi.level(pos) % 2 ==
1170                                     bidi.level(pos - 1) % 2)
1171                                         --pos;
1172                                 else if (pos + 1 < cur.lastpos())
1173                                         ++pos;
1174                         }
1175         }
1176
1177         BufferParams const & bufparams = bv()->buffer()->params();
1178         current_font = pit->getFontSettings(bufparams, pos);
1179         real_current_font = getFont(pit, pos);
1180
1181         if (cur.pos() == cur.lastpos()
1182             && bidi.isBoundary(*bv()->buffer(), *pit, cur.pos())
1183             && !cur.boundary()) {
1184                 Language const * lang = pit->getParLanguage(bufparams);
1185                 current_font.setLanguage(lang);
1186                 current_font.setNumber(LyXFont::OFF);
1187                 real_current_font.setLanguage(lang);
1188                 real_current_font.setNumber(LyXFont::OFF);
1189         }
1190 }
1191
1192
1193 // x is an absolute screen coord
1194 // returns the column near the specified x-coordinate of the row
1195 // x is set to the real beginning of this column
1196 pos_type LyXText::getColumnNearX(ParagraphList::iterator pit,
1197         Row const & row, int & x, bool & boundary) const
1198 {
1199         x -= xo_;
1200         double tmpx             = row.x();
1201         double fill_separator   = row.fill_separator();
1202         double fill_hfill       = row.fill_hfill();
1203         double fill_label_hfill = row.fill_label_hfill();
1204
1205         pos_type vc = row.pos();
1206         pos_type end = row.endpos();
1207         pos_type c = 0;
1208         LyXLayout_ptr const & layout = pit->layout();
1209
1210         bool left_side = false;
1211
1212         pos_type body_pos = pit->beginOfBody();
1213         double last_tmpx = tmpx;
1214
1215         if (body_pos > 0 &&
1216             (body_pos > end || !pit->isLineSeparator(body_pos - 1)))
1217                 body_pos = 0;
1218
1219         // check for empty row
1220         if (vc == end) {
1221                 x = int(tmpx) + xo_;
1222                 return 0;
1223         }
1224
1225         while (vc < end && tmpx <= x) {
1226                 c = bidi.vis2log(vc);
1227                 last_tmpx = tmpx;
1228                 if (body_pos > 0 && c == body_pos - 1) {
1229                         tmpx += fill_label_hfill +
1230                                 font_metrics::width(layout->labelsep, getLabelFont(pit));
1231                         if (pit->isLineSeparator(body_pos - 1))
1232                                 tmpx -= singleWidth(pit, body_pos - 1);
1233                 }
1234
1235                 if (hfillExpansion(*pit, row, c)) {
1236                         tmpx += singleWidth(pit, c);
1237                         if (c >= body_pos)
1238                                 tmpx += fill_hfill;
1239                         else
1240                                 tmpx += fill_label_hfill;
1241                 } else if (pit->isSeparator(c)) {
1242                         tmpx += singleWidth(pit, c);
1243                         if (c >= body_pos)
1244                                 tmpx += fill_separator;
1245                 } else {
1246                         tmpx += singleWidth(pit, c);
1247                 }
1248                 ++vc;
1249         }
1250
1251         if ((tmpx + last_tmpx) / 2 > x) {
1252                 tmpx = last_tmpx;
1253                 left_side = true;
1254         }
1255
1256         BOOST_ASSERT(vc <= end);  // This shouldn't happen.
1257
1258         boundary = false;
1259         // This (rtl_support test) is not needed, but gives
1260         // some speedup if rtl_support == false
1261         bool const lastrow = lyxrc.rtl_support && row.endpos() == pit->size();
1262
1263         // If lastrow is false, we don't need to compute
1264         // the value of rtl.
1265         bool const rtl = lastrow ? isRTL(*pit) : false;
1266         if (lastrow &&
1267                  ((rtl  &&  left_side && vc == row.pos() && x < tmpx - 5) ||
1268                   (!rtl && !left_side && vc == end  && x > tmpx + 5)))
1269                 c = end;
1270         else if (vc == row.pos()) {
1271                 c = bidi.vis2log(vc);
1272                 if (bidi.level(c) % 2 == 1)
1273                         ++c;
1274         } else {
1275                 c = bidi.vis2log(vc - 1);
1276                 bool const rtl = (bidi.level(c) % 2 == 1);
1277                 if (left_side == rtl) {
1278                         ++c;
1279                         boundary = bidi.isBoundary(*bv()->buffer(), *pit, c);
1280                 }
1281         }
1282
1283         if (row.pos() < end && c >= end && pit->isNewline(end - 1)) {
1284                 if (bidi.level(end -1) % 2 == 0)
1285                         tmpx -= singleWidth(pit, end - 1);
1286                 else
1287                         tmpx += singleWidth(pit, end - 1);
1288                 c = end - 1;
1289         }
1290
1291         x = int(tmpx) + xo_;
1292         return c - row.pos();
1293 }
1294
1295
1296 // x,y are absolute coordinates
1297 void LyXText::setCursorFromCoordinates(LCursor & cur, int x, int y)
1298 {
1299         x -= xo_;
1300         y -= yo_;
1301         CursorSlice old_cursor = cur.current();
1302         ParagraphList::iterator pit;
1303         Row const & row = *getRowNearY(y, pit);
1304         lyxerr << "hit row at: " << row.pos() << endl;
1305         bool bound = false;
1306         int xx = x + xo_; // getRowNearX get absolute x coords
1307         pos_type const pos = row.pos() + getColumnNearX(pit, row, xx, bound);
1308         cur.par() = parOffset(pit);
1309         cur.pos() = pos;
1310         cur.boundary() = bound;
1311         deleteEmptyParagraphMechanism(cur.current(), old_cursor);
1312 }
1313
1314
1315 // x,y are absolute screen coordinates
1316 InsetBase * LyXText::editXY(LCursor & cur, int x, int y)
1317 {
1318         ParagraphList::iterator pit;
1319         Row const & row = *getRowNearY(y - yo_, pit);
1320         bool bound = false;
1321
1322         int xx = x; // is modified by getColumnNearX
1323         pos_type const pos = row.pos() + getColumnNearX(pit, row, xx, bound);
1324         cur.par() = parOffset(pit);
1325         cur.pos() = pos;
1326         cur.boundary() = bound;
1327
1328         // try to descend into nested insets
1329         InsetBase * inset = checkInsetHit(x, y);
1330         if (!inset)
1331                 return 0;
1332
1333         // This should be just before or just behind the
1334         // cursor position set above.
1335         BOOST_ASSERT((pos != 0 && inset == pit->getInset(pos - 1))
1336                      || inset == pit->getInset(pos));
1337         // Make sure the cursor points to the position before
1338         // this inset.
1339         if (inset == pit->getInset(pos - 1))
1340                 --cur.pos();
1341         return inset->editXY(cur, x, y);
1342 }
1343
1344
1345 bool LyXText::checkAndActivateInset(LCursor & cur, bool front)
1346 {
1347         if (cur.selection())
1348                 return false;
1349         if (cur.pos() == cur.lastpos())
1350                 return false;
1351         InsetBase * inset = cur.nextInset();
1352         if (!isHighlyEditableInset(inset))
1353                 return false;
1354         inset->edit(cur, front);
1355         return true;
1356 }
1357
1358
1359 void LyXText::cursorLeft(LCursor & cur)
1360 {
1361         if (cur.pos() != 0) {
1362                 bool boundary = cur.boundary();
1363                 setCursor(cur, cur.par(), cur.pos() - 1, true, false);
1364                 if (!checkAndActivateInset(cur, false)) {
1365                         if (false && !boundary &&
1366                                         bidi.isBoundary(*bv()->buffer(), cur.paragraph(), cur.pos() + 1))
1367                                 setCursor(cur, cur.par(), cur.pos() + 1, true, true);
1368                         return;
1369                 }
1370         }
1371
1372         if (cur.par() != 0) {
1373                 // steps into the paragraph above
1374                 setCursor(cur, cur.par() - 1, getPar(cur.par() - 1)->size());
1375         }
1376 }
1377
1378
1379 void LyXText::cursorRight(LCursor & cur)
1380 {
1381         if (false && cur.boundary()) {
1382                 setCursor(cur, cur.par(), cur.pos(), true, false);
1383                 return;
1384         }
1385
1386         if (cur.pos() != cur.lastpos()) {
1387                 if (!checkAndActivateInset(cur, true)) { 
1388                         setCursor(cur, cur.par(), cur.pos() + 1, true, false);
1389                         if (false && bidi.isBoundary(*bv()->buffer(), cur.paragraph(),
1390                                                          cur.pos()))
1391                                 setCursor(cur, cur.par(), cur.pos(), true, true);
1392                 }
1393                 return;
1394         }
1395
1396         if (cur.par() != cur.lastpar())
1397                 setCursor(cur, cur.par() + 1, 0);
1398 }
1399
1400
1401 void LyXText::cursorUp(LCursor & cur)
1402 {
1403         Row const & row = cur.textRow();
1404         int x = cur.x_target();
1405         int y = cursorY(cur.current()) - row.baseline() - 1;
1406         setCursorFromCoordinates(cur, x, y);
1407
1408         if (!cur.selection()) {
1409                 InsetBase * inset_hit = checkInsetHit(cur.x_target(), y);
1410                 if (inset_hit && isHighlyEditableInset(inset_hit))
1411                         inset_hit->editXY(cur, cur.x_target(), y);
1412         }
1413 }
1414
1415
1416 void LyXText::cursorDown(LCursor & cur)
1417 {
1418         Row const & row = cur.textRow();
1419         int x = cur.x_target();
1420         int y = cursorY(cur.current()) - row.baseline() + row.height() + 1;
1421         setCursorFromCoordinates(cur, x, y);
1422
1423         if (!cur.selection()) {
1424                 InsetBase * inset_hit = checkInsetHit(cur.x_target(), y);
1425                 if (inset_hit && isHighlyEditableInset(inset_hit))
1426                         inset_hit->editXY(cur, cur.x_target(), y);
1427         }
1428 }
1429
1430
1431 void LyXText::cursorUpParagraph(LCursor & cur)
1432 {
1433         if (cur.pos() > 0)
1434                 setCursor(cur, cur.par(), 0);
1435         else if (cur.par() != 0)
1436                 setCursor(cur, cur.par() - 1, 0);
1437 }
1438
1439
1440 void LyXText::cursorDownParagraph(LCursor & cur)
1441 {
1442         if (cur.par() != cur.lastpar())
1443                 setCursor(cur, cur.par() + 1, 0);
1444         else
1445                 setCursor(cur, cur.par(), cur.lastpos());
1446 }
1447
1448
1449 // fix the cursor `cur' after a characters has been deleted at `where'
1450 // position. Called by deleteEmptyParagraphMechanism
1451 void LyXText::fixCursorAfterDelete(CursorSlice & cur, CursorSlice const & where)
1452 {
1453         // do notheing if cursor is not in the paragraph where the
1454         // deletion occured,
1455         if (cur.par() != where.par())
1456                 return;
1457
1458         // if cursor position is after the deletion place update it
1459         if (cur.pos() > where.pos())
1460                 --cur.pos();
1461
1462         // check also if we don't want to set the cursor on a spot behind the
1463         // pagragraph because we erased the last character.
1464         if (cur.pos() > cur.lastpos())
1465                 cur.pos() = cur.lastpos();
1466 }
1467
1468
1469 bool LyXText::deleteEmptyParagraphMechanism(CursorSlice & cur,
1470         CursorSlice const & old_cursor)
1471 {
1472 #warning Disabled as it crashes after the cursor data shift... (Andre)
1473         return false;
1474
1475         // Would be wrong to delete anything if we have a selection.
1476         //if (cur.selection())
1477         //      return false;
1478
1479 #if 0
1480         // We allow all kinds of "mumbo-jumbo" when freespacing.
1481         ParagraphList::iterator const old_pit = getPar(old_cursor.par());
1482         if (old_pit->isFreeSpacing())
1483                 return false;
1484
1485         /* Ok I'll put some comments here about what is missing.
1486            I have fixed BackSpace (and thus Delete) to not delete
1487            double-spaces automagically. I have also changed Cut,
1488            Copy and Paste to hopefully do some sensible things.
1489            There are still some small problems that can lead to
1490            double spaces stored in the document file or space at
1491            the beginning of paragraphs(). This happens if you have
1492            the cursor between to spaces and then save. Or if you
1493            cut and paste and the selection have a space at the
1494            beginning and then save right after the paste. I am
1495            sure none of these are very hard to fix, but I will
1496            put out 1.1.4pre2 with FIX_DOUBLE_SPACE defined so
1497            that I can get some feedback. (Lgb)
1498         */
1499
1500         // If old_cursor.pos() == 0 and old_cursor.pos()(1) == LineSeparator
1501         // delete the LineSeparator.
1502         // MISSING
1503
1504         // If old_cursor.pos() == 1 and old_cursor.pos()(0) == LineSeparator
1505         // delete the LineSeparator.
1506         // MISSING
1507
1508         // If the pos around the old_cursor were spaces, delete one of them.
1509         if (old_cursor.par() != cur.par() || old_cursor.pos() != cur.pos()) {
1510
1511                 // Only if the cursor has really moved
1512                 if (old_cursor.pos() > 0
1513                     && old_cursor.pos() < old_pit->size()
1514                     && old_pit->isLineSeparator(old_cursor.pos())
1515                     && old_pit->isLineSeparator(old_cursor.pos() - 1)) {
1516                         bool erased = old_pit->erase(old_cursor.pos() - 1);
1517                         redoParagraph(old_pit);
1518
1519                         if (!erased)
1520                                 return false;
1521 #ifdef WITH_WARNINGS
1522 #warning This will not work anymore when we have multiple views of the same buffer
1523 // In this case, we will have to correct also the cursors held by
1524 // other bufferviews. It will probably be easier to do that in a more
1525 // automated way in CursorSlice code. (JMarc 26/09/2001)
1526 #endif
1527                         // correct all cursors held by the LyXText
1528                         fixCursorAfterDelete(cursor(), old_cursor);
1529                         fixCursorAfterDelete(anchor(), old_cursor);
1530                         return false;
1531                 }
1532         }
1533
1534         // don't delete anything if this is the ONLY paragraph!
1535         if (paragraphs().size() == 1)
1536                 return false;
1537
1538         // Do not delete empty paragraphs with keepempty set.
1539         if (old_pit->allowEmpty())
1540                 return false;
1541
1542         // only do our magic if we changed paragraph
1543         if (old_cursor.par() == cur.par())
1544                 return false;
1545
1546         // record if we have deleted a paragraph
1547         // we can't possibly have deleted a paragraph before this point
1548         bool deleted = false;
1549
1550         if (old_pit->empty()
1551             || (old_pit->size() == 1 && old_pit->isLineSeparator(0))) {
1552                 // ok, we will delete something
1553                 CursorSlice tmpcursor;
1554
1555                 deleted = true;
1556
1557                 bool selection_position_was_oldcursor_position =
1558                         anchor().par() == old_cursor.par()
1559                         && anchor().pos() == old_cursor.pos();
1560
1561                 tmpcursor = cursor();
1562                 cursor() = old_cursor; // that undo can restore the right cursor position
1563
1564                 ParagraphList::iterator endpit = boost::next(old_pit);
1565                 while (endpit != paragraphs().end() && endpit->getDepth())
1566                         ++endpit;
1567
1568                 recUndo(parOffset(old_pit), parOffset(endpit) - 1);
1569                 cursor() = tmpcursor;
1570
1571                 // delete old par
1572                 paragraphs().erase(old_pit);
1573                 // update cursor par offset
1574                 --cur.par();
1575                 redoParagraph();
1576
1577                 if (selection_position_was_oldcursor_position) {
1578                         // correct selection
1579                         bv()->resetAnchor();
1580                 }
1581         }
1582
1583         if (deleted)
1584                 return true;
1585
1586         if (old_pit->stripLeadingSpaces()) {
1587                 redoParagraph(old_pit);
1588                 bv()->resetAnchor();
1589         }
1590         return false;
1591 #endif
1592 }
1593
1594
1595 ParagraphList & LyXText::paragraphs() const
1596 {
1597         return const_cast<ParagraphList &>(paragraphs_);
1598 }
1599
1600
1601 void LyXText::recUndo(par_type first, par_type last) const
1602 {
1603         recordUndo(bv()->cursor(), Undo::ATOMIC, first, last);
1604 }
1605
1606
1607 void LyXText::recUndo(par_type par) const
1608 {
1609         recordUndo(bv()->cursor(), Undo::ATOMIC, par, par);
1610 }
1611
1612
1613 bool LyXText::isInInset() const
1614 {
1615         return in_inset_;
1616 }
1617
1618
1619 bool LyXText::toggleInset(LCursor & cur)
1620 {
1621         InsetBase * inset = cur.nextInset();
1622         // is there an editable inset at cursor position?
1623         if (!isEditableInset(inset))
1624                 return false;
1625         cur.message(inset->editMessage());
1626
1627         // do we want to keep this?? (JMarc)
1628         if (!isHighlyEditableInset(inset))
1629                 recordUndo(cur);
1630
1631         if (inset->isOpen())
1632                 inset->close();
1633         else
1634                 inset->open();
1635         return true;
1636 }
1637
1638
1639 int defaultRowHeight()
1640 {
1641         return int(font_metrics::maxHeight(LyXFont(LyXFont::ALL_SANE)) *  1.2);
1642 }