]> git.lyx.org Git - lyx.git/blob - src/text.C
the figinsetpatch some lyxrc changes, read the ChangeLog
[lyx.git] / src / text.C
1 /* This file is part of
2  * ====================================================== 
3  * 
4  *           LyX, The Document Processor
5  *       
6  *           Copyright 1995 Matthias Ettrich
7  *           Copyright 1995-1999 The LyX Team.
8  *
9  * ====================================================== */
10
11 #include <config.h>
12 #include <cstdlib>
13 #include <cctype>
14
15 #ifdef __GNUG__
16 #pragma implementation "table.h"
17 #endif
18
19 #include "layout.h"
20 #include "lyxparagraph.h"
21 #include "lyxtext.h"
22 #include "support/textutils.h"
23 #include "insets/insetbib.h"
24 #include "lyx_gui_misc.h"
25 #include "gettext.h"
26 #include "bufferparams.h"
27 #include "buffer.h"
28 #include "minibuffer.h"
29 #include "debug.h"
30 #include "lyxrc.h"
31 #include "LyXView.h"
32 #include "lyxrow.h"
33 #include "Painter.h"
34
35 using std::max;
36 using std::min;
37
38 static const int LYX_PAPER_MARGIN = 20;
39
40
41 // ale070405
42 extern int bibitemMaxWidth(Painter &, LyXFont const &);
43
44 #define FIX_DOUBLE_SPACE 1
45
46 static int iso885968x[] = {
47         0xbc,   // 0xa8 = fathatan
48         0xbd,   // 0xa9 = dammatan
49         0xbe,   // 0xaa = kasratan
50         0xdb,   // 0xab = fatha
51         0xdc,   // 0xac = damma
52         0xdd,   // 0xad = kasra
53         0xde,   // 0xae = shadda
54         0xdf,   // 0xaf = sukun
55
56         0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, // 0xb0-0xbf
57
58         0,      // 0xc0 
59         0xc1,   // 0xc1 = hamza
60         0xc2,   // 0xc2 = ligature madda
61         0xc3,   // 0xc3 = ligature hamza on alef
62         0xc4,   // 0xc4 = ligature hamza on waw
63         0xc5,   // 0xc5 = ligature hamza under alef
64         0xc0,   // 0xc6 = ligature hamza on ya 
65         0xc7,   // 0xc7 = alef
66         0xeb,   // 0xc8 = baa 
67         0xc9,   // 0xc9 = taa marbuta
68         0xec,   // 0xca = taa
69         0xed,   // 0xcb = thaa
70         0xee,   // 0xcc = jeem
71         0xef,   // 0xcd = haa
72         0xf0,   // 0xce = khaa
73         0xcf,   // 0xcf = dal
74
75         0xd0,   // 0xd0 = thal
76         0xd1,   // 0xd1 = ra
77         0xd2,   // 0xd2 = zain
78         0xf1,   // 0xd3 = seen
79         0xf2,   // 0xd4 = sheen
80         0xf3,   // 0xd5 = sad
81         0xf4,   // 0xd6 = dad
82         0xd7,   // 0xd7 = tah
83         0xd8,   // 0xd8 = zah
84         0xf5,   // 0xd9 = ain
85         0xf6,   // 0xda = ghain
86         0,0,0,0,0, // 0xdb- 0xdf
87
88         0,      // 0xe0
89         0xf7,   // 0xe1 = fa
90         0xf8,   // 0xe2 = qaf
91         0xf9,   // 0xe3 = kaf
92         0xfa,   // 0xe4 = lam
93         0xfb,   // 0xe5 = meem
94         0xfc,   // 0xe6 = noon
95         0xfd,   // 0xe7 = ha
96         0xe8,   // 0xe8 = waw
97         0xe9,   // 0xe9 = alef maksura
98         0xfe    // 0xea = ya
99 };
100
101 bool is_arabic(unsigned char c)
102 {
103         return 0xa8 <= c && c <= 0xea && iso885968x[c-0xa8];
104 }
105
106 unsigned char LyXText::TransformChar(unsigned char c, Letter_Form form) const
107 {
108         if (is_arabic(c) && 
109             (form == FORM_INITIAL || form == FORM_MEDIAL) )
110                 return iso885968x[c-0xa8];
111         else
112                 return c;
113 }
114
115 unsigned char LyXText::TransformChar(unsigned char c, LyXParagraph * par,
116                         LyXParagraph::size_type pos) const
117 {
118         if (!is_arabic(c))
119                 return c;
120
121         bool not_first = (pos > 0 && is_arabic(par->GetChar(pos-1)));
122         if (pos < par->Last()-1 && is_arabic(par->GetChar(pos+1)))
123                 if (not_first)
124                         return TransformChar(c,FORM_MEDIAL);
125                 else
126                         return TransformChar(c,FORM_INITIAL);
127         else
128                 if (not_first)
129                         return TransformChar(c,FORM_FINAL);
130                 else
131                         return TransformChar(c,FORM_ISOLATED);
132 }
133
134 // This is the comments that some of the warnings below refers to.
135 // There are some issues in this file and I don't think they are
136 // really related to the FIX_DOUBLE_SPACE patch. I'd rather think that
137 // this is a problem that has been here almost from day one and that a
138 // larger userbase with differenct access patters triggers the bad
139 // behaviour. (segfaults.) What I think happen is: In several places
140 // we store the paragraph in the current cursor and then moves the
141 // cursor. This movement of the cursor will delete paragraph at the
142 // old position if it is now empty. This will make the temporary
143 // pointer to the old cursor paragraph invalid and dangerous to use.
144 // And is some cases this will trigger a segfault. I have marked some
145 // of the cases where this happens with a warning, but I am sure there
146 // are others in this file and in text2.C. There is also a note in
147 // Delete() that you should read. In Delete I store the paragraph->id
148 // instead of a pointer to the paragraph. I am pretty sure this faulty
149 // use of temporary pointers to paragraphs that might have gotten
150 // invalidated (through a cursor movement) before they are used, are
151 // the cause of the strange crashes we get reported often.
152 //
153 // It is very tiresom to change this code, especially when it is as
154 // hard to read as it is. Help to fix all the cases where this is done
155 // would be greately appreciated.
156 //
157 // Lgb
158
159 int LyXText::SingleWidth(LyXParagraph * par,
160                          LyXParagraph::size_type pos) const
161 {
162         char c = par->GetChar(pos);
163         return SingleWidth(par, pos, c);
164 }
165
166
167 int LyXText::SingleWidth(LyXParagraph * par,
168                          LyXParagraph::size_type pos, char c) const
169 {
170         LyXFont font = GetFont(par, pos);
171
172         // The most common case is handled first (Asger)
173         if (IsPrintable(c)) {
174                 if (lyxrc.rtl_support && lyxrc.font_norm == "iso8859-6.8x")
175                         c = TransformChar(c, par, pos);
176                 return font.width(c);
177
178         } else if (IsHfillChar(c)) {
179                 return 3;       /* Because of the representation
180                                  * as vertical lines */
181         } else if (c == LyXParagraph::META_FOOTNOTE ||
182                    c == LyXParagraph::META_MARGIN ||
183                    c == LyXParagraph::META_FIG ||
184                    c == LyXParagraph::META_TAB ||
185                    c == LyXParagraph::META_WIDE_FIG ||
186                    c == LyXParagraph::META_WIDE_TAB ||
187                    c == LyXParagraph::META_ALGORITHM) {
188                 string fs;
189                 switch (c) {
190                 case LyXParagraph::META_MARGIN:
191                         fs = "margin";
192                         break;
193                 case LyXParagraph::META_FIG:
194                         fs = "fig";
195                         break;
196                 case LyXParagraph::META_TAB:
197                         fs = "tab";
198                         break;
199                 case LyXParagraph::META_ALGORITHM:
200                         fs = "alg";
201                         break;
202                 case LyXParagraph::META_WIDE_FIG:
203                         fs = "wide-fig";
204                         break;
205                 case LyXParagraph::META_WIDE_TAB:
206                         fs = "wide-tab";
207                         break;
208                 case LyXParagraph::META_FOOTNOTE:
209                         fs = "foot";
210                         break;
211                 }
212                 font.decSize();
213                 font.decSize();
214                 return font.stringWidth(fs);
215         } else if (c == LyXParagraph::META_INSET) {
216                 Inset * tmpinset= par->GetInset(pos);
217                 if (tmpinset)
218                         return par->GetInset(pos)->width(owner_->painter(),
219                                                          font);
220                 else
221                         return 0;
222
223         } else if (IsSeparatorChar(c))
224                 c = ' ';
225         else if (IsNewlineChar(c))
226                 c = 'n';
227         return font.width(c);
228 }
229
230
231 // Returns the paragraph position of the last character in the specified row
232 LyXParagraph::size_type LyXText::RowLast(Row const * row) const
233 {
234         if (row->next == 0)
235                 return row->par->Last() - 1;
236         else if (row->next->par != row->par) 
237                 return row->par->Last() - 1;
238         else 
239                 return row->next->pos - 1;
240 }
241
242
243
244
245
246 void LyXText::ComputeBidiTables(Row * row) const
247 {
248
249         if (!lyxrc.rtl_support) {
250                 bidi_start = -1;
251                 return;
252         }
253         LyXParagraph::size_type last = RowLast(row);
254         bidi_start = row->pos;
255
256         if (bidi_start > last) {
257                 bidi_start = -1;
258                 return;
259         }
260
261         if (last + 2 - bidi_start >
262             static_cast<LyXParagraph::size_type>(log2vis_list.size())) {
263                 LyXParagraph::size_type new_size = 
264                         (last + 2 - bidi_start < 500) ?
265                         500 : 2 * (last + 2 - bidi_start);
266                 log2vis_list.resize(new_size);
267                 vis2log_list.resize(new_size);
268         }
269
270         vis2log_list[last + 1 - bidi_start] = -1;
271         log2vis_list[last + 1 - bidi_start] = -1;
272
273         LyXParagraph::size_type main_body = BeginningOfMainBody(row->par);
274         if (main_body > 0 && row->pos < main_body - 1 && main_body - 1 <= last
275             && row->par->IsLineSeparator(main_body - 1)) {
276                 // This is needed in case there is a direction change in
277                 // the label which is continued into the main body
278                 if (row->par->getParDirection() == LYX_DIR_LEFT_TO_RIGHT) {
279                         ComputeBidiTablesFromTo(row, bidi_start,
280                                                 main_body - 2, 0);
281                         log2vis_list[main_body - 1 - bidi_start] =
282                                 main_body - 1;
283                         vis2log_list[main_body - 1 - bidi_start] =
284                                 main_body - 1;
285                         if (main_body <= last)
286                                 ComputeBidiTablesFromTo(row,
287                                                         main_body,last, 0);
288                 } else {
289                         ComputeBidiTablesFromTo(row, bidi_start,
290                                                 main_body - 2,
291                                                 last - main_body + 2);
292                         log2vis_list[main_body - 1 - bidi_start] =
293                                 last - main_body + 1 + bidi_start;
294                         vis2log_list[last - main_body + 1 - bidi_start] =
295                                 main_body - 1;
296                         if (main_body <= last)
297                                 ComputeBidiTablesFromTo(row, main_body,
298                                                         last, -main_body);
299                 }
300         } else
301                 ComputeBidiTablesFromTo(row, bidi_start, last, 0);
302 }
303
304
305 void LyXText::ComputeBidiTablesFromTo(Row * row,
306                                       LyXParagraph::size_type from,
307                                       LyXParagraph::size_type to,
308                                       LyXParagraph::size_type offset) const
309 {
310         LyXParagraph::size_type vpos, old_lpos, stack[2];
311         LyXDirection par_direction = row->par->getParDirection();
312         LyXDirection direction = par_direction;
313         LyXParagraph::size_type lpos = from;
314         int level = 0;
315
316         while (lpos <= to) {
317                 if (row->par->getLetterDirection(lpos) == direction) {
318                         log2vis_list[lpos - bidi_start] = direction;
319                         ++lpos;
320                 } else {
321                         if (level == 0 ||
322                             (level == 1 && direction == LYX_DIR_RIGHT_TO_LEFT
323                              && row->par->getFont(lpos).direction() ==
324                              LyXFont::RTL_DIR
325                              && row->par->getFont(lpos).latex() ==
326                              LyXFont::ON ) ) {
327                                 // The last check is needed when the
328                                 // char is a space
329                                 stack[level++] = lpos;
330                         } else {
331                                 old_lpos = stack[--level];
332                                 log2vis_list[old_lpos - bidi_start] = 
333                                         log2vis_list[lpos - bidi_start] =
334                                         (old_lpos - lpos) * direction;
335                                 ++lpos;
336                         }
337                         direction = static_cast<LyXDirection>(-direction);
338                 }
339         }
340
341         while (level > 0) {
342                 old_lpos = stack[--level];
343                 log2vis_list[old_lpos - bidi_start] =
344                         (old_lpos - (to + 1)) * direction; 
345                 direction = static_cast<LyXDirection>(-direction);
346         }
347
348         vpos = (par_direction == LYX_DIR_LEFT_TO_RIGHT)
349                 ? from - 1 : to + 1;
350         vpos += offset;
351         for (lpos = from; lpos <= to; ++lpos) {
352                 vpos += log2vis_list[lpos - bidi_start];
353                 vis2log_list[vpos - bidi_start] = lpos;
354                 log2vis_list[lpos - bidi_start] = vpos;
355         }
356 }
357
358
359 void LyXText::draw(Row const * row,
360                    LyXParagraph::size_type & vpos,
361                    int offset, float & x)
362 {
363         Painter & pain = owner_->painter();
364         
365         LyXParagraph::size_type pos = vis2log(vpos);
366         char c = row->par->GetChar(pos);
367
368         if (IsNewlineChar(c)) {
369                 ++vpos;
370                 // Draw end-of-line marker
371                 LyXFont font = GetFont(row->par, pos);
372                 int wid = font.width('n');
373                 int asc = font.maxAscent();
374                 int y = offset + row->baseline;
375                 int xp[3], yp[3];
376                 
377                 if (row->par->getLetterDirection(pos) == LYX_DIR_LEFT_TO_RIGHT) {
378                         xp[0] = int(x + wid * 0.375);
379                         yp[0] = int(y - 0.875 * asc * 0.75);
380                         
381                         xp[1] = int(x);
382                         yp[1] = int(y - 0.500 * asc * 0.75);
383                         
384                         xp[2] = int(x + wid * 0.375);
385                         yp[2] = int(y - 0.125 * asc * 0.75);
386                         
387                         pain.lines(xp, yp, 3, LColor::eolmarker);
388                         
389                         xp[0] = int(x);
390                         yp[0] = int(y - 0.500 * asc * 0.75);
391                         
392                         xp[1] = int(x + wid);
393                         yp[1] = int(y - 0.500 * asc * 0.75);
394                         
395                         xp[2] = int(x + wid);
396                         yp[2] = int(y - asc * 0.75);
397                         
398                         pain.lines(xp, yp, 3, LColor::eolmarker);
399                 } else {
400                         xp[0] = int(x + wid * 0.625);
401                         yp[0] = int(y - 0.875 * asc * 0.75);
402                         
403                         xp[1] = int(x + wid);
404                         yp[1] = int(y - 0.500 * asc * 0.75);
405                         
406                         xp[2] = int(x + wid * 0.625);
407                         yp[2] = int(y - 0.125 * asc * 0.75);
408                         
409                         pain.lines(xp, yp, 3, LColor::eolmarker);
410                         
411                         xp[0] = int(x + wid);
412                         yp[0] = int(y - 0.500 * asc * 0.75);
413                         
414                         xp[1] = int(x);
415                         yp[1] = int(y - 0.500 * asc * 0.75);
416                         
417                         xp[2] = int(x);
418                         yp[2] = int(y - asc * 0.75);
419                         
420                         pain.lines(xp, yp, 3, LColor::eolmarker);
421                 }
422                 x += wid;
423                 return;
424         }
425
426         LyXFont font = GetFont(row->par, pos);
427         LyXFont font2 = font;
428
429         if (c == LyXParagraph::META_FOOTNOTE
430             || c == LyXParagraph::META_MARGIN
431             || c == LyXParagraph::META_FIG
432             || c == LyXParagraph::META_TAB
433             || c == LyXParagraph::META_WIDE_FIG
434             || c == LyXParagraph::META_WIDE_TAB
435             || c == LyXParagraph::META_ALGORITHM) {
436                 string fs;
437                 switch (c) {
438                 case LyXParagraph::META_MARGIN:
439                         fs = "margin";
440                         // Draw a sign at the left margin!
441                         owner_->painter()
442                                 .text((LYX_PAPER_MARGIN - font.width('!'))/2,
443                                       offset + row->baseline, "!", 1, font);
444                         break;
445                 case LyXParagraph::META_FIG:
446                         fs = "fig";
447                         break;
448                 case LyXParagraph::META_TAB:
449                         fs = "tab";
450                         break;
451                 case LyXParagraph::META_ALGORITHM:
452                         fs = "alg";
453                         break;
454                 case LyXParagraph::META_WIDE_FIG:
455                         fs = "wide-fig";
456                         break;
457                 case LyXParagraph::META_WIDE_TAB:
458                         fs = "wide-tab";
459                         break;
460                 case LyXParagraph::META_FOOTNOTE:
461                         fs = "foot";
462                         break;
463                 }
464                 font.decSize();
465                 font.decSize();
466           
467                 // calculate the position of the footnotemark
468                 int y = (row->baseline - font2.maxAscent() 
469                          + font.maxAscent());
470           
471                 font.setColor(LColor::footnote);
472
473                 float tmpx = x;
474
475                 // draw it and set new x position
476                 
477                 pain.text(int(x), offset + y, fs, font);
478                 x += pain.width(fs, font);
479                 pain.line(int(tmpx), offset + row->baseline,
480                           int(x), offset + row->baseline,
481                           LColor::footnote);
482
483                 ++vpos;
484                 return;
485         } else if (c == LyXParagraph::META_INSET) {
486                 Inset * tmpinset = row->par->GetInset(pos);
487                 if (tmpinset) {
488                         tmpinset->draw(owner_->painter(), font,
489                                        offset + row->baseline, x);
490                 }
491                 ++vpos;
492                 return;
493         }
494
495         /* usual characters, no insets */
496
497         // Collect character that we can draw in one command
498
499         // This is dirty, but fast. Notice that it will never be too small.
500         // For the record, I'll note that Microsoft Word has a limit
501         // of 768 here. We have none :-) (Asger)
502         // Ok. I am the first to admit that the use of std::string will be
503         // a tiny bit slower than using a POD char array. However, I claim
504         // that this slowdown is so small that it is close to inperceptive.
505         // So IMHO we should go with the easier and clearer implementation.
506         // And even if 1024 is a large number here it might overflow, string
507         // will only overflow if the machine is out of memory...
508         bool do_transform = (lyxrc.rtl_support && lyxrc.font_norm == "iso8859-6.8x");
509         if (do_transform)
510                 c = TransformChar(c, row->par, pos);
511         static string textstring;
512         textstring = c;
513         ++vpos;
514
515         LyXParagraph::size_type last = RowLast(row);
516         
517         while (vpos <= last &&
518                (pos = vis2log(vpos)) >= 0
519                && static_cast<unsigned char>(c = row->par->GetChar(pos)) > ' '
520                && font2 == GetFont(row->par, pos)) {
521                 if (do_transform)
522                         c = TransformChar(c, row->par, pos);
523                 textstring += c;
524                 ++vpos;
525         }
526         float tmpx = x;
527
528         // Draw text and set the new x position
529         pain.text(int(x), offset + row->baseline, textstring, font);
530         x += pain.width(textstring, font);
531         
532         // what about underbars?
533         if (font.underbar() == LyXFont::ON && font.latex() != LyXFont::ON) {
534                 pain.line(tmpx, offset + row->baseline + 2,
535                           x, offset + row->baseline + 2);
536                 
537         }
538
539         // If we want ulem.sty support, drawing
540         // routines should go here. (Asger)
541         // Why shouldn't LyXFont::drawText handle it internally?
542 }
543
544
545 // Returns the left beginning of the text. 
546 // This information cannot be taken from the layouts-objekt, because in 
547 // LaTeX the beginning of the text fits in some cases (for example sections)
548 // exactly the label-width.
549 int LyXText::LeftMargin(Row const * row) const
550 {
551         LyXLayout const & layout = textclasslist.Style(parameters->textclass,
552                                                        row->par->GetLayout());
553         
554         string parindent = layout.parindent; 
555         
556         /* table stuff -- begin */ 
557         if (row->par->table)
558                 parindent.clear();
559         /* table stuff -- end */
560         
561         int x = LYX_PAPER_MARGIN;
562         
563         x += textclasslist.TextClass(parameters->textclass)
564                 .defaultfont()
565                 .signedStringWidth(textclasslist
566                                    .TextClass(parameters->textclass)
567                                    .leftmargin());
568         
569         if (row->par->footnoteflag == LyXParagraph::OPEN_FOOTNOTE)  {
570                 LyXFont font(LyXFont::ALL_SANE);
571                 font.setSize(LyXFont::SIZE_SMALL);
572                 x += font.textWidth("Mwide-figM", 10) + LYX_PAPER_MARGIN/2;
573         }
574         
575         // this is the way, LyX handles the LaTeX-Environments.
576         // I have had this idea very late, so it seems to be a
577         // later added hack and this is true
578         if (!row->par->GetDepth()) {
579                 if (!row->par->GetLayout()) {
580                         // find the previous same level paragraph
581                         if (row->par->FirstPhysicalPar()->Previous()) {
582                                 LyXParagraph * newpar = row->par
583                                         ->DepthHook(row->par->GetDepth());
584                                 if (newpar &&
585                                     textclasslist.Style(parameters->textclass,
586                                                         newpar->GetLayout())
587                                     .nextnoindent)
588                                         parindent.clear();
589                         }
590                 }
591         } else {
592                 // find the next level paragraph
593                 
594                 LyXParagraph * newpar = row->par->DepthHook(row->par->GetDepth()-1);
595                 
596                 // make a corresponding row. Needed to call LeftMargin()
597                 
598                 // check wether it is a sufficent paragraph 
599                 if (newpar && newpar->footnoteflag == row->par->footnoteflag
600                     && textclasslist
601                         .Style(parameters->textclass, 
602                                newpar->GetLayout()).isEnvironment()) {
603                         Row dummyrow;
604                         dummyrow.par = newpar;
605                         dummyrow.pos = newpar->Last();
606                         x = LeftMargin(&dummyrow);
607                 } else {
608                         // this is no longer an error, because this function
609                         // is used to clear impossible depths after changing
610                         // a layout. Since there is always a redo,
611                         // LeftMargin() is always called
612                         row->par->FirstPhysicalPar()->depth = 0;
613                 }
614                 
615                 if (newpar && !row->par->GetLayout()) {
616                         if (newpar->FirstPhysicalPar()->noindent)
617                                 parindent.clear();
618                         else
619                                 parindent = textclasslist
620                                         .Style(parameters->textclass, 
621                                                newpar->GetLayout()).parindent;
622                 }
623                 
624         }
625         
626         LyXFont labelfont = GetFont(row->par, -2);
627         switch (layout.margintype) {
628         case MARGIN_DYNAMIC:
629                 if (!layout.leftmargin.empty()) {
630                         x += textclasslist
631                                 .TextClass(parameters->textclass)
632                                 .defaultfont()
633                                 .signedStringWidth(layout.leftmargin);
634                 }
635                 if (!row->par->GetLabestring().empty()) {
636                         x += labelfont.signedStringWidth(layout.labelindent);
637                         x += labelfont.stringWidth(row->par->GetLabestring());
638                         x += labelfont.stringWidth(layout.labelsep);
639                 }
640                 break;
641         case MARGIN_MANUAL:
642                 x += labelfont.signedStringWidth(layout.labelindent);
643                 if (row->pos >= BeginningOfMainBody(row->par)) {
644                         if (!row->par->GetLabelWidthString().empty()) {
645                                 x += labelfont
646                                         .stringWidth(row->par
647                                                      ->GetLabelWidthString());
648                                 x += labelfont.stringWidth(layout.labelsep);
649                         }
650                 }
651                 break;
652         case MARGIN_STATIC:
653                 x += textclasslist.TextClass(parameters->textclass)
654                         .defaultfont().signedStringWidth(layout.leftmargin) * 4
655                         / (row->par->GetDepth() + 4);
656                 break;
657         case MARGIN_FIRST_DYNAMIC:
658                 if (layout.labeltype == LABEL_MANUAL) {
659                         if (row->pos >= BeginningOfMainBody(row->par)) {
660                                 x += labelfont
661                                         .signedStringWidth(layout.leftmargin);
662                         } else {
663                                 x += labelfont
664                                         .signedStringWidth(layout.labelindent);
665                         }
666                 } else if (row->pos
667                            // Special case to fix problems with
668                            // theorems (JMarc)
669                            || (layout.labeltype == LABEL_STATIC
670                                && layout.latextype == LATEX_ENVIRONMENT
671                                && ! row->par->IsFirstInSequence())) {
672                         x += labelfont.signedStringWidth(layout.leftmargin);
673                 } else if (layout.labeltype != LABEL_TOP_ENVIRONMENT
674                            && layout.labeltype != LABEL_BIBLIO
675                            && layout.labeltype !=
676                            LABEL_CENTERED_TOP_ENVIRONMENT) {
677                         x += labelfont.signedStringWidth(layout.labelindent);
678                         x += labelfont.stringWidth(layout.labelsep);
679                         x += labelfont.stringWidth(row->par->GetLabestring());
680                 } 
681                 break;
682                 
683         case MARGIN_RIGHT_ADDRESS_BOX:
684         {
685                 // ok, a terrible hack. The left margin depends on the widest
686                 // row in this paragraph. Do not care about footnotes, they
687                 // are *NOT* allowed in the LaTeX realisation of this layout.
688                 
689                 // find the first row of this paragraph
690                 Row const * tmprow = row;
691                 while (tmprow->previous && tmprow->previous->par == row->par)
692                         tmprow = tmprow->previous;
693                 
694                 int minfill = tmprow->fill;
695                 while (tmprow->next && tmprow->next->par == row->par) {
696                         tmprow = tmprow->next;
697                         if (tmprow->fill < minfill)
698                                 minfill = tmprow->fill;
699                 }
700                 
701                 x += textclasslist.TextClass(parameters->textclass)
702                         .defaultfont().signedStringWidth(layout.leftmargin);
703                 x += minfill;
704         }
705         break;
706         }
707         if (row->par->pextra_type == LyXParagraph::PEXTRA_INDENT) {
708                 if (!row->par->pextra_widthp.empty()) {
709                         x += paperwidth *
710                                 atoi(row->par->pextra_widthp.c_str()) / 100;
711                 } else if (!row->par->pextra_width.empty()) {
712                         int xx = VSpace(row->par->pextra_width).inPixels(owner_);
713                         
714                         if (xx > paperwidth)
715                                 xx = paperwidth * 80 / 100;
716                         x += xx;
717                 } else { // should not happen
718                         LyXFont font(LyXFont::ALL_SANE);
719                         x += font.stringWidth("XXXXXX");
720                 }
721         }
722         
723         int align; // wrong type
724         if (row->par->FirstPhysicalPar()->align == LYX_ALIGN_LAYOUT)
725                 align = layout.align;
726         else
727                 align = row->par->FirstPhysicalPar()->align;
728         
729         // set the correct parindent
730         if (row->pos == 0) {
731                 if ((layout.labeltype == LABEL_NO_LABEL 
732                      || layout.labeltype == LABEL_TOP_ENVIRONMENT 
733                      || layout.labeltype == LABEL_CENTERED_TOP_ENVIRONMENT
734                      || (layout.labeltype == LABEL_STATIC
735                          && layout.latextype == LATEX_ENVIRONMENT
736                          && ! row->par->IsFirstInSequence()))
737                     && row->par == row->par->FirstPhysicalPar()
738                     && align == LYX_ALIGN_BLOCK
739                     && !row->par->noindent
740                     && (row->par->layout ||
741                         parameters->paragraph_separation ==
742                         BufferParams::PARSEP_INDENT))
743                         x += textclasslist.TextClass(parameters->textclass)
744                                 .defaultfont().signedStringWidth(parindent);
745                 else if (layout.labeltype == LABEL_BIBLIO) {
746                         // ale970405 Right width for bibitems
747                         x += bibitemMaxWidth(owner_->painter(),
748                                              textclasslist
749                                              .TextClass(parameters
750                                                         ->textclass)
751                                              .defaultfont());
752                 }
753         }
754         return x;
755 }
756     
757    
758 int LyXText::RightMargin(Row const * row) const
759 {
760         LyXLayout const & layout =
761                 textclasslist.Style(parameters->textclass,
762                                     row->par->GetLayout());
763         
764         int x = LYX_PAPER_MARGIN
765                 + textclasslist
766                 .TextClass(parameters->textclass)
767                 .defaultfont()
768                 .signedStringWidth(textclasslist
769                                    .TextClass(parameters->textclass)
770                                    .rightmargin());
771         
772         if (row->par->footnoteflag == LyXParagraph::OPEN_FOOTNOTE)  {
773                 x += LYX_PAPER_MARGIN / 2;
774         }
775         
776         // this is the way, LyX handles the LaTeX-Environments.
777         // I have had this idea very late, so it seems to be a
778         // later added hack and this is true
779         if (row->par->GetDepth()) {
780                 // find the next level paragraph
781                 
782                 LyXParagraph * newpar = row->par;
783                 
784                 do {
785                         newpar = newpar->FirstPhysicalPar()->Previous();
786                         if (newpar) 
787                                 newpar = newpar->FirstPhysicalPar();
788                 } while (newpar && newpar->GetDepth() >= row->par->GetDepth()
789                          && newpar->footnoteflag == row->par->footnoteflag);
790                 
791                 // make a corresponding row. Needed to call LeftMargin()
792                 
793                 // check wether it is a sufficent paragraph
794                 if (newpar && newpar->footnoteflag == row->par->footnoteflag
795                     && textclasslist.Style(parameters->textclass,
796                                            newpar->GetLayout())
797                        .isEnvironment()) {
798                         Row dummyrow;
799                         dummyrow.par = newpar;
800                         dummyrow.pos = 0;
801                         x = RightMargin(&dummyrow);
802                 } else {
803                         // this is no longer an error, because this function
804                         // is used to clear impossible depths after changing
805                         // a layout. Since there is always a redo,
806                         // LeftMargin() is always called
807                         row->par->FirstPhysicalPar()->depth = 0;
808                 }
809         }
810         
811         //lyxerr << "rightmargin: " << layout->rightmargin << endl;
812         x += textclasslist.TextClass(parameters->textclass)
813                 .defaultfont()
814                 .signedStringWidth(layout.rightmargin) * 4
815               / (row->par->GetDepth() + 4);
816         return x;
817 }
818
819
820 int LyXText::LabelEnd (Row const * row) const
821 {
822         if (textclasslist.Style(parameters->textclass,
823                                 row->par->GetLayout()).margintype
824             == MARGIN_MANUAL) {
825                 Row tmprow;
826                 tmprow = *row;
827                 tmprow.pos = row->par->Last();
828                 return LeftMargin(&tmprow);  /* just the beginning 
829                                                 of the main body */
830         } else
831                 return 0;  /* LabelEnd is only needed, if the  
832                               layout fills a flushleft
833                               label. */
834 }
835
836
837 /* table stuff -- begin*/
838 int LyXText::NumberOfCell(LyXParagraph * par,
839                           LyXParagraph::size_type pos) const
840 {
841    int cell = 0;
842    LyXParagraph::size_type tmp_pos = 0;
843    while (tmp_pos < pos) {
844       if (par->IsNewline(tmp_pos))
845          ++cell;
846       ++tmp_pos;
847    }
848    return cell;
849 }
850
851
852 int LyXText::WidthOfCell(LyXParagraph * par,
853                          LyXParagraph::size_type & pos) const
854 {
855    int w = 0;
856    while (pos < par->Last() && !par->IsNewline(pos)) {
857       w += SingleWidth(par, pos);
858       ++pos;
859    }
860    if (par->IsNewline(pos))
861       ++pos;
862    return w;
863 }
864
865
866 bool LyXText::HitInTable(Row * row, int x) const
867 {
868         float tmpx;
869         float fill_separator, fill_hfill, fill_label_hfill;
870         if (!row->par->table)
871                 return false;
872         PrepareToPrint(row, tmpx, fill_separator,
873                        fill_hfill, fill_label_hfill, false);
874         return (x > tmpx && x < tmpx + row->par->table->WidthOfTable());
875 }
876
877
878 bool LyXText::MouseHitInTable(int x, long y) const
879 {
880         Row * row = GetRowNearY(y);
881         return HitInTable(row, x);
882 }
883
884
885 /* table stuff -- end*/
886
887
888 // get the next breakpoint in a given paragraph
889 LyXParagraph::size_type
890 LyXText::NextBreakPoint(Row const * row, int width) const
891 {
892         LyXParagraph * par = row->par;
893         LyXParagraph::size_type pos = row->pos;
894         
895         /* table stuff -- begin*/ 
896         if (par->table) {
897                 while (pos < par->size()
898                        && (!par->IsNewline(pos) 
899                            || !par->table->IsFirstCell(NumberOfCell(par, pos+1)))) {
900                         if (par->GetChar(pos) == LyXParagraph::META_INSET &&
901                             par->GetInset(pos) && par->GetInset(pos)->display()){
902                                 par->GetInset(pos)->display(false);
903                         }
904                         ++pos;
905                 }
906                 return pos;
907         }
908         /* table stuff -- end*/ 
909         
910         // position of the last possible breakpoint 
911         // -1 isn't a suitable value, but a flag
912         LyXParagraph::size_type last_separator = -1;
913         width -= RightMargin(row);
914         
915         LyXParagraph::size_type main_body = BeginningOfMainBody(par);
916         LyXLayout const & layout =
917                 textclasslist.Style(parameters->textclass, par->GetLayout());
918         LyXParagraph::size_type i = pos;
919
920         if (layout.margintype == MARGIN_RIGHT_ADDRESS_BOX) {
921                 /* special code for right address boxes, only newlines count */
922                 while (i < par->Last()) {
923                         if (par->IsNewline(i)) {
924                                 last_separator = i;
925                                 i = par->Last() - 1; // this means break
926                                 //x = width;
927                         } else if (par->GetChar(i) == LyXParagraph::META_INSET &&
928                                    par->GetInset(i) && par->GetInset(i)->display()){
929                                 par->GetInset(i)->display(false);
930                         }
931                         ++i;
932                 }
933         } else {
934                 // Last position is an invariant
935                 LyXParagraph::size_type const last = 
936                         par->Last();
937                 // this is the usual handling
938                 int x = LeftMargin(row);
939                 while (x < width && i < last) {
940                         char c = par->GetChar(i);
941                         if (IsNewlineChar(c)) {
942                                 last_separator = i;
943                                 x = width; // this means break
944                         } else if (c == LyXParagraph::META_INSET &&
945                                    par->GetInset(i) && par->GetInset(i)->display()){
946                                 // check wether a Display() inset is
947                                 // valid here. if not, change it to
948                                 // non-display
949                                 if (layout.isCommand()
950                                     || (layout.labeltype == LABEL_MANUAL
951                                         && i < BeginningOfMainBody(par))){
952                                         // display istn't allowd
953                                         par->GetInset(i)->display(false);
954                                         x += SingleWidth(par, i, c);
955                                 } else {
956                                         // inset is display. So break the line here
957                                         if (i == pos){
958                                                 if (pos < last-1) {
959                                                         last_separator = i;
960                                                         if (IsLineSeparatorChar(par->GetChar(i+1)))
961                                                                 ++last_separator;
962                                                 } else
963                                                         last_separator = last; // to avoid extra rows
964                                         } else
965                                                 last_separator = i - 1;
966                                         x = width;  // this means break
967                                 }
968                         } else  {
969                                 if (IsLineSeparatorChar(c))
970                                         last_separator = i;
971                                 x += SingleWidth(par, i, c);
972                         }
973                         ++i;
974                         if (i == main_body) {
975                                 x += GetFont(par, -2).stringWidth(layout.labelsep);
976                                 if (par->IsLineSeparator(i - 1))
977                                         x-= SingleWidth(par, i - 1);
978                                 int left_margin = LabelEnd(row);
979                                 if (x < left_margin)
980                                         x = left_margin;
981                         }
982                 }
983                 // end of paragraph is always a suitable separator
984                 if (i == last && x < width)
985                         last_separator = i;
986         }
987         
988         // well, if last_separator is still 0, the line isn't breakable. 
989         // don't care and cut simply at the end
990         if (last_separator < 0) {
991                 last_separator = i;
992         }
993         
994         // manual labels cannot be broken in LaTeX, do not care
995         if (main_body && last_separator < main_body)
996                 last_separator = main_body - 1;
997         
998         return last_separator;
999 }
1000
1001
1002 // returns the minimum space a row needs on the screen in pixel
1003 int LyXText::Fill(Row const * row, int paper_width) const
1004 {
1005         int w, fill;
1006         // get the pure distance
1007         LyXParagraph::size_type last = RowLast(row);
1008         /* table stuff -- begin */
1009         if (row->par->table) {
1010                 // for tables FILL does calculate the widthes of each cell in 
1011                 // the row
1012                 LyXParagraph::size_type pos = row->pos;
1013                 int cell = NumberOfCell(row->par, pos);
1014                 w = 0;
1015                 do {
1016                         row->par->table->SetWidthOfCell(cell,
1017                                                         WidthOfCell(row->par,
1018                                                                     pos));
1019                         ++cell;
1020                 } while (pos <= last && !row->par->table->IsFirstCell(cell));
1021                 // don't forget the very last table cell without characters
1022                 if (cell == row->par->table->GetNumberOfCells() - 1)
1023                         row->par->table->SetWidthOfCell(cell,
1024                                                         WidthOfCell(row->par,
1025                                                                     pos));
1026                 
1027                 return 0; /* width of table cannot be returned since
1028                            * we cannot guarantee its correct value at
1029                            * this point. */ 
1030         }
1031         /* table stuff -- end*/ 
1032                 
1033         // if the row ends with newline, this newline will not be relevant
1034         //if (last >= 0 && row->par->IsNewline(last))
1035         //      --last;
1036         
1037         // if the row ends with a space, this space will not be relevant
1038         if (last >= 0 && row->par->IsLineSeparator(last))
1039                 --last;
1040         
1041         // special handling of the right address boxes
1042         if (textclasslist.Style(parameters->textclass,
1043                                 row->par->GetLayout()).margintype
1044             == MARGIN_RIGHT_ADDRESS_BOX) {
1045                 int tmpfill = row->fill;
1046                 row->fill = 0; // the minfill in MarginLeft()
1047                 w = LeftMargin(row);
1048                 row->fill = tmpfill;
1049         } else
1050                 w = LeftMargin(row);
1051         
1052         LyXLayout const & layout = textclasslist.Style(parameters->textclass,
1053                                                        row->par->GetLayout());
1054         LyXParagraph::size_type main_body = 
1055                 BeginningOfMainBody(row->par);
1056         LyXParagraph::size_type i = row->pos;
1057
1058         while (i <= last) {
1059                 if (main_body > 0 && i == main_body) {
1060                         w += GetFont(row->par, -2).
1061                                 stringWidth(layout.labelsep);
1062                         if (row->par->IsLineSeparator(i - 1))
1063                                 w -= SingleWidth(row->par, i - 1);
1064                         int left_margin = LabelEnd(row);
1065                         if (w < left_margin)
1066                                 w = left_margin;
1067                 }
1068                 w += SingleWidth(row->par, i);
1069                 ++i;
1070         }
1071         if (main_body > 0 && main_body > last) {
1072                 w += GetFont(row->par, -2).stringWidth(layout.labelsep);
1073                 if (last >= 0 && row->par->IsLineSeparator(last))
1074                         w -= SingleWidth(row->par, last);
1075                 int left_margin = LabelEnd(row);
1076                 if (w < left_margin)
1077                         w = left_margin;
1078         }
1079         
1080         fill = paper_width - w - RightMargin(row);
1081         return fill;
1082 }
1083
1084
1085 // returns the minimum space a manual label needs on the screen in pixel
1086 int LyXText::LabelFill(Row const * row) const
1087 {
1088         LyXParagraph::size_type last = BeginningOfMainBody(row->par) - 1;
1089         // -1 because a label ends either with a space that is in the label, 
1090         // or with the beginning of a footnote that is outside the label.
1091
1092         // I don't understand this code in depth, but sometimes "last" is
1093         // less than 0 and this causes a crash. This fix seems to work
1094         // correctly, but I bet the real error is elsewhere.  The bug is
1095         // triggered when you have an open footnote in a paragraph
1096         // environment with a manual label. (Asger)
1097         if (last < 0) last = 0;
1098         
1099         if (row->par->IsLineSeparator(last)) /* a sepearator at this end 
1100                                                 does not count */
1101                 --last;
1102         
1103         int w = 0;
1104         int i = row->pos;
1105         while (i <= last) {
1106                 w += SingleWidth(row->par, i);
1107                 ++i;
1108         }
1109         
1110         int fill = 0;
1111         if (!row->par->labelwidthstring.empty()) {
1112                 fill = GetFont(row->par, -2)
1113                         .stringWidth(row->par->labelwidthstring) - w;
1114         }
1115         
1116         if (fill < 0)
1117                 fill = 0;
1118         
1119         return fill;
1120 }
1121
1122
1123 // returns the number of separators in the specified row. The separator 
1124 // on the very last column doesnt count
1125 int LyXText::NumberOfSeparators(Row const * row) const
1126 {
1127         int last = RowLast(row);
1128         int p = max(row->pos, BeginningOfMainBody(row->par));
1129         int n = 0;
1130         for (; p < last; ++p) {
1131                 if (row->par->IsSeparator(p)) {
1132                         ++n;
1133                 }
1134         }
1135         return n;
1136 }
1137
1138
1139 // returns the number of hfills in the specified row. The LyX-Hfill is
1140 // a LaTeX \hfill so that the hfills at the beginning and at the end were 
1141 // ignored. This is *MUCH* more usefull than not to ignore!
1142 int LyXText::NumberOfHfills(Row const * row) const
1143 {
1144         int last = RowLast(row);
1145         int first = row->pos;
1146         if (first) { /* hfill *DO* count at the beginning 
1147                       * of paragraphs! */
1148                 while(first <= last && row->par->IsHfill(first))
1149                         ++first;
1150         }
1151
1152         first = max(first, BeginningOfMainBody(row->par));
1153         int n = 0;
1154         for (int p = first; p <= last; ++p) { // last, because the end is ignored!
1155                 if (row->par->IsHfill(p)) {
1156                         ++n;
1157                 }
1158         }
1159         return n;
1160 }
1161
1162
1163 // like NumberOfHfills, but only those in the manual label!
1164 int LyXText::NumberOfLabelHfills(Row const * row) const
1165 {
1166         LyXParagraph::size_type last = RowLast(row);
1167         LyXParagraph::size_type first = row->pos;
1168         if (first) { /* hfill *DO* count at the beginning 
1169                       * of paragraphs! */
1170                 while(first < last && row->par->IsHfill(first))
1171                         ++first;
1172         }
1173
1174         last = min(last, BeginningOfMainBody(row->par));
1175         int n = 0;
1176         for (LyXParagraph::size_type p = first;
1177              p < last; ++p) {  // last, because the end is ignored!
1178                 if (row->par->IsHfill(p)) {
1179                         ++n;
1180                 }
1181         }
1182         return n;
1183 }
1184
1185
1186 // returns true, if a expansion is needed.
1187 // Rules are given by LaTeX
1188 bool LyXText::HfillExpansion(Row const * row_ptr,
1189                              LyXParagraph::size_type pos) const
1190 {
1191         // by the way, is it a hfill?
1192         if (!row_ptr->par->IsHfill(pos))
1193                 return false;
1194         
1195         // at the end of a row it does not count
1196         if (pos >= RowLast(row_ptr))
1197                 return false;
1198         
1199         // at the beginning of a row it does not count, if it is not 
1200         // the first row of a paragaph
1201         if (!row_ptr->pos)
1202                 return true;
1203         
1204         // in some labels  it does not count
1205         if (textclasslist.Style(parameters->textclass,
1206                                 row_ptr->par->GetLayout()).margintype
1207             != MARGIN_MANUAL
1208             && pos < BeginningOfMainBody(row_ptr->par))
1209                 return false; 
1210         
1211         // if there is anything between the first char of the row and
1212         // the sepcified position that is not a newline and not a hfill,
1213         // the hfill will count, otherwise not
1214         LyXParagraph::size_type i = row_ptr->pos;
1215         while (i < pos && (row_ptr->par->IsNewline(i)
1216                            || row_ptr->par->IsHfill(i)))
1217                 ++i;
1218         
1219         return i != pos;
1220 }
1221
1222
1223 void LyXText::SetHeightOfRow(Row * row_ptr) const
1224 {
1225     /* get the maximum ascent and the maximum descent */
1226    int asc, desc, pos;
1227    float layoutasc = 0;
1228    float layoutdesc = 0;
1229    float tmptop = 0;
1230    LyXFont tmpfont;
1231    Inset * tmpinset;
1232
1233    /* this must not happen before the currentrow for clear reasons.
1234       so the trick is just to set the current row onto this row */
1235    long unused_y;
1236    GetRow(row_ptr->par, row_ptr->pos, unused_y);
1237
1238    /* ok , let us initialize the maxasc and maxdesc value. 
1239     * This depends in LaTeX of the font of the last character
1240     * in the paragraph. The hack below is necessary because
1241     * of the possibility of open footnotes */
1242
1243    /* Correction: only the fontsize count. The other properties
1244       are taken from the layoutfont. Nicer on the screen :) */
1245    
1246    LyXParagraph * par = row_ptr->par->LastPhysicalPar();
1247    LyXParagraph * firstpar = row_ptr->par->FirstPhysicalPar();
1248    
1249    LyXLayout const & layout = textclasslist.Style(parameters->textclass,
1250                                                   firstpar->GetLayout());
1251    
1252    LyXFont font = GetFont(par, par->Last()-1);
1253    LyXFont::FONT_SIZE size = font.size();
1254    font = GetFont(par, -1);
1255    font.setSize(size);
1256
1257    LyXFont labelfont = GetFont(par, -2);
1258
1259    int maxasc = int(font.maxAscent() *
1260                    layout.spacing.getValue() *
1261                    parameters->spacing.getValue());
1262    int maxdesc = int(font.maxDescent() *
1263                     layout.spacing.getValue() *
1264                     parameters->spacing.getValue());
1265
1266    int pos_end = RowLast(row_ptr);
1267    
1268    int labeladdon = 0;
1269
1270    // Check if any insets are larger
1271    for (pos = row_ptr->pos; pos <= pos_end; ++pos) {
1272       if (row_ptr->par->GetChar(pos) == LyXParagraph::META_INSET) {
1273          tmpfont = GetFont(row_ptr->par, pos);
1274          tmpinset = row_ptr->par->GetInset(pos);
1275          if (tmpinset) {
1276             asc = tmpinset->ascent(owner_->painter(), tmpfont);
1277             desc = tmpinset->descent(owner_->painter(), tmpfont);
1278             if (asc > maxasc) 
1279               maxasc = asc;
1280             if (desc > maxdesc)
1281               maxdesc = desc;
1282          }
1283       }
1284    }
1285
1286    // Check if any custom fonts are larger (Asger)
1287    // This is not completely correct, but we can live with the small,
1288    // cosmetic error for now.
1289    LyXFont::FONT_SIZE maxsize = row_ptr->par->HighestFontInRange(row_ptr->pos,
1290                                                                  pos_end);
1291    if (maxsize > font.size()) {
1292         font.setSize(maxsize);
1293
1294         asc = font.maxAscent();
1295         desc = font.maxDescent();
1296         if (asc > maxasc) 
1297                 maxasc = asc;
1298         if (desc > maxdesc)
1299                 maxdesc = desc;
1300    }
1301
1302    /* table stuff -- begin*/
1303    if (row_ptr->par->table){
1304      // stretch the rows a bit
1305       maxasc += 1;
1306       maxdesc += 1;
1307    }
1308    /* table stuff -- end*/
1309
1310    // This is nicer with box insets:
1311    ++maxasc;
1312    ++maxdesc;
1313
1314    row_ptr->ascent_of_text = maxasc;
1315    
1316    /* is it a top line? */ 
1317    if (row_ptr->pos == 0
1318        && row_ptr->par == firstpar) {
1319       
1320       /* some parksips VERY EASY IMPLEMENTATION */ 
1321       if (parameters->paragraph_separation == BufferParams::PARSEP_SKIP) {
1322          if (layout.isParagraph()
1323              && firstpar->GetDepth() == 0
1324              && firstpar->Previous())
1325             maxasc += parameters->getDefSkip().inPixels(owner_);
1326          else if (firstpar->Previous()
1327                   && textclasslist.Style(parameters->textclass,
1328                            firstpar->Previous()->GetLayout()).isParagraph()
1329                   && firstpar->Previous()->GetDepth() == 0)
1330            // is it right to use defskip here too? (AS)
1331            maxasc += parameters->getDefSkip().inPixels(owner_);
1332       }
1333       
1334       /* the paper margins */ 
1335       if (!row_ptr->par->previous)
1336          maxasc += LYX_PAPER_MARGIN;
1337       
1338       /* add the vertical spaces, that the user added */
1339       if (firstpar->added_space_top.kind() != VSpace::NONE)
1340          maxasc += int(firstpar->added_space_top.inPixels(owner_));
1341       
1342       /* do not forget the DTP-lines! 
1343        * there height depends on the font of the nearest character */
1344       if (firstpar->line_top)
1345          maxasc += 2 * GetFont(firstpar, 0).ascent('x');
1346       
1347       /* and now the pagebreaks */ 
1348       if (firstpar->pagebreak_top)
1349          maxasc += 3 * DefaultHeight();
1350       
1351       /*  this is special code for the chapter, since the label of this
1352        * layout is printed in an extra row */ 
1353       if (layout.labeltype == LABEL_COUNTER_CHAPTER
1354           && parameters->secnumdepth>= 0) {
1355               labeladdon = int(labelfont.maxDescent() *
1356                                   layout.spacing.getValue() *
1357                                   parameters->spacing.getValue())
1358                       + int(labelfont.maxAscent() *
1359                                layout.spacing.getValue() *
1360                                parameters->spacing.getValue());
1361       }
1362       
1363       /* special code for the top label */ 
1364       if ((layout.labeltype == LABEL_TOP_ENVIRONMENT
1365            || layout.labeltype == LABEL_BIBLIO
1366            || layout.labeltype == LABEL_CENTERED_TOP_ENVIRONMENT)
1367           && row_ptr->par->IsFirstInSequence()
1368           && !row_ptr->par->GetLabestring().empty()) {
1369          labeladdon = int(
1370                  (labelfont.maxAscent() *
1371                   layout.spacing.getValue() *
1372                   parameters->spacing.getValue())
1373                  +(labelfont.maxDescent() *
1374                    layout.spacing.getValue() *
1375                    parameters->spacing.getValue())
1376                  + layout.topsep * DefaultHeight()
1377                  + layout.labelbottomsep *  DefaultHeight());
1378       }
1379    
1380       /* and now the layout spaces, for example before and after a section, 
1381        * or between the items of a itemize or enumerate environment */ 
1382       
1383       if (!firstpar->pagebreak_top) {
1384          LyXParagraph * prev = row_ptr->par->Previous();
1385          if (prev)
1386             prev = row_ptr->par->DepthHook(row_ptr->par->GetDepth());
1387          if (prev && prev->GetLayout() == firstpar->GetLayout()
1388              && prev->GetDepth() == firstpar->GetDepth()
1389              && prev->GetLabelWidthString() == firstpar->GetLabelWidthString())
1390            {
1391               layoutasc = (layout.itemsep * DefaultHeight());
1392            }
1393          else if (row_ptr->previous) {
1394             tmptop = layout.topsep;
1395             
1396             if (row_ptr->previous->par->GetDepth() >= row_ptr->par->GetDepth())
1397                tmptop-= textclasslist.Style(parameters->textclass, row_ptr->previous->par->GetLayout()).bottomsep;
1398             
1399             if (tmptop > 0)
1400                layoutasc = (tmptop * DefaultHeight());
1401          }
1402          else if (row_ptr->par->line_top){
1403             tmptop = layout.topsep;
1404             
1405             if (tmptop > 0)
1406                layoutasc = (tmptop * DefaultHeight());
1407          }
1408          
1409          prev = row_ptr->par->DepthHook(row_ptr->par->GetDepth()-1);
1410          if (prev)  {
1411             maxasc += int(textclasslist.Style(parameters->textclass,
1412                                          prev->GetLayout()).parsep * DefaultHeight());
1413          }
1414          else {
1415                 if (firstpar->Previous()
1416                     && firstpar->Previous()->GetDepth() == 0
1417                     && firstpar->Previous()->GetLayout() != firstpar->GetLayout()) {
1418                    /* avoid parsep */ 
1419                 }
1420             else if (firstpar->Previous()){
1421                maxasc += int(layout.parsep * DefaultHeight());
1422             }
1423          }
1424       }
1425    }
1426    
1427    /* is it a bottom line? */ 
1428    if (row_ptr->par->ParFromPos(RowLast(row_ptr) + 1) == par
1429        && (!row_ptr->next || row_ptr->next->par != row_ptr->par)) {     
1430           
1431           /* the paper margins */ 
1432           if (!par->next)
1433             maxdesc += LYX_PAPER_MARGIN;
1434         
1435           /* add the vertical spaces, that the user added */
1436           if (firstpar->added_space_bottom.kind() != VSpace::NONE)
1437             maxdesc += int(firstpar->added_space_bottom.inPixels(owner_));
1438           
1439           /* do not forget the DTP-lines! 
1440            * there height depends on the font of the nearest character */
1441           if (firstpar->line_bottom)
1442             maxdesc += 2 * (GetFont(par, par->Last()-1).ascent('x'));
1443           
1444           /* and now the pagebreaks */
1445           if (firstpar->pagebreak_bottom)
1446             maxdesc += 3 * DefaultHeight();
1447           
1448           /* and now the layout spaces, for example before and after a section, 
1449            * or between the items of a itemize or enumerate environment */
1450           if (!firstpar->pagebreak_bottom && row_ptr->par->Next()) {
1451              LyXParagraph * nextpar = row_ptr->par->Next();
1452              LyXParagraph * comparepar = row_ptr->par;
1453              float usual = 0;
1454              float  unusual = 0;
1455              
1456              if (comparepar->GetDepth() > nextpar->GetDepth()) {
1457                 usual = (textclasslist.Style(parameters->textclass, comparepar->GetLayout()).bottomsep * DefaultHeight());
1458                 comparepar = comparepar->DepthHook(nextpar->GetDepth());
1459                 if (comparepar->GetLayout()!= nextpar->GetLayout()
1460                     || nextpar->GetLabelWidthString() != 
1461                         comparepar->GetLabelWidthString())
1462                   unusual = (textclasslist.Style(parameters->textclass, comparepar->GetLayout()).bottomsep * DefaultHeight());
1463                 
1464                 if (unusual > usual)
1465                   layoutdesc = unusual;
1466                 else
1467                   layoutdesc = usual;
1468              }
1469              else if (comparepar->GetDepth() ==  nextpar->GetDepth()) {
1470                 
1471                 if (comparepar->GetLayout()!= nextpar->GetLayout()
1472                     || nextpar->GetLabelWidthString() != 
1473                         comparepar->GetLabelWidthString())
1474                   layoutdesc = int(textclasslist.Style(parameters->textclass, comparepar->GetLayout()).bottomsep * DefaultHeight());
1475              }
1476           }
1477        }
1478    
1479    /* incalculate the layout spaces */ 
1480    maxasc += int(layoutasc * 2 / (2 + firstpar->GetDepth()));
1481    maxdesc += int(layoutdesc * 2 / (2 + firstpar->GetDepth()));
1482
1483    /* table stuff -- begin*/
1484    if (row_ptr->par->table){
1485       maxasc += row_ptr->par->table->
1486         AdditionalHeight(NumberOfCell(row_ptr->par, row_ptr->pos));
1487    }
1488    /* table stuff -- end*/
1489    
1490    /* calculate the new height of the text */ 
1491    height -= row_ptr->height;
1492    
1493    row_ptr->height = maxasc + maxdesc + labeladdon;
1494    row_ptr->baseline = maxasc + labeladdon;
1495    
1496    height += row_ptr->height;
1497 }
1498
1499
1500 /* Appends the implicit specified paragraph behind the specified row,
1501  * start at the implicit given position */
1502 void LyXText::AppendParagraph(Row * row) const
1503 {
1504    bool not_ready = true;
1505    
1506    // The last character position of a paragraph is an invariant so we can 
1507    // safely get it here. (Asger)
1508    int lastposition = row->par->Last();
1509
1510    do {
1511       // Get the next breakpoint
1512       int z = NextBreakPoint(row, paperwidth);
1513       
1514       Row * tmprow = row;
1515
1516       // Insert the new row
1517       if (z < lastposition) {
1518          ++z;
1519          InsertRow(row, row->par, z);
1520          row = row->next;
1521
1522          row->height = 0;
1523       } else
1524          not_ready = false;
1525       
1526       // Set the dimensions of the row
1527       tmprow->fill = Fill(tmprow, paperwidth);
1528       SetHeightOfRow(tmprow);
1529
1530    } while (not_ready);
1531 }
1532
1533
1534 void LyXText::BreakAgain(Row * row) const
1535 {
1536    bool not_ready = true;
1537    
1538    do  {
1539       /* get the next breakpoint */
1540         LyXParagraph::size_type z = 
1541                 NextBreakPoint(row, paperwidth);
1542       Row * tmprow = row;
1543       
1544       if (z < row->par->Last() ) {
1545          if (!row->next || (row->next && row->next->par != row->par)) {
1546                  // insert a new row
1547             ++z;
1548             InsertRow(row, row->par, z);
1549             row = row->next;
1550             row->height = 0;
1551          } else  {
1552             row = row->next;
1553             ++z;
1554             if (row->pos == z)
1555                     not_ready = false;     // the rest will not change
1556             else {
1557                row->pos = z;
1558             }
1559          }
1560       } else {
1561          /* if there are some rows too much, delete them */
1562          /* only if you broke the whole paragraph! */ 
1563          Row * tmprow2 = row;
1564          while (tmprow2->next && tmprow2->next->par == row->par) {
1565             tmprow2 = tmprow2->next;
1566          }
1567          while (tmprow2 != row) {
1568             tmprow2 = tmprow2->previous;
1569             RemoveRow(tmprow2->next);
1570          }
1571          not_ready = false;
1572       }
1573        
1574       /* set the dimensions of the row */ 
1575       tmprow->fill = Fill(tmprow, paperwidth);
1576       SetHeightOfRow(tmprow);
1577    } while (not_ready);
1578 }
1579
1580
1581 /* this is just a little changed version of break again */ 
1582 void LyXText::BreakAgainOneRow(Row * row)
1583 {
1584    /* get the next breakpoint */
1585    LyXParagraph::size_type z = NextBreakPoint(row, paperwidth);
1586    Row * tmprow = row;
1587    
1588    if (z < row->par->Last() ) {
1589       if (!row->next || (row->next && row->next->par != row->par)) {
1590          /* insert a new row */ 
1591          ++z;
1592          InsertRow(row, row->par, z);
1593          row = row->next;
1594          row->height = 0;
1595       }
1596       else  {
1597          row= row->next;
1598          ++z;
1599          if (row->pos != z)
1600             row->pos = z;
1601       }
1602    }
1603    else {
1604       /* if there are some rows too much, delete them */
1605       /* only if you broke the whole paragraph! */ 
1606       Row * tmprow2 = row;
1607       while (tmprow2->next && tmprow2->next->par == row->par) {
1608          tmprow2 = tmprow2->next;
1609       }
1610       while (tmprow2 != row) {
1611          tmprow2 = tmprow2->previous;
1612          RemoveRow(tmprow2->next);
1613       }
1614    }
1615    
1616    /* set the dimensions of the row */ 
1617    tmprow->fill = Fill(tmprow, paperwidth);
1618    SetHeightOfRow(tmprow);
1619 }
1620
1621
1622 void LyXText::BreakParagraph(char keep_layout)
1623 {
1624    LyXLayout const & layout = textclasslist.Style(parameters->textclass,
1625                                       cursor.par->GetLayout());
1626    
1627    /* table stuff -- begin */
1628    if (cursor.par->table) {
1629        // breaking of tables is only allowed at the beginning or the end */
1630        if (cursor.pos && cursor.pos < cursor.par->size() &&
1631            !cursor.par->table->ShouldBeVeryLastCell(NumberOfCell(cursor.par, cursor.pos)))
1632                return; // no breaking of tables allowed
1633    }
1634    /* table stuff -- end */
1635
1636    // this is only allowed, if the current paragraph is not empty or caption
1637    if ((cursor.par->Last() <= 0 && !cursor.par->IsDummy())
1638        && 
1639        layout.labeltype!= LABEL_SENSITIVE)
1640      return;
1641
1642    SetUndo(Undo::INSERT, 
1643            cursor.par->ParFromPos(cursor.pos)->previous, 
1644            cursor.par->ParFromPos(cursor.pos)->next); 
1645
1646    /* table stuff -- begin */
1647    if (cursor.par->table) {
1648        int cell = NumberOfCell(cursor.par, cursor.pos);
1649        if (cursor.par->table->ShouldBeVeryLastCell(cell))
1650            SetCursor(cursor.par, cursor.par->text.size());
1651    }
1652    /* table stuff -- end */
1653    
1654    // please break always behind a space
1655    if (cursor.pos < cursor.par->Last()
1656        && cursor.par->IsLineSeparator(cursor.pos))
1657      cursor.pos++;
1658    
1659    // break the paragraph
1660    if (keep_layout)
1661      keep_layout = 2;
1662    else 
1663      keep_layout = layout.isEnvironment();
1664    cursor.par->BreakParagraph(cursor.pos, keep_layout);
1665
1666    /* table stuff -- begin */
1667    if (cursor.par->table){
1668      // the table should stay with the contents
1669      if (!cursor.pos){
1670        cursor.par->Next()->table = cursor.par->table;
1671        cursor.par->table = 0;
1672      }
1673    }
1674    /* table stuff -- end */
1675
1676    // well this is the caption hack since one caption is really enough
1677    if (layout.labeltype == LABEL_SENSITIVE){
1678      if (!cursor.pos)
1679              cursor.par->SetLayout(0); // set to standard-layout
1680      else
1681              cursor.par->Next()->SetLayout(0); // set to standard-layout
1682    }
1683    
1684    /* if the cursor is at the beginning of a row without prior newline, 
1685     * move one row up! 
1686     * This touches only the screen-update. Otherwise we would may have
1687     * an empty row on the screen */
1688    if (cursor.pos && !cursor.row->par->IsNewline(cursor.row->pos -1) &&
1689        cursor.row->pos == cursor.pos) {
1690      CursorLeft();
1691    } 
1692    
1693    status = LyXText::NEED_MORE_REFRESH;
1694    refresh_row = cursor.row;
1695    refresh_y = cursor.y - cursor.row->baseline;
1696    
1697    // Do not forget the special right address boxes
1698    if (layout.margintype == MARGIN_RIGHT_ADDRESS_BOX) {
1699       while (refresh_row->previous &&
1700              refresh_row->previous->par == refresh_row->par) {
1701                 refresh_row = refresh_row->previous;
1702                 refresh_y -= refresh_row->height;
1703              }
1704    }
1705    RemoveParagraph(cursor.row);
1706    
1707    // set the dimensions of the cursor row
1708    cursor.row->fill = Fill(cursor.row, paperwidth);
1709
1710    SetHeightOfRow(cursor.row);
1711    
1712    while (!cursor.par->Next()->table && cursor.par->Next()->Last()
1713           && cursor.par->Next()->IsNewline(0))
1714      cursor.par->Next()->Erase(0);
1715    
1716    InsertParagraph(cursor.par->Next(), cursor.row);
1717
1718    UpdateCounters(cursor.row->previous);
1719    
1720    /* This check is necessary. Otherwise the new empty paragraph will
1721     * be deleted automatically. And it is more friendly for the user! */ 
1722    if (cursor.pos)
1723      SetCursor(cursor.par->Next(), 0);
1724    else
1725      SetCursor(cursor.par, 0);
1726    
1727    if (cursor.row->next)
1728      BreakAgain(cursor.row->next);
1729
1730    need_break_row = 0;
1731 }
1732
1733
1734 void LyXText::OpenFootnote()
1735 {
1736    LyXParagraph * endpar,* tmppar;
1737    Row * row;
1738    
1739    LyXParagraph * par = cursor.par->ParFromPos(cursor.pos);
1740    
1741    /* if there is no footnote in this paragraph, just return. */ 
1742    if (!par->next
1743        || par->next->footnoteflag != LyXParagraph::CLOSED_FOOTNOTE)
1744      return;
1745    
1746    /* ok, move the cursor right before the footnote */ 
1747    
1748    /* just a little faster than using CursorRight() */
1749    for (cursor.pos = 0;
1750         cursor.par->ParFromPos(cursor.pos) != par; cursor.pos++);
1751    /* now the cursor is at the beginning of the physical par */
1752    SetCursor(cursor.par,
1753              cursor.pos + cursor.par->ParFromPos(cursor.pos)->text.size());
1754    
1755    /* the cursor must be exactly before the footnote */ 
1756    par = cursor.par->ParFromPos(cursor.pos);
1757    
1758    status = LyXText::NEED_MORE_REFRESH;
1759    refresh_row = cursor.row;
1760    refresh_y = cursor.y - cursor.row->baseline;
1761    
1762    tmppar = cursor.par;
1763    endpar = cursor.par->Next();
1764    row = cursor.row;
1765    
1766    tmppar->OpenFootnote(cursor.pos);
1767    RemoveParagraph(row);
1768    /* set the dimensions of the cursor row */
1769    row->fill = Fill(row, paperwidth);
1770    SetHeightOfRow(row);
1771 #warning See comment on top of text.C
1772    tmppar = tmppar->Next();
1773    
1774    while (tmppar != endpar) {
1775       if (tmppar) {
1776          InsertParagraph(tmppar, row);
1777          while (row->next && row->next->par == tmppar)
1778            row = row->next;
1779          tmppar = tmppar->Next();
1780       }
1781    }
1782    SetCursor(par->next, 0);
1783    sel_cursor = cursor;
1784 }
1785    
1786
1787 /* table stuff -- begin*/
1788
1789 void LyXText::TableFeatures(int feature, string const & val) const
1790 {
1791         if (!cursor.par->table)
1792                 return; /* this should never happen */
1793   
1794         int actCell = NumberOfCell(cursor.par, cursor.pos);
1795         SetUndo(Undo::FINISH, 
1796                 cursor.par->ParFromPos(cursor.pos)->previous, 
1797                 cursor.par->ParFromPos(cursor.pos)->next); 
1798         
1799         switch (feature){
1800         case LyXTable::SET_PWIDTH:
1801                 cursor.par->table->SetPWidth(actCell, val);
1802                 break;
1803         case LyXTable::SET_SPECIAL_COLUMN:
1804         case LyXTable::SET_SPECIAL_MULTI:
1805                 cursor.par->table->SetAlignSpecial(actCell, val, feature);
1806                 break;
1807         default:
1808                 break;
1809         }
1810         RedoParagraph();
1811 }
1812
1813
1814 void LyXText::TableFeatures(int feature) const
1815 {
1816         int setLines = 0;
1817         int setAlign = LYX_ALIGN_LEFT;
1818         int lineSet;
1819         bool what;
1820     
1821     if (!cursor.par->table)
1822         return; /* this should never happen */
1823   
1824     int actCell = NumberOfCell(cursor.par, cursor.pos);
1825     SetUndo(Undo::FINISH, 
1826             cursor.par->ParFromPos(cursor.pos)->previous, 
1827             cursor.par->ParFromPos(cursor.pos)->next); 
1828
1829     switch (feature){
1830       case LyXTable::ALIGN_LEFT:
1831           setAlign= LYX_ALIGN_LEFT;
1832           break;
1833       case LyXTable::ALIGN_RIGHT:
1834           setAlign= LYX_ALIGN_RIGHT;
1835           break;
1836       case LyXTable::ALIGN_CENTER:
1837           setAlign= LYX_ALIGN_CENTER;
1838           break;
1839       default:
1840           break;
1841     }
1842     switch (feature){
1843       case LyXTable::APPEND_ROW: {
1844               LyXParagraph::size_type pos = cursor.pos;
1845
1846               /* move to the next row */
1847           int cell_org = actCell;
1848           int cell = cell_org;
1849
1850           // if there is a ContRow following this row I have to add
1851           // the row after the ContRow's
1852           if ((pos < cursor.par->Last()) &&
1853               cursor.par->table->RowHasContRow(cell_org)) {
1854               while((pos < cursor.par->Last()) &&
1855                     !cursor.par->table->IsContRow(cell)) {
1856                   while (pos < cursor.par->Last() &&
1857                          !cursor.par->IsNewline(pos))
1858                       ++pos;
1859                   if (pos < cursor.par->Last())
1860                       ++pos;
1861                   ++cell;
1862               }
1863               while((pos < cursor.par->Last()) &&
1864                     cursor.par->table->IsContRow(cell)) {
1865                   while (pos < cursor.par->Last() &&
1866                          !cursor.par->IsNewline(pos))
1867                       ++pos;
1868                   if (pos < cursor.par->Last())
1869                       ++pos;
1870                   ++cell;
1871               }
1872               cell_org = --cell;
1873               if (pos < cursor.par->Last())
1874                   --pos;
1875           }
1876           while (pos < cursor.par->Last() && 
1877                  (cell == cell_org || !cursor.par->table->IsFirstCell(cell))){
1878               while (pos < cursor.par->Last() && !cursor.par->IsNewline(pos))
1879                   ++pos;
1880               if (pos < cursor.par->Last())
1881                   ++pos;
1882               ++cell;
1883           }
1884                 
1885           /* insert the new cells */ 
1886           int number = cursor.par->table->NumberOfCellsInRow(cell_org);
1887           for (int i = 0; i < number; ++i)
1888               cursor.par->InsertChar(pos, LyXParagraph::META_NEWLINE);
1889                 
1890           /* append the row into the table */
1891           cursor.par->table->AppendRow(cell_org);
1892           RedoParagraph();
1893           return;
1894       }
1895       case LyXTable::APPEND_CONT_ROW: {
1896               LyXParagraph::size_type pos = cursor.pos;
1897           /* move to the next row */
1898           int cell_org = actCell;
1899           int cell = cell_org;
1900
1901           // if there is already a controw but not for this cell
1902           // the AppendContRow sets only the right values but does
1903           // not actually add a row
1904           if (cursor.par->table->RowHasContRow(cell_org) &&
1905               (cursor.par->table->CellHasContRow(cell_org)<0)) {
1906               cursor.par->table->AppendContRow(cell_org);
1907               RedoParagraph();
1908               return;
1909           }
1910           while (pos < cursor.par->Last() && 
1911                  (cell == cell_org
1912                   || !cursor.par->table->IsFirstCell(cell))){
1913               while (pos < cursor.par->Last() && !cursor.par->IsNewline(pos))
1914                   ++pos;
1915               if (pos < cursor.par->Last())
1916                   ++pos;
1917               ++cell;
1918           }
1919                 
1920           /* insert the new cells */ 
1921           int number = cursor.par->table->NumberOfCellsInRow(cell_org);
1922           for (int i = 0; i < number; ++i)
1923               cursor.par->InsertChar(pos, LyXParagraph::META_NEWLINE);
1924                 
1925           /* append the row into the table */
1926           cursor.par->table->AppendContRow(cell_org);
1927           RedoParagraph();
1928           return;
1929       }
1930       case LyXTable::APPEND_COLUMN: {
1931               LyXParagraph::size_type pos = 0;
1932           int cell_org = actCell;
1933           int cell = 0;
1934           do{
1935               if (pos && (cursor.par->IsNewline(pos-1))){
1936                   if (cursor.par->table->AppendCellAfterCell(cell_org, cell)) {
1937                       cursor.par->InsertChar(pos, LyXParagraph::META_NEWLINE);
1938                       if (pos <= cursor.pos)
1939                           cursor.pos++;
1940                       ++pos;
1941                   }
1942                   ++cell;
1943               }
1944               ++pos;
1945           } while (pos <= cursor.par->Last());
1946           /* remember that the very last cell doesn't end with a newline.
1947              This saves one byte memory per table ;-) */
1948           if (cursor.par->table->AppendCellAfterCell(cell_org, cell))
1949               cursor.par->InsertChar(cursor.par->Last(), LyXParagraph::META_NEWLINE);
1950                 
1951           /* append the column into the table */ 
1952           cursor.par->table->AppendColumn(cell_org);
1953                 
1954           RedoParagraph();
1955           return;
1956       }
1957       case LyXTable::DELETE_ROW:
1958           if (owner_->the_locking_inset)
1959               owner_->unlockInset(owner_->the_locking_inset);
1960           RemoveTableRow(&cursor);
1961           RedoParagraph();
1962           return;
1963         
1964       case LyXTable::DELETE_COLUMN: {
1965               LyXParagraph::size_type pos = 0;
1966           int cell_org = actCell;
1967           int cell = 0;
1968           if (owner_->the_locking_inset)
1969               owner_->unlockInset(owner_->the_locking_inset);
1970           do {
1971               if (!pos || (cursor.par->IsNewline(pos-1))){
1972                   if (cursor.par->table->DeleteCellIfColumnIsDeleted(cell, cell_org)){
1973                       // delete one cell
1974                       while (pos < cursor.par->Last() && !cursor.par->IsNewline(pos))
1975                           cursor.par->Erase(pos);
1976                       if (pos < cursor.par->Last())
1977                           cursor.par->Erase(pos);
1978                       else 
1979                           cursor.par->Erase(pos - 1); // the missing newline at the end of a table
1980                       --pos; // because of pos++ below
1981                   }   
1982                   ++cell;
1983               }
1984               ++pos;
1985           } while (pos <= cursor.par->Last());
1986                 
1987           /* delete the column from the table */ 
1988           cursor.par->table->DeleteColumn(cell_org);
1989                 
1990           /* set the cursor to the beginning of the table, where else? */ 
1991           cursor.pos = 0;
1992           RedoParagraph();
1993           return;
1994       }
1995       case LyXTable::TOGGLE_LINE_TOP:
1996           lineSet = !cursor.par->table->TopLine(actCell);
1997           if (!selection){
1998               cursor.par->table->SetTopLine(actCell, lineSet);
1999           } else {
2000                   LyXParagraph::size_type i;
2001                   int n = -1, m = -2;
2002               for (i = sel_start_cursor.pos; i <= sel_end_cursor.pos; ++i){
2003                   if ((n = NumberOfCell(sel_start_cursor.par, i)) != m) {
2004                       cursor.par->table->SetTopLine(n, lineSet);
2005                       m = n;
2006                   }
2007               }
2008           }
2009           RedoParagraph();
2010           return;
2011     
2012       case LyXTable::TOGGLE_LINE_BOTTOM:
2013           lineSet = !cursor.par->table->BottomLine(actCell);
2014           if (!selection){
2015               cursor.par->table->SetBottomLine(actCell, lineSet);
2016           } else {
2017                   LyXParagraph::size_type i;
2018                   int n = -1, m = -2;
2019               for (i = sel_start_cursor.pos; i <= sel_end_cursor.pos; ++i) {
2020                   if ((n = NumberOfCell(sel_start_cursor.par, i)) != m) {
2021                       cursor.par->table->SetBottomLine(n, lineSet);
2022                       m = n;
2023                   }
2024               }
2025           }
2026           RedoParagraph();
2027           return;
2028                 
2029       case LyXTable::TOGGLE_LINE_LEFT:
2030           lineSet = !cursor.par->table->LeftLine(actCell);
2031           if (!selection){
2032               cursor.par->table->SetLeftLine(actCell, lineSet);
2033           } else {
2034                   LyXParagraph::size_type i;
2035                   int n = -1, m = -2;
2036               for (i = sel_start_cursor.pos; i <= sel_end_cursor.pos; ++i){
2037                   if ((n= NumberOfCell(sel_start_cursor.par, i)) != m) {
2038                       cursor.par->table->SetLeftLine(n, lineSet);
2039                       m = n;
2040                   }
2041               }
2042           }
2043           RedoParagraph();
2044           return;
2045
2046       case LyXTable::TOGGLE_LINE_RIGHT:
2047           lineSet = !cursor.par->table->RightLine(actCell);
2048           if (!selection){
2049               cursor.par->table->SetRightLine(actCell, lineSet);
2050           } else {
2051                   int n = -1, m = -2;
2052                   LyXParagraph::size_type i = sel_start_cursor.pos;
2053               for (; i <= sel_end_cursor.pos; ++i) {
2054                   if ((n= NumberOfCell(sel_start_cursor.par, i)) != m) {
2055                       cursor.par->table->SetRightLine(n, lineSet);
2056                       m = n;
2057                   }
2058               }
2059           }
2060           RedoParagraph();
2061           return;
2062     
2063       case LyXTable::ALIGN_LEFT:
2064       case LyXTable::ALIGN_RIGHT:
2065       case LyXTable::ALIGN_CENTER:
2066           if (!selection){
2067               cursor.par->table->SetAlignment(actCell, setAlign);
2068           } else {
2069               int n = -1, m = -2;
2070               LyXParagraph::size_type i = sel_start_cursor.pos;
2071               for (; i <= sel_end_cursor.pos; ++i) {
2072                   if ((n= NumberOfCell(sel_start_cursor.par, i)) != m) {
2073                       cursor.par->table->SetAlignment(n, setAlign);
2074                       m = n;
2075                   }
2076               }
2077           }
2078           RedoParagraph();
2079           return;
2080                 
2081       case LyXTable::DELETE_TABLE:
2082           SetCursorIntern(cursor.par, 0);
2083           delete cursor.par->table;
2084           cursor.par->table = 0;
2085           // temporary: Should put table in simple_cut_buffer (with before and after
2086           // dummy-paragraph !! 
2087           // not necessar anymore with UNDO :)
2088           for (LyXParagraph::size_type i = 
2089                        cursor.par->text.size() - 1; i >= 0; --i)
2090               cursor.par->Erase(i);
2091           RedoParagraph();
2092           return;
2093                 
2094       case LyXTable::MULTICOLUMN: {
2095           int number = 0;
2096           // check wether we are completly in a multicol
2097           int multicol = cursor.par->table->IsMultiColumn(actCell);
2098           if (multicol && selection && sel_start_cursor.row == sel_end_cursor.row){
2099               multicol = NumberOfCell(sel_start_cursor.par, sel_start_cursor.pos)
2100                   == NumberOfCell(sel_end_cursor.par, sel_end_cursor.pos);
2101           }
2102
2103           if (multicol){
2104               int newlines = cursor.par->table->UnsetMultiColumn(actCell);
2105               LyXParagraph::size_type pos = cursor.pos;
2106               while (pos < cursor.par->Last() && !cursor.par->IsNewline(pos))
2107                   ++pos;
2108               for (; newlines; --newlines)
2109                   cursor.par->InsertChar(pos, LyXParagraph::META_NEWLINE);
2110               RedoParagraph();
2111               return;
2112           }
2113           else {
2114               // selection must be in one row (or no selection)
2115               if (!selection){
2116                   cursor.par->table->SetMultiColumn(NumberOfCell(cursor.par,
2117                                                                  cursor.pos),
2118                                                     1);
2119                   RedoParagraph();
2120                   return;
2121               }
2122               else {
2123                   if (sel_start_cursor.row == sel_end_cursor.row){
2124                       LyXParagraph::size_type i;
2125                       number = 1;
2126                       for (i = sel_start_cursor.pos;
2127                            i < sel_end_cursor.pos; ++i){
2128                           if (sel_start_cursor.par->IsNewline(i)){
2129                               sel_start_cursor.par->Erase(i);
2130                               // check for double-blanks
2131                               if ((i && !sel_start_cursor.par->IsLineSeparator(i-1))
2132                                   &&
2133                                   (i < sel_start_cursor.par->Last() 
2134                                    && !sel_start_cursor.par->IsLineSeparator(i)))
2135                                   sel_start_cursor.par->InsertChar(i, ' ');
2136                               else {
2137                                   sel_end_cursor.pos--;
2138                                   --i;
2139                               }
2140                               ++number;
2141                           }
2142                       }
2143                       cursor.par->table->
2144                           SetMultiColumn(NumberOfCell(sel_start_cursor.par,
2145                                                       sel_start_cursor.pos),
2146                                          number);
2147                       cursor.pos = sel_start_cursor.pos;
2148                       RedoParagraph();
2149                       return;
2150                   }
2151                   else {
2152                       WriteAlert(_("Impossible Operation!"), 
2153                                  _("Multicolumns can only be horizontally."), 
2154                                  _("Sorry."));
2155                   }
2156               }
2157           }
2158           break;
2159       }
2160       case LyXTable::SET_ALL_LINES:
2161           setLines = 1;
2162       case LyXTable::UNSET_ALL_LINES:
2163           if (!selection){
2164               cursor.par->table->SetAllLines(NumberOfCell(cursor.par,
2165                                                           cursor.pos),
2166                                              setLines);
2167           } else {
2168                   LyXParagraph::size_type i;
2169                   int n = -1, m = -2;
2170               for (i = sel_start_cursor.pos; i <= sel_end_cursor.pos; ++i) {
2171                   if ((n= NumberOfCell(sel_start_cursor.par, i)) != m) {
2172                       cursor.par->table->SetAllLines(n, setLines);
2173                       m = n;
2174                   }
2175               }
2176           }
2177           RedoParagraph();
2178           return;
2179       case LyXTable::SET_LONGTABLE:
2180           cursor.par->table->SetLongTable(true);
2181           return;
2182       case LyXTable::UNSET_LONGTABLE:
2183           cursor.par->table->SetLongTable(false);
2184           return;
2185       case LyXTable::SET_ROTATE_TABLE:
2186           cursor.par->table->SetRotateTable(true);
2187           return;
2188       case LyXTable::UNSET_ROTATE_TABLE:
2189           cursor.par->table->SetRotateTable(false);
2190           return;
2191       case LyXTable::SET_ROTATE_CELL:
2192           if (!selection){
2193               cursor.par->table->SetRotateCell(actCell, true);
2194           } else {
2195                   LyXParagraph::size_type i;
2196                   int n = -1, m = -2;
2197               for (i = sel_start_cursor.pos; i <= sel_end_cursor.pos; ++i){
2198                   if ((n = NumberOfCell(sel_start_cursor.par, i)) != m) {
2199                       cursor.par->table->SetRotateCell(n, true);
2200                       m = n;
2201                   }
2202               }
2203           }
2204           return;
2205       case LyXTable::UNSET_ROTATE_CELL:
2206           if (!selection){
2207               cursor.par->table->SetRotateCell(actCell, false);
2208           } else {
2209                   int n = -1, m = -2;
2210                   LyXParagraph::size_type i = sel_start_cursor.pos;
2211               for (; i <= sel_end_cursor.pos; ++i) {
2212                   if ((n= NumberOfCell(sel_start_cursor.par, i)) != m) {
2213                       cursor.par->table->SetRotateCell(n, false);
2214                       m = n;
2215                   }
2216               }
2217           }
2218           return;
2219       case LyXTable::SET_LINEBREAKS:
2220           what = !cursor.par->table->Linebreaks(cursor.par->table->FirstVirtualCell(actCell));
2221           if (!selection){
2222               cursor.par->table->SetLinebreaks(actCell, what);
2223           } else {
2224                   LyXParagraph::size_type i;
2225                   int n = -1, m = -2;
2226               for (i = sel_start_cursor.pos; i <= sel_end_cursor.pos; ++i) {
2227                   if ((n = NumberOfCell(sel_start_cursor.par, i)) != m) {
2228                       cursor.par->table->SetLinebreaks(n, what);
2229                       m = n;
2230                   }
2231               }
2232           }
2233           return;
2234       case LyXTable::SET_LTFIRSTHEAD:
2235           cursor.par->table->SetLTHead(actCell, true);
2236           return;
2237       case LyXTable::SET_LTHEAD:
2238           cursor.par->table->SetLTHead(actCell, false);
2239           return;
2240       case LyXTable::SET_LTFOOT:
2241           cursor.par->table->SetLTFoot(actCell, false);
2242           return;
2243       case LyXTable::SET_LTLASTFOOT:
2244           cursor.par->table->SetLTFoot(actCell, true);
2245           return;
2246       case LyXTable::SET_LTNEWPAGE:
2247           what = !cursor.par->table->LTNewPage(actCell);
2248           cursor.par->table->SetLTNewPage(actCell, what);
2249           return;
2250     }
2251 }
2252         
2253
2254 void LyXText::InsertCharInTable(char c)
2255 {
2256         Row * row;
2257         Row * tmprow;
2258         long y;
2259         bool jumped_over_space;
2260         
2261         /* first check, if there will be two blanks together or a blank at 
2262          * the beginning of a paragraph. 
2263          * I decided to handle blanks like normal characters, the main 
2264          * difference are the special checks when calculating the row.fill
2265          * (blank does not count at the end of a row) and the check here */ 
2266         
2267         LyXFont realtmpfont = real_current_font;
2268         LyXFont rawtmpfont = current_font; /* store the current font.
2269                                             * This is because of the use
2270                                             * of cursor movements. The moving
2271                                             * cursor would refresh the 
2272                                             * current font */
2273
2274         // Get the font that is used to calculate the baselineskip
2275         LyXParagraph::size_type const lastpos = 
2276                 cursor.par->Last();
2277         LyXFont rawparfont = cursor.par->GetFontSettings(lastpos - 1);
2278
2279         jumped_over_space = false;
2280         if (IsLineSeparatorChar(c)) {
2281
2282 #ifndef FIX_DOUBLE_SPACE
2283                 /* avoid double blanks but insert the new blank because
2284                  * of a possible font change */
2285                 if (cursor.pos < lastpos &&
2286                     cursor.par->IsLineSeparator(cursor.pos)) {
2287                         cursor.par->Erase(cursor.pos);
2288                         jumped_over_space = true;
2289                 } else
2290 #endif
2291                         if ((cursor.pos > 0 && 
2292                           cursor.par->IsLineSeparator(cursor.pos - 1))
2293                          || (cursor.pos > 0 && cursor.par->IsNewline(cursor.pos - 1))
2294                           || (cursor.pos == 0 &&
2295                               !(cursor.par->Previous()
2296                               && cursor.par->Previous()->footnoteflag
2297                               == LyXParagraph::OPEN_FOOTNOTE)))
2298                         return;
2299         } else if (IsNewlineChar(c)) {
2300             if (!IsEmptyTableCell()) {
2301                 TableFeatures(LyXTable::APPEND_CONT_ROW);
2302                 CursorDown();
2303             }
2304           return;
2305         }
2306    
2307         row = cursor.row;
2308         y = cursor.y - row->baseline;
2309         if (c != LyXParagraph::META_INSET)      /* in this case LyXText::InsertInset 
2310                                          * already inserted the character */
2311                 cursor.par->InsertChar(cursor.pos, c);
2312         SetCharFont(cursor.par, cursor.pos, rawtmpfont);
2313
2314         if (!jumped_over_space) {
2315                 /* refresh the positions */
2316                 tmprow = row;
2317                 while (tmprow->next && tmprow->next->par == row->par) {
2318                         tmprow = tmprow->next;
2319                         tmprow->pos++;
2320                 }
2321         }
2322
2323         cursor.pos++;
2324
2325         CheckParagraphInTable(cursor.par, cursor.pos);
2326         
2327         current_font = rawtmpfont;
2328         real_current_font = realtmpfont;
2329         
2330         /* check, whether the last character's font has changed. */
2331         if (cursor.pos && cursor.pos == cursor.par->Last()
2332             && rawparfont != rawtmpfont)
2333                 RedoHeightOfParagraph(cursor);
2334 }
2335
2336
2337 void LyXText::CheckParagraphInTable(LyXParagraph * par,
2338                                     LyXParagraph::size_type pos)
2339 {
2340         
2341         if (par->GetChar(pos) == LyXParagraph::META_INSET &&
2342             par->GetInset(pos) && par->GetInset(pos)->display()){
2343           par->GetInset(pos)->display(false);
2344         }
2345
2346         long y;
2347         Row * row = GetRow(par, pos, y);
2348         
2349         int tmpheight = row->height;
2350         SetHeightOfRow(row);
2351
2352         LyXParagraph::size_type tmp_pos = pos;
2353         /* update the table information */
2354         while (tmp_pos && !par->IsNewline(tmp_pos - 1))
2355                 --tmp_pos;
2356         if (par->table->SetWidthOfCell(NumberOfCell(par, pos),
2357                                        WidthOfCell(par, tmp_pos))) {
2358                 LyXCursor tmpcursor = cursor;
2359                 SetCursorIntern(par, pos);
2360                 /* make a complete redraw */
2361                 RedoDrawingOfParagraph(cursor);
2362                 cursor = tmpcursor;
2363         }
2364         else {
2365                 /* redraw only the row */
2366                 LyXCursor tmpcursor = cursor;
2367                 SetCursorIntern(par, pos);
2368 #warning See comment on top of text.C
2369                 refresh_y = y;
2370                 refresh_x = cursor.x;
2371                 refresh_row = row;
2372                 refresh_pos = cursor.pos;
2373                 cursor = tmpcursor;
2374                 
2375                 if (tmpheight == row->height)
2376                         status = LyXText::NEED_VERY_LITTLE_REFRESH;
2377                 else
2378                         status = LyXText::NEED_MORE_REFRESH;
2379         }
2380         SetCursorIntern(cursor.par, cursor.pos);
2381 }
2382
2383
2384 void LyXText::BackspaceInTable()
2385 {
2386         Row * tmprow, * row;
2387         long y;
2388         
2389         LyXFont rawtmpfont = current_font;
2390         LyXFont realtmpfont = real_current_font;
2391
2392         // Get the font that is used to calculate the baselineskip
2393         int const lastpos = cursor.par->Last();
2394         LyXFont rawparfont = cursor.par->GetFontSettings(lastpos - 1);
2395         
2396         if (cursor.pos == 0) {
2397                 /* no pasting of table paragraphs */
2398                 
2399                 CursorLeft();
2400         } else {
2401                 /* this is the code for a normal backspace, not pasting
2402                  * any paragraphs */ 
2403                 SetUndo(Undo::DELETE, 
2404                         cursor.par->ParFromPos(cursor.pos)->previous, 
2405                         cursor.par->ParFromPos(cursor.pos)->next); 
2406           
2407                 CursorLeftIntern();
2408                 
2409                 /* some insets are undeletable here */
2410                 if (cursor.par->GetChar(cursor.pos) == LyXParagraph::META_INSET) {
2411                         if (!cursor.par->GetInset(cursor.pos)->Deletable())
2412                                 return;
2413                 }
2414                 
2415                 row = cursor.row;
2416                 y = cursor.y - row->baseline;
2417                 
2418                 /* some special code when deleting a newline. */
2419                 if (cursor.par->IsNewline(cursor.pos)) {
2420                         /* nothing :-) */
2421                         return;
2422                 }
2423                 else {
2424                         cursor.par->Erase(cursor.pos);
2425                         
2426                         /* refresh the positions */
2427                         tmprow = row;
2428                         while (tmprow->next && tmprow->next->par == row->par) {
2429                                 tmprow = tmprow->next;
2430                                 tmprow->pos--;
2431                         }
2432
2433 #ifndef FIX_DOUBLE_SPACE
2434                         /* delete superfluous blanks */ 
2435                         if (cursor.pos < cursor.par->Last() - 1 &&
2436                         (cursor.par->IsLineSeparator(cursor.pos))) {
2437                                 
2438                                 if (cursor.pos == BeginningOfMainBody(cursor.par)
2439                                 || !cursor.pos 
2440                                 || cursor.par->IsLineSeparator(cursor.pos - 1)) {
2441                                         cursor.par->Erase(cursor.pos);
2442                                         /* refresh the positions */
2443                                         tmprow = row;
2444                                         while (tmprow->next && 
2445                                                tmprow->next->par == row->par) {
2446                                                 tmprow = tmprow->next;
2447                                                 tmprow->pos--;
2448                                         }
2449                                         if (cursor.pos)   /* move one character left */
2450                                                 cursor.pos--;
2451                                 }
2452                         }
2453 #endif
2454                 }
2455       
2456                 CheckParagraphInTable(cursor.par, cursor.pos);
2457       
2458                 /* check, wether the last characters font has changed. */ 
2459                 if (cursor.pos && cursor.pos == cursor.par->Last()
2460                     && rawparfont != rawtmpfont)
2461                         RedoHeightOfParagraph(cursor);
2462
2463                 /* restore the current font 
2464                  * That is what a user expects! */
2465                 current_font = rawtmpfont;
2466                 real_current_font = realtmpfont;
2467         }
2468         SetCursorIntern(cursor.par, cursor.pos);
2469 }
2470
2471 /* table stuff -- end*/
2472
2473
2474 /* just a macro to make some thing easier. */ 
2475 void LyXText::RedoParagraph() const
2476 {
2477 #if 1
2478         // I suspect this version will work
2479         // also.
2480         ClearSelection();
2481         RedoParagraphs(cursor, cursor.par->Next());
2482         SetCursorIntern(cursor.par, cursor.pos);
2483 #else
2484         LyXCursor tmpcursor = cursor;
2485         ClearSelection();
2486         RedoParagraphs(cursor, cursor.par->Next());
2487         SetCursorIntern(tmpcursor.par, tmpcursor.pos);
2488 #endif
2489 }
2490
2491
2492 /* insert a character, moves all the following breaks in the 
2493  * same Paragraph one to the right and make a rebreak */
2494 void LyXText::InsertChar(char c)
2495 {
2496         SetUndo(Undo::INSERT, 
2497                 cursor.par->ParFromPos(cursor.pos)->previous, 
2498                 cursor.par->ParFromPos(cursor.pos)->next);
2499
2500         /* When the free-spacing option is set for the current layout,
2501          * disable the double-space checking */
2502
2503         bool freeSpacing = 
2504                 textclasslist.Style(parameters->textclass,
2505                                cursor.row->par->GetLayout()).free_spacing;
2506
2507         /* table stuff -- begin*/
2508         if (cursor.par->table) {
2509                 InsertCharInTable(c);
2510                 charInserted();
2511                 return;
2512         }
2513         /* table stuff -- end*/
2514    
2515         /* First check, if there will be two blanks together or a blank at 
2516           the beginning of a paragraph. 
2517           I decided to handle blanks like normal characters, the main 
2518           difference are the special checks when calculating the row.fill
2519           (blank does not count at the end of a row) and the check here */ 
2520
2521         // The bug is triggered when we type in a description environment:
2522         // The current_font is not changed when we go from label to main text
2523         // and it should (along with realtmpfont) when we type the space.
2524 #ifdef WITH_WARNINGS
2525 #warning There is a bug here! (Asger)
2526 #endif
2527         
2528         LyXFont realtmpfont = real_current_font;
2529         LyXFont rawtmpfont = current_font;  /* store the current font.
2530                                      * This is because of the use
2531                                      * of cursor movements. The moving
2532                                      * cursor would refresh the 
2533                                      * current font */
2534
2535         // Get the font that is used to calculate the baselineskip
2536         LyXParagraph::size_type lastpos = cursor.par->Last();
2537         LyXFont rawparfont = cursor.par->GetFontSettings(lastpos - 1);
2538
2539         bool jumped_over_space = false;
2540    
2541         if (!freeSpacing && IsLineSeparatorChar(c)) {
2542 #ifndef FIX_DOUBLE_SPACE
2543                 if (cursor.pos < lastpos
2544                     && cursor.par->IsLineSeparator(cursor.pos)) {
2545                         /* the user inserted a space before a space. So we
2546                          * will just make a CursorRight. BUT: The font of this
2547                          * space should be set to current font. That is why
2548                          * we need to rebreak perhaps. If there is a protected
2549                          * blank at the end of a row we have to force
2550                          * a rebreak.*/ 
2551            
2552                         owner_->owner()->getMiniBuffer()
2553                                 ->Set(_("You cannot type two spaces this way. "
2554                                         " Please read the Tutorial."));
2555 #if 1
2556                         // How can this ever happen?
2557                         if (cursor.pos == RowLast(cursor.row)
2558                             && !IsLineSeparatorChar(c))
2559                                 cursor.row->fill = -1;  // force rebreak
2560                         cursor.par->Erase(cursor.pos);
2561                         jumped_over_space = true;
2562 #else
2563                         // Seems to me that this works just as well.
2564                         CursorRight();
2565                         charInserted();
2566                         return;
2567 #endif
2568                 } else
2569 #endif   
2570                 if ((cursor.pos > 0 
2571                      && cursor.par->IsLineSeparator(cursor.pos - 1))
2572                     || (cursor.pos > 0
2573                         && cursor.par->IsNewline(cursor.pos - 1))
2574                     || (cursor.pos == 0
2575                         && !(cursor.par->Previous()
2576                              && cursor.par->Previous()->footnoteflag
2577                              == LyXParagraph::OPEN_FOOTNOTE))) {
2578                         if (cursor.pos == 0 )
2579                                 owner_->owner()->getMiniBuffer()->Set(_("You cannot insert a space at the beginning of a paragraph.  Please read the Tutorial."));
2580                         else
2581                                 owner_->owner()->getMiniBuffer()->Set(_("You cannot type two spaces this way.  Please read the Tutorial."));
2582                         charInserted();
2583                         return;
2584                 }
2585         } else if (IsNewlineChar(c)) {
2586                 if (cursor.par->FirstPhysicalPar() == cursor.par
2587                     && cursor.pos <= BeginningOfMainBody(cursor.par)) {
2588                         charInserted();
2589                         return;
2590                 }
2591                 /* No newline at first position 
2592                  * of a paragraph or behind labels. 
2593                  * TeX does not allow that. */
2594                 
2595                 if (cursor.pos < cursor.par->Last() &&
2596                     cursor.par->IsLineSeparator(cursor.pos))
2597                         CursorRightIntern(); // newline always after a blank!
2598                 cursor.row->fill = -1;         // to force a new break
2599         }
2600    
2601         // the display inset stuff
2602         if (cursor.row->par->GetChar(cursor.row->pos) == LyXParagraph::META_INSET
2603             && cursor.row->par->GetInset(cursor.row->pos)
2604             && cursor.row->par->GetInset(cursor.row->pos)->display())
2605                 cursor.row->fill = -1; // to force a new break  
2606
2607         // get the cursor row fist
2608         Row * row = cursor.row;
2609         long y = cursor.y - row->baseline;
2610         if (c != LyXParagraph::META_INSET) /* Here case LyXText::InsertInset 
2611                                             * already insertet the character */
2612                 cursor.par->InsertChar(cursor.pos, c);
2613         SetCharFont(cursor.par, cursor.pos, rawtmpfont);
2614
2615         if (!jumped_over_space) {
2616                 // refresh the positions
2617                 Row * tmprow = row;
2618                 while (tmprow->next && tmprow->next->par == row->par) {
2619                         tmprow = tmprow->next;
2620                         tmprow->pos++;
2621                 }
2622         }
2623    
2624         // Is there a break one row above
2625         if ((cursor.par->IsLineSeparator(cursor.pos)
2626              || cursor.par->IsNewline(cursor.pos)
2627              || cursor.row->fill == -1)
2628             && row->previous && row->previous->par == row->par) {
2629                 LyXParagraph::size_type z = NextBreakPoint(row->previous,
2630                                                            paperwidth);
2631                 if ( z >= row->pos) {
2632                         row->pos = z + 1;
2633                         
2634                         // set the dimensions of the row above
2635                         row->previous->fill = Fill(row->previous, paperwidth);
2636
2637                         SetHeightOfRow(row->previous);
2638              
2639                         y -= row->previous->height;
2640                         refresh_y = y;
2641                         refresh_row = row->previous;
2642                         status = LyXText::NEED_MORE_REFRESH;
2643              
2644                         BreakAgainOneRow(row);
2645
2646                         current_font = rawtmpfont;
2647                         real_current_font = realtmpfont;
2648                         SetCursor(cursor.par, cursor.pos + 1, false);
2649                         /* cursor MUST be in row now */
2650              
2651                         if (row->next && row->next->par == row->par)
2652                                 need_break_row = row->next;
2653                         else
2654                                 need_break_row = 0;
2655              
2656                         // check, wether the last characters font has changed. 
2657                         if (cursor.pos && cursor.pos == cursor.par->Last()
2658                             && rawparfont != rawtmpfont)
2659                                 RedoHeightOfParagraph(cursor);
2660                         
2661                         charInserted();
2662                         return;
2663                 }
2664         }
2665    
2666         /* recalculate the fill of the row */ 
2667         if (row->fill >= 0)  /* needed because a newline
2668                               * will set fill to -1. Otherwise
2669                               * we would not get a rebreak! */
2670                 row->fill = Fill(row, paperwidth);
2671         if (row->fill < 0 ) {
2672                 refresh_y = y;
2673                 refresh_row = row; 
2674                 refresh_x = cursor.x;
2675                 refresh_pos = cursor.pos;
2676                 status = LyXText::NEED_MORE_REFRESH;
2677                 BreakAgainOneRow(row); 
2678                 /* will the cursor be in another row now? */ 
2679                 if (RowLast(row) <= cursor.pos + 1 && row->next) {
2680                         if (row->next && row->next->par == row->par)
2681                                 /* this should
2682                                  * always be true */
2683                                 row = row->next;
2684                         BreakAgainOneRow(row);
2685                 }
2686                 current_font = rawtmpfont;
2687                 real_current_font = realtmpfont;
2688                 SetCursor(cursor.par, cursor.pos + 1, false);
2689                 if (row->next && row->next->par == row->par)
2690                         need_break_row = row->next;
2691                 else
2692                         need_break_row = 0;             
2693         } else {
2694                 refresh_y = y;
2695                 refresh_x = cursor.x;
2696                 refresh_row = row;
2697                 refresh_pos = cursor.pos;
2698                 
2699                 int tmpheight = row->height;
2700                 SetHeightOfRow(row);
2701                 if (tmpheight == row->height)
2702                         status = LyXText::NEED_VERY_LITTLE_REFRESH;
2703                 else
2704                         status = LyXText::NEED_MORE_REFRESH;
2705             
2706                 current_font = rawtmpfont;
2707                 real_current_font = realtmpfont;
2708                 SetCursor(cursor.par, cursor.pos + 1, false);
2709         }
2710
2711         /* check, wether the last characters font has changed. */ 
2712         if (cursor.pos && cursor.pos == cursor.par->Last()
2713             && rawparfont != rawtmpfont) {
2714                 RedoHeightOfParagraph(cursor);
2715         } else {
2716                 /* now the special right address boxes */
2717                 if (textclasslist.Style(parameters->textclass,
2718                                    cursor.par->GetLayout()).margintype
2719                     == MARGIN_RIGHT_ADDRESS_BOX) {
2720                         RedoDrawingOfParagraph(cursor); 
2721                 }
2722         }
2723
2724         charInserted();
2725 }
2726    
2727
2728 void LyXText::charInserted()
2729 {
2730         // Here we could call FinishUndo for every 20 characters inserted.
2731         // This is from my experience how emacs does it.
2732         static unsigned int counter = 0;
2733         if (counter < 20) {
2734                 ++counter;
2735         } else {
2736                 FinishUndo();
2737                 counter = 0;
2738         }
2739 }
2740
2741 void LyXText::PrepareToPrint(Row * row, float & x,
2742                              float & fill_separator, 
2743                              float & fill_hfill,
2744                              float & fill_label_hfill,
2745                              bool bidi) const
2746 {
2747         float nh, nlh, ns;
2748         
2749         float w = row->fill;
2750         fill_hfill = 0;
2751         fill_label_hfill = 0;
2752         fill_separator = 0;
2753         fill_label_hfill = 0;
2754
2755         LyXDirection direction = row->par->getParDirection();
2756
2757         if (direction == LYX_DIR_RIGHT_TO_LEFT) {
2758                 x = RightMargin(row);
2759                 if (row->par->footnoteflag == LyXParagraph::OPEN_FOOTNOTE) {
2760                         LyXFont font(LyXFont::ALL_SANE);
2761                         font.setSize(LyXFont::SIZE_SMALL);
2762                         x += font.textWidth("Mwide-figM", 10);
2763                 }
2764         }
2765         else
2766                 x = LeftMargin(row);
2767         
2768         /* is there a manual margin with a manual label */ 
2769         if (textclasslist.Style(parameters->textclass,
2770                            row->par->GetLayout()).margintype == MARGIN_MANUAL
2771             && textclasslist.Style(parameters->textclass,
2772                               row->par->GetLayout()).labeltype == LABEL_MANUAL) {
2773                
2774                 nlh = NumberOfLabelHfills(row) + 1; /* one more since labels 
2775                                                     * are left aligned*/ 
2776                 if (nlh && !row->par->GetLabelWidthString().empty()) {
2777                         fill_label_hfill = LabelFill(row) / nlh;
2778                 }
2779         }
2780                 
2781         /* are there any hfills in the row? */ 
2782         nh = NumberOfHfills(row);
2783         
2784 /* table stuff -- begin*/
2785         if (row->par->table) {
2786            w = paperwidth - row->par->table->WidthOfTable()
2787            - x - RightMargin(row);
2788            nh = 0; /* ignore hfills in tables */ 
2789         }
2790 /* table stuff -- end*/
2791
2792         if (nh)
2793           fill_hfill = w /nh;
2794         else  {
2795            /* is it block, flushleft or flushright? 
2796             * set x how you need it */
2797         int align;
2798         if (row->par->FirstPhysicalPar()->align == LYX_ALIGN_LAYOUT)
2799           align = textclasslist.Style(parameters->textclass, row->par->GetLayout()).align;
2800         else
2801           align = row->par->FirstPhysicalPar()->align;
2802            
2803            /* center displayed insets */ 
2804            if (row->par->GetChar(row->pos) == LyXParagraph::META_INSET
2805                && row->par->GetInset(row->pos)
2806                && row->par->GetInset(row->pos)->display())
2807              align = LYX_ALIGN_CENTER;
2808
2809            switch (align) {
2810             case LYX_ALIGN_BLOCK:
2811               ns = NumberOfSeparators(row);
2812               if (ns && row->next && row->next->par == row->par &&
2813                   !(row->next->par->IsNewline(row->next->pos-1))
2814                   && !(row->next->par->GetChar(row->next->pos) == LyXParagraph::META_INSET
2815                        && row->next->par->GetInset(row->next->pos)
2816                        && row->next->par->GetInset(row->next->pos)->display())
2817                   )
2818                 fill_separator = w / ns;
2819               else if (direction == LYX_DIR_RIGHT_TO_LEFT)
2820                 x += w;
2821               break;
2822             case LYX_ALIGN_RIGHT:
2823               x += w;
2824               break;
2825             case LYX_ALIGN_CENTER:
2826               x += w / 2;
2827               break;
2828            }
2829         }
2830         if (!bidi)
2831                 return;
2832
2833         ComputeBidiTables(row);
2834         if (direction == LYX_DIR_RIGHT_TO_LEFT) {
2835                 LyXParagraph::size_type main_body = 
2836                         BeginningOfMainBody(row->par);
2837                 LyXParagraph::size_type last = RowLast(row);
2838
2839                 if (row->pos <= last
2840                     && !row->par->table
2841                     && last != vis2log(last)
2842                     && row->par->IsLineSeparator(last)) {
2843                         if (!(main_body > 0 && main_body-1 == last))
2844                                 x -= fill_separator+SingleWidth(row->par,last);
2845                 } else if (main_body > 0 &&
2846                            (main_body-1 > last || 
2847                             !row->par->IsLineSeparator(main_body-1))) {
2848                         LyXLayout const & layout = textclasslist.Style(parameters->textclass,
2849                                                                        row->par->GetLayout());
2850                         x += GetFont(row->par, -2).stringWidth(layout.labelsep);
2851                         if (main_body-1 <= last)
2852                                 x += fill_label_hfill;
2853                 }
2854         }
2855 }
2856       
2857 /* important for the screen */
2858
2859
2860 /* the cursor set functions have a special mechanism. When they
2861 * realize, that you left an empty paragraph, they will delete it.
2862 * They also delete the corresponding row */
2863
2864 void LyXText::CursorRightOneWord() const
2865 {
2866         // treat floats, HFills and Insets as words
2867         LyXCursor tmpcursor = cursor;
2868 #warning See comment on top of text.C
2869
2870         if (tmpcursor.pos == tmpcursor.par->Last()
2871             && tmpcursor.par->Next())
2872         {
2873                         tmpcursor.par = tmpcursor.par->Next();
2874                         tmpcursor.pos = 0;
2875         } else {
2876                 int steps = 0;
2877
2878                 // Skip through initial nonword stuff.
2879                 while ( tmpcursor.pos < tmpcursor.par->Last() &&
2880                         ! tmpcursor.par->IsWord( tmpcursor.pos ) ) 
2881                 {
2882                   //    printf("Current pos1 %d", tmpcursor.pos) ;
2883                         tmpcursor.pos++;
2884                         ++steps;
2885                 }
2886                 // Advance through word.
2887                 while ( tmpcursor.pos < tmpcursor.par->Last() &&
2888                         tmpcursor.par->IsWord( tmpcursor.pos ) )
2889                 {
2890                   //     printf("Current pos2 %d", tmpcursor.pos) ;
2891                         tmpcursor.pos++;
2892                         ++steps;
2893                 }
2894         }
2895         SetCursor(tmpcursor.par, tmpcursor.pos);
2896 }
2897
2898
2899 void LyXText::CursorTab() const
2900 {
2901     if (cursor.par->table) {
2902         int cell = NumberOfCell(cursor.par, cursor.pos);
2903         while(cursor.par->table->IsContRow(cell)) {
2904             CursorUp();
2905             cell = NumberOfCell(cursor.par, cursor.pos);
2906         }
2907         if (cursor.par->table->ShouldBeVeryLastCell(cell))
2908             TableFeatures(LyXTable::APPEND_ROW);
2909     }
2910     LyXCursor tmpcursor = cursor;
2911     while (tmpcursor.pos < tmpcursor.par->Last()
2912            && !tmpcursor.par->IsNewline(tmpcursor.pos))
2913         tmpcursor.pos++;
2914    
2915     if (tmpcursor.pos == tmpcursor.par->Last()){
2916         if (tmpcursor.par->Next()) {
2917             tmpcursor.par = tmpcursor.par->Next();
2918             tmpcursor.pos = 0;
2919         }
2920     }
2921     else
2922         tmpcursor.pos++;
2923     SetCursor(tmpcursor.par, tmpcursor.pos);
2924     if (cursor.par->table) {
2925         int cell = NumberOfCell(cursor.par, cursor.pos);
2926         while (cursor.par->table->IsContRow(cell) &&
2927                !cursor.par->table->ShouldBeVeryLastCell(cell)) {
2928             tmpcursor = cursor;
2929             while (tmpcursor.pos < tmpcursor.par->Last()
2930                    && !tmpcursor.par->IsNewline(tmpcursor.pos))
2931                 tmpcursor.pos++;
2932    
2933             if (tmpcursor.pos == tmpcursor.par->Last()){
2934                 if (tmpcursor.par->Next()) {
2935                     tmpcursor.par = tmpcursor.par->Next();
2936                     tmpcursor.pos = 0;
2937                 }
2938             }
2939             else
2940                 tmpcursor.pos++;
2941             SetCursor(tmpcursor.par, tmpcursor.pos);
2942             cell = NumberOfCell(cursor.par, cursor.pos);
2943         }
2944     }
2945 }
2946
2947
2948 /* -------> Skip initial whitespace at end of word and move cursor to *start*
2949             of prior word, not to end of next prior word. */
2950
2951 void LyXText::CursorLeftOneWord()  const
2952 {
2953         // treat HFills, floats and Insets as words
2954         LyXCursor tmpcursor = cursor;
2955         while (tmpcursor.pos 
2956                && (tmpcursor.par->IsSeparator(tmpcursor.pos - 1) 
2957                    || tmpcursor.par->IsKomma(tmpcursor.pos - 1))
2958                && !(tmpcursor.par->IsHfill(tmpcursor.pos - 1)
2959                     || tmpcursor.par->IsFloat(tmpcursor.pos - 1)
2960                     || tmpcursor.par->IsInset(tmpcursor.pos - 1)))
2961                 tmpcursor.pos--;
2962
2963         if (tmpcursor.pos
2964             && (tmpcursor.par->IsInset(tmpcursor.pos - 1)
2965                 || tmpcursor.par->IsFloat(tmpcursor.pos - 1)
2966                 || tmpcursor.par->IsHfill(tmpcursor.pos - 1))) {
2967                 tmpcursor.pos--;
2968         } else if (!tmpcursor.pos) {
2969                 if (tmpcursor.par->Previous()){
2970                         tmpcursor.par = tmpcursor.par->Previous();
2971                         tmpcursor.pos = tmpcursor.par->Last();
2972                 }
2973         } else {                // Here, tmpcursor != 0 
2974                 while (tmpcursor.pos > 0 &&
2975                        tmpcursor.par->IsWord(tmpcursor.pos-1) )
2976                         tmpcursor.pos-- ;
2977         }
2978         SetCursor(tmpcursor.par, tmpcursor.pos);
2979 }
2980
2981 /* -------> Select current word. This depends on behaviour of CursorLeftOneWord(), so it is
2982                         patched as well. */
2983
2984 void LyXText::SelectWord() 
2985 {
2986         /* Move cursor to the beginning, when not already there. */
2987         if ( cursor.pos
2988              && !cursor.par->IsSeparator(cursor.pos-1)
2989              && !cursor.par->IsKomma(cursor.pos-1) )
2990                 CursorLeftOneWord();
2991
2992         /* set the sel cursor */
2993         sel_cursor = cursor;
2994
2995         while ( cursor.pos < cursor.par->Last()
2996                         && !cursor.par->IsSeparator(cursor.pos)
2997                         && !cursor.par->IsKomma(cursor.pos) )
2998                 cursor.pos++;
2999         SetCursor( cursor.par, cursor.pos );
3000         
3001         /* finally set the selection */ 
3002         SetSelection();
3003 }
3004
3005
3006 /* -------> Select the word currently under the cursor when:
3007                         1: no selection is currently set,
3008                         2: the cursor is not at the borders of the word. */
3009
3010 int LyXText::SelectWordWhenUnderCursor() 
3011 {
3012         if ( selection ) return 0;
3013         if ( cursor.pos < cursor.par->Last()
3014                  && !cursor.par->IsSeparator(cursor.pos)
3015                  && !cursor.par->IsKomma(cursor.pos)
3016                  && cursor.pos 
3017                  && !cursor.par->IsSeparator(cursor.pos -1)
3018                  && !cursor.par->IsKomma(cursor.pos -1) ) {
3019                 SelectWord();
3020                 return 1;
3021         }
3022         return 0;
3023 }
3024
3025
3026 // This function is only used by the spellchecker for NextWord().
3027 // It doesn't handle LYX_ACCENTs and probably never will.
3028 char * LyXText::SelectNextWord(float & value)
3029 {
3030         LyXParagraph * tmppar = cursor.par;
3031         
3032         // If this is not the very first word, skip rest of
3033         // current word because we are probably in the middle
3034         // of a word if there is text here.
3035         if (cursor.pos || cursor.par->previous) {
3036                 while (cursor.pos < cursor.par->Last()
3037                        && cursor.par->IsLetter(cursor.pos))
3038                         cursor.pos++;
3039         }
3040         // Now, skip until we have real text (will jump paragraphs)
3041         while ((cursor.par->Last() > cursor.pos
3042                 && (!cursor.par->IsLetter(cursor.pos)
3043                     || cursor.par->getFont(cursor.pos).latex() == LyXFont::ON))
3044                || (cursor.par->Last() == cursor.pos
3045                    && cursor.par->Next())){
3046                 if (cursor.pos == cursor.par->Last()) {
3047                         cursor.par = cursor.par->Next();
3048                         cursor.pos = 0;
3049                 }
3050                 else
3051                         cursor.pos++;
3052         }
3053   
3054         // Update the value if we changed paragraphs
3055         if (cursor.par != tmppar){
3056                 SetCursor(cursor.par, cursor.pos);
3057                 value = float(cursor.y)/float(height);
3058         }
3059
3060         /* Start the selection from here */
3061         sel_cursor = cursor;
3062
3063 #ifdef HAVE_SSTREAM
3064         ostringstream latex;
3065 #else
3066         ostrstream latex;
3067 #endif
3068         /* and find the end of the word 
3069            (optional hyphens are part of a word) */
3070         while (cursor.pos < cursor.par->Last()
3071                && (cursor.par->IsLetter(cursor.pos)) 
3072                    || (cursor.par->GetChar(cursor.pos) == LyXParagraph::META_INSET
3073                        && cursor.par->GetInset(cursor.pos) != 0
3074                        && cursor.par->GetInset(cursor.pos)->Latex(latex, 0, false) == 0
3075 #ifdef HAVE_SSTREAM
3076                        && latex.str() == "\\-"
3077 #else
3078                 && string(latex.str(), 3) == "\\-" // this is not nice at all
3079 #endif
3080                            ))
3081                 cursor.pos++;
3082
3083 #ifndef HAVE_SSTREAM
3084         delete [] latex.str();
3085 #endif
3086         // Finally, we copy the word to a string and return it
3087         char * str = 0;
3088
3089         if (sel_cursor.pos < cursor.pos) {
3090                 str = new char [cursor.pos - sel_cursor.pos + 2];
3091                 LyXParagraph::size_type i, j;
3092                 for (i = sel_cursor.pos, j = 0; i < cursor.pos; ++i) {
3093                         if (cursor.par->GetChar(i) != LyXParagraph::META_INSET)
3094                                 str[j++] = cursor.par->GetChar(i);
3095                 }
3096                 str[j] = '\0';
3097         }
3098         return str;
3099 }
3100
3101
3102 // This one is also only for the spellchecker
3103 void LyXText::SelectSelectedWord()
3104 {
3105         /* move cursor to the beginning */
3106         SetCursor(sel_cursor.par, sel_cursor.pos);
3107         
3108         /* set the sel cursor */
3109         sel_cursor = cursor;
3110
3111 #ifdef HAVE_SSTREAM
3112         ostringstream latex;
3113 #else
3114         ostrstream latex;
3115 #endif
3116         
3117         /* now find the end of the word */
3118         while (cursor.pos < cursor.par->Last()
3119                && (cursor.par->IsLetter(cursor.pos)
3120                    || (cursor.par->GetChar(cursor.pos) == LyXParagraph::META_INSET
3121                        && cursor.par->GetInset(cursor.pos) != 0
3122                        && cursor.par->GetInset(cursor.pos)->Latex(latex, 0, false) == 0
3123 #ifdef HAVE_SSTREAM
3124                        && latex.str() == "\\-"
3125 #else
3126                        && string(latex.str(), 3) == "\\-"
3127 #endif
3128                            )))
3129                 cursor.pos++;
3130         
3131 #ifndef HAVE_SSTREAM
3132         delete [] latex.str();
3133 #endif
3134         SetCursor(cursor.par, cursor.pos);
3135         
3136         /* finally set the selection */ 
3137         SetSelection();
3138 }
3139
3140
3141 /* -------> Delete from cursor up to the end of the current or next word. */
3142 void LyXText::DeleteWordForward()
3143 {
3144         LyXCursor tmpcursor = cursor;
3145         
3146         if (!cursor.par->Last())
3147                 CursorRight();
3148 #warning See comment on top of text.C
3149         else {
3150                 /* -------> Skip initial non-word stuff. */
3151                 while ( cursor.pos < cursor.par->Last() 
3152                         && (cursor.par->IsSeparator(cursor.pos)
3153                             || cursor.par->IsKomma(cursor.pos)) )
3154                         cursor.pos++;
3155                 
3156                 SetCursorIntern(cursor.par, cursor.pos);
3157                 selection = True; // to avoid deletion 
3158                 CursorRightOneWord();
3159                 sel_cursor = cursor;
3160                 cursor = tmpcursor;
3161                 SetSelection(); 
3162                 
3163                 /* -----> Great, CutSelection() gets rid of multiple spaces. */
3164                 CutSelection();
3165         }
3166 }
3167
3168
3169 /* -------> Delete from cursor to start of current or prior word. */
3170 void LyXText::DeleteWordBackward()
3171 {
3172        LyXCursor tmpcursor = cursor;
3173        if (!cursor.par->Last())
3174          CursorLeft();
3175 #warning See comment on top of text.C
3176        else{
3177          selection = true; // to avoid deletion 
3178          CursorLeftOneWord();
3179          sel_cursor = cursor;
3180          cursor = tmpcursor;
3181          SetSelection();
3182          CutSelection();
3183        }
3184 }
3185
3186
3187 /* -------> Kill to end of line. */
3188 void LyXText::DeleteLineForward()
3189 {
3190         LyXCursor tmpcursor = cursor;
3191         if (!cursor.par->Last())
3192                 CursorRight();
3193 #warning See comment on top of text.C
3194         else {
3195                 CursorEnd();
3196                 sel_cursor = cursor;
3197                 cursor = tmpcursor;
3198                 SetSelection();
3199                 if (selection == false) {
3200                         DeleteWordForward();
3201                 } else {
3202                         CutSelection();
3203                 }
3204         }
3205 }
3206
3207
3208 // Change the case of a word at cursor position. The meaning of action
3209 // is:
3210 // 0  change to lowercase
3211 // 1  capitalize word
3212 // 2  change to uppercase
3213 // This function directly manipulates LyXParagraph::text because there
3214 // is no LyXParagraph::SetChar currently. I did what I could to ensure
3215 // that it is correct. I guess part of it should be moved to
3216 // LyXParagraph, but it will have to change for 1.1 anyway. At least
3217 // it does not access outside of the allocated array as the older
3218 // version did. (JMarc) 
3219 void LyXText::ChangeWordCase(LyXText::TextCase action) 
3220 {
3221         LyXParagraph * tmppar = cursor.par->ParFromPos(cursor.pos);
3222
3223         SetUndo(Undo::FINISH, tmppar->previous, tmppar->next); 
3224
3225         LyXParagraph::size_type tmppos = 
3226                 cursor.par->PositionInParFromPos(cursor.pos);
3227         while (tmppos < tmppar->size()) {
3228                 unsigned char c = tmppar->text[tmppos];
3229                 if (IsKommaChar(c) || IsLineSeparatorChar(c))
3230                         break;
3231                 if (c != LyXParagraph::META_INSET) {
3232                         switch (action) {
3233                         case text_lowercase:
3234                                 c = tolower(c);
3235                                 break;
3236                         case text_capitalization:
3237                                 c = toupper(c);
3238                                 action = text_lowercase;
3239                                 break;
3240                         case text_uppercase:
3241                                 c = toupper(c);
3242                                 break;
3243                         }
3244                 }
3245                 
3246                 tmppar->text[tmppos] = c;
3247                 ++tmppos;
3248         }
3249         CheckParagraph(tmppar, tmppos);
3250         CursorRightOneWord();
3251 }
3252
3253
3254 void LyXText::Delete()
3255 {
3256         // this is a very easy implementation
3257
3258         LyXCursor old_cursor = cursor;
3259         int old_cur_par_id = old_cursor.par->id();
3260         int old_cur_par_prev_id = old_cursor.par->previous ?
3261                 old_cursor.par->previous->id() : 0;
3262         
3263         // just move to the right
3264         CursorRightIntern();
3265
3266 #warning Look at the comment here.
3267         // This check is not very good...
3268         // The CursorRightIntern calls DeleteEmptyParagrapgMechanism
3269         // and that can very well delete the par or par->previous in
3270         // old_cursor. Will a solution where we compare paragraph id's
3271         //work better?
3272 #if 1
3273         if ((cursor.par->previous ? cursor.par->previous->id() : 0)
3274             == old_cur_par_prev_id
3275             && cursor.par->id() != old_cur_par_id)
3276                 return; // delete-empty-paragraph-mechanism has done it
3277 #else
3278         if (cursor.par->previous == old_cursor.par->previous
3279             && cursor.par != old_cursor.par)
3280                 return; // delete-empty-paragraph-mechanism has done it
3281 #endif
3282         // if you had success make a backspace
3283         if (old_cursor.par != cursor.par || old_cursor.pos != cursor.pos) {
3284                 LyXCursor tmpcursor = cursor;
3285                 cursor = old_cursor; // to make sure undo gets the right cursor position
3286                 SetUndo(Undo::DELETE, 
3287                         cursor.par->ParFromPos(cursor.pos)->previous, 
3288                         cursor.par->ParFromPos(cursor.pos)->next); 
3289                 cursor = tmpcursor;
3290                 Backspace();
3291         }
3292 }
3293
3294
3295 void  LyXText::Backspace()
3296 {
3297         LyXParagraph * tmppar;
3298         Row * tmprow, * row;
3299         long y;
3300         int tmpheight;
3301
3302         /* table stuff -- begin */
3303         if (cursor.par->table) {
3304                 BackspaceInTable();
3305                 return;
3306         }
3307         /* table stuff -- end */
3308         
3309         LyXFont rawtmpfont = current_font;
3310         LyXFont realtmpfont = real_current_font;
3311    
3312         // Get the font that is used to calculate the baselineskip
3313         int const lastpos = cursor.par->Last();
3314         LyXFont rawparfont = cursor.par->GetFontSettings(lastpos - 1);
3315
3316         if (cursor.pos == 0) {
3317                 // we may paste some paragraphs
3318       
3319                 // is it an empty paragraph?
3320       
3321                 if ((lastpos == 0
3322                      || (lastpos == 1 && cursor.par->IsSeparator(0)))
3323                     && !(cursor.par->Next() 
3324                          && cursor.par->footnoteflag == 
3325                          LyXParagraph::NO_FOOTNOTE
3326                          && cursor.par->Next()->footnoteflag == 
3327                          LyXParagraph::OPEN_FOOTNOTE)) {
3328                         
3329                         if (cursor.par->previous) {
3330                                 tmppar = cursor.par->previous->FirstPhysicalPar();
3331                                 if (cursor.par->GetLayout() == tmppar->GetLayout()
3332                                     && cursor.par->footnoteflag == tmppar->footnoteflag
3333                                     && cursor.par->GetAlign() == tmppar->GetAlign()) {
3334                                         
3335                                         tmppar->line_bottom = cursor.par->line_bottom;
3336                                         tmppar->added_space_bottom = cursor.par->added_space_bottom;
3337                                         tmppar->pagebreak_bottom = cursor.par->pagebreak_bottom;
3338                                 }
3339                                 
3340                                 CursorLeftIntern();
3341                      
3342                                 // the layout things can change the height of a row !
3343                                 tmpheight = cursor.row->height;
3344                                 SetHeightOfRow(cursor.row);
3345                                 if (cursor.row->height != tmpheight) {
3346                                         refresh_y = cursor.y - cursor.row->baseline;
3347                                         refresh_row = cursor.row;
3348                                         status = LyXText::NEED_MORE_REFRESH;
3349                                 }
3350                                 return;
3351                         }
3352                 }
3353                 if (cursor.par->ParFromPos(cursor.pos)->previous){
3354                         SetUndo(Undo::DELETE,
3355                                 cursor.par->ParFromPos(cursor.pos)->previous->previous,
3356                                 cursor.par->ParFromPos(cursor.pos)->next);
3357                 }
3358                 tmppar = cursor.par;
3359                 tmprow = cursor.row;
3360                 CursorLeftIntern();
3361 #warning See comment on top of text.C
3362                 /* Pasting is not allowed, if the paragraphs have different
3363                    layout. I think it is a real bug of all other
3364                    word processors to allow it. It confuses the user.
3365                    Even so with a footnote paragraph and a non-footnote
3366                    paragraph. I will not allow pasting in this case, 
3367                    because the user would be confused if the footnote behaves 
3368                    different wether it is open or closed.
3369                   
3370                    Correction: Pasting is always allowed with standard-layout
3371                 */
3372                 if (cursor.par != tmppar
3373                     && (cursor.par->GetLayout() == tmppar->GetLayout()
3374                         || !tmppar->GetLayout())
3375                     && cursor.par->footnoteflag == tmppar->footnoteflag
3376                     /* table stuff -- begin*/
3377                     && !cursor.par->table /* no pasting of tables */ 
3378                     /* table stuff -- end*/
3379                     && cursor.par->GetAlign() == tmppar->GetAlign()) {
3380                         
3381                         cursor.par->PasteParagraph();
3382                         
3383                         if (!(cursor.pos &&
3384                               cursor.par->IsSeparator(cursor.pos - 1)))
3385                                 cursor.par->InsertChar(cursor.pos, ' ');
3386                         else
3387                                 if (cursor.pos)
3388                                         cursor.pos--;
3389                         
3390                         status = LyXText::NEED_MORE_REFRESH;
3391                         refresh_row = cursor.row;
3392                         refresh_y = cursor.y - cursor.row->baseline;
3393                         
3394                         // remove the lost paragraph
3395                         RemoveParagraph(tmprow);
3396                         RemoveRow(tmprow);  
3397                         
3398                         AppendParagraph(cursor.row);
3399                         UpdateCounters(cursor.row);
3400                         
3401                         // the row may have changed, block, hfills etc.
3402                         SetCursor(cursor.par, cursor.pos);
3403                 }
3404         } else {
3405                 /* this is the code for a normal backspace, not pasting
3406                  * any paragraphs */ 
3407                 SetUndo(Undo::DELETE, 
3408                         cursor.par->ParFromPos(cursor.pos)->previous, 
3409                         cursor.par->ParFromPos(cursor.pos)->next); 
3410                 CursorLeftIntern();
3411                 
3412                 // some insets are undeletable here
3413                 if (cursor.par->GetChar(cursor.pos) == LyXParagraph::META_INSET) {
3414                         if (!cursor.par->GetInset(cursor.pos)->Deletable())
3415                                 return; 
3416                         // force complete redo when erasing display insets
3417                         // this is a cruel mathod but save..... Matthias 
3418                         if (cursor.par->GetInset(cursor.pos)->display()){
3419                                 cursor.par->Erase(cursor.pos);
3420                                 RedoParagraph();
3421                                 return;
3422                         }
3423                 }
3424                 
3425                 row = cursor.row;
3426                 y = cursor.y - row->baseline;
3427                 LyXParagraph::size_type z;
3428                 /* remember that a space at the end of a row doesnt count
3429                  * when calculating the fill */ 
3430                 if (cursor.pos < RowLast(row) ||
3431                     !cursor.par->IsLineSeparator(cursor.pos)) {
3432                         row->fill += SingleWidth(cursor.par, cursor.pos);
3433                 }
3434                 
3435                 /* some special code when deleting a newline. This is similar
3436                  * to the behavior when pasting paragraphs */ 
3437                 if (cursor.pos && cursor.par->IsNewline(cursor.pos)) {
3438                         cursor.par->Erase(cursor.pos);
3439                         // refresh the positions
3440                         tmprow = row;
3441                         while (tmprow->next && tmprow->next->par == row->par) {
3442                                 tmprow = tmprow->next;
3443                                 tmprow->pos--;
3444                         }
3445                         if (cursor.par->IsLineSeparator(cursor.pos - 1))
3446                                 cursor.pos--;
3447                         
3448                         if (cursor.pos < cursor.par->Last() && !cursor.par->IsSeparator(cursor.pos)) {
3449                                 cursor.par->InsertChar(cursor.pos, ' ');
3450                                 // refresh the positions
3451                                 tmprow = row;
3452                                 while (tmprow->next && tmprow->next->par == row->par) {
3453                                         tmprow = tmprow->next;
3454                                         tmprow->pos++;
3455                                 }
3456                         }
3457                 } else {
3458                         cursor.par->Erase(cursor.pos);
3459                         
3460                         // refresh the positions
3461                         tmprow = row;
3462                         while (tmprow->next && tmprow->next->par == row->par) {
3463                                 tmprow = tmprow->next;
3464                                 tmprow->pos--;
3465                         }
3466
3467 #ifndef FIX_DOUBLE_SPACE
3468                         // delete superfluous blanks 
3469                         if (cursor.pos < cursor.par->Last() - 1 &&
3470                             (cursor.par->IsLineSeparator(cursor.pos))) {
3471                                 
3472                                 if (cursor.pos == BeginningOfMainBody(cursor.par)
3473                                     || !cursor.pos 
3474                                     || cursor.par->IsLineSeparator(cursor.pos - 1)) {
3475                                         cursor.par->Erase(cursor.pos);
3476                                         // refresh the positions
3477                                         tmprow = row;
3478                                         while (tmprow->next && 
3479                                                tmprow->next->par == row->par) {
3480                                                 tmprow = tmprow->next;
3481                                                 tmprow->pos--;
3482                                         }
3483                                         if (cursor.pos)   // move one character left
3484                                                 cursor.pos--;
3485                                 }
3486                         }
3487 #endif
3488                         
3489                         // delete newlines at the beginning of paragraphs
3490                         while (cursor.par->Last() &&
3491                                cursor.par->IsNewline(cursor.pos) &&
3492                                cursor.pos == BeginningOfMainBody(cursor.par)) {
3493                                 cursor.par->Erase(cursor.pos);
3494                                 // refresh the positions
3495                                 tmprow = row;
3496                                 while (tmprow->next && 
3497                                        tmprow->next->par == row->par) {
3498                                         tmprow = tmprow->next;
3499                                         tmprow->pos--;
3500                                 }
3501                         }
3502                 }
3503                 
3504                 // is there a break one row above
3505                 if (row->previous && row->previous->par == row->par) {
3506                         z = NextBreakPoint(row->previous, paperwidth);
3507                         if ( z >= row->pos) {
3508                                 row->pos = z + 1;
3509                                 
3510                                 tmprow = row->previous;
3511                                 
3512                                 // maybe the current row is now empty
3513                                 if (row->pos >= row->par->Last()) {
3514                                         // remove it
3515                                         RemoveRow(row);
3516                                         need_break_row = 0;
3517                                 } else {
3518                                         BreakAgainOneRow(row);
3519                                         if (row->next && row->next->par == row->par)
3520                                                 need_break_row = row->next;
3521                                         else
3522                                                 need_break_row = 0;
3523                                 }
3524                                 
3525                                 // set the dimensions of the row above
3526                                 y -= tmprow->height;
3527                                 tmprow->fill = Fill(tmprow, paperwidth);
3528                                 SetHeightOfRow(tmprow);
3529                                 
3530                                 refresh_y = y;
3531                                 refresh_row = tmprow;
3532                                 status = LyXText::NEED_MORE_REFRESH;
3533                                 current_font = rawtmpfont;
3534                                 real_current_font = realtmpfont;
3535                                 SetCursor(cursor.par, cursor.pos, false);
3536                                 // check, whether the last character's font has changed.
3537                                 rawtmpfont = cursor.par->GetFontSettings(cursor.par->Last() - 1);
3538                                 if (rawparfont != rawtmpfont)
3539                                         RedoHeightOfParagraph(cursor);
3540                                 return;
3541                         }
3542                 }
3543                 
3544                 // break the cursor row again
3545                 z = NextBreakPoint(row, paperwidth);
3546                 
3547                 if (z != RowLast(row) || 
3548                     (row->next && row->next->par == row->par &&
3549                      RowLast(row) == row->par->Last() - 1)){
3550                         
3551                         /* it can happen that a paragraph loses one row
3552                          * without a real breakup. This is when a word
3553                          * is to long to be broken. Well, I don t care this 
3554                          * hack ;-) */ 
3555                         if (row->next && row->next->par == row->par &&
3556                             RowLast(row) == row->par->Last() - 1)
3557                                 RemoveRow(row->next);
3558                         
3559                         refresh_y = y;
3560                         refresh_row = row;
3561                         status = LyXText::NEED_MORE_REFRESH;
3562                         
3563                         BreakAgainOneRow(row);
3564                         current_font = rawtmpfont; 
3565                         real_current_font = realtmpfont;
3566                         SetCursor(cursor.par, cursor.pos, false);
3567                         // cursor MUST be in row now
3568                         
3569                         if (row->next && row->next->par == row->par)
3570                                 need_break_row = row->next;
3571                         else
3572                                 need_break_row = 0;
3573                 } else  {
3574                         // set the dimensions of the row
3575                         row->fill = Fill(row, paperwidth);
3576                         int tmpheight = row->height;
3577                         SetHeightOfRow(row);
3578                         if (tmpheight == row->height)
3579                                 status = LyXText::NEED_VERY_LITTLE_REFRESH;
3580                         else
3581                                 status = LyXText::NEED_MORE_REFRESH;
3582                         refresh_y = y;
3583                         refresh_row = row;
3584                         current_font = rawtmpfont; 
3585                         real_current_font = realtmpfont;
3586                         SetCursor(cursor.par, cursor.pos, false);
3587                 }
3588         }
3589    
3590         // restore the current font
3591         // That is what a user expects!
3592         current_font = rawtmpfont; 
3593         real_current_font = realtmpfont;
3594         
3595         // check, wether the last characters font has changed.
3596         rawtmpfont = cursor.par->GetFontSettings(cursor.par->Last() - 1);
3597         if (rawparfont != rawtmpfont) {
3598                 RedoHeightOfParagraph(cursor);
3599         } else {
3600                 // now the special right address boxes
3601                 if (textclasslist.Style(parameters->textclass,
3602                                         cursor.par->GetLayout()).margintype == MARGIN_RIGHT_ADDRESS_BOX) {
3603                         RedoDrawingOfParagraph(cursor); 
3604                 }
3605         }
3606 }
3607
3608
3609 void LyXText::GetVisibleRow(int offset, 
3610                             Row * row_ptr, long y)
3611 {
3612         /* returns a printed row */
3613         Painter & pain = owner_->painter();
3614         
3615         LyXDirection direction = row_ptr->par->getParDirection();
3616         LyXParagraph::size_type vpos, pos, pos_end;
3617         float x, tmpx;
3618         int y_top, y_bottom;
3619         float fill_separator, fill_hfill, fill_label_hfill;
3620         LyXParagraph * par, * firstpar;
3621         LyXFont font;
3622         int maxdesc;
3623         if (row_ptr->height <= 0) {
3624                 lyxerr << "LYX_ERROR: row.height: " << row_ptr->height << endl;
3625                 return;
3626         }
3627         PrepareToPrint(row_ptr, x, fill_separator,
3628                        fill_hfill, fill_label_hfill);
3629         
3630         /* initialize the pixmap */
3631         
3632         pain.fillRectangle(0, offset, paperwidth, row_ptr->height);
3633         
3634         if (selection) {
3635                 /* selection code */ 
3636                 if (sel_start_cursor.row == row_ptr &&
3637                     sel_end_cursor.row == row_ptr) {
3638                         if (sel_start_cursor.x < sel_end_cursor.x)
3639                                 pain.fillRectangle(sel_start_cursor.x, offset,
3640                                                    sel_end_cursor.x - sel_start_cursor.x,
3641                                                    row_ptr->height,
3642                                                    LColor::selection);
3643                         else
3644                                 pain.fillRectangle(sel_end_cursor.x, offset,
3645                                                    sel_start_cursor.x - sel_end_cursor.x,
3646                                                    row_ptr->height,
3647                                                    LColor::selection);
3648                 } else if (sel_start_cursor.row == row_ptr) {
3649                         if (direction == LYX_DIR_LEFT_TO_RIGHT)
3650                                 pain.fillRectangle(sel_start_cursor.x, offset,
3651                                                    paperwidth - sel_start_cursor.x,
3652                                                    row_ptr->height,
3653                                                    LColor::selection);
3654                         else
3655                                 pain.fillRectangle(0, offset,
3656                                                    sel_start_cursor.x,
3657                                                    row_ptr->height,
3658                                                    LColor::selection);
3659                 } else if (sel_end_cursor.row == row_ptr) {
3660                         if (direction == LYX_DIR_LEFT_TO_RIGHT)
3661                                 pain.fillRectangle(0, offset,
3662                                                    sel_end_cursor.x,
3663                                                    row_ptr->height,
3664                                                    LColor::selection);
3665                         else
3666                                 pain.fillRectangle(sel_end_cursor.x, offset,
3667                                                    paperwidth - sel_end_cursor.x,
3668                                                    row_ptr->height,
3669                                                    LColor::selection);
3670                         
3671                 } else if (y > sel_start_cursor.y && y < sel_end_cursor.y) {
3672                         pain.fillRectangle(0, offset,
3673                                            paperwidth, row_ptr->height,
3674                                            LColor::selection);
3675                 }
3676         }
3677         
3678         if (row_ptr->par->appendix){
3679                 pain.line(1, offset,
3680                           1, offset + row_ptr->height,
3681                           LColor::appendixline);
3682                 pain.line(paperwidth - 2, offset,
3683                           paperwidth - 2, offset + row_ptr->height,
3684                           LColor::appendixline);
3685         }
3686         
3687         if (row_ptr->par->pextra_type == LyXParagraph::PEXTRA_MINIPAGE) {
3688                 /* draw a marker at the left margin! */ 
3689                 LyXFont font = GetFont(row_ptr->par, 0);
3690                 int asc = font.maxAscent();
3691                 int x = (LYX_PAPER_MARGIN - font.width('|')) / 2;
3692                 int y1 = (offset + row_ptr->baseline);
3693                 int y2 = (offset + row_ptr->baseline) - asc;
3694                 pain.line(x, y1, x, y2, LColor::minipageline);
3695         }       
3696         if (row_ptr->par->footnoteflag == LyXParagraph::OPEN_FOOTNOTE) {
3697                 LyXFont font(LyXFont::ALL_SANE);
3698                 font.setSize(LyXFont::SIZE_FOOTNOTE);
3699                 font.setColor(LColor::footnote);
3700                 
3701                 int box_x = LYX_PAPER_MARGIN;
3702                 box_x += font.textWidth(" wide-tab ", 10);
3703                 if (row_ptr->previous && 
3704                     row_ptr->previous->par->footnoteflag != LyXParagraph::OPEN_FOOTNOTE){
3705                         string fs;
3706                         switch (row_ptr->par->footnotekind) {
3707                         case LyXParagraph::MARGIN:
3708                                 fs = " margin";
3709                                 break;
3710                         case LyXParagraph::FIG:
3711                                 fs = " fig";
3712                                 break;
3713                         case LyXParagraph::TAB:
3714                                 fs = " tab";
3715                                 break;
3716                         case LyXParagraph::WIDE_FIG:
3717                                 fs = " wide-fig";
3718                                 break;
3719                         case LyXParagraph::WIDE_TAB:
3720                                 fs = " wide-tab";
3721                                 break;
3722                         case LyXParagraph::ALGORITHM:
3723                                 fs = " alg";
3724                                 break;
3725                         case LyXParagraph::FOOTNOTE:
3726                                 fs = " foot";
3727                                 break;
3728                         }
3729                         
3730                         pain.fillRectangle(LYX_PAPER_MARGIN,
3731                                            offset + 1,
3732                                            box_x - LYX_PAPER_MARGIN,
3733                                            int(font.maxAscent()
3734                                                + font.maxDescent()),
3735                                            LColor::footnotebg);
3736                         
3737                         pain.line(LYX_PAPER_MARGIN, offset,
3738                                   paperwidth - LYX_PAPER_MARGIN, offset,
3739                                   LColor::footnoteframe);
3740                         
3741                         pain.text(LYX_PAPER_MARGIN,
3742                                   offset + int(font.maxAscent()) + 1,
3743                                   fs, font);
3744                         
3745                         pain.line(LYX_PAPER_MARGIN, offset,
3746                                   LYX_PAPER_MARGIN,
3747                                   offset + int(font.maxAscent()
3748                                                + font.maxDescent()),
3749                                   LColor::footnoteframe);
3750                         
3751                         pain.line(LYX_PAPER_MARGIN,
3752                                   offset + int(font.maxAscent()
3753                                                + font.maxDescent()) + 1,
3754                                   box_x,
3755                                   offset + int(font.maxAscent()
3756                                                + font.maxDescent()) + 1,
3757                                   LColor::footnoteframe);
3758                         
3759                 }
3760                 
3761                 /* draw the open floats in a red box */
3762                 pain.line(box_x, offset,
3763                           box_x, offset + row_ptr->height,
3764                           LColor::footnoteframe);
3765                 
3766                 pain.line(paperwidth - LYX_PAPER_MARGIN,
3767                           offset,
3768                           paperwidth - LYX_PAPER_MARGIN,
3769                           offset + row_ptr->height,
3770                           LColor::footnoteframe);
3771         } else if (row_ptr->previous &&
3772                    row_ptr->previous->par->footnoteflag
3773                    == LyXParagraph::OPEN_FOOTNOTE) {
3774                 LyXFont font(LyXFont::ALL_SANE);
3775                 font.setSize(LyXFont::SIZE_FOOTNOTE);
3776                 
3777                 int box_x = LYX_PAPER_MARGIN;
3778                 box_x += font.textWidth(" wide-tab ", 10);
3779                 
3780                 pain.line(box_x, offset,
3781                           paperwidth - LYX_PAPER_MARGIN,
3782                           offset, LColor::footnote);
3783         }
3784         
3785         LyXLayout const & layout =
3786                 textclasslist.Style(parameters->textclass,
3787                                     row_ptr->par->GetLayout());
3788         firstpar = row_ptr->par->FirstPhysicalPar();
3789         
3790         y_top = 0;
3791         y_bottom = row_ptr->height;
3792         
3793         /* is it a first row? */ 
3794         if (row_ptr->pos == 0
3795             && row_ptr->par == firstpar) {
3796                 
3797                 /* start of appendix? */
3798                 if (row_ptr->par->start_of_appendix){
3799                         pain.line(1, offset,
3800                                   paperwidth - 2, offset,
3801                                   LColor::appendixline);
3802                 }
3803                 
3804                 /* think about the margins */ 
3805                 if (!row_ptr->previous)
3806                         y_top += LYX_PAPER_MARGIN;
3807                 
3808                 if (row_ptr->par->pagebreak_top){ /* draw a top pagebreak  */
3809 #if 0
3810                         pain.line(0, offset + y_top + 2 * DefaultHeight(),
3811                                   paperwidth,
3812                                   offset + y_top + 2 * DefaultHeight(),
3813                                   LColor::pagebreak, Painter::line_onoffdash);
3814 #else
3815                         LyXFont pb_font;
3816                         pb_font.setColor(LColor::pagebreak).decSize();
3817                         int w = 0, a = 0, d = 0;
3818                         pain.line(0, offset + y_top + 2*DefaultHeight(),
3819                                   paperwidth, 
3820                                   offset + y_top + 2*DefaultHeight(),
3821                                   LColor::pagebreak, 
3822                                   Painter::line_onoffdash)
3823                                 .rectText(0,
3824                                           0,
3825                                           _("Page Break (top)"),
3826                                           pb_font,
3827                                           LColor::background,
3828                                           LColor::background, false, w, a, d);
3829                         pain.rectText((paperwidth - w)/2,
3830                                       offset +y_top + 2*DefaultHeight() +d,
3831                                       _("Page Break (top)"),
3832                                       pb_font,
3833                                       LColor::background,
3834                                       LColor::background);
3835 #endif
3836                         y_top += 3 * DefaultHeight();
3837                 }
3838                 
3839                 if (row_ptr->par->added_space_top.kind() == VSpace::VFILL) {
3840                         /* draw a vfill top  */
3841                         pain.line(0, offset + 2 + y_top,
3842                                   LYX_PAPER_MARGIN, offset + 2 + y_top,
3843                                   LColor::vfillline);
3844                         
3845                         pain.line(0, offset + y_top + 3 * DefaultHeight(),
3846                                   LYX_PAPER_MARGIN,
3847                                   offset + y_top + 3 * DefaultHeight(),
3848                                   LColor::vfillline);
3849                         
3850                         pain.line(LYX_PAPER_MARGIN / 2, offset + 2 + y_top,
3851                                   LYX_PAPER_MARGIN / 2,
3852                                   offset + y_top + 3 * DefaultHeight(),
3853                                   LColor::vfillline);
3854                         
3855                         y_top += 3 * DefaultHeight();
3856                 }
3857                 
3858                 /* think about user added space */ 
3859                 y_top += int(row_ptr->par->added_space_top.inPixels(owner_));
3860                 
3861                 /* think about the parskip */ 
3862                 /* some parskips VERY EASY IMPLEMENTATION */ 
3863                 if (parameters->paragraph_separation == BufferParams::PARSEP_SKIP) {
3864                         if (layout.latextype == LATEX_PARAGRAPH
3865                             && firstpar->GetDepth() == 0
3866                             && firstpar->Previous())
3867                                 y_top += parameters->getDefSkip().inPixels(owner_);
3868                         else if (firstpar->Previous()
3869                                  && textclasslist.Style(parameters->textclass,
3870                                                         firstpar->Previous()->GetLayout()).latextype == LATEX_PARAGRAPH
3871                                  && firstpar->Previous()->GetDepth() == 0)
3872                                 // is it right to use defskip here, too? (AS) 
3873                                 y_top += parameters->getDefSkip().inPixels(owner_);
3874                 }
3875                 
3876                 if (row_ptr->par->line_top) {      /* draw a top line  */
3877                         y_top +=  GetFont(row_ptr->par, 0).ascent('x');
3878                         
3879                         pain.line(0, offset + y_top,
3880                                   paperwidth, offset + y_top,
3881                                   LColor::topline,
3882                                   Painter::line_solid,
3883                                   Painter::line_thick);
3884                         
3885                         y_top +=  GetFont(row_ptr->par, 0).ascent('x');
3886                 }
3887                 
3888                 /* should we print a label? */ 
3889                 if (layout.labeltype >= LABEL_STATIC
3890                     && (layout.labeltype != LABEL_STATIC
3891                         || layout.latextype != LATEX_ENVIRONMENT
3892                         || row_ptr->par->IsFirstInSequence())) {
3893                         font = GetFont(row_ptr->par, -2);
3894                         if (!row_ptr->par->GetLabestring().empty()) {
3895                                 tmpx = x;
3896                                 string tmpstring = row_ptr->par->GetLabestring();
3897                                 
3898                                 if (layout.labeltype == LABEL_COUNTER_CHAPTER) {
3899                                         if (parameters->secnumdepth >= 0){
3900                                                 /* this is special code for the chapter layout. This is printed in
3901                                                  * an extra row and has a pagebreak at the top. */
3902                                                 maxdesc = int(font.maxDescent() * layout.spacing.getValue() * parameters->spacing.getValue())
3903                                                         + int(layout.parsep) * DefaultHeight();
3904                                                 if (direction == LYX_DIR_RIGHT_TO_LEFT)
3905                                                         tmpx = paperwidth - LeftMargin(row_ptr) - 
3906                                                                 font.stringWidth(tmpstring);
3907                                                 pain.text(int(tmpx),
3908                                                           offset + row_ptr->baseline - row_ptr->ascent_of_text - maxdesc,
3909                                                           tmpstring, font);
3910                                         }
3911                                 } else {
3912                                         if (direction == LYX_DIR_LEFT_TO_RIGHT)
3913                                                 tmpx = x - font.stringWidth(layout.labelsep)
3914                                                         - font.stringWidth(tmpstring);
3915                                         else {
3916                                                 tmpx = paperwidth - LeftMargin(row_ptr)
3917                                                         + font.stringWidth(layout.labelsep);
3918                                                 if (row_ptr->par->footnoteflag == LyXParagraph::OPEN_FOOTNOTE)  {
3919                                                         LyXFont font(LyXFont::ALL_SANE);
3920                                                         font.setSize(LyXFont::SIZE_SMALL);
3921                                                         tmpx += font.textWidth("Mwide-figM", 10);
3922                                                 }
3923                                         }
3924                                         /* draw it! */
3925                                         pain.text(int(tmpx),
3926                                                   offset + row_ptr->baseline,
3927                                                   tmpstring, font);
3928                                 }
3929                         }
3930                         /* the labels at the top of an environment. More or less for bibliography */ 
3931                 } else if (layout.labeltype == LABEL_TOP_ENVIRONMENT ||
3932                            layout.labeltype == LABEL_BIBLIO ||
3933                            layout.labeltype == LABEL_CENTERED_TOP_ENVIRONMENT) {
3934                         if (row_ptr->par->IsFirstInSequence()) {
3935                                 font = GetFont(row_ptr->par, -2);
3936                                 if (!row_ptr->par->GetLabestring().empty()) {
3937                                         string tmpstring = row_ptr->par->GetLabestring();
3938                                         
3939                                         maxdesc = int(font.maxDescent() * layout.spacing.getValue() * parameters->spacing.getValue()
3940                                                       + (layout.labelbottomsep * DefaultHeight()));
3941                                         
3942                                         tmpx = x;
3943                                         if (layout.labeltype == LABEL_CENTERED_TOP_ENVIRONMENT){
3944                                                 tmpx = ( ((direction == LYX_DIR_LEFT_TO_RIGHT)
3945                                                           ? x : LeftMargin(row_ptr) )
3946                                                          + paperwidth - RightMargin(row_ptr) ) / 2; 
3947                                                 tmpx -= (font.stringWidth(tmpstring)/2);
3948                                         } else if (direction == LYX_DIR_RIGHT_TO_LEFT)
3949                                                 tmpx = paperwidth - LeftMargin(row_ptr) - 
3950                                                         font.stringWidth(tmpstring);
3951                                         pain.text(int(tmpx),
3952                                                   offset + row_ptr->baseline
3953                                                   - row_ptr->ascent_of_text
3954                                                   - maxdesc,
3955                                                   tmpstring, font);
3956                                 }
3957                         }
3958                 }
3959                 if (layout.labeltype == LABEL_BIBLIO && row_ptr->par->bibkey) {
3960                         font = GetFont(row_ptr->par, -1);
3961                         if (direction == LYX_DIR_LEFT_TO_RIGHT)
3962                                 tmpx = x - font.stringWidth(layout.labelsep)
3963                                         - row_ptr->par->bibkey->width(owner_->painter(), font);
3964                         else
3965                                 tmpx = paperwidth - LeftMargin(row_ptr)
3966                                         + font.stringWidth(layout.labelsep);
3967                         row_ptr->par->bibkey->draw(owner_->painter(),
3968                                                    font,
3969                                                    offset + row_ptr->baseline, 
3970                                                    tmpx);
3971                 }
3972         }
3973         
3974         /* is it a last row? */
3975         par = row_ptr->par->LastPhysicalPar();
3976         if (row_ptr->par->ParFromPos(RowLast(row_ptr) + 1) == par
3977             && (!row_ptr->next || row_ptr->next->par != row_ptr->par)) {     
3978                 
3979                 /* think about the margins */ 
3980                 if (!row_ptr->next)
3981                         y_bottom -= LYX_PAPER_MARGIN;
3982                 
3983                 /* draw a bottom pagebreak */ 
3984                 if (firstpar->pagebreak_bottom) {
3985 #if 0
3986                         pain.line(0, offset + y_bottom - 2 * DefaultHeight(),
3987                                   paperwidth,
3988                                   offset + y_bottom - 2 * DefaultHeight(),
3989                                   LColor::pagebreak, Painter::line_onoffdash);
3990 #else
3991                         LyXFont pb_font;
3992                         pb_font.setColor(LColor::pagebreak).decSize();
3993                         int w = 0, a = 0, d = 0;
3994                         pain.line(0,
3995                                   offset + y_bottom - 2 * DefaultHeight(), 
3996                                   paperwidth, 
3997                                   offset + y_bottom - 2 * DefaultHeight(),
3998                                   LColor::pagebreak,
3999                                   Painter::line_onoffdash)
4000                                 .rectText(0,
4001                                           0,
4002                                           _("Page Break (bottom)"),
4003                                           pb_font,
4004                                           LColor::background,
4005                                           LColor::background, false, w, a, d);
4006                         pain.rectText((paperwidth - w)/2,
4007                                       offset +y_top + 2*DefaultHeight() +d,
4008                                       _("Page Break (bottom)"),
4009                                       pb_font,
4010                                       LColor::background,
4011                                       LColor::background);
4012 #endif
4013                         y_bottom -= 3 * DefaultHeight();
4014                 }
4015                 
4016                 if (firstpar->added_space_bottom.kind() == VSpace::VFILL) {
4017                         /* draw a vfill bottom  */
4018                         pain.line(0, offset + y_bottom - 3 * DefaultHeight(),
4019                                   LYX_PAPER_MARGIN,
4020                                   offset + y_bottom - 3 * DefaultHeight(),
4021                                   LColor::vfillline);
4022                         pain.line(0, offset + y_bottom - 2,
4023                                   LYX_PAPER_MARGIN,
4024                                   offset + y_bottom - 2,
4025                                   LColor::vfillline);
4026                         pain.line(LYX_PAPER_MARGIN / 2,
4027                                   offset + y_bottom - 3 * DefaultHeight(),
4028                                   LYX_PAPER_MARGIN / 2,
4029                                   offset + y_bottom - 2,
4030                                   LColor::vfillline);
4031                         y_bottom -= 3* DefaultHeight();
4032                 }
4033                 
4034                 /* think about user added space */ 
4035                 y_bottom -= int(firstpar->added_space_bottom.inPixels(owner_));
4036                 
4037                 if (firstpar->line_bottom) {
4038                         /* draw a bottom line */
4039                         y_bottom -= GetFont(par, par->Last() - 1).ascent('x');
4040                         pain.line(0, offset + y_bottom,
4041                                   paperwidth, offset + y_bottom,
4042                                   LColor::topline, Painter::line_solid,
4043                                   Painter::line_thick);
4044                         y_bottom -= GetFont(par, par->Last() - 1).ascent('x');
4045                 }
4046
4047                 // draw an endlabel
4048                 int endlabel = row_ptr->par->GetEndLabel();
4049                 if (endlabel == END_LABEL_BOX ||
4050                     endlabel == END_LABEL_FILLED_BOX) {
4051                         LyXFont font = GetFont(row_ptr->par, RowLast(row_ptr));
4052                         int size = int(0.75*font.maxAscent());
4053                         int y = (offset + row_ptr->baseline) - size;
4054                         int x = (direction == LYX_DIR_LEFT_TO_RIGHT)
4055                                 ? paperwidth - LYX_PAPER_MARGIN - size
4056                                 : LYX_PAPER_MARGIN;
4057                         if (row_ptr->par->footnoteflag == LyXParagraph::OPEN_FOOTNOTE)
4058                                 if (direction == LYX_DIR_LEFT_TO_RIGHT)
4059                                         x -= LYX_PAPER_MARGIN/2;
4060                                 else {
4061                                         LyXFont font(LyXFont::ALL_SANE);
4062                                         font.setSize(LyXFont::SIZE_SMALL);
4063                                         x += font.textWidth("Mwide-figM", 10);
4064                                 }
4065                         if (row_ptr->fill <= size)
4066                                 x += (size - row_ptr->fill + 1) * direction;
4067                         if (endlabel == END_LABEL_BOX) {
4068                                 pain.line(x, y, x, y + size,
4069                                           LColor::eolmarker);
4070                                 pain.line(x + size, y, x + size , y + size,
4071                                           LColor::eolmarker);
4072                                 pain.line(x, y, x + size, y,
4073                                           LColor::eolmarker);
4074                                 pain.line(x, y + size, x + size, y + size,
4075                                           LColor::eolmarker);
4076                         } else
4077                                 pain.fillRectangle(x, y, size, size,
4078                                                    LColor::eolmarker);
4079                 }
4080         }
4081         
4082         /* draw the text in the pixmap */  
4083         pos_end = RowLast(row_ptr);
4084         
4085         vpos = row_ptr->pos;
4086         /* table stuff -- begin*/
4087         if (row_ptr->par->table) {
4088                 bool on_off;
4089                 int cell = NumberOfCell(row_ptr->par, row_ptr->pos);
4090                 float x_old = x;
4091                 x += row_ptr->par->table->GetBeginningOfTextInCell(cell);
4092                 
4093                 while (vpos <= pos_end)  {
4094                         pos = vis2log(vpos);
4095                         if (row_ptr->par->IsNewline(pos)) {
4096                                 
4097                                 x = x_old + row_ptr->par->table->WidthOfColumn(cell);
4098                                 /* draw the table lines, still very simple */
4099                                 on_off = !row_ptr->par->table->TopLine(cell);
4100                                 if ((!on_off ||
4101                                      !row_ptr->par->table->TopAlreadyDrawed(cell)) &&
4102                                     !row_ptr->par->table->IsContRow(cell))
4103                                         pain.line(int(x_old),
4104                                                   offset + row_ptr->baseline - row_ptr->ascent_of_text,
4105                                                   int(x),
4106                                                   offset + row_ptr->baseline - row_ptr->ascent_of_text,
4107                                                   LColor::tableline,
4108                                                   on_off ? Painter::line_onoffdash : Painter::line_solid);
4109                                 
4110                                 on_off = !row_ptr->par->table->BottomLine(cell);
4111                                 if ((!on_off && !row_ptr->par->table->RowHasContRow(cell)) ||
4112                                     row_ptr->par->table->VeryLastRow(cell))
4113                                         
4114                                         pain.line(int(x_old),
4115                                                   offset + y_bottom - 1,
4116                                                   int(x),
4117                                                   offset + y_bottom - 1,
4118                                                   LColor::tableline,
4119                                                   on_off ? Painter::line_onoffdash : Painter::line_solid);
4120                                 
4121                                 on_off = !row_ptr->par->table->LeftLine(cell);
4122                                 
4123                                 pain.line(int(x_old),
4124                                           offset + row_ptr->baseline - row_ptr->ascent_of_text,
4125                                           int(x_old),
4126                                           offset + y_bottom - 1,
4127                                           LColor::tableline,
4128                                           on_off ? Painter::line_onoffdash : Painter::line_solid);
4129                                 
4130                                 on_off = !row_ptr->par->table->RightLine(cell);
4131                                 
4132                                 pain.line(int(x) - row_ptr->par->table->AdditionalWidth(cell),
4133                                           offset + row_ptr->baseline - row_ptr->ascent_of_text,
4134                                           int(x) - row_ptr->par->table->AdditionalWidth(cell),
4135                                           offset + y_bottom - 1,
4136                                           LColor::tableline,
4137                                           on_off ? Painter::line_onoffdash : Painter::line_solid);
4138                                 
4139                                 x_old = x;
4140                                 /* take care about the alignment and other spaces */
4141                                 ++cell;
4142                                 x += row_ptr->par->table->GetBeginningOfTextInCell(cell);
4143                                 if (row_ptr->par->table->IsFirstCell(cell))
4144                                         --cell; // little hack, sorry
4145                                 ++vpos;
4146                         } else if (row_ptr->par->IsHfill(pos)) {
4147                                 x += 1;
4148                                 
4149                                 pain.line(int(x),
4150                                           offset + row_ptr->baseline - DefaultHeight() / 2,
4151                                           int(x),
4152                                           offset + row_ptr->baseline,
4153                                           LColor::vfillline);
4154                                 
4155                                 x += 2;
4156                                 ++vpos;
4157                         } else if (row_ptr->par->IsSeparator(pos)) {
4158                                 tmpx = x;
4159                                 x+= SingleWidth(row_ptr->par, pos);
4160 #warning Think about this.
4161 #if 0
4162                                 /* -------> Only draw protected spaces when
4163                                  * not in free-spacing mode. */
4164                                 if (row_ptr->par->GetChar(pos) == LyXParagraph::META_PROTECTED_SEPARATOR && !layout.free_spacing) {
4165                                         pain.line(int(tmpx),
4166                                                   offset + row_ptr->baseline - 3,
4167                                                   int(tmpx),
4168                                                   offset + row_ptr->baseline - 1,
4169                                                   LColor::vfillline);
4170                                         
4171                                         pain.line(int(tmpx),
4172                                                   offset + row_ptr->baseline - 1,
4173                                                   int(x - 2),
4174                                                   offset + row_ptr->baseline - 1,
4175                                                   LColor::vfillline);
4176                                         
4177                                         pain.line(int(x - 2),
4178                                                   offset + row_ptr->baseline - 3,
4179                                                   int(x - 2),
4180                                                   offset + row_ptr->baseline - 1,
4181                                                   LColor::vfillline);
4182                                         
4183                                         /* what about underbars? */
4184                                         font = GetFont(row_ptr->par, pos); 
4185                                         if (font.underbar() == LyXFont::ON
4186                                             && font.latex() != LyXFont::ON) {
4187                                                 pain.line(int(tmpx),
4188                                                           offset + row_ptr->baseline + 2,
4189                                                           int(x - tmpx),
4190                                                           offset + row_ptr->baseline + 2);
4191                                         }
4192                                 }
4193 #endif
4194                                 ++vpos;
4195                         } else
4196                                 draw(row_ptr, vpos, offset, x);
4197                 }
4198                 
4199                 /* do not forget the very last cell. This has no NEWLINE so 
4200                  * ignored by the code above*/ 
4201                 if (cell == row_ptr->par->table->GetNumberOfCells()-1){
4202                         x = x_old + row_ptr->par->table->WidthOfColumn(cell);
4203                         on_off = !row_ptr->par->table->TopLine(cell);
4204                         if ((!on_off ||
4205                              !row_ptr->par->table->TopAlreadyDrawed(cell)) &&
4206                             !row_ptr->par->table->IsContRow(cell))
4207                                 
4208                                 pain.line(int(x_old),
4209                                           offset + row_ptr->baseline - row_ptr->ascent_of_text,
4210                                           int(x),
4211                                           offset + row_ptr->baseline - row_ptr->ascent_of_text,
4212                                           LColor::tableline,
4213                                           on_off ? Painter::line_onoffdash : Painter::line_solid);
4214                         on_off = !row_ptr->par->table->BottomLine(cell);
4215                         if ((!on_off && !row_ptr->par->table->RowHasContRow(cell)) ||
4216                             row_ptr->par->table->VeryLastRow(cell))
4217                                 
4218                                 pain.line(int(x_old),
4219                                           offset + y_bottom - 1,
4220                                           int(x),
4221                                           offset + y_bottom - 1,
4222                                           LColor::tableline,
4223                                           on_off ? Painter::line_onoffdash : Painter::line_solid);
4224                         
4225                         on_off = !row_ptr->par->table->LeftLine(cell);
4226                         
4227                         pain.line(int(x_old),
4228                                   offset + row_ptr->baseline - row_ptr->ascent_of_text,
4229                                   int(x_old),
4230                                   offset + y_bottom - 1,
4231                                   LColor::tableline,
4232                                   on_off ? Painter::line_onoffdash : Painter::line_solid);
4233                         
4234                         on_off = !row_ptr->par->table->RightLine(cell);
4235                         
4236                         pain.line(int(x) - row_ptr->par->table->AdditionalWidth(cell),
4237                                   offset + row_ptr->baseline - row_ptr->ascent_of_text,
4238                                   int(x) - row_ptr->par->table->AdditionalWidth(cell),
4239                                   offset + y_bottom - 1,
4240                                   LColor::tableline,
4241                                   on_off ? Painter::line_onoffdash : Painter::line_solid);
4242                 }
4243         } else {
4244                 /* table stuff -- end*/
4245                 LyXParagraph::size_type main_body = 
4246                         BeginningOfMainBody(row_ptr->par);
4247                 if (main_body > 0 &&
4248                     (main_body-1 > pos_end || 
4249                      !row_ptr->par->IsLineSeparator(main_body-1)))
4250                         main_body = 0;
4251                 
4252                 while (vpos <= pos_end)  {
4253                         pos = vis2log(vpos);
4254                         if (main_body > 0 && pos == main_body-1) {
4255                                 x += fill_label_hfill
4256                                         + GetFont(row_ptr->par, -2).stringWidth(layout.labelsep)
4257                                         - SingleWidth(row_ptr->par, main_body-1);
4258                         }
4259                         
4260                         if (row_ptr->par->IsHfill(pos)) {
4261                                 x += 1;
4262                                 pain.line(int(x),
4263                                           offset + row_ptr->baseline - DefaultHeight() / 2,
4264                                           int(x),
4265                                           offset + row_ptr->baseline,
4266                                           LColor::vfillline);
4267                                 
4268                                 if (HfillExpansion(row_ptr, pos)) {
4269                                         if (pos >= main_body) {
4270                                                 pain.line(int(x),
4271                                                           offset + row_ptr->baseline - DefaultHeight() / 4,
4272                                                           int(x + fill_hfill),
4273                                                           offset + row_ptr->baseline - DefaultHeight() / 4,
4274                                                           LColor::vfillline,
4275                                                           Painter::line_onoffdash);
4276                                                 x += fill_hfill;
4277                                         } else {
4278                                                 pain.line(int(x),
4279                                                           offset + row_ptr->baseline - DefaultHeight() / 4,
4280                                                           int(x + fill_label_hfill),
4281                                                           offset + row_ptr->baseline - DefaultHeight() / 4,
4282                                                           LColor::vfillline,
4283                                                           Painter::line_onoffdash);
4284                                                 
4285                                                 x += fill_label_hfill;
4286                                         }
4287                                         pain.line(int(x),
4288                                                   offset + row_ptr->baseline - DefaultHeight() / 2,
4289                                                   int(x),
4290                                                   offset + row_ptr->baseline,
4291                                                   LColor::vfillline);
4292                                 }
4293                                 x += 2;
4294                                 ++vpos;
4295                         } else if (row_ptr->par->IsSeparator(pos)) {
4296                                 tmpx = x;
4297                                 x+= SingleWidth(row_ptr->par, pos);
4298                                 if (pos >= main_body)
4299                                         x+= fill_separator;
4300 #warning Think about this
4301 #if 0
4302                                 /* -------> Only draw protected spaces when
4303                                  * not in free-spacing mode. */
4304                                 if (row_ptr->par->GetChar(pos) == LyXParagraph::META_PROTECTED_SEPARATOR && !layout.free_spacing) {
4305                                         
4306                                         pain.line(int(tmpx),
4307                                                   offset + row_ptr->baseline - 3,
4308                                                   int(tmpx),
4309                                                   offset + row_ptr->baseline - 1,
4310                                                   LColor::vfillline);
4311                                         
4312                                         pain.line(int(tmpx),
4313                                                   offset + row_ptr->baseline - 1,
4314                                                   int(x - 2),
4315                                                   offset + row_ptr->baseline - 1,
4316                                                   LColor::vfillline);
4317                                         
4318                                         pain.line(int(x - 2),
4319                                                   offset + row_ptr->baseline - 3,
4320                                                   int(x - 2),
4321                                                   offset + row_ptr->baseline - 1,
4322                                                   LColor::vfillline);
4323                                         
4324                                         /* what about underbars? */
4325                                         font = GetFont(row_ptr->par, pos); 
4326                                         if (font.underbar() == LyXFont::ON
4327                                             && font.latex() != LyXFont::ON) {
4328                                                 pain.line(int(tmpx),
4329                                                           offset + row_ptr->baseline + 2,
4330                                                           int(x - tmpx),
4331                                                           offset + row_ptr->baseline + 2);
4332                                         }
4333                                 }
4334 #endif
4335                                 ++vpos;
4336                         } else
4337                                 draw(row_ptr, vpos, offset, x);
4338                 }
4339         }
4340 }
4341
4342
4343 int LyXText::DefaultHeight() const
4344 {
4345         LyXFont font(LyXFont::ALL_SANE);
4346         return int(font.maxAscent() + font.maxDescent() * 1.5);
4347 }
4348
4349    
4350 /* returns the column near the specified x-coordinate of the row 
4351 * x is set to the real beginning of this column  */ 
4352 int LyXText::GetColumnNearX(Row * row, int & x) const
4353 {
4354         float tmpx = 0.0;
4355         float fill_separator, fill_hfill, fill_label_hfill;
4356    
4357         PrepareToPrint(row, tmpx, fill_separator,
4358                        fill_hfill, fill_label_hfill);
4359
4360         LyXDirection direction = row->par->getParDirection();
4361         LyXParagraph::size_type vc = row->pos;
4362         LyXParagraph::size_type last = RowLast(row);
4363         LyXParagraph::size_type c = 0;
4364
4365         LyXLayout const & layout = textclasslist.Style(parameters->textclass,
4366                                                        row->par->GetLayout());
4367         /* table stuff -- begin */
4368         if (row->par->table) {
4369                 if (row->next && row->next->par == row->par //the last row doesn't need a newline at the end
4370                     && row->par->IsNewline(last))
4371                         last--;
4372                 int cell = NumberOfCell(row->par, row->pos);
4373                 float x_old = tmpx;
4374                 bool ready = false;
4375                 tmpx += row->par->table->GetBeginningOfTextInCell(cell);
4376                 while (vc <= last
4377                        && (c = vis2log(vc)) >= 0
4378                        && tmpx + (SingleWidth(row->par, c)/2) <= x
4379                        && !ready){
4380                         if (row->par->IsNewline(c)) {
4381                                 if (x_old + row->par->table->WidthOfColumn(cell) <= x){
4382                                         tmpx = x_old + row->par->table->WidthOfColumn(cell);
4383                                         x_old = tmpx;
4384                                         ++cell;
4385                                         tmpx += row->par->table->GetBeginningOfTextInCell(cell);
4386                                         ++vc;
4387                                 } else
4388                                         ready = true;
4389                         } else {
4390                                 tmpx += SingleWidth(row->par, c);
4391                                 ++vc;
4392                         }
4393                 }
4394         } else {
4395                 /* table stuff -- end*/
4396                 LyXParagraph::size_type main_body = BeginningOfMainBody(row->par);
4397                 float last_tmpx = tmpx;
4398
4399                 if (main_body > 0 &&
4400                     (main_body-1 > last || 
4401                      !row->par->IsLineSeparator(main_body-1)))
4402                         main_body = 0;
4403
4404                 while (vc <= last && tmpx <= x) {
4405                         c = vis2log(vc);
4406                         last_tmpx = tmpx;
4407                         if (main_body > 0 && c == main_body-1) {
4408                                 tmpx += fill_label_hfill +
4409                                         GetFont(row->par, -2).stringWidth(layout.labelsep);
4410                                 if (row->par->IsLineSeparator(main_body-1))
4411                                         tmpx -= SingleWidth(row->par, main_body-1);
4412                         }
4413              
4414                         tmpx += SingleWidth(row->par, c);
4415                         if (HfillExpansion(row, c)) {
4416                                 if (c >= main_body)
4417                                         tmpx += fill_hfill;
4418                                 else
4419                                         tmpx += fill_label_hfill;
4420                         }
4421                         else if (c >= main_body
4422                                  && row->par->IsSeparator(c)) {
4423                                 tmpx+= fill_separator;  
4424                         }
4425                         ++vc;
4426                 }
4427
4428                 if (vc > row->pos && (tmpx+last_tmpx)/2 > x) {
4429                         vc--;
4430                         tmpx = last_tmpx;
4431                 }
4432         }
4433         /* make sure that a last space in a row doesnt count */
4434         if (row->pos <= last
4435             && !(!row->next || row->next->par != row->par))
4436                 if (direction == LYX_DIR_LEFT_TO_RIGHT && vc > last
4437                     && row->par->IsLineSeparator(vis2log(last)) ) {
4438                         vc = last;
4439                         tmpx -= fill_separator+SingleWidth(row->par, vis2log(last));
4440                 } else if (direction == LYX_DIR_RIGHT_TO_LEFT 
4441                            && vc == row->pos
4442                            && row->par->IsLineSeparator(vis2log(row->pos)) ) {
4443                         vc = row->pos+1;
4444                         tmpx += fill_separator+SingleWidth(row->par, vis2log(row->pos));
4445                 }
4446
4447         if (row->pos > last)  // Row is empty?
4448                 c = row->pos;
4449         else if (vc <= last) {
4450                 c = vis2log(vc);
4451                 LyXDirection direction = row->par->getLetterDirection(c);
4452                 if (vc > row->pos && row->par->IsLineSeparator(c)
4453                     && row->par->getLetterDirection(vis2log(vc - 1)) != direction)
4454                         c = vis2log(vc-1);
4455                 if (direction == LYX_DIR_RIGHT_TO_LEFT)
4456                         ++c;
4457         } else {
4458                 c = vis2log(last)+1;
4459                 if (row->par->getLetterDirection(c - 1) == LYX_DIR_RIGHT_TO_LEFT)
4460                         --c;            
4461         }
4462
4463         if (!row->par->table && row->pos <= last && c > last
4464             && row->par->IsNewline(last)) {
4465                 if (row->par->getLetterDirection(last) == LYX_DIR_LEFT_TO_RIGHT)
4466                         tmpx -= SingleWidth(row->par, last);
4467                 else
4468                         tmpx += SingleWidth(row->par, last);
4469                 c = last;
4470         }
4471
4472         c -= row->pos;
4473         x = int(tmpx);
4474         return c;
4475 }
4476
4477    
4478 /* turn the selection into a new environment. If there is no selection,
4479 * create an empty environment */ 
4480 void LyXText::InsertFootnoteEnvironment(LyXParagraph::footnote_kind kind)
4481 {
4482    /* no footnoteenvironment in a footnoteenvironment */ 
4483    if (cursor.par->footnoteflag != LyXParagraph::NO_FOOTNOTE) {
4484       WriteAlert(_("Impossible operation"), 
4485                  _("You can't insert a float in a float!"), 
4486                  _("Sorry."));
4487      return;
4488    }
4489    /* no marginpars in minipages */
4490    if (kind == LyXParagraph::MARGIN 
4491       && cursor.par->pextra_type == LyXParagraph::PEXTRA_MINIPAGE) {
4492       WriteAlert(_("Impossible operation"), 
4493                  _("You can't insert a marginpar in a minipage!"), 
4494                  _("Sorry."));
4495       return;
4496    }
4497    
4498    /* this doesnt make sense, if there is no selection */ 
4499    bool dummy_selection = false;
4500    if (!selection) {
4501       sel_start_cursor = cursor;       /* dummy selection  */
4502       sel_end_cursor = cursor;
4503       dummy_selection = true;
4504    }
4505    
4506    LyXParagraph *tmppar;
4507
4508    if (sel_start_cursor.par->table || sel_end_cursor.par->table){
4509       WriteAlert(_("Impossible operation"), _("Cannot cut table."), _("Sorry."));
4510       return;
4511    }
4512      
4513    /* a test to make sure there is not already a footnote
4514     * in the selection. */
4515    
4516    tmppar = sel_start_cursor.par->ParFromPos(sel_start_cursor.pos);
4517    
4518    while (tmppar != sel_end_cursor.par->ParFromPos(sel_end_cursor.pos) && 
4519           tmppar->footnoteflag == LyXParagraph::NO_FOOTNOTE)
4520      tmppar = tmppar->next;
4521    
4522    if (tmppar != sel_end_cursor.par->ParFromPos(sel_end_cursor.pos)
4523        || tmppar->footnoteflag != LyXParagraph::NO_FOOTNOTE) {
4524       WriteAlert(_("Impossible operation"), 
4525                  _("Float would include float!"), 
4526                  _("Sorry."));
4527       return;
4528    }
4529    
4530    /* ok we have a selection. This is always between sel_start_cursor
4531     * and sel_end cursor */
4532
4533    SetUndo(Undo::FINISH, 
4534            sel_start_cursor.par->ParFromPos(sel_start_cursor.pos)->previous, 
4535            sel_end_cursor.par->ParFromPos(sel_end_cursor.pos)->next); 
4536    
4537    if (sel_end_cursor.pos > 0 
4538        && sel_end_cursor.par->IsLineSeparator(sel_end_cursor.pos - 1))
4539      sel_end_cursor.pos--;             /* please break before a space at
4540                                         * the end */
4541    if (sel_start_cursor.par == sel_end_cursor.par
4542        && sel_start_cursor.pos > sel_end_cursor.pos)
4543      sel_start_cursor.pos--;
4544
4545    sel_end_cursor.par->BreakParagraphConservative(sel_end_cursor.pos);
4546    
4547    sel_end_cursor.par = sel_end_cursor.par->Next();
4548    sel_end_cursor.pos = 0;
4549    
4550    // don't forget to insert a dummy layout paragraph if necessary
4551    if (sel_start_cursor.par->GetLayout() != sel_end_cursor.par->layout){
4552      sel_end_cursor.par->BreakParagraphConservative(0);
4553      sel_end_cursor.par->layout = LYX_DUMMY_LAYOUT;
4554      sel_end_cursor.par = sel_end_cursor.par->next;
4555    }
4556    else
4557      sel_end_cursor.par->layout = LYX_DUMMY_LAYOUT;
4558
4559    cursor = sel_end_cursor;
4560
4561    /* please break behind a space, if there is one. The space should
4562     * be erased too */ 
4563    if (sel_start_cursor.pos > 0 
4564        && sel_start_cursor.par->IsLineSeparator(sel_start_cursor.pos - 1))
4565      sel_start_cursor.pos--;
4566    if (sel_start_cursor.par->IsLineSeparator(sel_start_cursor.pos)) {
4567       sel_start_cursor.par->Erase(sel_start_cursor.pos);
4568    }
4569    
4570    sel_start_cursor.par->BreakParagraphConservative(sel_start_cursor.pos);
4571    tmppar = sel_start_cursor.par->Next();
4572    
4573    if (dummy_selection) {
4574            tmppar->Clear();
4575            if (kind == LyXParagraph::TAB
4576                || kind == LyXParagraph::FIG 
4577                || kind == LyXParagraph::WIDE_TAB
4578                || kind == LyXParagraph::WIDE_FIG 
4579                || kind == LyXParagraph::ALGORITHM) {
4580                    pair<bool, LyXTextClass::size_type> lres =
4581                            textclasslist.NumberOfLayout(parameters->textclass,
4582                                                         "Caption");
4583                    LyXTextClass::size_type lay;
4584                    if (lres.first) {
4585                            // layout fount
4586                            lay = lres.second;
4587                    } else {
4588                            // layout not found
4589                            lay = 0; // use default layout "Standard" (0)
4590                    }
4591                    tmppar->SetLayout(lay);
4592            }
4593    }
4594    else {
4595      if (sel_start_cursor.pos > 0) {
4596        /* the footnote-environment should begin with a standard layout.
4597         * Imagine you insert a footnote within an enumeration, you 
4598         * certainly do not want an enumerated footnote! */ 
4599        tmppar->Clear();
4600      }
4601      else {
4602        /* this is a exception the user would sometimes expect, I hope */
4603        sel_start_cursor.par->Clear();
4604      }
4605    }
4606    
4607    while (tmppar != sel_end_cursor.par) {
4608       tmppar->footnoteflag = LyXParagraph::OPEN_FOOTNOTE;
4609       tmppar->footnotekind = kind;
4610       tmppar = tmppar->Next();
4611    } 
4612
4613    RedoParagraphs(sel_start_cursor, sel_end_cursor.par->Next());
4614    
4615    SetCursor(sel_start_cursor.par->Next(), 0);
4616
4617    ClearSelection();
4618 }
4619    
4620
4621 // returns pointer to a specified row
4622 Row * LyXText::GetRow(LyXParagraph * par,
4623                       LyXParagraph::size_type pos, long & y) const
4624 {
4625         Row * tmprow;
4626
4627         if (currentrow) {
4628                 if (par == currentrow->par
4629                     || par == currentrow->par->Previous()) {
4630                         // do not dereference par, it may have been deleted
4631                         // already! (Matthias)
4632
4633                         // Walk backwards as long as the previous
4634                         // rows par is not par
4635                         while (currentrow->previous
4636                                && currentrow->previous->par != par) {
4637                                 currentrow = currentrow->previous;
4638                                 currentrow_y -= currentrow->height;
4639                         }
4640                         // Walk backwards as long as the previous
4641                         // rows par _is_ par
4642                         while (currentrow->previous
4643                                && currentrow->previous->par == par) {
4644                                 currentrow = currentrow->previous;
4645                                 currentrow_y -= currentrow->height;
4646                         }
4647                 }
4648
4649                 tmprow = currentrow;
4650                 y = currentrow_y;
4651                 // find the first row of the specified paragraph
4652                 while (tmprow->next
4653                        && tmprow->par != par) {
4654                         y += tmprow->height;
4655                         tmprow = tmprow->next;
4656                 }
4657                 
4658                 if (tmprow->par == par){
4659                         // now find the wanted row
4660                         while (tmprow->pos < pos
4661                                && tmprow->next
4662                                && tmprow->next->par == par
4663                                && tmprow->next->pos <= pos) {
4664                                 y += tmprow->height;
4665                                 tmprow = tmprow->next;
4666                         }
4667                         currentrow = tmprow;
4668                         currentrow_y = y;
4669                         return tmprow;
4670                 }
4671         }
4672
4673         tmprow = firstrow;
4674         y = 0;
4675         // find the first row of the specified paragraph
4676         while (tmprow->next && tmprow->par != par) {
4677                 y += tmprow->height;
4678                 tmprow = tmprow->next;
4679         }
4680         
4681         // now find the wanted row
4682         while (tmprow->pos < pos
4683                && tmprow->next
4684                && tmprow->next->par == par
4685                && tmprow->next->pos <= pos) {
4686                 y += tmprow->height;
4687                 tmprow = tmprow->next;
4688         }
4689         
4690         currentrow = tmprow;
4691         currentrow_y = y;
4692         
4693         return tmprow;
4694 }