home *** CD-ROM | disk | FTP | other *** search
/ Dream 52 / Amiga_Dream_52.iso / Linux / Divers / lyx-0.13.2.tar.gz / lyx-0.13.2.tar / lyx-0.13.2 / src / text2.C < prev    next >
C/C++ Source or Header  |  1998-04-23  |  99KB  |  3,487 lines

  1. /* This file is part of
  2. * ======================================================
  3. *           LyX, The Document Processor
  4. *      
  5. *        Copyright (C) 1995 Matthias Ettrich
  6. *           Copyright (C) 1995-1998 The LyX Team.
  7. *
  8. *======================================================*/
  9.  
  10. #include <config.h>
  11.  
  12. #include <ctype.h>
  13. #include FORMS_H_LOCATION
  14.  
  15. #ifdef __GNUG__
  16. #pragma implementation "lyxtext.h"
  17. #pragma implementation "undo.h"
  18. #endif
  19.  
  20. #include "LString.h"
  21. #include "lyxparagraph.h"
  22. #include "inseterror.h"
  23. #include "layout.h"
  24. #include "LyXView.h"
  25. #include "textutils.h"
  26. #include "lyx_cb.h"
  27. #include "undo.h"
  28. #include "minibuffer.h"
  29. #include "buffer.h"
  30. #include "bufferparams.h"
  31. #include "lyx_gui_misc.h"
  32. #include "lyxtext.h"
  33. #include "gettext.h"
  34.  
  35. //     $Id: text2.C,v 1.1.1.1 1998/04/23 16:02:58 larsbj Exp $    
  36.  
  37. #if !defined(lint) && !defined(WITH_WARNINGS)
  38. static char vcid[] = "$Id: text2.C,v 1.1.1.1 1998/04/23 16:02:58 larsbj Exp $";
  39. #endif /* lint */
  40.  
  41. extern MiniBuffer *minibuffer;
  42.  
  43. // Constructor
  44. LyXText::LyXText(int pw, Buffer *p)
  45. {
  46.     firstrow = NULL;
  47.     lastrow = NULL;
  48.     currentrow = NULL;
  49.     currentrow_y = 0;
  50.     paperwidth = pw;
  51.     parameters = &p->params;
  52.     params = p;
  53.     number_of_rows = 0;
  54.     refresh_y= 0;
  55.     status = LyXText::UNCHANGED;
  56.     LyXParagraph *par = p->paragraph;
  57.     current_font = GetFont(par, 0);
  58.    
  59.     height = 0;
  60.    
  61.     while (par) {
  62.         InsertParagraph(par, lastrow);
  63.         par = par->Next();
  64.     }
  65.     /* set cursor at the very top position */
  66.     selection = true;               /* these setting is necessary 
  67.                         * because of the delete-empty-
  68.                         * paragraph mechanism in
  69.                         * SetCursor */
  70.     SetCursor(firstrow->par, 0);
  71.     sel_cursor = cursor;
  72.     selection = false;
  73.     mark_set = false;
  74.    
  75.     /* no rebreak necessary */ 
  76.     need_break_row = NULL;
  77.    
  78.     undo_finished = true;
  79.     undo_frozen = false;
  80.  
  81.     // Default layouttype for copy environment type
  82.     copylayouttype = 0;
  83. }
  84.  
  85.  
  86. // Destructor
  87. LyXText::~LyXText()
  88. {
  89.     // Delete all rows, this does not touch the paragraphs!
  90.     Row *tmprow = firstrow;
  91.     while (firstrow) {
  92.         tmprow = firstrow->next;
  93.         delete firstrow;
  94.         firstrow = tmprow;
  95.     }
  96. }
  97.  
  98.  
  99. // Gets the fully instantiated font at a given position in a paragraph
  100. // Basically the same routine as LyXParagraph::getFont() in paragraph.C.
  101. // The difference is that this one is used for displaying, and thus we
  102. // are allowed to make cosmetic improvements. For instance make footnotes
  103. // smaller. (Asger)
  104. // If position is -1, we get the layout font of the paragraph.
  105. // If position is -2, we get the font of the manual label of the paragraph.
  106. LyXFont LyXText::GetFont(LyXParagraph* par, int pos)
  107. {
  108.     LyXLayout *layout = 
  109.         lyxstyle.Style(parameters->textclass, par->GetLayout());
  110.  
  111.     char par_depth = par->GetDepth();
  112.     // We specialize the 95% common case:
  113.     if (par->footnoteflag == LyXParagraph::NO_FOOTNOTE && !par_depth) {
  114.         if (pos >= 0){
  115.             // 95% goes here
  116.             if (layout->labeltype == LABEL_MANUAL
  117.                 && pos < BeginningOfMainBody(par)) {
  118.                 // 1% goes here
  119.                 return par->GetFontSettings(pos).
  120.                         realize(layout->reslabelfont);
  121.             } else
  122.                 return par->GetFontSettings(pos).
  123.                         realize(layout->resfont);
  124.         } else {
  125.             // 5% goes here.
  126.             // process layoutfont for pos == -1 and labelfont for pos < -1
  127.             if (pos == -1)
  128.                 return layout->resfont;
  129.             else
  130.                 return layout->reslabelfont;
  131.         }
  132.     }
  133.  
  134.     // The uncommon case need not be optimized as much
  135.  
  136.     LyXFont layoutfont, tmpfont;
  137.  
  138.     if (pos >= 0){
  139.         // 95% goes here
  140.         if (pos < BeginningOfMainBody(par)) {
  141.             // 1% goes here
  142.             layoutfont = layout->labelfont;
  143.         } else {
  144.             // 99% goes here
  145.             layoutfont = layout->font;
  146.         }
  147.         tmpfont = par->GetFontSettings(pos);
  148.         tmpfont.realize(layoutfont);
  149.     } else{
  150.         // 5% goes here.
  151.         // process layoutfont for pos == -1 and labelfont for pos < -1
  152.         if (pos == -1)
  153.             tmpfont = layout->font;
  154.         else
  155.             tmpfont = layout->labelfont;
  156.     }
  157.  
  158.     // Resolve against environment font information
  159.     //if (par->GetDepth()){ // already in while condition
  160.         while (par && par_depth && !tmpfont.resolved()) {
  161.             par = par->DepthHook(par_depth - 1);
  162.             if (par) {
  163.                 tmpfont.realize(lyxstyle.
  164.                         Style(parameters->textclass,
  165.                               par->GetLayout())->font);
  166.                 par_depth = par->GetDepth();
  167.             }
  168.         }
  169.     //}
  170.  
  171.     tmpfont.realize(lyxstyle.TextClass(parameters->textclass)->defaultfont);
  172.  
  173.     // Cosmetic improvement: If this is an open footnote, make the font 
  174.     // smaller.
  175.     if (par->footnoteflag == LyXParagraph::OPEN_FOOTNOTE
  176.         && par->footnotekind == LyXParagraph::FOOTNOTE) {
  177.         tmpfont.decSize();
  178.     }
  179.  
  180.     return tmpfont;
  181. }
  182.  
  183.  
  184. void LyXText::SetCharFont(LyXParagraph *par, int pos, LyXFont font)
  185. {
  186.     /* let the insets convert their font */ 
  187.     if (par->GetChar(pos) == LYX_META_INSET) {
  188.         if (par->GetInset(pos))
  189.             font = par->GetInset(pos)->ConvertFont(font);
  190.     }
  191.  
  192.     LyXLayout *layout = lyxstyle.Style(parameters->textclass,
  193.                        par->GetLayout());
  194.  
  195.     // Get concrete layout font to reduce against
  196.     LyXFont layoutfont;
  197.  
  198.     if (pos < BeginningOfMainBody(par))
  199.         layoutfont = layout->labelfont;
  200.     else
  201.         layoutfont = layout->font;
  202.  
  203.     // Realize against environment font information
  204.     if (par->GetDepth()){
  205.         LyXParagraph * tp = par;
  206.         while (!layoutfont.resolved() && tp && tp->GetDepth()) {
  207.             tp = tp->DepthHook(tp->GetDepth()-1);
  208.             if (tp)
  209.                 layoutfont.realize(lyxstyle.
  210.                         Style(parameters->textclass,
  211.                               tp->GetLayout())->font);
  212.         }
  213.     }
  214.  
  215.     layoutfont.realize(lyxstyle.TextClass(parameters->textclass)->defaultfont);
  216.  
  217.     if (par->footnoteflag == LyXParagraph::OPEN_FOOTNOTE
  218.         && par->footnotekind == LyXParagraph::FOOTNOTE) {
  219.         layoutfont.decSize();
  220.     }
  221.  
  222.     // Now, reduce font against full layout font
  223.     font.reduce(layoutfont);
  224.  
  225.     par->SetFont(pos, font);
  226. }
  227.  
  228.  
  229. /* inserts a new row behind the specified row, increments
  230.  * the touched counters */
  231. void LyXText::InsertRow(Row *row, LyXParagraph *par, int pos)
  232. {
  233.     Row *tmprow = new Row;
  234.     if (!row) {
  235.         tmprow->previous = NULL;
  236.         tmprow->next = firstrow;
  237.         firstrow = tmprow;
  238.     }
  239.     else {
  240.         tmprow->previous = row;
  241.         tmprow->next = row->next;
  242.         row->next = tmprow;
  243.     }
  244.    
  245.     if (tmprow->next)
  246.         tmprow->next->previous = tmprow;
  247.    
  248.     if (tmprow->previous)
  249.         tmprow->previous->next = tmprow;
  250.    
  251.    
  252.     tmprow->par = par;
  253.     tmprow->pos = pos;
  254.    
  255.     if (row == lastrow)
  256.         lastrow = tmprow;
  257.     number_of_rows++;                   /* one more row  */
  258. }
  259.  
  260.  
  261. /* removes the row and reset the touched counters */
  262. void LyXText::RemoveRow(Row *row)
  263. {
  264.     /* this must not happen before the currentrow for clear reasons.
  265.        so the trick is just to set the current row onto the previous
  266.        row of this row */
  267.     long unused_y;
  268.     GetRow(row->par, row->pos, unused_y);
  269.     currentrow = currentrow->previous;
  270.     if (currentrow)
  271.         currentrow_y -= currentrow->height;
  272.     else
  273.         currentrow_y = 0;
  274.    
  275.     if (row->next)
  276.         row->next->previous = row->previous;
  277.     if (!row->previous) {
  278.         firstrow = row->next;
  279.     }
  280.     else  {
  281.         row->previous->next = row->next;
  282.     }
  283.     if (row == lastrow)
  284.         lastrow = row->previous;
  285.    
  286.     height -= row->height;           /* the text becomes smaller  */
  287.    
  288.     delete row;
  289.     number_of_rows--;                   /* one row less  */
  290. }
  291.  
  292. /* remove all following rows of the paragraph of the specified row. */
  293. void LyXText::RemoveParagraph(Row *row)
  294. {
  295.     LyXParagraph *tmppar;
  296.     Row *tmprow;
  297.  
  298.     tmppar = row->par;
  299.     row = row->next;
  300.     
  301.     while (row && row->par == tmppar) {
  302.         tmprow = row->next;
  303.         RemoveRow(row);
  304.         row = tmprow;
  305.     }
  306. }
  307.    
  308.   
  309. /* insert the specified paragraph behind the specified row */
  310. void LyXText::InsertParagraph(LyXParagraph *par, Row *row)
  311. {
  312.     InsertRow(row, par, 0);           /* insert a new row, starting 
  313.                     * at postition 0 */
  314.  
  315.     SetCounter(par);               /* set the counters  */
  316.    
  317.     /* and now append the whole paragraph behind the new row */
  318.     if (!row) {
  319.         firstrow->height = 0;
  320.         AppendParagraph(firstrow);
  321.     }
  322.     else {
  323.         row->next->height = 0;
  324.         AppendParagraph(row->next);
  325.     }
  326. }
  327.     
  328.  
  329. void LyXText::ToggleFootnote()
  330. {
  331.     LyXParagraph *par;
  332.    
  333.     par = cursor.par->ParFromPos(cursor.pos);
  334.     if (par->next && par->next->footnoteflag == LyXParagraph::CLOSED_FOOTNOTE){
  335.         OpenFootnote();
  336.         minibuffer->Set(_("Opened float"));
  337.     }
  338.     else {
  339.         minibuffer->Set(_("Closed float"));
  340.         CloseFootnote();
  341.     }
  342. }
  343.  
  344.  
  345. void LyXText::OpenStuff()
  346. {
  347.     if (cursor.pos < cursor.par->Last() 
  348.         && cursor.par->GetChar(cursor.pos) == LYX_META_INSET
  349.         && cursor.par->GetInset(cursor.pos)->Editable()) {
  350.         minibuffer->Set(cursor.par->GetInset(cursor.pos)->EditMessage());
  351.         if (cursor.par->GetInset(cursor.pos)->Editable() != 2)
  352.             SetCursorParUndo();
  353.         cursor.par->GetInset(cursor.pos)->Edit(0,0);
  354.     }
  355.     else {
  356.         ToggleFootnote();
  357.     }
  358. }
  359.  
  360.  
  361. void LyXText::CloseFootnote()
  362. {
  363.     LyXParagraph *par, *endpar,*tmppar;
  364.     Row *row;
  365.    
  366.     par = cursor.par->ParFromPos(cursor.pos);
  367.    
  368.     /* if the cursor is not in an open footnote, or 
  369.      * there is no open footnote in this paragraph, just return. */ 
  370.     if (cursor.par->footnoteflag != LyXParagraph::OPEN_FOOTNOTE) {
  371.       
  372.         if (!par->next
  373.             || par->next->footnoteflag != LyXParagraph::OPEN_FOOTNOTE) {
  374.             minibuffer->Set(_("Nothing to do"));
  375.             return;
  376.         }
  377.    
  378.         /* ok, move the cursor right before the footnote */ 
  379.  
  380.         /* just a little faster than using CursorRight() */
  381.         for (cursor.pos=0; cursor.par->ParFromPos(cursor.pos)!=par; cursor.pos++);
  382.         /* now the cursor is at the beginning of the physical par */
  383.         SetCursor(cursor.par, cursor.pos + cursor.par->ParFromPos(cursor.pos)->last);
  384.     }
  385.     else  {
  386.         /* we are in a footnote, so let us move at the beginning */ 
  387.         /*      while (cursor.par->footnoteflag == LyXParagraph::OPEN_FOOTNOTE)
  388.             cursor.par = cursor.par->Previous();
  389.            
  390.             SetCursor(cursor.par, cursor.par->Last()); */
  391.         /* this is just faster than using just CursorLeft() */ 
  392.        
  393.         tmppar = cursor.par;
  394.         while (tmppar->footnoteflag == LyXParagraph::OPEN_FOOTNOTE) {
  395.             /* just a little bit faster than movin the cursor */
  396.             tmppar = tmppar->Previous();
  397.         }
  398.         SetCursor(tmppar, tmppar->Last());
  399.     }
  400.    
  401.     /* the cursor must be exactly before the footnote */ 
  402.     par = cursor.par->ParFromPos(cursor.pos);
  403.    
  404.     status = LyXText::NEED_MORE_REFRESH;
  405.     refresh_row = cursor.row;
  406.     refresh_y = cursor.y - cursor.row->baseline;
  407.    
  408.     tmppar = cursor.par;
  409.     endpar = par->NextAfterFootnote()->Next();
  410.     row = cursor.row;
  411.    
  412.     tmppar->CloseFootnote(cursor.pos);
  413.  
  414.     /* set the dimensions of the cursor row */
  415.     /* row->fill = Fill(row, paperwidth);
  416.        SetHeightOfRow(row);  */ 
  417.    
  418.     while (tmppar != endpar) {
  419.         RemoveRow(row->next);
  420.         if (row->next)
  421.             tmppar = row->next->par;
  422.         else
  423.             tmppar = NULL;
  424.     }
  425.    
  426.     AppendParagraph(cursor.row);
  427.    
  428.     SetCursor(cursor.par, cursor.pos);
  429.     sel_cursor = cursor;
  430.    
  431.     /* just necessary */
  432.     if (cursor.row->next)
  433.         SetHeightOfRow(cursor.row->next);
  434. }
  435.  
  436.  
  437. /* used in setlayout */
  438. // Asger is not sure we want to do this...
  439. void LyXText::MakeFontEntriesLayoutSpecific(LyXParagraph *par)
  440. {
  441.     LyXFont layoutfont, tmpfont;
  442.    
  443.     int pos;
  444.    
  445.     LyXLayout* layout = lyxstyle.Style(parameters->textclass, par->GetLayout());
  446.    
  447.     for (pos = 0; pos < par->Last(); pos++) {
  448.         if (pos < BeginningOfMainBody(par))
  449.             layoutfont = layout->labelfont;
  450.         else
  451.             layoutfont = layout->font;
  452.       
  453.         tmpfont = par->GetFontSettings(pos);
  454.         tmpfont.reduce(layoutfont);
  455.         par->SetFont(pos, tmpfont);
  456.     }
  457. }
  458.  
  459.  
  460. /* set layout over selection and make a total rebreak of those paragraphs */
  461. void  LyXText::SetLayout(char layout)
  462. {
  463.     LyXCursor tmpcursor;
  464.  
  465.     /* if there is no selection just set the layout of the current paragraph  */
  466.     if (!selection) {
  467.         sel_start_cursor = cursor;       /* dummy selection  */
  468.         sel_end_cursor = cursor;
  469.     }
  470.  
  471.     LyXParagraph *endpar = sel_end_cursor.par->LastPhysicalPar()->Next();
  472.     LyXParagraph *undoendpar = endpar;
  473.  
  474.     if (endpar && endpar->GetDepth()) {
  475.         while (endpar && endpar->GetDepth()) {
  476.             //endpar->depth = 0;
  477.             endpar = endpar->LastPhysicalPar()->Next();
  478.             undoendpar = endpar;
  479.         }
  480.     }
  481.     else if (endpar) {
  482.         endpar = endpar->Next();           /* because of parindents etc.  */
  483.     }
  484.    
  485.     SetUndo(Undo::EDIT, 
  486.         sel_start_cursor.par->ParFromPos(sel_start_cursor.pos)->previous, 
  487.         undoendpar);
  488.  
  489.     tmpcursor = cursor;               /* store the current cursor  */
  490.  
  491.     /* ok we have a selection. This is always between sel_start_cursor
  492.      * and sel_end cursor */ 
  493.     cursor = sel_start_cursor;
  494.    
  495.     LyXLayout * lyxlayout = lyxstyle.Style(parameters->textclass, layout);
  496.    
  497.     while (cursor.par != sel_end_cursor.par) {
  498.         if (cursor.par->footnoteflag ==
  499.             sel_start_cursor.par->footnoteflag) {
  500.             cursor.par->SetLayout(layout);
  501.             MakeFontEntriesLayoutSpecific(cursor.par);
  502.             cursor.par->FirstPhysicalPar()->added_space_top = lyxlayout->fill_top ? VSpace::VFILL : VSpace::NONE;
  503.             cursor.par->FirstPhysicalPar()->added_space_bottom = lyxlayout->fill_bottom ? VSpace::VFILL : VSpace::NONE;
  504.             if (lyxlayout->margintype == MARGIN_MANUAL)
  505.                 cursor.par->SetLabelWidthString(lyxlayout->labelstring);
  506.         }
  507.         cursor.par = cursor.par->Next();
  508.     }
  509.     if (cursor.par->footnoteflag ==
  510.         sel_start_cursor.par->footnoteflag) {
  511.         cursor.par->SetLayout(layout);
  512.         MakeFontEntriesLayoutSpecific(cursor.par);
  513.         cursor.par->FirstPhysicalPar()->added_space_top = lyxlayout->fill_top ? VSpace::VFILL : VSpace::NONE;
  514.         cursor.par->FirstPhysicalPar()->added_space_bottom = lyxlayout->fill_bottom ? VSpace::VFILL : VSpace::NONE;
  515.         if (lyxlayout->margintype == MARGIN_MANUAL)
  516.             cursor.par->SetLabelWidthString(lyxlayout->labelstring);
  517.     }
  518.    
  519.     RedoParagraphs(sel_start_cursor, endpar);
  520.    
  521.     /* we have to reset the selection, because the
  522.      * geometry could have changed */ 
  523.     SetCursor(sel_start_cursor.par, sel_start_cursor.pos);
  524.     sel_cursor = cursor;
  525.     SetCursor(sel_end_cursor.par, sel_end_cursor.pos);
  526.     UpdateCounters(cursor.row);
  527.     ClearSelection();
  528.     SetSelection();
  529.     SetCursor(tmpcursor.par, tmpcursor.pos);
  530. }
  531.  
  532.  
  533. /* increment depth over selection and
  534.  * make a total rebreak of those paragraphs */
  535. void  LyXText::IncDepth()
  536. {
  537.     // If there is no selection, just use the current paragraph
  538.     if (!selection) {
  539.         sel_start_cursor = cursor;       /* dummy selection */
  540.         sel_end_cursor = cursor;
  541.     }
  542.  
  543.     // We end at the next paragraph with depth 0
  544.     LyXParagraph *endpar = sel_end_cursor.par->LastPhysicalPar()->Next();
  545.     LyXParagraph *undoendpar = endpar;
  546.  
  547.     if (endpar && endpar->GetDepth()) {
  548.         while (endpar && endpar->GetDepth()) {
  549.             endpar = endpar->LastPhysicalPar()->Next();
  550.             undoendpar = endpar;
  551.         }
  552.     }
  553.     else if (endpar) {
  554.         endpar = endpar->Next();           /* because of parindents etc.  */
  555.     }
  556.     
  557.     SetUndo(Undo::EDIT, 
  558.         sel_start_cursor.par->ParFromPos(sel_start_cursor.pos)->previous, 
  559.         undoendpar);
  560.  
  561.     LyXCursor tmpcursor = cursor;         /* store the current cursor  */
  562.  
  563.     /* ok we have a selection. This is always between sel_start_cursor
  564.      * and sel_end cursor */ 
  565.     cursor = sel_start_cursor;
  566.    
  567.     bool anything_changed = false;
  568.    
  569.     while (true) {
  570.         // NOTE: you can't change the depth of a bibliography entry
  571.         if (cursor.par->footnoteflag ==
  572.             sel_start_cursor.par->footnoteflag
  573.             && lyxstyle.Style(parameters->textclass,
  574.                       cursor.par->GetLayout()
  575.                      )->labeltype != LABEL_BIBLIO) {
  576.             LyXParagraph * prev = cursor.par->FirstPhysicalPar()->Previous();
  577.             if (prev 
  578.                 && (prev->GetDepth() - cursor.par->GetDepth() > 0
  579.                 || (prev->GetDepth() == cursor.par->GetDepth()
  580.                     && lyxstyle.Style(parameters->textclass,
  581.                               prev->GetLayout())->isEnvironment()))) {
  582.                 cursor.par->FirstPhysicalPar()->depth++;
  583.                 anything_changed = true;
  584.                 }
  585.         }
  586.         if (cursor.par == sel_end_cursor.par)
  587.                        break;
  588.         cursor.par = cursor.par->Next();
  589.     }
  590.    
  591.     /* if nothing changed set all depth to 0 */ 
  592.     if (!anything_changed) {
  593.         cursor = sel_start_cursor;
  594.         while (cursor.par != sel_end_cursor.par) {
  595.             cursor.par->FirstPhysicalPar()->depth = 0;
  596.             cursor.par = cursor.par->Next();
  597.         }
  598.         if (cursor.par->footnoteflag == sel_start_cursor.par->footnoteflag)
  599.             cursor.par->FirstPhysicalPar()->depth = 0;
  600.     }
  601.    
  602.     RedoParagraphs(sel_start_cursor, endpar);
  603.    
  604.     /* we have to reset the selection, because the
  605.      * geometry could have changed */ 
  606.     SetCursor(sel_start_cursor.par, sel_start_cursor.pos);
  607.     sel_cursor = cursor;
  608.     SetCursor(sel_end_cursor.par, sel_end_cursor.pos);
  609.     UpdateCounters(cursor.row);
  610.     ClearSelection();
  611.     SetSelection();
  612.     SetCursor(tmpcursor.par, tmpcursor.pos);
  613. }
  614.  
  615.  
  616. /* decrement depth over selection and
  617.  * make a total rebreak of those paragraphs */
  618. void  LyXText::DecDepth()
  619. {
  620.     /* if there is no selection just set the layout of the current paragraph  */
  621.     if (!selection) {
  622.         sel_start_cursor = cursor;       /* dummy selection  */
  623.         sel_end_cursor = cursor;
  624.     }
  625.    
  626.     LyXParagraph *endpar = sel_end_cursor.par->LastPhysicalPar()->Next();
  627.     LyXParagraph *undoendpar = endpar;
  628.  
  629.     if (endpar && endpar->GetDepth()) {
  630.         while (endpar && endpar->GetDepth()) {
  631.             endpar = endpar->LastPhysicalPar()->Next();
  632.             undoendpar = endpar;
  633.         }
  634.     }
  635.     else if (endpar) {
  636.         endpar = endpar->Next();           /* because of parindents etc.  */
  637.     }
  638.    
  639.     SetUndo(Undo::EDIT, 
  640.         sel_start_cursor.par->ParFromPos(sel_start_cursor.pos)->previous, 
  641.         undoendpar);
  642.  
  643.     LyXCursor tmpcursor = cursor;               /* store the current cursor  */
  644.  
  645.     /* ok we have a selection. This is always between sel_start_cursor
  646.      * and sel_end cursor */ 
  647.     cursor = sel_start_cursor;
  648.  
  649.     while (true) {
  650.         if (cursor.par->footnoteflag ==
  651.             sel_start_cursor.par->footnoteflag) {
  652.             if (cursor.par->FirstPhysicalPar()->depth)
  653.                 cursor.par->FirstPhysicalPar()->depth--;
  654.         }
  655.         if (cursor.par == sel_end_cursor.par)
  656.             break;
  657.         cursor.par = cursor.par->Next();
  658.     }
  659.  
  660.     RedoParagraphs(sel_start_cursor, endpar);
  661.    
  662.     /* we have to reset the selection, because the
  663.      * geometry could have changed */ 
  664.     SetCursor(sel_start_cursor.par, sel_start_cursor.pos);
  665.     sel_cursor = cursor;
  666.     SetCursor(sel_end_cursor.par, sel_end_cursor.pos);
  667.     UpdateCounters(cursor.row);
  668.     ClearSelection();
  669.     SetSelection();
  670.     SetCursor(tmpcursor.par, tmpcursor.pos);
  671. }
  672.  
  673.  
  674. /* set font over selection and make a total rebreak of those paragraphs */
  675. void  LyXText::SetFont(LyXFont font)
  676. {
  677.     /* if there is no selection just set the current_font */
  678.     if (!selection) {
  679.         // Determine basis font
  680.         LyXFont layoutfont;
  681.         if (cursor.pos < BeginningOfMainBody(cursor.par))
  682.             layoutfont = GetFont(cursor.par, -2);
  683.         else
  684.             layoutfont = GetFont(cursor.par, -1);
  685.  
  686.         // Update current font
  687.         real_current_font.update(font);
  688.  
  689.         // Reduce to implicit settings
  690.         current_font = real_current_font;
  691.         current_font.reduce(layoutfont);
  692.         // And resolve it completely
  693.         real_current_font.realize(layoutfont);
  694.         return;
  695.     }
  696.  
  697.     LyXCursor tmpcursor = cursor;               /* store the current cursor  */
  698.    
  699.     /* ok we have a selection. This is always between sel_start_cursor
  700.      * and sel_end cursor */ 
  701.    
  702.     SetUndo(Undo::EDIT, 
  703.         sel_start_cursor.par->ParFromPos(sel_start_cursor.pos)->previous, 
  704.         sel_end_cursor.par->ParFromPos(sel_end_cursor.pos)->next); 
  705.     cursor = sel_start_cursor;
  706.     while (cursor.par != sel_end_cursor.par ||
  707.            (cursor.par->footnoteflag == sel_start_cursor.par->footnoteflag
  708.         && cursor.pos < sel_end_cursor.pos)) 
  709.     {
  710.         if (cursor.pos < cursor.par->Last()
  711.             && cursor.par->footnoteflag
  712.             == sel_start_cursor.par->footnoteflag) {   /* an open footnote
  713.                                 * should behave
  714.                                 * like a closed */
  715.             LyXFont newfont = GetFont(cursor.par,cursor.pos);
  716.             newfont.update(font);
  717.             SetCharFont(cursor.par, cursor.pos, newfont);
  718.             cursor.pos++;
  719.         } else {
  720.             cursor.pos = 0;
  721.             cursor.par = cursor.par->Next();
  722.         }
  723.     }
  724.    
  725.     RedoParagraphs(sel_start_cursor, sel_end_cursor.par->Next());
  726.    
  727.     /* we have to reset the selection, because the
  728.      * geometry could have changed */ 
  729.     SetCursor(sel_start_cursor.par, sel_start_cursor.pos);
  730.     sel_cursor = cursor;
  731.     SetCursor(sel_end_cursor.par, sel_end_cursor.pos);
  732.     ClearSelection();
  733.     SetSelection();
  734.     SetCursor(tmpcursor.par, tmpcursor.pos);
  735. }
  736.  
  737.  
  738. void LyXText::RedoHeightOfParagraph(LyXCursor cursor)
  739. {
  740.     Row *tmprow;
  741.     LyXParagraph *first_phys_par;
  742.     long y;
  743.    
  744.     tmprow = cursor.row;
  745.    
  746.     y = cursor.y - tmprow->baseline;
  747.     SetHeightOfRow(tmprow);
  748.     first_phys_par = tmprow->par->FirstPhysicalPar();
  749.     /* find the first row of the paragraph */
  750.     if (first_phys_par != tmprow->par)
  751.         while (tmprow->previous && tmprow->previous->par != first_phys_par)  {
  752.             tmprow = tmprow->previous;
  753.             y -= tmprow->height;
  754.             SetHeightOfRow(tmprow);
  755.         }
  756.     while (tmprow->previous && tmprow->previous->par == first_phys_par)  {
  757.         tmprow = tmprow->previous;
  758.         y -= tmprow->height;
  759.         SetHeightOfRow(tmprow);
  760.     }
  761.    
  762.     /* we can set the refreshing parameters now */
  763.     status = LyXText::NEED_MORE_REFRESH;
  764.     refresh_y = y;
  765.     refresh_row = tmprow;
  766.     SetCursor(cursor.par, cursor.pos);
  767. }
  768.  
  769.  
  770. void LyXText::RedoDrawingOfParagraph(LyXCursor cursor)
  771. {
  772.     Row *tmprow;
  773.     LyXParagraph *first_phys_par;
  774.     long y;
  775.    
  776.     tmprow = cursor.row;
  777.    
  778.     y = cursor.y - tmprow->baseline;
  779.     SetHeightOfRow(tmprow);
  780.     first_phys_par = tmprow->par->FirstPhysicalPar();
  781.     /* find the first row of the paragraph */
  782.     if (first_phys_par != tmprow->par)
  783.         while (tmprow->previous && tmprow->previous->par != first_phys_par)  {
  784.             tmprow = tmprow->previous;
  785.             y -= tmprow->height;
  786.         }
  787.     while (tmprow->previous && tmprow->previous->par == first_phys_par)  {
  788.         tmprow = tmprow->previous;
  789.         y -= tmprow->height;
  790.       
  791.     }
  792.    
  793.     /* we can set the refreshing parameters now */
  794.     if (status == LyXText::UNCHANGED || y < refresh_y) {
  795.         refresh_y = y;
  796.         refresh_row = tmprow;
  797.     }
  798.     status = LyXText::NEED_MORE_REFRESH;
  799.     SetCursor(cursor.par, cursor.pos);
  800. }
  801.  
  802.  
  803. /* deletes and inserts again all paragaphs between the cursor
  804. * and the specified par 
  805. * This function is needed after SetLayout and SetFont etc. */
  806. void LyXText::RedoParagraphs(LyXCursor cursor, LyXParagraph *endpar)
  807. {
  808.     Row *tmprow, *tmprow2;
  809.     LyXParagraph *tmppar, *first_phys_par;
  810.     long y;
  811.    
  812.     tmprow = cursor.row;
  813.    
  814.     y = cursor.y - tmprow->baseline;
  815.    
  816.     if (!tmprow->previous){
  817.         first_phys_par = FirstParagraph();   // a trick/hack for UNDO
  818.     }
  819.     else {
  820.         first_phys_par = tmprow->par->FirstPhysicalPar();
  821.         /* find the first row of the paragraph */
  822.         if (first_phys_par != tmprow->par)
  823.             while (tmprow->previous && tmprow->previous->par != first_phys_par)  {
  824.                 tmprow = tmprow->previous;
  825.                 y -= tmprow->height;
  826.             }
  827.         while (tmprow->previous && tmprow->previous->par == first_phys_par)  {
  828.             tmprow = tmprow->previous;
  829.             y -= tmprow->height;
  830.         }
  831.     }
  832.    
  833.     /* we can set the refreshing parameters now */
  834.     status = LyXText::NEED_MORE_REFRESH;
  835.     refresh_y = y;
  836.     refresh_row = tmprow->previous;           /* the real refresh row will
  837.                         * be deleted, so I store
  838.                         * the previous here */ 
  839.     /* remove it */
  840.     if (tmprow->next)
  841.         tmppar = tmprow->next->par;
  842.     else
  843.         tmppar = NULL;
  844.     while (tmppar != endpar) {
  845.         RemoveRow(tmprow->next);
  846.         if (tmprow->next)
  847.             tmppar = tmprow->next->par;
  848.         else
  849.             tmppar = NULL;
  850.     }  
  851.    
  852.     /* remove the first one */
  853.     tmprow2 = tmprow;               /* this is because tmprow->previous
  854.                         * can be NULL */
  855.     tmprow = tmprow->previous;
  856.     RemoveRow(tmprow2);
  857.    
  858.     tmppar = first_phys_par;
  859.  
  860.     do {
  861.         if (tmppar) {
  862.             InsertParagraph(tmppar, tmprow);
  863.             if (!tmprow)
  864.                 tmprow = firstrow;
  865.             while (tmprow->next && tmprow->next->par == tmppar)
  866.                 tmprow = tmprow->next;
  867.             tmppar = tmppar->Next();
  868.      
  869.         }
  870.     }
  871.     while (tmppar != endpar);
  872.    
  873.     /* this is because of layout changes */ 
  874.     if (refresh_row) {
  875.         refresh_y -= refresh_row->height;
  876.         SetHeightOfRow(refresh_row);   
  877.     }
  878.     else {
  879.         refresh_row = firstrow;
  880.         refresh_y = 0;
  881.         SetHeightOfRow(refresh_row);   
  882.     }
  883.    
  884.     if (tmprow && tmprow->next)
  885.         SetHeightOfRow(tmprow->next);
  886.    
  887.     /* restore the correct refresh row  */
  888. /*    if (refresh_row)
  889.       refresh_row = refresh_row->next;
  890.       else
  891.       refresh_row = firstrow;*/ 
  892. }
  893.  
  894.  
  895. int LyXText::FullRebreak()
  896. {
  897.     if (need_break_row) {
  898.         BreakAgain(need_break_row);
  899.         need_break_row = NULL;
  900.         return 1;
  901.     }
  902.     return 0;
  903. }
  904.  
  905.  
  906. /* important for the screen */
  907.  
  908.  
  909. /* the cursor set functions have a special mechanism. When they
  910. * realize, that you left an empty paragraph, they will delete it.
  911. * They also delet the corresponding row */
  912.    
  913. /* need the selection cursor: */ 
  914. void LyXText::SetSelection()
  915. {
  916.     if (!selection) {
  917.         last_sel_cursor = sel_cursor;
  918.         sel_start_cursor = sel_cursor;
  919.         sel_end_cursor = sel_cursor;
  920.     }
  921.    
  922.     selection = True;
  923.    
  924.     /* first the toggling area */ 
  925.     if (cursor.y < last_sel_cursor.y ||
  926.         (cursor.y == last_sel_cursor.y && cursor.x < last_sel_cursor.x)) {
  927.         toggle_end_cursor = last_sel_cursor;
  928.         toggle_cursor = cursor;
  929.     }
  930.     else {
  931.         toggle_end_cursor = cursor;
  932.         toggle_cursor = last_sel_cursor;
  933.     }
  934.    
  935.     last_sel_cursor = cursor;
  936.    
  937.     /* and now the whole selection */ 
  938.    
  939.     if (sel_cursor.y < cursor.y ||
  940.         (sel_cursor.y == cursor.y && sel_cursor.x < cursor.x)) {
  941.         sel_end_cursor = cursor;
  942.         sel_start_cursor = sel_cursor;
  943.     }
  944.     else {
  945.         sel_end_cursor = sel_cursor; 
  946.         sel_start_cursor = cursor;
  947.     }
  948.    
  949.     /* a selection with no contents is not a selection */ 
  950.     if (sel_start_cursor.x == sel_end_cursor.x && 
  951.         sel_start_cursor.y == sel_end_cursor.y)
  952.         selection = false;
  953. }
  954.  
  955.  
  956. void LyXText::ClearSelection()
  957. {
  958.     selection = false;
  959.     mark_set = false;
  960. }
  961.  
  962.  
  963. void  LyXText::CursorHome()
  964. {
  965.     SetCursor(cursor.par, cursor.row->pos);
  966. }
  967.  
  968.  
  969. void  LyXText::CursorEnd()
  970. {
  971.     if (!cursor.row->next || cursor.row->next->par != cursor.row->par)
  972.         SetCursor(cursor.par, RowLast(cursor.row) + 1);
  973.     else {
  974.         if (cursor.par->Last() && 
  975.             (cursor.par->GetChar(RowLast(cursor.row)) == ' '
  976.              || cursor.par->IsNewline(RowLast(cursor.row))))
  977.             SetCursor(cursor.par, RowLast(cursor.row));
  978.         else
  979.             SetCursor(cursor.par, RowLast(cursor.row) + 1);
  980.     }
  981.         if (cursor.par->table) {
  982.                 int cell = NumberOfCell(cursor.par, cursor.pos);
  983.                 if (cursor.par->table->RowHasContRow(cell) &&
  984.                     cursor.par->table->CellHasContRow(cell)<0) {
  985.                         if (!cursor.row->next || cursor.row->next->par != cursor.row->par)
  986.                                 SetCursor(cursor.par, RowLast(cursor.row) + 1);
  987.                         else {
  988.                                 if (cursor.par->Last() && 
  989.                                     (cursor.par->GetChar(RowLast(cursor.row)) == ' '
  990.                                      || cursor.par->IsNewline(RowLast(cursor.row))))
  991.                                         SetCursor(cursor.par, RowLast(cursor.row));
  992.                                 else
  993.                                         SetCursor(cursor.par, RowLast(cursor.row) + 1);
  994.                         }
  995.                 }
  996.         }
  997. }
  998.  
  999.  
  1000. void  LyXText::CursorTop()
  1001. {
  1002.     while (cursor.par->Previous())
  1003.         cursor.par = cursor.par->Previous();
  1004.     SetCursor(cursor.par, 0);
  1005. }
  1006.  
  1007.  
  1008. void  LyXText::CursorBottom()
  1009. {
  1010.     while (cursor.par->Next())
  1011.         cursor.par = cursor.par->Next();
  1012.     SetCursor(cursor.par, cursor.par->Last());
  1013. }
  1014.    
  1015.    
  1016. /* returns a pointer to the row near the specified y-coordinate
  1017. * (relative to the whole text). y is set to the real beginning
  1018. * of this row */ 
  1019. Row* LyXText::GetRowNearY(long& y)
  1020. {
  1021.     Row* tmprow;
  1022.     long tmpy;
  1023.    
  1024.     if (currentrow){
  1025.         tmprow = currentrow;
  1026.         tmpy = currentrow_y;
  1027.     }
  1028.     else {
  1029.         tmprow = firstrow;
  1030.         tmpy = 0;
  1031.     }
  1032.  
  1033.     if (tmpy<=y)
  1034.         while (tmprow->next && tmpy + tmprow->height <= y) {
  1035.             tmpy += tmprow->height;
  1036.             tmprow = tmprow->next;
  1037.         }
  1038.     else
  1039.         while (tmprow->previous && tmpy > y) {
  1040.             tmprow = tmprow->previous;
  1041.             tmpy -= tmprow->height;
  1042.         }
  1043.  
  1044.     currentrow = tmprow;
  1045.     currentrow_y = tmpy;
  1046.  
  1047.     y = tmpy;                   /* return the real y  */
  1048.     return tmprow;
  1049. }
  1050.    
  1051.  
  1052. void LyXText::ToggleFree(LyXFont font)
  1053. {
  1054.     // If the mask is completely neutral, tell user
  1055.     if (font == LyXFont(LyXFont::ALL_IGNORE)){
  1056.         // Could only happen with user style
  1057.         minibuffer->Set(_("No font change defined. Use Character under"
  1058.                   " the Layout menu to define font change."));
  1059.         return;
  1060.     }
  1061.  
  1062.     // Try implicit word selection
  1063.     LyXCursor resetCursor = cursor;
  1064.     int implicitSelection = SelectWordWhenUnderCursor();
  1065.  
  1066.     // Set font
  1067.     SetFont(font);
  1068.     minibuffer->Set(_("Font style changed"));
  1069.  
  1070.     /* Implicit selections are cleared afterwards and cursor is set to the
  1071.        original position. */
  1072.     if ( implicitSelection ) {
  1073.         ClearSelection();
  1074.         cursor = resetCursor;
  1075.         SetCursor( cursor.par, cursor.pos );
  1076.         sel_cursor = cursor;
  1077.     }
  1078. }
  1079.  
  1080.  
  1081. int LyXText::BeginningOfMainBody(LyXParagraph *par)
  1082. {
  1083.     if (lyxstyle.Style(parameters->textclass, par->GetLayout())->labeltype != LABEL_MANUAL)
  1084.         return 0;
  1085.     else
  1086.         return par->BeginningOfMainBody();
  1087. }
  1088.  
  1089.  
  1090. /* if there is a selection, reset every environment you can find
  1091. * in the selection, otherwise just the environment you are in */ 
  1092. void LyXText::MeltFootnoteEnvironment()
  1093. {
  1094.     LyXParagraph *tmppar, *firsttmppar;
  1095.    
  1096.     ClearSelection();
  1097.    
  1098.     /* is is only allowed, if the cursor is IN an open footnote.
  1099.      * Otherwise it is too dangerous */ 
  1100.     if (cursor.par->footnoteflag != LyXParagraph::OPEN_FOOTNOTE)
  1101.         return;
  1102.    
  1103.     SetUndo(Undo::FINISH, 
  1104.         cursor.par->PreviousBeforeFootnote()->previous,
  1105.         cursor.par->NextAfterFootnote()->next);
  1106.  
  1107.     /* ok, move to the beginning of the footnote. */ 
  1108.     while (cursor.par->footnoteflag == LyXParagraph::OPEN_FOOTNOTE)
  1109.         cursor.par = cursor.par->Previous();
  1110.    
  1111.     SetCursor(cursor.par, cursor.par->Last());
  1112.     /* this is just faster than using CursorLeft(); */ 
  1113.    
  1114.     firsttmppar = cursor.par->ParFromPos(cursor.pos);
  1115.     tmppar = firsttmppar;
  1116.     /* tmppar is now the paragraph right before the footnote */
  1117.    
  1118.     char first_footnote_par_is_not_empty = tmppar->next->last;
  1119.    
  1120.     while (tmppar->next && tmppar->next->footnoteflag == LyXParagraph::OPEN_FOOTNOTE) {
  1121.         tmppar = tmppar->next;           /* I use next instead of Next(),
  1122.                         * because there cannot be any
  1123.                         * footnotes in a footnote
  1124.                         * environment */
  1125.         tmppar->footnoteflag = LyXParagraph::NO_FOOTNOTE;
  1126.       
  1127.         /* remember the captions and empty paragraphs */
  1128.         if ((lyxstyle.Style(parameters->textclass,
  1129.                     tmppar->GetLayout())->labeltype == LABEL_SENSITIVE)
  1130.             || !tmppar->Last())
  1131.             tmppar->SetLayout(0);
  1132.     }
  1133.    
  1134.     /* now we will paste the ex-footnote, if the layouts allow it */
  1135.     /* first restore the layout of the paragraph right behind the footnote*/ 
  1136.     if (tmppar->next) 
  1137.         tmppar->next->MakeSameLayout(cursor.par);
  1138.  
  1139.     /* first the end */ 
  1140.     if ((!tmppar->GetLayout() && !tmppar->table)
  1141.         || (tmppar->Next() && (!tmppar->Next()->Last()
  1142.                    || tmppar->Next()->HasSameLayout(tmppar)))) {
  1143.         if (tmppar->Next()->Last() && tmppar->Next()->IsLineSeparator(0))
  1144.             tmppar->Next()->Erase(0);
  1145.         tmppar->PasteParagraph();
  1146.     }
  1147.  
  1148.     tmppar = tmppar->Next();           /* make shure tmppar cannot be touched
  1149.                         * by the pasting of the beginning */
  1150.  
  1151.     /* then the beginning */ 
  1152.     /* if there is no space between the text and the footnote, so we insert
  1153.      * a blank 
  1154.      * (only if the previous par and the footnotepar are not empty!) */
  1155.     if ((!firsttmppar->next->GetLayout() && !firsttmppar->next->table)
  1156.         || firsttmppar->HasSameLayout(firsttmppar->next)) {
  1157.         if (firsttmppar->last
  1158.             && !firsttmppar->IsSeparator(firsttmppar->last - 1)
  1159.             && first_footnote_par_is_not_empty) {
  1160.             firsttmppar->next->InsertChar(0, ' ');
  1161.         }
  1162.         firsttmppar->PasteParagraph();
  1163.     }
  1164.    
  1165.     /* now redo the paragaphs */
  1166.     RedoParagraphs(cursor, tmppar);
  1167.    
  1168.     SetCursor(cursor.par, cursor.pos);
  1169.    
  1170.     /* sometimes it can happen, that there is a counter change */ 
  1171.     Row *row = cursor.row;
  1172.     while (row->next && row->par != tmppar && row->next->par != tmppar)
  1173.         row = row->next;
  1174.     UpdateCounters(row);
  1175.    
  1176.    
  1177.     ClearSelection();
  1178. }
  1179.  
  1180.  
  1181. /* the DTP switches for paragraphs. LyX will store them in the 
  1182. * first physicla paragraph. When a paragraph is broken, the top settings 
  1183. * rest, the bottom settings are given to the new one. So I can make shure, 
  1184. * they do not duplicate themself and you cannnot make dirty things with 
  1185. * them!  */ 
  1186.  
  1187. void LyXText::SetParagraph(bool line_top, bool line_bottom,
  1188.                bool pagebreak_top, bool pagebreak_bottom,
  1189.                VSpace space_top, VSpace space_bottom,
  1190.                char align, 
  1191.                LString labelwidthstring,
  1192.                bool noindent) 
  1193. {
  1194.     LyXCursor tmpcursor;
  1195.     tmpcursor = cursor;
  1196.     LyXParagraph *tmppar;
  1197.     if (!selection) {
  1198.         sel_start_cursor = cursor;
  1199.         sel_end_cursor = cursor;
  1200.     }
  1201.  
  1202.     // make sure that the depth behind the selection are restored, too
  1203.     LyXParagraph *endpar = sel_end_cursor.par->LastPhysicalPar()->Next();
  1204.     LyXParagraph *undoendpar = endpar;
  1205.  
  1206.     if (endpar && endpar->GetDepth()) {
  1207.         while (endpar && endpar->GetDepth()) {
  1208.             endpar = endpar->LastPhysicalPar()->Next();
  1209.             undoendpar = endpar;
  1210.         }
  1211.     }
  1212.     else if (endpar) {
  1213.         endpar = endpar->Next(); /* because of parindents etc.  */
  1214.     }
  1215.    
  1216.     SetUndo(Undo::EDIT, 
  1217.         sel_start_cursor.par->ParFromPos(sel_start_cursor.pos)->previous, 
  1218.         undoendpar);
  1219.  
  1220.     
  1221.     tmppar = sel_end_cursor.par;
  1222.     while (tmppar != sel_start_cursor.par->FirstPhysicalPar()->Previous())
  1223.         {
  1224.             SetCursor(tmppar->FirstPhysicalPar(), 0);
  1225.             status = LyXText::NEED_MORE_REFRESH;
  1226.             refresh_row = cursor.row;
  1227.             refresh_y = cursor.y - cursor.row->baseline;
  1228.             if (cursor.par->footnoteflag ==
  1229.                 sel_start_cursor.par->footnoteflag) {
  1230.                 cursor.par->line_top = line_top;
  1231.                 cursor.par->line_bottom = line_bottom;
  1232.                 cursor.par->pagebreak_top = pagebreak_top;
  1233.                 cursor.par->pagebreak_bottom = pagebreak_bottom;
  1234.                 cursor.par->added_space_top = space_top;
  1235.                 cursor.par->added_space_bottom = space_bottom;
  1236.                 /* does the layout allow the new alignment? */ 
  1237.                 if (align == LYX_ALIGN_LAYOUT)
  1238.                     align = lyxstyle.Style(parameters->textclass, cursor.par->GetLayout())->align;
  1239.                 if (align & lyxstyle.Style(parameters->textclass, cursor.par->GetLayout())->alignpossible) {
  1240.                     if (align == lyxstyle.Style(parameters->textclass, cursor.par->GetLayout())->align)
  1241.                         cursor.par->align = LYX_ALIGN_LAYOUT;
  1242.                     else
  1243.                         cursor.par->align = align;
  1244.                 }
  1245.                 cursor.par->SetLabelWidthString(labelwidthstring);
  1246.                 cursor.par->noindent = noindent;
  1247.             }
  1248.        
  1249.             /* 
  1250.                tmprow = cursor.row;
  1251.                while (tmprow->next && tmprow->next->par->previous != cursor.par->LastPhysicalPar())
  1252.                tmprow = tmprow->next;
  1253.                SetHeightOfRow(tmprow);
  1254.                SetHeightOfRow(cursor.row); */ 
  1255.             tmppar = cursor.par->FirstPhysicalPar()->Previous();
  1256.         }
  1257.     
  1258.     RedoParagraphs(sel_start_cursor, endpar);
  1259.     
  1260.     ClearSelection();
  1261.     SetCursor(sel_start_cursor.par, sel_start_cursor.pos);
  1262.     sel_cursor = cursor;
  1263.     SetCursor(sel_end_cursor.par, sel_end_cursor.pos);
  1264.     SetSelection();
  1265.     SetCursor(tmpcursor.par, tmpcursor.pos);
  1266. }
  1267.  
  1268.  
  1269. void LyXText::SetParagraphExtraOpt(int type,
  1270.                                    const char *width,
  1271.                                    const char *widthp,
  1272.                                    int alignment, bool hfill,
  1273.                                    bool start_minipage)
  1274. {
  1275.     LyXCursor tmpcursor;
  1276.     tmpcursor = cursor;
  1277.     LyXParagraph *tmppar;
  1278.     if (!selection) {
  1279.         sel_start_cursor = cursor;
  1280.         sel_end_cursor = cursor;
  1281.     }
  1282.  
  1283.     // make sure that the depth behind the selection are restored, too
  1284.     LyXParagraph *endpar = sel_end_cursor.par->LastPhysicalPar()->Next();
  1285.     LyXParagraph *undoendpar = endpar;
  1286.  
  1287.     if (endpar && endpar->GetDepth()) {
  1288.         while (endpar && endpar->GetDepth()) {
  1289.             endpar = endpar->LastPhysicalPar()->Next();
  1290.             undoendpar = endpar;
  1291.         }
  1292.     }
  1293.     else if (endpar) {
  1294.         endpar = endpar->Next(); /* because of parindents etc.  */
  1295.     }
  1296.    
  1297.     SetUndo(Undo::EDIT, 
  1298.         sel_start_cursor.par->ParFromPos(sel_start_cursor.pos)->previous, 
  1299.         undoendpar);
  1300.     
  1301.     tmppar = sel_end_cursor.par;
  1302.     while(tmppar != sel_start_cursor.par->FirstPhysicalPar()->Previous()) {
  1303.                 SetCursor(tmppar->FirstPhysicalPar(), 0);
  1304.                 status = LyXText::NEED_MORE_REFRESH;
  1305.                 refresh_row = cursor.row;
  1306.                 refresh_y = cursor.y - cursor.row->baseline;
  1307.                 if (cursor.par->footnoteflag ==
  1308.                     sel_start_cursor.par->footnoteflag) {
  1309.                         if (type == PEXTRA_NONE) {
  1310.                                 if (cursor.par->pextra_type != PEXTRA_NONE) {
  1311.                                         cursor.par->UnsetPExtraType();
  1312.                                         cursor.par->pextra_type=PEXTRA_NONE;
  1313.                                 }
  1314.                         } else {
  1315.                                 cursor.par->SetPExtraType(type,width,widthp);
  1316.                                 cursor.par->pextra_hfill = hfill;
  1317.                                 cursor.par->pextra_start_minipage = start_minipage;
  1318.                                 cursor.par->pextra_alignment = alignment;
  1319.                         }
  1320.                 }
  1321.                 tmppar = cursor.par->FirstPhysicalPar()->Previous();
  1322.         }
  1323.     RedoParagraphs(sel_start_cursor, endpar);
  1324.     ClearSelection();
  1325.     SetCursor(sel_start_cursor.par, sel_start_cursor.pos);
  1326.     sel_cursor = cursor;
  1327.     SetCursor(sel_end_cursor.par, sel_end_cursor.pos);
  1328.     SetSelection();
  1329.     SetCursor(tmpcursor.par, tmpcursor.pos);
  1330. }
  1331.  
  1332.  
  1333. /* set the counter of a paragraph. This includes the labels */ 
  1334. void LyXText::SetCounter(LyXParagraph *par)
  1335. {
  1336.     int i;
  1337.    
  1338.     /* this is only relevant for the beginning of paragraph */ 
  1339.     par = par->FirstPhysicalPar();
  1340.  
  1341.     LyXLayout* layout = lyxstyle.Style(parameters->textclass, 
  1342.                        par->GetLayout());
  1343.  
  1344.     LyXTextClass *textclass = lyxstyle.TextClass(parameters->textclass);
  1345.  
  1346.     /* copy the prev-counters to this one, unless this is the start of a 
  1347.        footnote or of a bibliography or the very first paragraph */
  1348.     if (par->Previous()
  1349.         && !(par->Previous()->footnoteflag == LyXParagraph::NO_FOOTNOTE 
  1350.             && par->footnoteflag == LyXParagraph::OPEN_FOOTNOTE
  1351.             && par->footnotekind == LyXParagraph::FOOTNOTE)
  1352.         && !(lyxstyle.Style(parameters->textclass,
  1353.                 par->Previous()->GetLayout()
  1354.                 )->labeltype != LABEL_BIBLIO
  1355.          && layout->labeltype == LABEL_BIBLIO)) {
  1356.         for (i=0; i<10; i++) {
  1357.             par->counter[i]=par->Previous()->GetCounter(i);
  1358.         }
  1359.         par->enumdepth = par->Previous()->FirstPhysicalPar()->enumdepth;
  1360.         par->itemdepth = par->Previous()->FirstPhysicalPar()->itemdepth;
  1361.     }
  1362.     else {
  1363.         for (i=0; i<10; i++) {
  1364.             par->counter[i]=0;
  1365.         }  
  1366.         par->enumdepth = 0;
  1367.         par->itemdepth = 0;
  1368.     }
  1369.  
  1370.         // if this is an open marginnote and this is the first
  1371.         // entry in the marginnote and the enclosing
  1372.         // environment is an enum/item then correct for the
  1373.         // LaTeX behaviour (ARRae)
  1374.         if(par->footnoteflag == LyXParagraph::OPEN_FOOTNOTE
  1375.        && par->footnotekind == LyXParagraph::MARGIN
  1376.            && par->Previous()
  1377.            && par->Previous()->footnoteflag != LyXParagraph::OPEN_FOOTNOTE
  1378.            && (par->PreviousBeforeFootnote()
  1379.                && lyxstyle.Style(parameters->textclass,
  1380.                                  par->PreviousBeforeFootnote()->GetLayout()
  1381.                  )->labeltype >= LABEL_COUNTER_ENUMI)) {
  1382.                 // Any itemize or enumerate environment in a marginnote
  1383.                 // that is embedded in an itemize or enumerate
  1384.                 // paragraph is seen by LaTeX as being at a deeper
  1385.                 // level within that enclosing itemization/enumeration
  1386.                 // even if there is a "standard" layout at the start of
  1387.                 // the marginnote.
  1388.                 par->enumdepth++;
  1389.                 par->itemdepth++;
  1390.         }
  1391.  
  1392.     /* Maybe we have to increment the enumeration depth.
  1393.      * BUT, enumeration in a footnote is considered in isolation from its
  1394.      *    surrounding paragraph so don't increment if this is the
  1395.      *    first line of the footnote
  1396.      * AND, bibliographies can't have their depth changed ie. they
  1397.      *    are always of depth 0
  1398.      */
  1399.     if (par->Previous()
  1400.         && par->Previous()->GetDepth() < par->GetDepth()
  1401.         && lyxstyle.Style(parameters->textclass,
  1402.                   par->Previous()->GetLayout()
  1403.                  )->labeltype == LABEL_COUNTER_ENUMI
  1404.         && par->enumdepth < 3
  1405.         && !(par->Previous()->footnoteflag == LyXParagraph::NO_FOOTNOTE 
  1406.             && par->footnoteflag == LyXParagraph::OPEN_FOOTNOTE
  1407.             && par->footnotekind == LyXParagraph::FOOTNOTE)
  1408.         && layout->labeltype != LABEL_BIBLIO) {
  1409.         par->enumdepth++;
  1410.     }
  1411.  
  1412.     /* Maybe we have to decrement the enumeration depth, see note above */
  1413.     if (par->Previous()
  1414.         && par->Previous()->GetDepth() > par->GetDepth()
  1415.         && !(par->Previous()->footnoteflag == LyXParagraph::NO_FOOTNOTE
  1416.             && par->footnoteflag == LyXParagraph::OPEN_FOOTNOTE
  1417.             && par->footnotekind == LyXParagraph::FOOTNOTE)
  1418.         && layout->labeltype != LABEL_BIBLIO) {
  1419.         par->enumdepth = par->DepthHook(par->GetDepth())->enumdepth;
  1420.         par->counter[6 + par->enumdepth] =
  1421.             par->DepthHook(par->GetDepth())->counter[6 + par->enumdepth];
  1422.         /* reset the counters.
  1423.          * A depth change is like a breaking layout
  1424.          */
  1425.         for (i=6 + par->enumdepth + 1; i<10;i++)
  1426.             par->counter[i]=0;
  1427.     }
  1428.    
  1429.     if (!par->labelstring.empty()) {
  1430.         par->labelstring.erase();
  1431.     }
  1432.    
  1433.     if (layout->margintype == MARGIN_MANUAL) {
  1434.         if (par->labelwidthstring.empty()) {
  1435.             par->SetLabelWidthString(layout->labelstring);
  1436.         }
  1437.     }
  1438.     else {
  1439.         par->SetLabelWidthString(LString());
  1440.     }
  1441.    
  1442.     /* is it a layout that has an automatic label ? */ 
  1443.     if (layout->labeltype >=  LABEL_FIRST_COUNTER) {
  1444.       
  1445.         i = layout->labeltype - LABEL_FIRST_COUNTER;
  1446.         if (i>=0 && i<=parameters->secnumdepth) {
  1447.             par->counter[i]++;    // increment the counter  
  1448.      
  1449.             char * s = new char[50];
  1450.  
  1451.             // Is there a label? Useful for Chapter layout
  1452.             if (!layout->labelstring.empty()) {
  1453.                 par->labelstring = layout->labelstring;
  1454.             } else {
  1455.                 par->labelstring.erase();
  1456.             }
  1457.  
  1458.             switch (2 * LABEL_FIRST_COUNTER - textclass->maxcounter + i) {
  1459.                 case LABEL_COUNTER_CHAPTER:
  1460.                     sprintf(s, "%d", par->counter[i]);
  1461.                     break;
  1462.                 case LABEL_COUNTER_SECTION:
  1463.                     sprintf(s, "%d.%d", par->counter[i - 1], par->counter[i]);
  1464.                     break;
  1465.                 case LABEL_COUNTER_SUBSECTION:
  1466.                     sprintf(s, "%d.%d.%d", par->counter[i-2], par->counter[i-1],par->counter[i]);
  1467.                     break;
  1468.                 case LABEL_COUNTER_SUBSUBSECTION:
  1469.                     sprintf(s, "%d.%d.%d.%d", par->counter[i-3], par->counter[i-2],par->counter[i-1],par->counter[i]);
  1470.                     break;
  1471.                 case LABEL_COUNTER_PARAGRAPH:
  1472.                     sprintf(s, "%d.%d.%d.%d.%d", par->counter[i-4], par->counter[i-3], par->counter[i-2],par->counter[i-1],par->counter[i]);
  1473.                     break;
  1474.                 case LABEL_COUNTER_SUBPARAGRAPH:
  1475.                     sprintf(s, "%d.%d.%d.%d.%d.%d", par->counter[i-5], par->counter[i-4], par->counter[i-3], par->counter[i-2],par->counter[i-1],par->counter[i]);
  1476.                     break;
  1477.                 default:
  1478.                     sprintf(s, "%d.", par->counter[i]);
  1479.                     break;
  1480.             }
  1481.      
  1482.             par->labelstring += s;
  1483.             delete[] s;
  1484.      
  1485.             for (i++; i<10; i++) {
  1486.                 /* reset the following counters  */
  1487.                 par->counter[i]=0;
  1488.             }
  1489.         } else if (layout->labeltype < LABEL_COUNTER_ENUMI) {
  1490.             for (i++; i<10; i++) {
  1491.                 /* reset the following counters  */
  1492.                 par->counter[i]=0;
  1493.             }
  1494.         } else if (layout->labeltype == LABEL_COUNTER_ENUMI) {
  1495.             par->counter[i + par->enumdepth]++;
  1496.             char * s = new char[25];
  1497.             int number = par->counter[i + par->enumdepth];
  1498.             switch (par->enumdepth) {
  1499.             case 1:
  1500.                 sprintf(s, "(%c)", (number % 27) + 'a' - 1);
  1501.                 break;
  1502.             case 2:
  1503.                 switch (number) {
  1504.                 case 1: sprintf(s, "i."); break;
  1505.                 case 2: sprintf(s, "ii."); break;
  1506.                 case 3: sprintf(s, "iii."); break;
  1507.                 case 4: sprintf(s, "iv."); break;
  1508.                 case 5: sprintf(s, "v."); break;
  1509.                 case 6: sprintf(s, "vi."); break;
  1510.                 case 7: sprintf(s, "vii."); break;
  1511.                 case 8: sprintf(s, "viii."); break;
  1512.                 case 9: sprintf(s, "ix."); break;
  1513.                 case 10: sprintf(s, "x."); break;
  1514.                 case 11: sprintf(s, "xi."); break;
  1515.                 case 12: sprintf(s, "xii."); break;
  1516.                 case 13: sprintf(s, "xiii."); break;
  1517.                 default:
  1518.                     sprintf(s, "\\roman{%d}.", number);
  1519.                     break;
  1520.                 }
  1521.                 break;
  1522.             case 3:
  1523.                 sprintf(s, "%c.", (number % 27) + 'A' - 1);
  1524.                 break;
  1525.             default:
  1526.                 sprintf(s, "%d.", number);
  1527.                 break;
  1528.             }
  1529.             par->labelstring = s;
  1530.             delete[] s;
  1531.  
  1532.             for (i += par->enumdepth + 1;i<10;i++)
  1533.                 par->counter[i]=0;      /* reset the following counters  */
  1534.      
  1535.         } 
  1536.     } else if (layout->labeltype == LABEL_BIBLIO) {// ale970302
  1537.         i = LABEL_COUNTER_ENUMI - LABEL_FIRST_COUNTER + par->enumdepth;
  1538.         par->counter[i]++;
  1539.         int number = par->counter[i];
  1540.         if (!par->bibkey)
  1541.           par->bibkey = new InsetBibKey();
  1542.         par->bibkey->setCounter(number);
  1543.         par->labelstring = layout->labelstring;
  1544.         
  1545.         // In biblio should't be following counters but...
  1546.     }                        
  1547.     else  {
  1548.         LString s = layout->labelstring;
  1549.       
  1550.         /* the caption hack: */
  1551.       
  1552.         if (layout->labeltype == LABEL_SENSITIVE) {
  1553.             if (par->footnoteflag != LyXParagraph::NO_FOOTNOTE
  1554.                 && (par->footnotekind == LyXParagraph::FIG
  1555.                 || par->footnotekind == LyXParagraph::WIDE_FIG))
  1556.                 s = "Figure:";
  1557.             else if (par->footnoteflag != LyXParagraph::NO_FOOTNOTE
  1558.                  && (par->footnotekind == LyXParagraph::TAB
  1559.                  || par->footnotekind == LyXParagraph::WIDE_TAB))
  1560.                 s = "Table:";
  1561.             else if (par->footnoteflag != LyXParagraph::NO_FOOTNOTE
  1562.                  && par->footnotekind == LyXParagraph::ALGORITHM)
  1563.                 s = "Algorithm:";
  1564.             else {
  1565.                 /* par->SetLayout(0); 
  1566.                    s = layout->labelstring;  */
  1567.                 s = "Senseless: "; 
  1568.        
  1569.             }
  1570.         }
  1571.         par->labelstring = s;
  1572.       
  1573.         /* reset the enumeration counter. They are always resetted
  1574.          * when there is any other layout between */ 
  1575.         for (i=6 + par->enumdepth; i<10;i++)
  1576.             par->counter[i]=0;
  1577.     }
  1578. }
  1579.  
  1580.  
  1581. /* Updates all counters BEHIND the row. Changed paragraphs
  1582. * with a dynamic left margin will be rebroken. */ 
  1583. void LyXText::UpdateCounters(Row *row)
  1584. {
  1585.     LyXParagraph *par;
  1586.     if (!row) {
  1587.         row = firstrow;
  1588.         par = row->par;
  1589.     }
  1590.     else {
  1591.         if (row->par->next && row->par->next->footnoteflag != LyXParagraph::OPEN_FOOTNOTE) {
  1592.             par = row->par->LastPhysicalPar()->Next();
  1593.         } else {
  1594.             par = row->par->next;
  1595.         }
  1596.     }
  1597.  
  1598.     while (par) {
  1599.         while (row->par != par)
  1600.             row = row->next;
  1601.       
  1602.         SetCounter(par);
  1603.       
  1604.         /* now  check for the headline layouts. remember that they
  1605.          * have a dynamic left margin */ 
  1606.         if (!par->IsDummy()
  1607.             && ( lyxstyle.Style(parameters->textclass, par->layout)->margintype == MARGIN_DYNAMIC
  1608.              || lyxstyle.Style(parameters->textclass, par->layout)->labeltype == LABEL_SENSITIVE)
  1609.             ){
  1610.      
  1611.             /* Rebreak the paragraph */ 
  1612.             RemoveParagraph(row);
  1613.             AppendParagraph(row);
  1614.        
  1615.             /* think about the damned open footnotes! */ 
  1616.             while (par->Next() &&
  1617.                    (par->Next()->footnoteflag == LyXParagraph::OPEN_FOOTNOTE
  1618.                 || par->Next()->IsDummy())){
  1619.                 par = par->Next();
  1620.                 if (par->IsDummy()) {
  1621.                     while (row->par != par)
  1622.                         row = row->next;
  1623.                     RemoveParagraph(row);
  1624.                     AppendParagraph(row);
  1625.                 }
  1626.             }
  1627.         }
  1628.      
  1629.         par = par->LastPhysicalPar()->Next();
  1630.      
  1631.     }
  1632. }
  1633.  
  1634.  
  1635. /* insets an inset. */ 
  1636. void LyXText::InsertInset(Inset *inset)
  1637. {
  1638.     SetUndo(Undo::INSERT, 
  1639.         cursor.par->ParFromPos(cursor.pos)->previous, 
  1640.         cursor.par->ParFromPos(cursor.pos)->next);
  1641.     cursor.par->InsertChar(cursor.pos, LYX_META_INSET);
  1642.     cursor.par->InsertInset(cursor.pos, inset);
  1643.     InsertChar(LYX_META_INSET);  /* just to rebreak and refresh correctly.
  1644.                       * The character will not be inserted a
  1645.                       * second time */
  1646. }
  1647.  
  1648.  
  1649. /* this is for the simple cut and paste mechanism */ 
  1650. static LyXParagraph *simple_cut_buffer = NULL;
  1651. static char simple_cut_buffer_textclass = 0;
  1652.  
  1653. void DeleteSimpleCutBuffer()
  1654. {
  1655.     if (!simple_cut_buffer)
  1656.         return;
  1657.     LyXParagraph *tmppar;
  1658.  
  1659.     while (simple_cut_buffer) {
  1660.         tmppar =  simple_cut_buffer;
  1661.         simple_cut_buffer = simple_cut_buffer->next;
  1662.         delete tmppar;
  1663.     }
  1664.     simple_cut_buffer = NULL;
  1665. }
  1666.  
  1667.  
  1668. void LyXText::copyEnvironmentType()
  1669. {
  1670.     copylayouttype = cursor.par->GetLayout();
  1671. }
  1672.  
  1673.  
  1674. void LyXText::pasteEnvironmentType()
  1675. {
  1676.     SetLayout(copylayouttype);
  1677. }
  1678.  
  1679.  
  1680. void LyXText::CutSelection(bool doclear)
  1681. {
  1682.     /* This doesn't make sense, if there is no selection */ 
  1683.     if (!selection) {
  1684.         return;
  1685.     }
  1686.    
  1687.     /* OK, we have a selection. This is always between sel_start_cursor
  1688.      * and sel_end cursor */
  1689.     LyXParagraph *tmppar;
  1690.     int i;
  1691.    
  1692.     /* Check whether there are half footnotes in the selection */
  1693.     if (sel_start_cursor.par->footnoteflag != LyXParagraph::NO_FOOTNOTE
  1694.         || sel_end_cursor.par->footnoteflag != LyXParagraph::NO_FOOTNOTE){
  1695.         tmppar = sel_start_cursor.par;
  1696.         while (tmppar != sel_end_cursor.par){
  1697.             if (tmppar->footnoteflag != sel_end_cursor.par->footnoteflag){
  1698.                 WriteAlert(_("Impossible operation"), _("Don't know what to do with half floats."), _("sorry."));
  1699.                 return;
  1700.             }
  1701.             tmppar = tmppar->Next();
  1702.         }
  1703.     }
  1704.  
  1705.     /* table stuff -- begin*/
  1706.     if (sel_start_cursor.par->table || sel_end_cursor.par->table){
  1707.         if ( sel_start_cursor.par != sel_end_cursor.par){
  1708.             WriteAlert(_("Impossible operation"), _("Don't know what to do with half tables."), _("sorry."));
  1709.             return;
  1710.         }
  1711.         sel_start_cursor.par->table->Reinit();
  1712.     }
  1713.     /* table stuff -- end*/
  1714.  
  1715.     // make sure that the depth behind the selection are restored, too
  1716.     LyXParagraph *endpar = sel_end_cursor.par->LastPhysicalPar()->Next();
  1717.     LyXParagraph *undoendpar = endpar;
  1718.  
  1719.     if (endpar && endpar->GetDepth()) {
  1720.         while (endpar && endpar->GetDepth()) {
  1721.             endpar = endpar->LastPhysicalPar()->Next();
  1722.             undoendpar = endpar;
  1723.         }
  1724.     }
  1725.     else if (endpar) {
  1726.         endpar = endpar->Next();           /* because of parindents etc.  */
  1727.     }
  1728.    
  1729.     SetUndo(Undo::DELETE, 
  1730.         sel_start_cursor.par->ParFromPos(sel_start_cursor.pos)->previous, 
  1731.         undoendpar);
  1732.    
  1733.     /* delete the simple_cut_buffer */ 
  1734.     DeleteSimpleCutBuffer();
  1735.    
  1736.     /* set the textclass */
  1737.     simple_cut_buffer_textclass = parameters->textclass;
  1738.  
  1739. #ifdef WITH_WARNINGS
  1740. #warning Asger: Make cut more intelligent here.
  1741. #endif
  1742. /* 
  1743. White paper for "intelligent" cutting:
  1744.  
  1745. Example: "This is our text."
  1746. Using " our " as selection, cutting will give "This istext.".
  1747. Using "our" as selection, cutting will give "This is text.".
  1748. Using " our" as selection, cutting will give "This is text.".
  1749. Using "our " as selection, cutting will give "This is text.".
  1750.  
  1751. All those four selections will (however) paste identically:
  1752. Pasting with the cursor right after the "is" will give the
  1753. original text with all four selections.
  1754.  
  1755. The rationale is to be intelligent such that words are copied,
  1756. cut and pasted in a functional manner.
  1757.  
  1758. This is not implemented yet.
  1759. */
  1760.  
  1761.     char space_wrapped =
  1762.         sel_end_cursor.par->IsLineSeparator(sel_end_cursor.pos);
  1763.     if (sel_end_cursor.pos > 0
  1764.         && sel_end_cursor.par->IsLineSeparator(sel_end_cursor.pos - 1)) {
  1765.         sel_end_cursor.pos--;           /* please break before a space at
  1766.                     * the end */
  1767.         space_wrapped = True;
  1768.     }
  1769.  
  1770.     // cut behind a space if there is one
  1771.     while (sel_start_cursor.par->Last() > sel_start_cursor.pos
  1772.            && sel_start_cursor.par->IsLineSeparator(sel_start_cursor.pos)
  1773.            && (sel_start_cursor.par != sel_end_cursor.par
  1774.            || sel_start_cursor.pos < sel_end_cursor.pos))
  1775.         sel_start_cursor.pos++; 
  1776.    
  1777.    /* there are two cases: cut only within one paragraph or
  1778.     * more than one paragraph */
  1779.    
  1780.     if (sel_start_cursor.par->ParFromPos(sel_start_cursor.pos) 
  1781.         == sel_end_cursor.par->ParFromPos(sel_end_cursor.pos)) {
  1782.         /* only within one paragraph */
  1783.         simple_cut_buffer = new LyXParagraph();
  1784.         for (i=sel_start_cursor.pos; i< sel_end_cursor.pos; i++){
  1785.             /* table stuff -- begin*/
  1786.             if (sel_start_cursor.par->table
  1787.                 && sel_start_cursor.par->IsNewline(sel_start_cursor.pos)){
  1788.                 sel_start_cursor.par->CopyIntoMinibuffer(sel_start_cursor.pos);
  1789.                 sel_start_cursor.pos++;
  1790.             } else {
  1791.                 /* table stuff -- end*/
  1792.                 sel_start_cursor.par->CutIntoMinibuffer(sel_start_cursor.pos);
  1793.                 sel_start_cursor.par->Erase(sel_start_cursor.pos);
  1794.             }
  1795.             simple_cut_buffer->InsertFromMinibuffer(simple_cut_buffer->Last());
  1796.         }
  1797.         /* check for double spaces */
  1798.         if (sel_start_cursor.pos &&
  1799.             sel_start_cursor.par->Last()>sel_start_cursor.pos &&
  1800.             sel_start_cursor.par->IsLineSeparator(sel_start_cursor.pos - 1) &&
  1801.             sel_start_cursor.par->IsLineSeparator(sel_start_cursor.pos)){
  1802.             sel_start_cursor.par->Erase(sel_start_cursor.pos);
  1803.         }
  1804.         if (space_wrapped)
  1805.             simple_cut_buffer->InsertChar(i - sel_start_cursor.pos, ' ');
  1806.         endpar = sel_end_cursor.par->Next();
  1807.     }
  1808.     else {
  1809.         /* cut more than one paragraph */ 
  1810.    
  1811.         sel_end_cursor.par->BreakParagraphConservative(sel_end_cursor.pos);
  1812.         /* insert a space at the end if there was one */
  1813.         if (space_wrapped)
  1814.             sel_end_cursor.par->InsertChar(sel_end_cursor.par->Last(), ' ');
  1815.    
  1816.         sel_end_cursor.par = sel_end_cursor.par->Next();
  1817.         sel_end_cursor.pos = 0;
  1818.    
  1819.         cursor = sel_end_cursor;
  1820.    
  1821.         /* please break behind a space, if there is one. The space should
  1822.       * be copied too */ 
  1823.         if (sel_start_cursor.par->IsLineSeparator(sel_start_cursor.pos))
  1824.             sel_start_cursor.pos++;
  1825.    
  1826.         sel_start_cursor.par->BreakParagraphConservative(sel_start_cursor.pos);
  1827.         if (!sel_start_cursor.pos
  1828.             || sel_start_cursor.par->IsLineSeparator(sel_start_cursor.pos - 1)
  1829.             || sel_start_cursor.par->IsNewline(sel_start_cursor.pos - 1)) {
  1830.             sel_start_cursor.par->Next()->InsertChar(0, ' ');
  1831.         }
  1832.    
  1833.         /* store the endparagraph for redoing later */
  1834.         endpar = sel_end_cursor.par->Next();   /* needed because
  1835.                             * the sel_end_
  1836.                             * cursor.par
  1837.                             * will be pasted!*/
  1838.    
  1839.      /*store the selection */ 
  1840.         simple_cut_buffer = sel_start_cursor.par->ParFromPos(sel_start_cursor.pos)->next;
  1841.         simple_cut_buffer->previous = NULL;
  1842.         sel_end_cursor.par->previous->next = NULL;
  1843.  
  1844.         /* cut the selection */ 
  1845.         sel_start_cursor.par->ParFromPos(sel_start_cursor.pos)->next 
  1846.             = sel_end_cursor.par;
  1847.    
  1848.         sel_end_cursor.par->previous 
  1849.             = sel_start_cursor.par->ParFromPos(sel_start_cursor.pos);
  1850.  
  1851.      /* care about footnotes */
  1852.         if (simple_cut_buffer->footnoteflag) {
  1853.             LyXParagraph *tmppar = simple_cut_buffer;
  1854.             while (tmppar){
  1855.                 tmppar->footnoteflag = LyXParagraph::NO_FOOTNOTE;
  1856.                 tmppar = tmppar->next;
  1857.             }
  1858.         }
  1859.  
  1860.         /* the cut selection should begin with standard layout */
  1861.         simple_cut_buffer->Clear(); 
  1862.    
  1863.         /* paste the paragraphs again, if possible  */
  1864.         if (doclear)
  1865.             sel_start_cursor.par->Next()->ClearParagraph();
  1866.         if (sel_start_cursor.par->FirstPhysicalPar()->HasSameLayout(sel_start_cursor.par->Next())
  1867.             || 
  1868.             !sel_start_cursor.par->Next()->Last())
  1869.             sel_start_cursor.par->ParFromPos(sel_start_cursor.pos)->PasteParagraph();
  1870.  
  1871.    
  1872.    /* maybe a forgotten blank */
  1873.         if (sel_start_cursor.pos 
  1874.             && sel_start_cursor.par->IsLineSeparator(sel_start_cursor.pos)
  1875.             && sel_start_cursor.par->IsLineSeparator(sel_start_cursor.pos - 1)) {
  1876.             sel_start_cursor.par->Erase(sel_start_cursor.pos);
  1877.         }
  1878.     }   
  1879.  
  1880.  
  1881.     /* sometimes necessary */
  1882.     if (doclear)
  1883.         sel_start_cursor.par->ClearParagraph();
  1884.  
  1885.     RedoParagraphs(sel_start_cursor, endpar);
  1886.    
  1887.     ClearSelection();
  1888.     cursor = sel_start_cursor;
  1889.     SetCursor(cursor.par, cursor.pos);
  1890.     sel_cursor = cursor;
  1891.     UpdateCounters(cursor.row);
  1892. }
  1893.  
  1894.     
  1895. void LyXText::CopySelection()
  1896. {
  1897.     int i=0;
  1898.    
  1899.     /* this doesnt make sense, if there is no selection */ 
  1900.     if (!selection) {
  1901.         return;
  1902.     }
  1903.  
  1904.     /* ok we have a selection. This is always between sel_start_cursor
  1905.      * and sel_end cursor */
  1906.     LyXParagraph *tmppar;
  1907.    
  1908.     /* check wether there are half footnotes in the selection */
  1909.     if (sel_start_cursor.par->footnoteflag != LyXParagraph::NO_FOOTNOTE
  1910.         || sel_end_cursor.par->footnoteflag != LyXParagraph::NO_FOOTNOTE){
  1911.         tmppar = sel_start_cursor.par;
  1912.         while (tmppar != sel_end_cursor.par){
  1913.             if (tmppar->footnoteflag != sel_end_cursor.par->footnoteflag){
  1914.                 WriteAlert(_("Impossible operation"), _("Don't know what to do with half floats."), _("sorry."));
  1915.                 return;
  1916.             }
  1917.             tmppar = tmppar->Next();
  1918.         }
  1919.     }
  1920.  
  1921.     /* table stuff -- begin*/
  1922.     if (sel_start_cursor.par->table || sel_end_cursor.par->table){
  1923.         if ( sel_start_cursor.par != sel_end_cursor.par){
  1924.             WriteAlert(_("Impossible operation"), _("Don't know what to do with half tables."), _("sorry."));
  1925.             return;
  1926.         }
  1927.     }
  1928.     /* table stuff -- end*/
  1929.    
  1930.     /* delete the simple_cut_buffer */ 
  1931.     DeleteSimpleCutBuffer();
  1932.  
  1933.     /* set the textclass */
  1934.     simple_cut_buffer_textclass = parameters->textclass;
  1935.  
  1936.     // copy behind a space if there is one
  1937.     while (sel_start_cursor.par->Last() > sel_start_cursor.pos
  1938.            && sel_start_cursor.par->IsLineSeparator(sel_start_cursor.pos)
  1939.            && (sel_start_cursor.par != sel_end_cursor.par
  1940.            || sel_start_cursor.pos < sel_end_cursor.pos))
  1941.         sel_start_cursor.pos++; 
  1942.  
  1943.     /* there are two cases: copy only within one paragraph or more than one paragraph */
  1944.     if (sel_start_cursor.par->ParFromPos(sel_start_cursor.pos) 
  1945.         == sel_end_cursor.par->ParFromPos(sel_end_cursor.pos)) {
  1946.         /* only within one paragraph */
  1947.         simple_cut_buffer = new LyXParagraph();
  1948.         for (i=sel_start_cursor.pos; i< sel_end_cursor.pos; i++){
  1949.             sel_start_cursor.par->CopyIntoMinibuffer(i);
  1950.             simple_cut_buffer->InsertFromMinibuffer(i - sel_start_cursor.pos);
  1951.         }
  1952.     }
  1953.     else {
  1954.         /* copy more than one paragraph */ 
  1955.         /* clone the paragraphs within the selection*/
  1956.         tmppar = sel_start_cursor.par->ParFromPos(sel_start_cursor.pos);
  1957.         simple_cut_buffer = tmppar->Clone();
  1958.         LyXParagraph *tmppar2 = simple_cut_buffer;
  1959.      
  1960.         while (tmppar != sel_end_cursor.par->ParFromPos(sel_end_cursor.pos)
  1961.                && tmppar->next) {
  1962.             tmppar = tmppar->next;
  1963.             tmppar2->next = tmppar->Clone();
  1964.             tmppar2->next->previous = tmppar2;
  1965.             tmppar2=tmppar2->next;
  1966.         }
  1967.         tmppar2->next = NULL;
  1968.  
  1969.         /* care about footnotes */
  1970.         if (simple_cut_buffer->footnoteflag) {
  1971.             tmppar = simple_cut_buffer;
  1972.             while (tmppar){
  1973.                 tmppar->footnoteflag = LyXParagraph::NO_FOOTNOTE;
  1974.                 tmppar = tmppar->next;
  1975.             }
  1976.         }
  1977.      
  1978.         /* the simple_cut_buffer paragraph is too big */
  1979.         int tmpi2;
  1980.  
  1981.         tmpi2 = sel_start_cursor.par->PositionInParFromPos(sel_start_cursor.pos);
  1982.         for (;tmpi2;tmpi2--)
  1983.             simple_cut_buffer->Erase(0);
  1984.  
  1985.         /* now tmppar 2 is too big, delete all after sel_end_cursor.pos */
  1986.      
  1987.         tmpi2 = sel_end_cursor.par->PositionInParFromPos(sel_end_cursor.pos);
  1988.         while (tmppar2->last > tmpi2) {
  1989.             tmppar2->Erase(tmppar2->last-1);
  1990.         }
  1991.  
  1992.     }
  1993. }
  1994.           
  1995.  
  1996. void LyXText::PasteSelection()
  1997. {
  1998.     /* this does not make sense, if there is nothing to paste */ 
  1999.     if (!simple_cut_buffer)
  2000.         return;
  2001.  
  2002.     LyXParagraph *tmppar;
  2003.     LyXParagraph *endpar;
  2004.  
  2005.     LyXCursor tmpcursor;
  2006.  
  2007.     /* be carefull with footnotes in footnotes */ 
  2008.     if (cursor.par->footnoteflag != LyXParagraph::NO_FOOTNOTE) {
  2009.       
  2010.         /* check whether the cut_buffer includes a footnote */
  2011.         tmppar = simple_cut_buffer;
  2012.         while (tmppar && tmppar->footnoteflag == LyXParagraph::NO_FOOTNOTE)
  2013.             tmppar = tmppar->next;
  2014.       
  2015.         if (tmppar) {
  2016.             WriteAlert(_("Impossible operation"),
  2017.                    _("Can't paste float into float!"), _("Sorry."));
  2018.             return;
  2019.         }
  2020.     }
  2021.  
  2022.     /* table stuff -- begin*/
  2023.     if (cursor.par->table){
  2024.         if (simple_cut_buffer->next){
  2025.             WriteAlert(_("Impossible operation"),
  2026.                    _("Table cell cannot include more than one paragraph!"),
  2027.                    _("Sorry."));
  2028.             return;
  2029.         }
  2030.     }
  2031.     /* table stuff -- end*/
  2032.    
  2033.     SetUndo(Undo::INSERT, 
  2034.         cursor.par->ParFromPos(cursor.pos)->previous, 
  2035.         cursor.par->ParFromPos(cursor.pos)->next); 
  2036.  
  2037.     tmpcursor = cursor;
  2038.  
  2039.     /* There are two cases: cutbuffer only one paragraph or many */
  2040.     if (!simple_cut_buffer->next) {
  2041.         /* only within a paragraph */
  2042.      
  2043.         /* please break behind a space, if there is one */
  2044.         while (tmpcursor.par->Last() > tmpcursor.pos
  2045.                && tmpcursor.par->IsLineSeparator(tmpcursor.pos))
  2046.             tmpcursor.pos++; 
  2047.  
  2048.         tmppar = simple_cut_buffer->Clone();
  2049.         /* table stuff -- begin*/
  2050.         bool table_too_small = false;
  2051.         if (tmpcursor.par->table) {
  2052.             while (simple_cut_buffer->last && !table_too_small){
  2053.                 if (simple_cut_buffer->IsNewline(0)){
  2054.                     while(tmpcursor.pos < tmpcursor.par->Last() && !tmpcursor.par->IsNewline(tmpcursor.pos))
  2055.                         tmpcursor.pos++;
  2056.                     simple_cut_buffer->Erase(0);
  2057.                     if (tmpcursor.pos < tmpcursor.par->Last())
  2058.                         tmpcursor.pos++;
  2059.                     else
  2060.                         table_too_small = true;
  2061.                 } else {
  2062.                     simple_cut_buffer->CutIntoMinibuffer(0);
  2063.                     simple_cut_buffer->Erase(0);
  2064.                     tmpcursor.par->InsertFromMinibuffer(tmpcursor.pos);
  2065.                     tmpcursor.pos++;
  2066.                 }
  2067.             }
  2068.         } else {
  2069.             /* table stuff -- end*/
  2070.             while (simple_cut_buffer->last){
  2071.                 simple_cut_buffer->CutIntoMinibuffer(0);
  2072.                 simple_cut_buffer->Erase(0);
  2073.                 tmpcursor.par->InsertFromMinibuffer(tmpcursor.pos);
  2074.                 tmpcursor.pos++;
  2075.             }
  2076.         }
  2077.  
  2078.         delete simple_cut_buffer;
  2079.         simple_cut_buffer = tmppar;
  2080.         endpar = tmpcursor.par->Next();
  2081.     } else {
  2082.         /* many paragraphs */
  2083.  
  2084.         /* make a copy of the simple cut_buffer */
  2085.         tmppar = simple_cut_buffer;
  2086.         LyXParagraph *simple_cut_clone = tmppar->Clone();
  2087.         LyXParagraph *tmppar2 = simple_cut_clone;
  2088.         if (cursor.par->footnoteflag){
  2089.             tmppar->footnoteflag = cursor.par->footnoteflag;
  2090.             tmppar->footnotekind = cursor.par->footnotekind;
  2091.         }
  2092.         while (tmppar->next) {
  2093.             tmppar = tmppar->next;
  2094.             tmppar2->next = tmppar->Clone();
  2095.             tmppar2->next->previous = tmppar2;
  2096.             tmppar2=tmppar2->next;
  2097.             if (cursor.par->footnoteflag){
  2098.                 tmppar->footnoteflag = cursor.par->footnoteflag;
  2099.                 tmppar->footnotekind = cursor.par->footnotekind;
  2100.             }
  2101.         }
  2102.      
  2103.         /* make sure there is no class difference */ 
  2104.         SwitchLayoutsBetweenClasses(simple_cut_buffer_textclass,
  2105.                         parameters->textclass,
  2106.                         simple_cut_buffer);
  2107.      
  2108.         /* make the simple_cut_buffer exactly the same layout than
  2109.            the cursor paragraph */
  2110.         simple_cut_buffer->MakeSameLayout(cursor.par);
  2111.      
  2112.         /* find the end of the buffer */ 
  2113.         LyXParagraph *lastbuffer = simple_cut_buffer;
  2114.         while (lastbuffer->Next())
  2115.             lastbuffer=lastbuffer->Next();
  2116.      
  2117.         /* find the physical end of the buffer */ 
  2118.         lastbuffer = simple_cut_buffer;
  2119.         while (lastbuffer->Next())
  2120.             lastbuffer=lastbuffer->Next();
  2121.      
  2122.         /* please break behind a space, if there is one. The space 
  2123.          * should be copied too */
  2124.         if (cursor.par->Last() > cursor.pos && cursor.par->IsLineSeparator(cursor.pos))
  2125.             cursor.pos++; 
  2126.      
  2127.         bool paste_the_end = false;
  2128.  
  2129.         /* open the paragraph for inserting the simple_cut_buffer
  2130.            if necessary */
  2131.         if (cursor.par->Last() > cursor.pos || !cursor.par->Next()){
  2132.             cursor.par->BreakParagraphConservative(cursor.pos);
  2133.             paste_the_end = true;
  2134.         }
  2135.      
  2136.         /* be careful with double spaces */ 
  2137.         if ((!cursor.par->Last()
  2138.              || cursor.par->IsLineSeparator(cursor.pos - 1)
  2139.              || cursor.par->IsNewline(cursor.pos - 1))
  2140.             && simple_cut_buffer->last
  2141.             && simple_cut_buffer->IsLineSeparator(0))
  2142.             simple_cut_buffer->Erase(0);
  2143.      
  2144.         /* set the end for redoing later */ 
  2145.         endpar = cursor.par->ParFromPos(cursor.pos)->next->Next();
  2146.      
  2147.         /* paste it! */ 
  2148.         lastbuffer->ParFromPos(lastbuffer->Last())->next = cursor.par->ParFromPos(cursor.pos)->next;
  2149.         cursor.par->ParFromPos(cursor.pos)->next->previous = lastbuffer->ParFromPos(lastbuffer->Last());
  2150.      
  2151.         cursor.par->ParFromPos(cursor.pos)->next = simple_cut_buffer;
  2152.         simple_cut_buffer->previous = cursor.par->ParFromPos(cursor.pos);
  2153.    
  2154.         if (cursor.par->ParFromPos(cursor.pos)->Next() == lastbuffer)
  2155.             lastbuffer = cursor.par;
  2156.      
  2157.         cursor.par->ParFromPos(cursor.pos)->PasteParagraph();
  2158.      
  2159.         /* store the new cursor position  */
  2160.         tmpcursor.par = lastbuffer;
  2161.         tmpcursor.pos = lastbuffer->Last();
  2162.      
  2163.         /* maybe some pasting */ 
  2164.         if (lastbuffer->Next() && paste_the_end) {
  2165.             if (lastbuffer->Next()->HasSameLayout(lastbuffer)) {
  2166.      
  2167.                 /* be careful witth double spaces */ 
  2168.                 if ((!lastbuffer->Last()
  2169.                      || lastbuffer->IsLineSeparator(lastbuffer->Last() - 1)
  2170.                      || lastbuffer->IsNewline(lastbuffer->Last() - 1))
  2171.                     && lastbuffer->Next()->Last()
  2172.                     && lastbuffer->Next()->IsLineSeparator(0))
  2173.                     lastbuffer->Next()->Erase(0);
  2174.      
  2175.                 lastbuffer->ParFromPos(lastbuffer->Last())->PasteParagraph();
  2176.      
  2177.             }
  2178.             else if (!lastbuffer->Next()->Last()) {
  2179.                 lastbuffer->Next()->MakeSameLayout(lastbuffer);
  2180.      
  2181.                 /* be careful witth double spaces */ 
  2182.                 if ((!lastbuffer->Last()
  2183.                      || lastbuffer->IsLineSeparator(lastbuffer->Last() - 1)
  2184.                      || lastbuffer->IsNewline(lastbuffer->Last() - 1))
  2185.                     && lastbuffer->Next()->Last()
  2186.                     && lastbuffer->Next()->IsLineSeparator(0))
  2187.                     lastbuffer->Next()->Erase(0);
  2188.      
  2189.                 lastbuffer->ParFromPos(lastbuffer->Last())->PasteParagraph();
  2190.      
  2191.             }
  2192.             else if (!lastbuffer->Last()) {
  2193.                 lastbuffer->MakeSameLayout(lastbuffer->next);
  2194.      
  2195.                 /* be careful witth double spaces */ 
  2196.                 if ((!lastbuffer->Last()
  2197.                      || lastbuffer->IsLineSeparator(lastbuffer->Last() - 1)
  2198.                      || lastbuffer->IsNewline(lastbuffer->Last() - 1))
  2199.                     && lastbuffer->Next()->Last()
  2200.                     && lastbuffer->Next()->IsLineSeparator(0))
  2201.                     lastbuffer->Next()->Erase(0);
  2202.      
  2203.                 lastbuffer->ParFromPos(lastbuffer->Last())->PasteParagraph();
  2204.      
  2205.             }
  2206.             else lastbuffer->Next()->ClearParagraph();
  2207.         }
  2208.  
  2209.         /* restore the simple cut buffer */
  2210.         simple_cut_buffer = simple_cut_clone;
  2211.     }
  2212.  
  2213.     RedoParagraphs(cursor, endpar);
  2214.     
  2215.     SetCursor(cursor.par, cursor.pos);
  2216.     ClearSelection();
  2217.    
  2218.     sel_cursor = cursor;
  2219.     SetCursor(tmpcursor.par, tmpcursor.pos);
  2220.     SetSelection();
  2221.     UpdateCounters(cursor.row);
  2222. }
  2223.    
  2224.  
  2225. /* returns a pointer to the very first LyXParagraph */ 
  2226. LyXParagraph* LyXText::FirstParagraph()
  2227. {
  2228.     return params->paragraph;
  2229. }
  2230.  
  2231.  
  2232. /* returns true if the specified string is at the specified position */
  2233. bool LyXText::IsStringInText(LyXParagraph *par, int pos, char const* string)
  2234. {
  2235.     if (par) {
  2236.         int i = 0;
  2237.         while (pos+i < par->Last() && string[i] && 
  2238.                string[i]==par->GetChar(pos+i))
  2239.         {
  2240.             i++;
  2241.         }
  2242.  
  2243.         if (!string[i])
  2244.             return true;
  2245.     }
  2246.     return false;
  2247. }
  2248.  
  2249.  
  2250. /* sets the selection over the number of characters of string, no check!! */
  2251. void LyXText::SetSelectionOverString(char const* string)
  2252. {
  2253.     sel_cursor = cursor;
  2254.     int i;
  2255.     for (i=0; string[i]; i++)
  2256.         CursorRight();
  2257.     SetSelection();
  2258. }
  2259.  
  2260.  
  2261. /* simple replacing. The font of the first selected character is used */
  2262. void LyXText::ReplaceSelectionWithString(char const* string)
  2263. {
  2264.     SetCursorParUndo();
  2265.     FreezeUndo();
  2266.  
  2267.     if (!selection) { /* create a dummy selection */
  2268.         sel_end_cursor = cursor;
  2269.         sel_start_cursor = cursor;
  2270.     }
  2271.  
  2272.     // Get font setting before we cut
  2273.     int pos = sel_end_cursor.pos;
  2274.     LyXFont font = sel_end_cursor.par->GetFontSettings(pos);
  2275.  
  2276.     // Insert the new string
  2277.     for (int i=0; string[i];i++) {
  2278.         sel_end_cursor.par->InsertChar(pos, string[i]);
  2279.         sel_end_cursor.par->SetFont(pos, font);
  2280.         pos++;
  2281.     }
  2282.  
  2283.     // Cut the selection
  2284.     CutSelection();
  2285.  
  2286.     UnFreezeUndo();
  2287. }
  2288.  
  2289.  
  2290. /* if the string can be found: return true and set the cursor to
  2291.  * the new position */
  2292. bool LyXText::SearchForward(char const* string)
  2293. {
  2294.     LyXParagraph *par = cursor.par;
  2295.     int pos = cursor.pos;
  2296.  
  2297.     while (par && !IsStringInText(par,pos,string)) {
  2298.         if (pos<par->Last()-1)
  2299.             pos++;
  2300.         else {
  2301.             pos = 0;
  2302.             par = par->Next();
  2303.         }
  2304.     }
  2305.     if (par) {
  2306.         SetCursor(par,pos);
  2307.         return true;
  2308.     }
  2309.     else
  2310.         return false;
  2311. }
  2312.  
  2313.  
  2314. bool LyXText::SearchBackward(char const* string)
  2315. {
  2316.     LyXParagraph *par = cursor.par;
  2317.     int pos = cursor.pos;
  2318.  
  2319.     do {
  2320.         if (pos>0)
  2321.             pos--;
  2322.         else {
  2323.             // We skip empty paragraphs (Asger)
  2324.             do {
  2325.                 par = par->Previous();
  2326.                 if (par)
  2327.                     pos = par->Last()-1;
  2328.             } while (par && pos<0);
  2329.         }
  2330.     } while (par && !IsStringInText(par,pos,string));
  2331.   
  2332.     if (par) {
  2333.         SetCursor(par,pos);
  2334.         return true;
  2335.     }
  2336.     else
  2337.         return false;
  2338. }
  2339.  
  2340.  
  2341. /* needed to insert the selection */
  2342. void LyXText::InsertStringA(char* string)
  2343. {
  2344.     LyXParagraph *par = cursor.par;
  2345.     int pos = cursor.pos;
  2346.     int a = 0;
  2347.         int cell = 0;
  2348.     LyXParagraph *endpar = cursor.par->Next();
  2349.  
  2350.     SetCursorParUndo();
  2351.  
  2352.     char flag = lyxstyle.Style(parameters->textclass, 
  2353.                    cursor.par->GetLayout())->isEnvironment();
  2354.     /* only to be sure, should not be neccessary */ 
  2355.     ClearSelection();
  2356.    
  2357.     /* insert the string, don't insert doublespace */ 
  2358.     int i=0;
  2359.     int i2 = 0;
  2360.  
  2361.     for (i2=i;string[i2]&&string[i2]!='\n';i2++);
  2362.     par->Enlarge(pos, i2 - i);
  2363.     while (string[i]) {
  2364.         if (string[i]!='\n') {
  2365.             if (string[i]==' ' && (string[i+1]!=' ')
  2366.                 && pos && par->GetChar(pos-1)!=' ') {
  2367.                 par->InsertChar(pos,' ');
  2368.                 pos++;
  2369.             }
  2370.                         else if (par->table) {
  2371.                             if (string[i] == '\t') {
  2372.                                 while((pos < par->last) &&
  2373.                                       (par->GetChar(pos) != LYX_META_NEWLINE))
  2374.                                         pos++;
  2375.                                 if (pos < par->last)
  2376.                                         pos++;
  2377.                                 else // no more fields to fill skip the rest
  2378.                                         break;
  2379.                             } else if ((string[i] != 13) &&
  2380.                                 (((unsigned char) string[i] & 127) >= ' ')) {
  2381.                                 par->InsertChar(pos,string[i]);
  2382.                                 pos++;
  2383.                             }
  2384.                         }
  2385.             else if (string[i]==' ') {
  2386.                 par->InsertChar(pos,LYX_META_PROTECTED_SEPARATOR);
  2387.                 pos++;
  2388.             }
  2389.             else if (string[i]=='\t') {
  2390.                 for (a=pos; a<(pos/8+1)*8 ; a++) {
  2391.                     par->InsertChar(a,LYX_META_PROTECTED_SEPARATOR);
  2392.                 }
  2393.                 pos = a;
  2394.             }
  2395.             else if (string[i]!=13 && 
  2396.                  // Ignore unprintables
  2397.                  ((unsigned char) string[i] & 127) >= ' ') {
  2398.                 par->InsertChar(pos,string[i]);
  2399.                 pos++;
  2400.             }
  2401.         } else {
  2402.                         if (par->table) {
  2403.                                 if (!string[i+1]) {
  2404.                                         pos++;
  2405.                                         break;
  2406.                                 }
  2407.                                 while((pos < par->last) &&
  2408.                                       (par->GetChar(pos) != LYX_META_NEWLINE))
  2409.                                         pos++;
  2410.                                 pos++;
  2411.                                 cell=NumberOfCell(par,pos);
  2412.                                 while((pos < par->last) &&
  2413.                                       !(par->table->IsFirstCell(cell))) {
  2414.                                         while((pos < par->last) &&
  2415.                                               (par->GetChar(pos) != LYX_META_NEWLINE))
  2416.                                                 pos++;
  2417.                                         pos++;
  2418.                                         cell=NumberOfCell(par,pos);
  2419.                                 }
  2420.                                 if (pos >= par->last)
  2421.                                         // no more fields to fill skip the rest
  2422.                                         break;
  2423.                         } else {
  2424.                                 if (!par->last) {
  2425.                                         par->InsertChar(pos,LYX_META_PROTECTED_SEPARATOR);
  2426.                                         pos++;
  2427.                                 }
  2428.                                 par->BreakParagraph(pos, flag);
  2429.                                 par = par->Next();
  2430.                                 pos = 0;
  2431.                         }
  2432.             for (i2=i;string[i2]&&string[i2]!='\n';i2++);
  2433.             par->Enlarge(pos, i2 - i);
  2434.         }
  2435.       
  2436.         i++;
  2437.     }
  2438.    
  2439.     RedoParagraphs(cursor,endpar);
  2440.     SetCursor(cursor.par, cursor.pos);
  2441.     sel_cursor = cursor;
  2442.     SetCursor(par, pos);
  2443.     SetSelection();
  2444. }
  2445.  
  2446. /* turns double-CR to single CR, others where converted into one blank and 13s 
  2447.  * that are ignored .Double spaces are also converted into one. Spaces at
  2448.  * the beginning of a paragraph are forbidden. tabs are converted into one
  2449.  * space. then InsertStringA is called */ 
  2450. void LyXText::InsertStringB(char* string)
  2451. {
  2452.     LyXParagraph *par = cursor.par;
  2453.     int i=1;
  2454.     while (string[i]) {
  2455.         if (string[i]=='\t' && !par->table)
  2456.             string[i] = ' ';
  2457.         if (string[i]==' ' && string[i+1]==' ')
  2458.             string[i] = 13;
  2459.         if (string[i]=='\n' && string[i+1] && !par->table){
  2460.             if (string[i+1]!='\n') {
  2461.                 if (string[i-1]!=' ')
  2462.                     string[i]=' ';
  2463.                 else
  2464.                     string[i]= 13;
  2465.             }
  2466.             while (string[i+1] && (string[i+1]==' '
  2467.                            || string[i+1]=='\t'
  2468.                            || string[i+1]=='\n'
  2469.                            || string[i+1]==13)) {
  2470.                 string[i+1]=13;
  2471.                 i++;
  2472.             }
  2473.         }
  2474.         i++;
  2475.     }
  2476.     InsertStringA(string);
  2477. }
  2478.  
  2479.  
  2480. bool LyXText::GotoNextError()
  2481. {
  2482.     LyXCursor res=cursor;
  2483.     do {
  2484.         if (res.pos < res.par->Last()-1) {
  2485.             res.pos++;
  2486.         }
  2487.         else  {
  2488.             res.par=res.par->Next();
  2489.             res.pos = 0;
  2490.         }
  2491.       
  2492.     } while (res.par && 
  2493.          !(res.par->GetChar(res.pos)==LYX_META_INSET
  2494.            && res.par->GetInset(res.pos)->AutoDelete()));
  2495.    
  2496.     if (res.par) {
  2497.         SetCursor(res.par, res.pos);
  2498.         return true;
  2499.     }
  2500.    
  2501.     return false;
  2502. }
  2503.  
  2504.  
  2505. bool LyXText::GotoNextNote()
  2506. {
  2507.     LyXCursor res=cursor;
  2508.     do {
  2509.         if (res.pos < res.par->Last()-1) {
  2510.             res.pos++;
  2511.         }
  2512.         else  {
  2513.             res.par=res.par->Next();
  2514.             res.pos = 0;
  2515.         }
  2516.       
  2517.     } while (res.par && 
  2518.          !(res.par->GetChar(res.pos)==LYX_META_INSET
  2519.            && res.par->GetInset(res.pos)->LyxCode()==Inset::IGNORE_CODE));
  2520.    
  2521.     if (res.par) {
  2522.         SetCursor(res.par, res.pos);
  2523.         return true;
  2524.     }
  2525.    
  2526.     return false;
  2527. }
  2528.  
  2529.  
  2530. int LyXText::SwitchLayoutsBetweenClasses(char class1, char class2,
  2531.                      LyXParagraph *par)
  2532. {
  2533.     InsetError * new_inset = NULL;
  2534.     int ret = 0;
  2535.     if (!par || class1 == class2)
  2536.         return ret;
  2537.     par = par->FirstPhysicalPar();
  2538.     while (par) {
  2539.         LString name = lyxstyle.NameOfLayout(class1, par->layout);
  2540.         int lay = lyxstyle.NumberOfLayout(class2, name);
  2541.         if (lay == -1) // layout not found
  2542.             // use default layout "Stadard" (0)
  2543.             lay = 0;
  2544.         par->layout = lay;
  2545.       
  2546.         if (name != lyxstyle.NameOfLayout(class2, par->layout)) {
  2547.             ret++;
  2548.             LString s= "Layout had to be changed from\n"
  2549.                 + name + " to " + lyxstyle.NameOfLayout(class2, par->layout)
  2550.                 + "\nbecause of class conversion from\n"
  2551.                 + lyxstyle.NameOfClass(class1) + " to "
  2552.                 + lyxstyle.NameOfClass(class2);
  2553.             new_inset = new InsetError(s);
  2554.             par->InsertChar(0, LYX_META_INSET);
  2555.             par->InsertInset(0, new_inset);
  2556.         }
  2557.       
  2558.         par = par->next;
  2559.     }
  2560.     return ret;
  2561. }
  2562.  
  2563.  
  2564. void LyXText::CheckParagraph(LyXParagraph* par, int pos)
  2565. {
  2566.   
  2567.     LyXCursor tmpcursor;
  2568.  
  2569.     /* table stuff -- begin*/
  2570.    
  2571.     if (par->table) {
  2572.         CheckParagraphInTable(par, pos);
  2573.     }
  2574.     else {
  2575.         /* table stuff -- end*/
  2576.      
  2577.         long y = 0;
  2578.         int z;
  2579.      
  2580.         Row* row = GetRow(par, pos, y);
  2581.      
  2582.         /* is there a break one row above */ 
  2583.         if (row->previous && row->previous->par == row->par) {
  2584.             z = NextBreakPoint(row->previous, paperwidth);
  2585.             if ( z >= row->pos) {
  2586.                 /* set the dimensions of the row above  */ 
  2587.                 y -= row->previous->height;
  2588.                 refresh_y = y;
  2589.                 refresh_row = row->previous;
  2590.                 status = LyXText::NEED_MORE_REFRESH;
  2591.        
  2592.                 BreakAgain(row->previous);
  2593.  
  2594.                 /* set the cursor again. Otherwise dungling pointers are possible */
  2595.                 SetCursor(cursor.par, cursor.pos);
  2596.                 sel_cursor = cursor;
  2597.                 return;
  2598.             }
  2599.         }
  2600.  
  2601.         int tmpheight = row->height;
  2602.         int tmplast = RowLast(row);
  2603.         refresh_y = y;
  2604.         refresh_row = row;
  2605.  
  2606.         BreakAgain(row);
  2607.         if (row->height == tmpheight && RowLast(row) == tmplast)
  2608.             status = LyXText::NEED_VERY_LITTLE_REFRESH;
  2609.         else
  2610.             status = LyXText::NEED_MORE_REFRESH; 
  2611.    
  2612.         /* check the special right address boxes */
  2613.         if (lyxstyle.Style(parameters->textclass, par->GetLayout())->margintype == MARGIN_RIGHT_ADDRESS_BOX) {
  2614.             tmpcursor.par = par;
  2615.             tmpcursor.row = row;
  2616.             tmpcursor.y = y;
  2617.             tmpcursor.x = 0;
  2618.             tmpcursor.pos = pos;
  2619.             RedoDrawingOfParagraph(tmpcursor); 
  2620.         }
  2621.    
  2622.     }
  2623.  
  2624.     /* set the cursor again. Otherwise dangling pointers are possible */
  2625.     // also set the selection
  2626.    
  2627.     if (selection){
  2628.         tmpcursor = cursor;
  2629.         SetCursorIntern(sel_cursor.par, sel_cursor.pos);
  2630.         sel_cursor = cursor; 
  2631.         SetCursorIntern(sel_start_cursor.par, sel_start_cursor.pos);
  2632.         sel_start_cursor = cursor; 
  2633.         SetCursorIntern(sel_end_cursor.par, sel_end_cursor.pos);
  2634.         sel_end_cursor = cursor; 
  2635.         SetCursorIntern(last_sel_cursor.par, last_sel_cursor.pos);
  2636.         last_sel_cursor = cursor; 
  2637.         cursor = tmpcursor;
  2638.     }
  2639.     SetCursorIntern(cursor.par, cursor.pos);
  2640. }
  2641.  
  2642.  
  2643. /* returns 0 if inset wasn't found */
  2644. int LyXText::UpdateInset(Inset* inset)
  2645. {
  2646.     int pos;
  2647.     LyXParagraph *par;
  2648.  
  2649.     /* first check the current paragraph */
  2650.     pos = cursor.par->GetPositionOfInset(inset);
  2651.     if (pos != -1){
  2652.         CheckParagraph(cursor.par, pos);
  2653.         return 1;
  2654.     }
  2655.   
  2656.     /* check every paragraph */
  2657.   
  2658.     par = FirstParagraph();
  2659.     do {
  2660.         /* make sure the paragraph is open */
  2661.         if (par->footnoteflag != LyXParagraph::CLOSED_FOOTNOTE){
  2662.             pos = par->GetPositionOfInset(inset);
  2663.             if (pos != -1){
  2664.                 CheckParagraph(par, pos);
  2665.                 return 1;
  2666.             }
  2667.         }
  2668.         par = par->Next();
  2669.     } while (par);
  2670.   
  2671.     return 0;
  2672. }
  2673.  
  2674.  
  2675. void LyXText::SetCursor(LyXParagraph *par, int pos)
  2676. {
  2677.     LyXCursor old_cursor = cursor;
  2678.     SetCursorIntern(par, pos);
  2679.     DeleteEmptyParagraphMechanism(old_cursor);
  2680. }
  2681.  
  2682.  
  2683. void LyXText::SetCursorIntern(LyXParagraph *par, int pos)
  2684. {
  2685.     long y;
  2686.     Row *row;
  2687.     int left_margin;
  2688.     LyXParagraph *tmppar;
  2689.    
  2690.     /* correct the cursor position if impossible */
  2691.     if (pos > par->Last()){
  2692.         tmppar = par->ParFromPos(pos);
  2693.         pos = par->PositionInParFromPos(pos);
  2694.         par = tmppar;
  2695.     }
  2696.     if (par->IsDummy() && par->previous && 
  2697.         par->previous->footnoteflag == LyXParagraph::CLOSED_FOOTNOTE) {
  2698.         while (par->previous && 
  2699.                par->previous->footnoteflag == LyXParagraph::CLOSED_FOOTNOTE){
  2700.             par = par->previous ;
  2701.         }
  2702.         if (par->previous) {
  2703.             par = par->previous;
  2704.         }
  2705.         pos += par->last + 1;
  2706.     }
  2707.  
  2708.     cursor.par = par;
  2709.     cursor.pos = pos;
  2710.  
  2711.     /* get the cursor y position in text  */
  2712.     row = GetRow(par, pos, y);
  2713.     /* y is now the beginning of the cursor row */ 
  2714.     y += row->baseline;
  2715.     /* y is now the cursor baseline */ 
  2716.     cursor.y = y;
  2717.    
  2718.     /* now get the cursors x position */
  2719.    
  2720.     float x;
  2721.     float fill_separator, fill_hfill, fill_label_hfill;
  2722.     left_margin = LabelEnd(row);
  2723.     PrepareToPrint(row, x, fill_separator, fill_hfill, fill_label_hfill);
  2724.     int main_body = BeginningOfMainBody(row->par);
  2725.       
  2726.     /* table stuff -- begin*/
  2727.     if (row->par->table) {
  2728.         int cell = NumberOfCell(row->par, row->pos);
  2729.         float x_old = x;
  2730.         x += row->par->table->GetBeginningOfTextInCell(cell);
  2731.         for (pos = row->pos; pos < cursor.pos; pos++)  {
  2732.             if (row->par->IsNewline(pos)) {
  2733.                 x = x_old + row->par->table->WidthOfColumn(cell);
  2734.                 x_old = x;
  2735.                 cell++;
  2736.                 x += row->par->table->GetBeginningOfTextInCell(cell);
  2737.             } else {
  2738.                 x += SingleWidth(row->par, pos);
  2739.             }
  2740.         }
  2741.     } else
  2742.         /* table stuff -- end*/
  2743.  
  2744.         for (pos = row->pos; pos < cursor.pos; pos++)  {
  2745.             if (pos && pos == main_body
  2746.                 && !row->par->IsLineSeparator(pos - 1)) {
  2747.                 x += GetFont(row->par, -2).stringWidth(
  2748.                             lyxstyle.Style(parameters->textclass, row->par->GetLayout())->labelsep);
  2749.                 if (x < left_margin)
  2750.                     x = left_margin;
  2751.             }
  2752.       
  2753.             x += SingleWidth(row->par, pos);
  2754.             if (HfillExpansion(row, pos)) {
  2755.                 if (pos >= main_body)
  2756.                     x += fill_hfill;
  2757.                 else 
  2758.                     x += fill_label_hfill;
  2759.             }
  2760.             else if (pos >= main_body && row->par->IsSeparator(pos)) {
  2761.                 x+= fill_separator;
  2762.             }
  2763.       
  2764.             if (pos + 1 == main_body
  2765.                 && row->par->IsLineSeparator(pos)) {
  2766.                 x += GetFont(row->par, -2).stringWidth(
  2767.                             lyxstyle.Style(parameters->textclass, row->par->GetLayout())->labelsep);
  2768.                 if (row->par->IsLineSeparator(pos))
  2769.                     x-= SingleWidth(row->par, pos);
  2770.                 if (x < left_margin)
  2771.                     x = left_margin;
  2772.             }
  2773.         }
  2774.    
  2775.     cursor.x = int(x);
  2776.    
  2777.     cursor.x_fix = cursor.x;
  2778.     cursor.row = row;
  2779.    
  2780.     if (cursor.pos && 
  2781.         (cursor.pos == cursor.par->Last() || cursor.par->IsSeparator(cursor.pos)
  2782.          || (cursor.pos && cursor.pos == BeginningOfMainBody(cursor.par)
  2783.          && !cursor.par->IsSeparator(cursor.pos))
  2784.             )) {
  2785.         current_font = cursor.par->GetFontSettings(cursor.pos - 1);
  2786.         real_current_font = GetFont(cursor.par, cursor.pos - 1);
  2787.     } else {
  2788.         current_font = cursor.par->GetFontSettings(cursor.pos);
  2789.         real_current_font = GetFont(cursor.par, cursor.pos);
  2790.     }
  2791. }
  2792.  
  2793.  
  2794. void LyXText::SetCursorFromCoordinates(int x, long y)
  2795. {
  2796.     Row *row;
  2797.     int column;
  2798.  
  2799.     LyXCursor old_cursor;
  2800.    
  2801.     old_cursor = cursor;
  2802.    
  2803.     /* get the row first */ 
  2804.    
  2805.     row = GetRowNearY(y);
  2806.    
  2807.     cursor.par = row->par;
  2808.    
  2809.     column = GetColumnNearX(row, x);
  2810.     cursor.pos = row->pos + column;
  2811.     cursor.x = x;
  2812.     cursor.y = y + row->baseline;
  2813.    
  2814.     cursor.row = row;
  2815.     
  2816.     if (cursor.pos && 
  2817.         (cursor.pos == cursor.par->Last()
  2818.          || cursor.par->IsSeparator(cursor.pos)
  2819.          || (cursor.pos && cursor.pos == BeginningOfMainBody(cursor.par)
  2820.          && !cursor.par->IsSeparator(cursor.pos))
  2821.             )) {
  2822.         current_font = cursor.par->GetFontSettings(cursor.pos - 1);
  2823.         real_current_font = GetFont(cursor.par, cursor.pos - 1);
  2824.     } else {
  2825.         current_font = cursor.par->GetFontSettings(cursor.pos);
  2826.         real_current_font = GetFont(cursor.par, cursor.pos);
  2827.     }
  2828.     DeleteEmptyParagraphMechanism(old_cursor);
  2829. }
  2830.  
  2831.  
  2832. void LyXText::CursorLeft()
  2833. {
  2834.     CursorLeftIntern();
  2835.         if (cursor.par->table) {
  2836.                 int cell = NumberOfCell(cursor.par, cursor.pos);
  2837.                 if (cursor.par->table->IsContRow(cell) &&
  2838.                     cursor.par->table->CellHasContRow(cursor.par->table->GetCellAbove(cell))<0) {
  2839.                         CursorUp();
  2840.                 }
  2841.         }
  2842. }
  2843.  
  2844.  
  2845. void LyXText::CursorLeftIntern()
  2846. {
  2847.     if (cursor.pos > 0) {
  2848.         SetCursor(cursor.par, cursor.pos - 1);
  2849.     }
  2850.     else if (cursor.par->Previous()) {
  2851.         SetCursor(cursor.par->Previous(), cursor.par->Previous()->Last());
  2852.     }
  2853. }
  2854.  
  2855.  
  2856. void LyXText::CursorRight()
  2857. {
  2858.     CursorRightIntern();
  2859.         if (cursor.par->table) {
  2860.                 int cell = NumberOfCell(cursor.par, cursor.pos);
  2861.                 if (cursor.par->table->IsContRow(cell) &&
  2862.                     cursor.par->table->CellHasContRow(cursor.par->table->GetCellAbove(cell))<0) {
  2863.                         CursorUp();
  2864.                 }
  2865.         }
  2866. }
  2867.  
  2868.  
  2869. void LyXText::CursorRightIntern()
  2870. {
  2871.     if (cursor.pos < cursor.par->Last()) {
  2872.         SetCursor(cursor.par, cursor.pos + 1);
  2873.     }
  2874.     else if (cursor.par->Next()) {
  2875.         SetCursor(cursor.par->Next(), 0);
  2876.     }
  2877. }
  2878.  
  2879.  
  2880. void LyXText::CursorUp()
  2881. {
  2882.     SetCursorFromCoordinates(cursor.x_fix, 
  2883.                  cursor.y - cursor.row->baseline - 1);
  2884.         if (cursor.par->table) {
  2885.                 int cell = NumberOfCell(cursor.par, cursor.pos);
  2886.                 if (cursor.par->table->IsContRow(cell) &&
  2887.                     cursor.par->table->CellHasContRow(cursor.par->table->GetCellAbove(cell))<0) {
  2888.                         CursorUp();
  2889.                 }
  2890.         }
  2891. }
  2892.  
  2893.  
  2894. void LyXText::CursorDown()
  2895. {
  2896.         if (cursor.par->table &&
  2897.             cursor.par->table->ShouldBeVeryLastRow(NumberOfCell(cursor.par, cursor.pos)) &&
  2898.             !cursor.par->next)
  2899.                 return;
  2900.     SetCursorFromCoordinates(cursor.x_fix, 
  2901.                  cursor.y - cursor.row->baseline
  2902.                  + cursor.row->height + 1);
  2903.         if (cursor.par->table) {
  2904.                 int cell = NumberOfCell(cursor.par, cursor.pos);
  2905.                 int cell_above = cursor.par->table->GetCellAbove(cell);
  2906.                 while(cursor.par->table &&
  2907.                       cursor.par->table->IsContRow(cell) &&
  2908.                       (cursor.par->table->CellHasContRow(cell_above)<0)) {
  2909.                     SetCursorFromCoordinates(cursor.x_fix, 
  2910.                                              cursor.y - cursor.row->baseline
  2911.                                              + cursor.row->height + 1);
  2912.                     if (cursor.par->table) {
  2913.                         cell = NumberOfCell(cursor.par, cursor.pos);
  2914.                         cell_above = cursor.par->table->GetCellAbove(cell);
  2915.                     }
  2916.                 }
  2917.         }
  2918. }
  2919.  
  2920.  
  2921. void LyXText::CursorUpParagraph()
  2922. {
  2923.     if (cursor.pos > 0) {
  2924.         SetCursor(cursor.par, 0);
  2925.     }
  2926.     else if (cursor.par->Previous()) {
  2927.         SetCursor(cursor.par->Previous(), 0);
  2928.     }
  2929. }
  2930.  
  2931.  
  2932. void LyXText::CursorDownParagraph()
  2933. {
  2934.     if (cursor.par->Next()) {
  2935.         SetCursor(cursor.par->Next(), 0);
  2936.     } else {
  2937.         SetCursor(cursor.par,cursor.par->Last());
  2938.     }
  2939. }
  2940.  
  2941.  
  2942.  
  2943. void LyXText::DeleteEmptyParagraphMechanism(LyXCursor old_cursor)
  2944. {
  2945.     bool deleted = false;
  2946.     
  2947.     /* this is the delete-empty-paragraph-mechanism. */ 
  2948.     if (selection)
  2949.         return;
  2950.  
  2951.     // Paragraph should not be deleted if empty
  2952.     if ((lyxstyle.Style(parameters->textclass,
  2953.                         old_cursor.par->GetLayout()))->keepempty)
  2954.         return;
  2955.  
  2956.     LyXCursor tmpcursor;
  2957.  
  2958.     if (old_cursor.par != cursor.par) {
  2959.         if ( (old_cursor.par->Last() == 0
  2960.               || (old_cursor.par->Last() == 1
  2961.                   && (old_cursor.par->IsLineSeparator(0))))
  2962.              && old_cursor.par->FirstPhysicalPar()
  2963.              == old_cursor.par->LastPhysicalPar()
  2964.              //&& (
  2965.              // impossible to insert your own \caption with
  2966.              // this set. made it impossible to use the
  2967.              // optional argument...
  2968.              // also empty pars in fig or tab never was removed(?)(Lgb)
  2969.              //lyxstyle.Style(parameters->textclass,
  2970. //                     old_cursor.par->GetLayout())->labeltype!=LABEL_SENSITIVE || 
  2971.              //     (old_cursor.par->footnoteflag == LyXParagraph::NO_FOOTNOTE
  2972.              //|| (old_cursor.par->footnotekind != LyXParagraph::FIG
  2973.              //      && old_cursor.par->footnotekind != LyXParagraph::TAB)))
  2974.              ) {
  2975.             
  2976.             /* ok, we will delete anything */ 
  2977.             
  2978.             // make sure that you do not delete any environments
  2979.             if ((old_cursor.par->footnoteflag != LyXParagraph::OPEN_FOOTNOTE &&
  2980.                  !(old_cursor.row->previous 
  2981.                    && old_cursor.row->previous->par->footnoteflag == LyXParagraph::OPEN_FOOTNOTE)
  2982.                  && !(old_cursor.row->next 
  2983.                       && old_cursor.row->next->par->footnoteflag == LyXParagraph::OPEN_FOOTNOTE))
  2984.                 || 
  2985.                 (old_cursor.par->footnoteflag == LyXParagraph::OPEN_FOOTNOTE &&
  2986.                  ((old_cursor.row->previous 
  2987.                    && old_cursor.row->previous->par->footnoteflag == LyXParagraph::OPEN_FOOTNOTE)
  2988.                   || 
  2989.                   (old_cursor.row->next
  2990.                    && old_cursor.row->next->par->footnoteflag == LyXParagraph::OPEN_FOOTNOTE))
  2991.                  )){
  2992.                 status = LyXText::NEED_MORE_REFRESH;
  2993.                 deleted = true;
  2994.                 
  2995.                 if (old_cursor.row->previous) {
  2996.                     refresh_row = old_cursor.row->previous;
  2997.                     refresh_y = old_cursor.y - old_cursor.row->baseline - refresh_row->height;
  2998.                     tmpcursor = cursor;
  2999.                     cursor = old_cursor; // that undo can restore the right cursor position
  3000.                     LyXParagraph *endpar = old_cursor.par->next;
  3001.                     if (endpar && endpar->GetDepth()) {
  3002.                         while (endpar && endpar->GetDepth()) {
  3003.                             endpar = endpar->LastPhysicalPar()->Next();
  3004.                         }
  3005.                     }
  3006.                     SetUndo(Undo::DELETE,
  3007.                             old_cursor.par->previous,
  3008.                             endpar);
  3009.                     cursor = tmpcursor;
  3010.  
  3011.                     /* delete old row */ 
  3012.                     RemoveRow(old_cursor.row);
  3013.                     if (params->paragraph == old_cursor.par) {
  3014.                         params->paragraph = params->paragraph->next;
  3015.                     }
  3016.                     /* delete old par */ 
  3017.                     delete old_cursor.par;
  3018.                     
  3019.                     /* Breakagain the next par. Needed
  3020.                      * because of the parindent that
  3021.                      * can occur or dissappear. The
  3022.                      * next row can change its height,
  3023.                      * if there is another layout before */
  3024.                     if (refresh_row->next) {
  3025.                         BreakAgain(refresh_row->next);
  3026.                         UpdateCounters(refresh_row);
  3027.                     }
  3028.                     SetHeightOfRow(refresh_row);
  3029.                 }
  3030.                 else {
  3031.                     refresh_row = old_cursor.row->next;
  3032.                     refresh_y = old_cursor.y - old_cursor.row->baseline;
  3033.                     
  3034.                     tmpcursor = cursor;
  3035.                     cursor = old_cursor; // that undo can restore the right cursor position
  3036.                     LyXParagraph *endpar = old_cursor.par->next;
  3037.                     if (endpar && endpar->GetDepth()) {
  3038.                         while (endpar && endpar->GetDepth()) {
  3039.                             endpar = endpar->LastPhysicalPar()->Next();
  3040.                         }
  3041.                     }
  3042.                     SetUndo(Undo::DELETE,
  3043.                             old_cursor.par->previous,
  3044.                             endpar);
  3045.                     cursor = tmpcursor;
  3046.  
  3047.                     /* delete old row */ 
  3048.                     RemoveRow(old_cursor.row);
  3049.                     /* delete old par */ 
  3050.                     if (params->paragraph == old_cursor.par) {
  3051.                         params->paragraph = params->paragraph->next;
  3052.                     }
  3053.                     delete old_cursor.par;
  3054.                     
  3055.                     /* Breakagain the next par. Needed because of
  3056.                      * the parindent that can occur or dissappear.
  3057.                      * The next row can change its height, if there
  3058.                      * is another layout before */ 
  3059.                     if (refresh_row) {
  3060.                         BreakAgain(refresh_row);
  3061.                         UpdateCounters(refresh_row->previous);
  3062.                     }
  3063.                 }
  3064.                 
  3065.                 /* correct cursor y */
  3066.                 SetCursor(cursor.par, cursor.pos);
  3067.              
  3068.                 /* if (cursor.y > old_cursor.y)
  3069.                    cursor.y -= old_cursor.row->height; */ 
  3070.      
  3071.                 if (sel_cursor.par  == old_cursor.par
  3072.                     && sel_cursor.pos == sel_cursor.pos) {
  3073.                     /* correct selection*/ 
  3074.                     sel_cursor = cursor;
  3075.                 }
  3076.             }
  3077.        
  3078.         }
  3079.         if (!deleted){
  3080.             if (old_cursor.par->ClearParagraph()){
  3081.                 RedoParagraphs(old_cursor, old_cursor.par->Next());
  3082.                 /* correct cursor y */
  3083.                 SetCursor(cursor.par, cursor.pos);
  3084.                 sel_cursor = cursor;
  3085.             }
  3086.         }
  3087.     } else if (cursor.par->table && (cursor.row != old_cursor.row)) {
  3088.         int cell = NumberOfCell(old_cursor.par, old_cursor.pos);
  3089.         if (old_cursor.par->table->IsContRow(cell) &&
  3090.             IsEmptyTableRow(&old_cursor)) {
  3091.             RemoveTableRow(&old_cursor);
  3092.             RedoParagraph();
  3093.         }
  3094.     }
  3095. }
  3096.  
  3097.  
  3098. LyXParagraph* LyXText::GetParFromID(int id)
  3099. {
  3100.     LyXParagraph* result = FirstParagraph();
  3101.     while (result && result->GetID() != id)
  3102.         result = result->next;
  3103.     return result;
  3104. }
  3105.  
  3106.  
  3107. // undo functions
  3108. bool  LyXText::TextUndo()
  3109. { // returns false if no undo possible
  3110.     Undo *undo = params->undostack.Pop();
  3111.     if (undo){
  3112.         FinishUndo();
  3113.         if (!undo_frozen)
  3114.             params->redostack.Push(CreateUndo(undo->kind, 
  3115.                               GetParFromID(undo->number_of_before_par),
  3116.                               GetParFromID(undo->number_of_behind_par)));
  3117.     }
  3118.     return TextHandleUndo(undo);
  3119. }
  3120.  
  3121.  
  3122. bool LyXText::TextRedo()
  3123. { // returns false if no redo possible
  3124.     Undo *undo = params->redostack.Pop();
  3125.     if (undo){
  3126.         FinishUndo();
  3127.         if (!undo_frozen)
  3128.             params->undostack.Push(CreateUndo(undo->kind, 
  3129.                               GetParFromID(undo->number_of_before_par),
  3130.                               GetParFromID(undo->number_of_behind_par)));
  3131.     }
  3132.     return TextHandleUndo(undo);
  3133. }
  3134.  
  3135.  
  3136. bool LyXText::TextHandleUndo(Undo* undo){ // returns false if no undo possible
  3137.     bool result = false;
  3138.     if (undo){
  3139.         LyXParagraph* before = GetParFromID(undo->number_of_before_par); 
  3140.         LyXParagraph* behind = GetParFromID(undo->number_of_behind_par); 
  3141.         LyXParagraph* tmppar;
  3142.         LyXParagraph* tmppar2;
  3143.         LyXParagraph* tmppar3;
  3144.         LyXParagraph* tmppar4;
  3145.         LyXParagraph* endpar;
  3146.         LyXParagraph* tmppar5;
  3147.     
  3148.         /*
  3149.           if (before){
  3150.           before->text[before->last] = 0;
  3151.           printf("before: %s\n", before->text);
  3152.           }
  3153.           if (behind){
  3154.           behind->text[behind->last] = 0;
  3155.           printf("behind: %s\n", behind->text);
  3156.           }
  3157.           */ 
  3158.  
  3159.         // if there's no before take the beginning of the document for redoing
  3160.         if (!before)
  3161.             SetCursorIntern(FirstParagraph(), 0);
  3162.  
  3163.         // replace the paragraphs with the undo informations
  3164.  
  3165.         tmppar3 = undo->par;
  3166.         undo->par = NULL; // otherwise the undo destructor would delete the paragraph
  3167.         tmppar4 = tmppar3;
  3168.         if (tmppar4){
  3169.             while (tmppar4->next)
  3170.                 tmppar4 = tmppar4->next;
  3171.         } // get last undo par
  3172.     
  3173.         // now remove the old text if there is any
  3174.         if (before != behind || (!behind && !before)){
  3175.             if (before)
  3176.                 tmppar5 = before->next;
  3177.             else
  3178.                 tmppar5 = params->paragraph;
  3179.             tmppar2 = tmppar3;
  3180.             while (tmppar5 && tmppar5 != behind){
  3181.                 tmppar = tmppar5;
  3182.                 tmppar5 = tmppar5->next;
  3183.                 // a memory optimization for edit: Only layout information
  3184.                 // is stored in the undo. So restore the text informations.
  3185.                 if (undo->kind == Undo::EDIT){
  3186.                     tmppar2->text = tmppar->text;
  3187.                     tmppar->text = NULL;
  3188.                     tmppar2 = tmppar2->next;
  3189.                 }
  3190.                 if ( currentrow && currentrow->par == tmppar )
  3191.                     currentrow = currentrow -> previous;
  3192.                 delete tmppar;
  3193.             }
  3194.         }
  3195.     
  3196.         // put the new stuff in the list if there is one
  3197.         if (tmppar3){
  3198.             if (before)
  3199.                 before->next = tmppar3;
  3200.             else
  3201.                 params->paragraph = tmppar3;
  3202.             tmppar3->previous = before;
  3203.         }
  3204.         else {
  3205.             if (!before)
  3206.                 params->paragraph = behind;
  3207.         }
  3208.         if (tmppar4) {
  3209.             tmppar4->next = behind;
  3210.             if (behind)
  3211.                 behind->previous = tmppar4;
  3212.         }
  3213.     
  3214.     
  3215.         // Set the cursor for redoing
  3216.         if (before){
  3217.             SetCursorIntern(before->FirstSelfrowPar(), 0);
  3218.             // check wether before points to a closed float and open it if necessary
  3219.             if (before && before->footnoteflag == LyXParagraph::CLOSED_FOOTNOTE
  3220.                 && before->next && before->next->footnoteflag != LyXParagraph::NO_FOOTNOTE){
  3221.                 tmppar4 =before;
  3222.                 while (tmppar4->previous && 
  3223.                        tmppar4->previous->footnoteflag == LyXParagraph::CLOSED_FOOTNOTE)
  3224.                     tmppar4 = tmppar4->previous;
  3225.                 while (tmppar4 && tmppar4->footnoteflag == LyXParagraph::CLOSED_FOOTNOTE){
  3226.                     tmppar4->footnoteflag = LyXParagraph::OPEN_FOOTNOTE;
  3227.                     tmppar4 = tmppar4->next;
  3228.                 }
  3229.             }
  3230.         }
  3231.     
  3232.         // open a cosed footnote at the end if necessary
  3233.         if (behind && behind->previous && 
  3234.             behind->previous->footnoteflag != LyXParagraph::NO_FOOTNOTE &&
  3235.             behind->footnoteflag == LyXParagraph::CLOSED_FOOTNOTE){
  3236.             while (behind && behind->footnoteflag == LyXParagraph::CLOSED_FOOTNOTE){
  3237.                 behind->footnoteflag = LyXParagraph::OPEN_FOOTNOTE;
  3238.                 behind = behind->next;
  3239.             }
  3240.         }
  3241.     
  3242.         // calculate the endpar for redoing the paragraphs.
  3243.         if (behind){
  3244.             if (behind->footnoteflag != LyXParagraph::CLOSED_FOOTNOTE)
  3245.                 endpar = behind->LastPhysicalPar()->Next();
  3246.             else
  3247.                 endpar = behind->NextAfterFootnote()->LastPhysicalPar()->Next();
  3248.         }
  3249.         else
  3250.             endpar = behind;
  3251.     
  3252.         tmppar = GetParFromID(undo->number_of_cursor_par);
  3253.         RedoParagraphs(cursor, endpar); 
  3254.         if (tmppar){
  3255.             SetCursorIntern(tmppar, undo->cursor_pos);
  3256.             UpdateCounters(cursor.row);
  3257.         }
  3258.         result = true;
  3259.         delete undo;
  3260.     }
  3261.     FinishUndo();
  3262.     return result;
  3263. }
  3264.  
  3265.  
  3266. void LyXText::FinishUndo()
  3267. { // makes sure the next operation will be stored
  3268.     undo_finished = True;
  3269. }
  3270.  
  3271.  
  3272. void LyXText::FreezeUndo()
  3273. { // this is dangerous and for internal use only
  3274.     undo_frozen = True;
  3275. }
  3276.  
  3277.  
  3278. void LyXText::UnFreezeUndo()
  3279. { // this is dangerous and for internal use only
  3280.     undo_frozen = false;
  3281. }
  3282.  
  3283.  
  3284. void LyXText::SetUndo(Undo::undo_kind kind, LyXParagraph *before, LyXParagraph *behind)
  3285. {
  3286.     if (!undo_frozen)
  3287.         params->undostack.Push(CreateUndo(kind, before, behind));
  3288.     params->redostack.Clear();
  3289. }
  3290.  
  3291.  
  3292. void LyXText::SetRedo(Undo::undo_kind kind, LyXParagraph *before, LyXParagraph *behind)
  3293. {
  3294.     params->redostack.Push(CreateUndo(kind, before, behind));
  3295. }
  3296.  
  3297.  
  3298. Undo* LyXText::CreateUndo(Undo::undo_kind kind, LyXParagraph *before,
  3299.               LyXParagraph *behind)
  3300. {
  3301.     int before_number = -1;
  3302.     int behind_number = -1;
  3303.     if (before)
  3304.         before_number = before->GetID();
  3305.     if (behind)
  3306.         behind_number = behind->GetID();
  3307.     // Undo::EDIT  and Undo::FINISH are
  3308.     // always finished. (no overlapping there)
  3309.     // overlapping only with insert and delete inside one paragraph: 
  3310.     // Nobody wants all removed  character
  3311.     // appear one by one when undoing. 
  3312.     // EDIT is special since only layout information, not the
  3313.     // contents of a paragaph are stored.
  3314.     if (!undo_finished && kind != Undo::EDIT && 
  3315.         kind != Undo::FINISH){
  3316.         // check wether storing is needed
  3317.         if (params->undostack.Top() && 
  3318.             params->undostack.Top()->kind == kind &&
  3319.             params->undostack.Top()->number_of_before_par ==  before_number &&
  3320.             params->undostack.Top()->number_of_behind_par ==  behind_number ){
  3321.             // no undo needed
  3322.             return NULL;
  3323.         }
  3324.     }
  3325.     // create a new Undo
  3326.     LyXParagraph* undopar;
  3327.     LyXParagraph* tmppar;
  3328.     LyXParagraph *tmppar2;
  3329.  
  3330.     LyXParagraph* start = NULL;
  3331.     LyXParagraph* end = NULL;
  3332.   
  3333.     if (before)
  3334.         start = before->next;
  3335.     else
  3336.         start = FirstParagraph();
  3337.     if (behind)
  3338.         end = behind->previous;
  3339.     else {
  3340.         end = FirstParagraph();
  3341.         while (end->next)
  3342.             end = end->next;
  3343.     }
  3344.  
  3345.     if (start && end && start != end->next && (before != behind || (!before && !behind))) {
  3346.         tmppar = start;
  3347.         tmppar2 = tmppar->Clone();
  3348.         tmppar2->SetID(tmppar->GetID());
  3349.  
  3350.         // a memory optimization: Just store the layout information when only edit
  3351.         if (kind == Undo::EDIT){
  3352.             if (tmppar2->text)
  3353.                 delete[] tmppar2->text;
  3354.             tmppar2->text = NULL;
  3355.         }
  3356.  
  3357.         undopar = tmppar2;
  3358.   
  3359.         while (tmppar != end && tmppar->next) {
  3360.             tmppar = tmppar->next;
  3361.             tmppar2->next = tmppar->Clone();
  3362.             tmppar2->next->SetID(tmppar->GetID());
  3363.             // a memory optimization: Just store the layout information when only edit
  3364.             if (kind == Undo::EDIT){
  3365.                 if (tmppar2->next->text)
  3366.                     delete[] tmppar2->next->text;
  3367.                 tmppar2->next->text = NULL;
  3368.             }
  3369.             tmppar2->next->previous = tmppar2;
  3370.             tmppar2=tmppar2->next;
  3371.         }
  3372.         tmppar2->next = NULL;
  3373.     }
  3374.     else
  3375.         undopar = NULL; // nothing to replace (undo of delete maybe)
  3376.   
  3377.     int cursor_par = cursor.par->ParFromPos(cursor.pos)->GetID();
  3378.     int cursor_pos =  cursor.par->PositionInParFromPos(cursor.pos);
  3379.  
  3380.     Undo* undo = new Undo(kind, 
  3381.                   before_number, behind_number,  
  3382.                   cursor_par, cursor_pos, 
  3383.                   undopar);
  3384.   
  3385.     undo_finished = false;
  3386.     return undo;
  3387. }
  3388.  
  3389.  
  3390. void LyXText::SetCursorParUndo()
  3391. {
  3392.     SetUndo(Undo::FINISH, 
  3393.         cursor.par->ParFromPos(cursor.pos)->previous, 
  3394.         cursor.par->ParFromPos(cursor.pos)->next); 
  3395. }
  3396.  
  3397. void LyXText::RemoveTableRow(LyXCursor *cursor)
  3398. {
  3399.     int
  3400.         cell_act,
  3401.         cell = -1,
  3402.         cell_org = 0;
  3403.     
  3404.     do {
  3405.         /* move to the previous row */
  3406.         cell_act = NumberOfCell(cursor->par, cursor->pos);
  3407.         if (cell < 0)
  3408.             cell = cell_act;
  3409.         while (cursor->pos && !cursor->par->IsNewline(cursor->pos-1))
  3410.             cursor->pos--;
  3411.         while (cursor->pos && 
  3412.                !cursor->par->table->IsFirstCell(cell_act)){
  3413.             cursor->pos--;
  3414.             while (cursor->pos && !cursor->par->IsNewline(cursor->pos-1))
  3415.                 cursor->pos--;
  3416.             cell--;
  3417.             cell_act--;
  3418.         }
  3419.         /* now we have to pay attention if the actual table is the
  3420.            main row of TableContRows and if yes to delete all of them */
  3421.         if (!cell_org)
  3422.             cell_org = cell;
  3423.         /* delete up to the next row */
  3424.         while (cursor->pos < cursor->par->Last() && 
  3425.                (cell_act == cell_org
  3426.                 || !cursor->par->table->IsFirstCell(cell_act))){
  3427.             while (cursor->pos < cursor->par->Last() && !cursor->par->IsNewline(cursor->pos))
  3428.                 cursor->par->Erase(cursor->pos);
  3429.             cell++;
  3430.             cell_act++;
  3431.             if (cursor->pos < cursor->par->Last())
  3432.                 cursor->par-> Erase(cursor->pos);
  3433.         }
  3434.         if (cursor->pos && cursor->pos == cursor->par->Last()){
  3435.             cursor->pos--;
  3436.             cursor->par->Erase(cursor->pos); // no newline at the very end!
  3437.         }
  3438.     } while (!cursor->par->table->IsContRow(cell_org) &&
  3439.              cursor->par->table->IsContRow(cell));
  3440.     cursor->par->table->DeleteRow(cell_org);
  3441.     return;
  3442. }
  3443.  
  3444. bool LyXText::IsEmptyTableRow(LyXCursor *old_cursor)
  3445. {
  3446.     if (!old_cursor->par->table)
  3447.         return false;
  3448. #ifdef I_DONT_KNOW_IF_I_SHOULD_DO_THIS
  3449.     int
  3450.         pos = old_cursor->pos,
  3451.         cell = NumberOfCell(old_cursor->par, pos);
  3452.  
  3453.     // search first charater of this table row
  3454.     while (pos && !old_cursor->par->table->IsFirstCell(cell)) {
  3455.         pos--;
  3456.         while (pos && !old_cursor->par->IsNewline(pos-1))
  3457.             pos--;
  3458.         cell--;
  3459.     }
  3460.     if (!old_cursor->par->IsNewline(pos))
  3461.         return false;
  3462.     cell++;
  3463.     pos++;
  3464.     while ((pos < old_cursor->par->Last()) &&
  3465.            !old_cursor->par->table->IsFirstCell(cell)) {
  3466.         if (!old_cursor->par->IsNewline(pos))
  3467.             return false;
  3468.         pos++;
  3469.         cell++;
  3470.     }
  3471.     return true;
  3472. #endif
  3473.     return false;
  3474. }
  3475.  
  3476.  
  3477. bool LyXText::IsEmptyTableCell()
  3478. {
  3479.     int pos = cursor.pos - 1;
  3480.     
  3481.     while ((pos>0) && (pos < cursor.par->Last()) &&
  3482.            !cursor.par->IsNewline(pos))
  3483.         pos--;
  3484.     return cursor.par->IsNewline(pos+1);
  3485. }
  3486.