]> git.lyx.org Git - lyx.git/blob - src/text3.C
Prevent an assert when opening the citation dialog if the bibtex
[lyx.git] / src / text3.C
1 /**
2  * \file text3.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Asger Alstrup
7  * \author Lars Gullik Bjønnes
8  * \author Alfredo Braunstein
9  * \author Angus Leeming
10  * \author John Levon
11  * \author André Pönitz
12  *
13  * Full author contact details are available in file CREDITS.
14  */
15
16 #include <config.h>
17
18 #include "lyxtext.h"
19
20 #include "buffer.h"
21 #include "bufferparams.h"
22 #include "BufferView.h"
23 #include "cursor.h"
24 #include "debug.h"
25 #include "dispatchresult.h"
26 #include "factory.h"
27 #include "funcrequest.h"
28 #include "gettext.h"
29 #include "intl.h"
30 #include "language.h"
31 #include "lyxrc.h"
32 #include "lyxrow.h"
33 #include "paragraph.h"
34 #include "paragraph_funcs.h"
35 #include "ParagraphParameters.h"
36 #include "undo.h"
37 #include "vspace.h"
38
39 #include "frontends/Dialogs.h"
40 #include "frontends/LyXView.h"
41
42 #include "insets/insetcommand.h"
43 #include "insets/insetnewline.h"
44 #include "insets/insetspecialchar.h"
45 #include "insets/insettext.h"
46
47 #include "support/lstrings.h"
48 #include "support/tostr.h"
49 #include "support/std_sstream.h"
50
51 #include "mathed/formulabase.h"
52
53 #include <clocale>
54
55 using bv_funcs::replaceSelection;
56
57 using lyx::pos_type;
58
59 using lyx::support::isStrUnsignedInt;
60 using lyx::support::strToUnsignedInt;
61
62 using std::endl;
63 using std::find;
64 using std::string;
65 using std::istringstream;
66 using std::vector;
67
68
69 extern string current_layout;
70
71 // the selection possible is needed, that only motion events are
72 // used, where the bottom press event was on the drawing area too
73 bool selection_possible = false;
74
75
76 namespace {
77
78         // globals...
79         LyXFont freefont(LyXFont::ALL_IGNORE);
80         bool toggleall = false;
81
82
83         void toggleAndShow(BufferView * bv, LyXText * text,
84                 LyXFont const & font, bool toggleall = true)
85         {
86                 if (!bv->available())
87                         return;
88
89                 text->toggleFree(font, toggleall);
90                 bv->update();
91
92                 if (font.language() != ignore_language ||
93                                 font.number() != LyXFont::IGNORE) {
94                         LyXCursor & cursor = text->cursor;
95                         Paragraph & par = *text->cursorPar();
96                         text->bidi.computeTables(par, *bv->buffer(),
97                                 *par.getRow(cursor.pos()));
98                         if (cursor.boundary() !=
99                                         text->bidi.isBoundary(*bv->buffer(), par,
100                                                         cursor.pos(),
101                                                         text->real_current_font))
102                                 text->setCursor(cursor.par(), cursor.pos(),
103                                                 false, !cursor.boundary());
104                 }
105         }
106
107
108         /// Apply the contents of freefont at the current cursor location.
109         void apply_freefont(BufferView * bv, LyXText * text)
110         {
111                 toggleAndShow(bv, text, freefont, toggleall);
112                 bv->owner()->view_state_changed();
113                 bv->owner()->message(_("Character set"));
114         }
115
116
117         /** Set the freefont using the contents of \param data dispatched from
118          *  the frontends and apply it at the current cursor location.
119          */
120         void update_and_apply_freefont(BufferView * bv, LyXText * text,
121                 string const & data)
122         {
123                 LyXFont font;
124                 bool toggle;
125                 if (bv_funcs::string2font(data, font, toggle)) {
126                         freefont = font;
127                         toggleall = toggle;
128                         apply_freefont(bv, text);
129                 }
130         }
131
132
133         void emph(BufferView * bv, LyXText * text)
134         {
135                 LyXFont font(LyXFont::ALL_IGNORE);
136                 font.setEmph(LyXFont::TOGGLE);
137                 toggleAndShow(bv, text, font);
138         }
139
140
141         void bold(BufferView * bv, LyXText * text)
142         {
143                 LyXFont font(LyXFont::ALL_IGNORE);
144                 font.setSeries(LyXFont::BOLD_SERIES);
145                 toggleAndShow(bv, text, font);
146         }
147
148
149         void noun(BufferView * bv, LyXText * text)
150         {
151                 LyXFont font(LyXFont::ALL_IGNORE);
152                 font.setNoun(LyXFont::TOGGLE);
153                 toggleAndShow(bv, text, font);
154         }
155
156
157         void lang(BufferView * bv, string const & l, LyXText * text)
158         {
159                 Language const * lang = languages.getLanguage(l);
160                 if (!lang)
161                         return;
162
163                 LyXFont font(LyXFont::ALL_IGNORE);
164                 font.setLanguage(lang);
165                 toggleAndShow(bv, text, font);
166         }
167
168
169         void code(BufferView * bv, LyXText * text)
170         {
171                 LyXFont font(LyXFont::ALL_IGNORE);
172                 font.setFamily(LyXFont::TYPEWRITER_FAMILY); // no good
173                 toggleAndShow(bv, text, font);
174         }
175
176
177         void sans(BufferView * bv, LyXText * text)
178         {
179                 LyXFont font(LyXFont::ALL_IGNORE);
180                 font.setFamily(LyXFont::SANS_FAMILY);
181                 toggleAndShow(bv, text, font);
182         }
183
184
185         void roman(BufferView * bv, LyXText * text)
186         {
187                 LyXFont font(LyXFont::ALL_IGNORE);
188                 font.setFamily(LyXFont::ROMAN_FAMILY);
189                 toggleAndShow(bv, text, font);
190         }
191
192
193         void styleReset(BufferView * bv, LyXText * text)
194         {
195                 LyXFont font(LyXFont::ALL_INHERIT, ignore_language);
196                 toggleAndShow(bv, text, font);
197         }
198
199
200         void underline(BufferView * bv, LyXText * text)
201         {
202                 LyXFont font(LyXFont::ALL_IGNORE);
203                 font.setUnderbar(LyXFont::TOGGLE);
204                 toggleAndShow(bv, text, font);
205         }
206
207
208         void fontSize(BufferView * bv, string const & size, LyXText * text)
209         {
210                 LyXFont font(LyXFont::ALL_IGNORE);
211                 font.setLyXSize(size);
212                 toggleAndShow(bv, text, font);
213         }
214
215
216         void moveCursor(BufferView * bv, bool selecting)
217         {
218                 LyXText * lt = bv->getLyXText();
219
220 //              if (!lt->selection.set())
221 //                      lt->selection.cursor = lt->cursor;
222
223                 if (selecting || lt->selection.mark())
224                         lt->setSelection();
225
226                 if (!lt->selection.set())
227                         bv->haveSelection(false);
228                 bv->switchKeyMap();
229         }
230
231
232         void finishChange(BufferView * bv, bool selecting = false)
233         {
234                 finishUndo();
235                 moveCursor(bv, selecting);
236                 bv->owner()->view_state_changed();
237         }
238
239 } // anon namespace
240
241
242 namespace bv_funcs {
243
244 string const freefont2string()
245 {
246         string data;
247         if (font2string(freefont, toggleall, data))
248                 return data;
249         return string();
250 }
251
252 }
253
254
255 InsetOld * LyXText::checkInsetHit(int x, int y)
256 {
257         ParagraphList::iterator pit;
258         ParagraphList::iterator end;
259
260         getParsInRange(paragraphs(),
261                        bv()->top_y() - yo_,
262                        bv()->top_y() - yo_ + bv()->workHeight(),
263                        pit, end);
264
265         lyxerr << "checkInsetHit: x: " << x << " y: " << y << endl;
266         for ( ; pit != end; ++pit) {
267                 InsetList::iterator iit = pit->insetlist.begin();
268                 InsetList::iterator iend = pit->insetlist.end();
269                 for ( ; iit != iend; ++iit) {
270                         InsetOld * inset = iit->inset;
271                         //lyxerr << "examining inset " << inset
272                         //      << " xy: " << inset->x() << "/" << inset->y()
273                         //      << " x: " << inset->x() << "..." << inset->x() + inset->width()
274                         //      << " y: " << inset->y() - inset->ascent() << "..."
275                         //      << inset->y() + inset->descent()
276                         //      << endl;
277                         if (x >= inset->x()
278                             && x <= inset->x() + inset->width()
279                             && y >= inset->y() - inset->ascent()
280                             && y <= inset->y() + inset->descent())
281                         {
282                                 lyxerr << "Hit inset: " << inset << endl;
283                                 return inset;
284                         }
285                 }
286         }
287         lyxerr << "No inset hit. " << endl;
288         return 0;
289 }
290
291
292 bool LyXText::gotoNextInset(vector<InsetOld::Code> const & codes,
293                             string const & contents)
294 {
295         ParagraphList::iterator end = paragraphs().end();
296         ParagraphList::iterator pit = cursorPar();
297         pos_type pos = cursor.pos();
298
299         InsetOld * inset;
300         do {
301                 if (pos + 1 < pit->size()) {
302                         ++pos;
303                 } else  {
304                         ++pit;
305                         pos = 0;
306                 }
307
308         } while (pit != end &&
309                  !(pit->isInset(pos) &&
310                    (inset = pit->getInset(pos)) != 0 &&
311                    find(codes.begin(), codes.end(), inset->lyxCode()) != codes.end() &&
312                    (contents.empty() ||
313                     static_cast<InsetCommand *>(pit->getInset(pos))->getContents()
314                     == contents)));
315
316         if (pit == end)
317                 return false;
318
319         setCursor(parOffset(pit), pos, false);
320         return true;
321 }
322
323
324 void LyXText::gotoInset(vector<InsetOld::Code> const & codes,
325                         bool same_content)
326 {
327         clearSelection();
328
329         string contents;
330         if (same_content && cursor.pos() < cursorPar()->size()
331             && cursorPar()->isInset(cursor.pos())) {
332                 InsetOld const * inset = cursorPar()->getInset(cursor.pos());
333                 if (find(codes.begin(), codes.end(), inset->lyxCode())
334                     != codes.end())
335                         contents = static_cast<InsetCommand const *>(inset)->getContents();
336         }
337
338         if (!gotoNextInset(codes, contents)) {
339                 if (cursor.pos() || cursorPar() != paragraphs().begin()) {
340                         LyXCursor tmp = cursor;
341                         cursor.par(0);
342                         cursor.pos(0);
343                         if (!gotoNextInset(codes, contents)) {
344                                 cursor = tmp;
345                                 bv()->owner()->message(_("No more insets"));
346                         }
347                 } else {
348                         bv()->owner()->message(_("No more insets"));
349                 }
350         }
351         bv()->update();
352         selection.cursor = cursor;
353 }
354
355
356 void LyXText::gotoInset(InsetOld::Code code, bool same_content)
357 {
358         gotoInset(vector<InsetOld::Code>(1, code), same_content);
359 }
360
361
362 void LyXText::cursorPrevious()
363 {
364
365         RowList::iterator crit = cursorRow();
366         ParagraphList::iterator cpar = cursorPar();
367
368         int x = bv()->x_target() - xo_;
369         int y = bv()->top_y() - yo_;
370         setCursorFromCoordinates(x, y);
371
372         if (cpar == cursorPar() && crit == cursorRow()) {
373                 // we have a row which is taller than the workarea. The
374                 // simplest solution is to move to the previous row instead.
375                 cursorUp(true);
376         }
377
378         bv()->updateScrollbar();
379         finishUndo();
380 }
381
382
383 void LyXText::cursorNext()
384 {
385         RowList::iterator crit = cursorRow();
386         ParagraphList::iterator cpar = cursorPar();
387
388         int x = bv()->x_target() - xo_;
389         int y = bv()->top_y() + bv()->workHeight() - yo_;
390         setCursorFromCoordinates(x, y);
391
392         if (cpar == cursorPar() && crit == cursorRow()) {
393                 // we have a row which is taller than the workarea. The
394                 // simplest solution is to move to the next row instead.
395                 cursorDown(true);
396         }
397
398         bv()->updateScrollbar();
399         finishUndo();
400 }
401
402
403 namespace {
404
405 void specialChar(LyXText * lt, BufferView * bv, InsetSpecialChar::Kind kind)
406 {
407         bv->update();
408         InsetSpecialChar * new_inset = new InsetSpecialChar(kind);
409         replaceSelection(lt);
410         if (!bv->insertInset(new_inset))
411                 delete new_inset;
412         else
413                 bv->update();
414 }
415
416
417 void doInsertInset(LyXText const & lt, FuncRequest const & cmd,
418                    bool edit, bool pastesel)
419 {
420         InsetOld * inset = createInset(cmd);
421         BufferView * bv = cmd.view();
422
423         if (inset) {
424                 bool gotsel = false;
425                 if (lt.selection.set()) {
426                         bv->owner()->dispatch(FuncRequest(LFUN_CUT));
427                         gotsel = true;
428                 }
429                 if (bv->insertInset(inset)) {
430                         if (edit)
431                                 inset->edit(bv, true);
432                         if (gotsel && pastesel)
433                                 bv->owner()->dispatch(FuncRequest(LFUN_PASTE));
434                 } else
435                         delete inset;
436         }
437 }
438
439 } // anon namespace
440
441
442 void LyXText::number()
443 {
444         LyXFont font(LyXFont::ALL_IGNORE);
445         font.setNumber(LyXFont::TOGGLE);
446         toggleAndShow(bv(), this, font);
447 }
448
449
450 bool LyXText::rtl() const
451 {
452         return cursorPar()->isRightToLeftPar(bv()->buffer()->params());
453 }
454
455
456 DispatchResult LyXText::dispatch(FuncRequest const & cmd)
457 {
458         //lyxerr[Debug::ACTION] << "LyXText::dispatch: cmd: " << cmd << endl;
459
460         BufferView * bv = cmd.view();
461
462         switch (cmd.action) {
463
464         case LFUN_APPENDIX: {
465                 ParagraphList::iterator pit = cursorPar();
466                 bool start = !pit->params().startOfAppendix();
467
468                 // ensure that we have only one start_of_appendix in this document
469                 ParagraphList::iterator tmp = paragraphs().begin();
470                 ParagraphList::iterator end = paragraphs().end();
471
472                 for (; tmp != end; ++tmp) {
473                         if (tmp->params().startOfAppendix()) {
474                                 recUndo(parOffset(tmp));
475                                 tmp->params().startOfAppendix(false);
476                                 redoParagraph(tmp);
477                                 break;
478                         }
479                 }
480
481                 recUndo(parOffset(pit));
482                 pit->params().startOfAppendix(start);
483
484                 // we can set the refreshing parameters now
485                 updateCounters();
486                 redoParagraph(cursorPar());
487                 setCursor(cursorPar(), cursor.pos());
488                 bv->update();
489                 break;
490         }
491
492         case LFUN_DELETE_WORD_FORWARD:
493                 clearSelection();
494                 deleteWordForward();
495                 finishChange(bv);
496                 break;
497
498         case LFUN_DELETE_WORD_BACKWARD:
499                 clearSelection();
500                 deleteWordBackward();
501                 finishChange(bv);
502                 break;
503
504         case LFUN_DELETE_LINE_FORWARD:
505                 clearSelection();
506                 deleteLineForward();
507                 finishChange(bv);
508                 break;
509
510         case LFUN_WORDRIGHT:
511                 if (!selection.mark())
512                         clearSelection();
513                 if (rtl())
514                         cursorLeftOneWord();
515                 else
516                         cursorRightOneWord();
517                 finishChange(bv);
518                 break;
519
520         case LFUN_WORDLEFT:
521                 if (!selection.mark())
522                         clearSelection();
523                 if (rtl())
524                         cursorRightOneWord();
525                 else
526                         cursorLeftOneWord();
527                 finishChange(bv);
528                 break;
529
530         case LFUN_BEGINNINGBUF:
531                 if (!selection.mark())
532                         clearSelection();
533                 cursorTop();
534                 finishChange(bv);
535                 break;
536
537         case LFUN_ENDBUF:
538                 if (selection.mark())
539                         clearSelection();
540                 cursorBottom();
541                 finishChange(bv);
542                 break;
543
544         case LFUN_RIGHTSEL:
545                 if (!selection.set())
546                         selection.cursor = cursor;
547                 if (rtl())
548                         cursorLeft(bv);
549                 else
550                         cursorRight(bv);
551                 finishChange(bv, true);
552                 break;
553
554         case LFUN_LEFTSEL:
555                 if (!selection.set())
556                         selection.cursor = cursor;
557                 if (rtl())
558                         cursorRight(bv);
559                 else
560                         cursorLeft(bv);
561                 finishChange(bv, true);
562                 break;
563
564         case LFUN_UPSEL:
565                 if (!selection.set())
566                         selection.cursor = cursor;
567                 cursorUp(true);
568                 finishChange(bv, true);
569                 break;
570
571         case LFUN_DOWNSEL:
572                 if (!selection.set())
573                         selection.cursor = cursor;
574                 cursorDown(true);
575                 finishChange(bv, true);
576                 break;
577
578         case LFUN_UP_PARAGRAPHSEL:
579                 if (!selection.set())
580                         selection.cursor = cursor;
581                 cursorUpParagraph();
582                 finishChange(bv, true);
583                 break;
584
585         case LFUN_DOWN_PARAGRAPHSEL:
586                 if (!selection.set())
587                         selection.cursor = cursor;
588                 cursorDownParagraph();
589                 finishChange(bv, true);
590                 break;
591
592         case LFUN_PRIORSEL:
593                 if (!selection.set())
594                         selection.cursor = cursor;
595                 cursorPrevious();
596                 finishChange(bv, true);
597                 break;
598
599         case LFUN_NEXTSEL:
600                 if (!selection.set())
601                         selection.cursor = cursor;
602                 cursorNext();
603                 finishChange(bv, true);
604                 break;
605
606         case LFUN_HOMESEL:
607                 if (!selection.set())
608                         selection.cursor = cursor;
609                 cursorHome();
610                 finishChange(bv, true);
611                 break;
612
613         case LFUN_ENDSEL:
614                 if (!selection.set())
615                         selection.cursor = cursor;
616                 cursorEnd();
617                 finishChange(bv, true);
618                 break;
619
620         case LFUN_WORDRIGHTSEL:
621                 if (rtl())
622                         cursorLeftOneWord();
623                 else
624                         cursorRightOneWord();
625                 finishChange(bv, true);
626                 break;
627
628         case LFUN_WORDLEFTSEL:
629                 if (rtl())
630                         cursorRightOneWord();
631                 else
632                         cursorLeftOneWord();
633                 finishChange(bv, true);
634                 break;
635
636         case LFUN_WORDSEL: {
637                 LyXCursor cur1 = cursor;
638                 LyXCursor cur2;
639                 getWord(cur1, cur2, lyx::WHOLE_WORD);
640                 setCursor(cur1.par(), cur1.pos());
641                 clearSelection();
642                 setCursor(cur2.par(), cur2.pos());
643                 finishChange(bv, true);
644                 break;
645         }
646
647         case LFUN_RIGHT:
648                 finishChange(bv);
649                 return moveRight();
650
651         case LFUN_LEFT:
652                 finishChange(bv);
653                 return moveLeft();
654
655         case LFUN_UP:
656                 finishChange(bv);
657                 return moveUp();
658
659         case LFUN_DOWN:
660                 finishChange(bv);
661                 return moveDown();
662
663         case LFUN_UP_PARAGRAPH:
664                 if (!selection.mark())
665                         clearSelection();
666                 cursorUpParagraph();
667                 finishChange(bv);
668                 break;
669
670         case LFUN_DOWN_PARAGRAPH:
671                 if (!selection.mark())
672                         clearSelection();
673                 cursorDownParagraph();
674                 finishChange(bv, false);
675                 break;
676
677         case LFUN_PRIOR:
678                 if (!selection.mark())
679                         clearSelection();
680                 finishChange(bv, false);
681                 if (cursorPar() == firstPar() && cursorRow() == firstRow())
682                         return DispatchResult(false, FINISHED_UP);
683                 cursorPrevious();
684                 break;
685
686         case LFUN_NEXT:
687                 if (!selection.mark())
688                         clearSelection();
689                 finishChange(bv, false);
690                 if (cursorPar() == lastPar() && cursorRow() == lastRow())
691                         return DispatchResult(false, FINISHED_DOWN);
692                 cursorNext();
693                 break;
694
695         case LFUN_HOME:
696                 if (!selection.mark())
697                         clearSelection();
698                 cursorHome();
699                 finishChange(bv, false);
700                 break;
701
702         case LFUN_END:
703                 if (!selection.mark())
704                         clearSelection();
705                 cursorEnd();
706                 finishChange(bv, false);
707                 break;
708
709         case LFUN_BREAKLINE: {
710                 lyx::pos_type body = cursorPar()->beginOfBody();
711
712                 // Not allowed by LaTeX (labels or empty par)
713                 if (cursor.pos() <= body)
714                         break;
715
716                 replaceSelection(bv->getLyXText());
717                 insertInset(new InsetNewline);
718                 setCursor(cursorPar(), cursor.pos());
719                 moveCursor(bv, false);
720                 break;
721         }
722
723         case LFUN_DELETE:
724                 if (!selection.set()) {
725                         Delete();
726                         selection.cursor = cursor;
727                         // It is possible to make it a lot faster still
728                         // just comment out the line below...
729                 } else {
730                         cutSelection(true, false);
731                 }
732                 moveCursor(bv, false);
733                 bv->owner()->view_state_changed();
734                 break;
735
736         case LFUN_DELETE_SKIP:
737                 // Reverse the effect of LFUN_BREAKPARAGRAPH_SKIP.
738                 if (!selection.set()) {
739                         if (cursor.pos() == cursorPar()->size()) {
740                                 cursorRight(bv);
741                                 cursorLeft(bv);
742                                 Delete();
743                                 selection.cursor = cursor;
744                         } else {
745                                 Delete();
746                                 selection.cursor = cursor;
747                         }
748                 } else {
749                         cutSelection(true, false);
750                 }
751                 bv->update();
752                 break;
753
754
755         case LFUN_BACKSPACE:
756                 if (!selection.set()) {
757                         if (bv->owner()->getIntl().getTransManager().backspace()) {
758                                 backspace();
759                                 selection.cursor = cursor;
760                                 // It is possible to make it a lot faster still
761                                 // just comment out the line below...
762                         }
763                 } else {
764                         cutSelection(true, false);
765                 }
766                 bv->owner()->view_state_changed();
767                 bv->switchKeyMap();
768                 bv->update();
769                 break;
770
771         case LFUN_BACKSPACE_SKIP:
772                 // Reverse the effect of LFUN_BREAKPARAGRAPH_SKIP.
773                 if (!selection.set()) {
774                         LyXCursor cur = cursor;
775                         backspace();
776                         selection.cursor = cur;
777                 } else {
778                         cutSelection(true, false);
779                 }
780                 bv->update();
781                 break;
782
783         case LFUN_BREAKPARAGRAPH:
784                 replaceSelection(bv->getLyXText());
785                 breakParagraph(bv->buffer()->paragraphs(), 0);
786                 bv->update();
787                 selection.cursor = cursor;
788                 bv->switchKeyMap();
789                 bv->owner()->view_state_changed();
790                 break;
791
792         case LFUN_BREAKPARAGRAPHKEEPLAYOUT:
793                 replaceSelection(bv->getLyXText());
794                 breakParagraph(bv->buffer()->paragraphs(), 1);
795                 bv->update();
796                 selection.cursor = cursor;
797                 bv->switchKeyMap();
798                 bv->owner()->view_state_changed();
799                 break;
800
801         case LFUN_BREAKPARAGRAPH_SKIP: {
802                 // When at the beginning of a paragraph, remove
803                 // indentation and add a "defskip" at the top.
804                 // Otherwise, do the same as LFUN_BREAKPARAGRAPH.
805                 LyXCursor cur = cursor;
806                 replaceSelection(bv->getLyXText());
807                 if (cur.pos() == 0) {
808                         ParagraphParameters & params = getPar(cur)->params();
809                         setParagraph(
810                                         params.spacing(),
811                                         params.align(),
812                                         params.labelWidthString(), 1);
813                 } else {
814                         breakParagraph(bv->buffer()->paragraphs(), 0);
815                 }
816                 bv->update();
817                 selection.cursor = cur;
818                 bv->switchKeyMap();
819                 bv->owner()->view_state_changed();
820                 break;
821         }
822
823         case LFUN_PARAGRAPH_SPACING: {
824                 ParagraphList::iterator pit = cursorPar();
825                 Spacing::Space cur_spacing = pit->params().spacing().getSpace();
826                 float cur_value = 1.0;
827                 if (cur_spacing == Spacing::Other)
828                         cur_value = pit->params().spacing().getValue();
829
830                 istringstream is(cmd.argument);
831                 string tmp;
832                 is >> tmp;
833                 Spacing::Space new_spacing = cur_spacing;
834                 float new_value = cur_value;
835                 if (tmp.empty()) {
836                         lyxerr << "Missing argument to `paragraph-spacing'"
837                                << endl;
838                 } else if (tmp == "single") {
839                         new_spacing = Spacing::Single;
840                 } else if (tmp == "onehalf") {
841                         new_spacing = Spacing::Onehalf;
842                 } else if (tmp == "double") {
843                         new_spacing = Spacing::Double;
844                 } else if (tmp == "other") {
845                         new_spacing = Spacing::Other;
846                         float tmpval = 0.0;
847                         is >> tmpval;
848                         lyxerr << "new_value = " << tmpval << endl;
849                         if (tmpval != 0.0)
850                                 new_value = tmpval;
851                 } else if (tmp == "default") {
852                         new_spacing = Spacing::Default;
853                 } else {
854                         lyxerr << _("Unknown spacing argument: ")
855                                << cmd.argument << endl;
856                 }
857                 if (cur_spacing != new_spacing || cur_value != new_value) {
858                         pit->params().spacing(Spacing(new_spacing, new_value));
859                         redoParagraph();
860                         bv->update();
861                 }
862                 break;
863         }
864
865         case LFUN_INSET_APPLY: {
866                 string const name = cmd.getArg(0);
867                 InsetBase * inset = bv->owner()->getDialogs().getOpenInset(name);
868                 if (inset) {
869                         FuncRequest fr(bv, LFUN_INSET_MODIFY, cmd.argument);
870                         inset->dispatch(fr);
871                 } else {
872                         FuncRequest fr(bv, LFUN_INSET_INSERT, cmd.argument);
873                         dispatch(fr);
874                 }
875                 break;
876         }
877
878         case LFUN_INSET_INSERT: {
879                 InsetOld * inset = createInset(cmd);
880                 if (!inset || !bv->insertInset(inset))
881                         delete inset;
882                 break;
883                 }
884
885         case LFUN_INSET_SETTINGS:
886                 bv->cursor().innerInset()->showInsetDialog(bv);
887                 break;
888
889         case LFUN_INSET_TOGGLE:
890                 clearSelection();
891                 if (!toggleInset())
892                         return DispatchResult(false);
893                 bv->update();
894                 bv->switchKeyMap();
895                 break;
896
897         case LFUN_SPACE_INSERT:
898                 if (cursorPar()->layout()->free_spacing)
899                         insertChar(' ');
900                 else
901                         doInsertInset(*this, cmd, false, false);
902                 moveCursor(bv, false);
903                 break;
904
905         case LFUN_HYPHENATION:
906                 specialChar(this, bv, InsetSpecialChar::HYPHENATION);
907                 break;
908
909         case LFUN_LIGATURE_BREAK:
910                 specialChar(this, bv, InsetSpecialChar::LIGATURE_BREAK);
911                 break;
912
913         case LFUN_LDOTS:
914                 specialChar(this, bv, InsetSpecialChar::LDOTS);
915                 break;
916
917         case LFUN_END_OF_SENTENCE:
918                 specialChar(this, bv, InsetSpecialChar::END_OF_SENTENCE);
919                 break;
920
921         case LFUN_MENU_SEPARATOR:
922                 specialChar(this, bv, InsetSpecialChar::MENU_SEPARATOR);
923                 break;
924
925         case LFUN_MARK_OFF:
926                 clearSelection();
927                 bv->update();
928                 selection.cursor = cursor;
929                 cmd.message(N_("Mark off"));
930                 break;
931
932         case LFUN_MARK_ON:
933                 clearSelection();
934                 selection.mark(true);
935                 bv->update();
936                 selection.cursor = cursor;
937                 cmd.message(N_("Mark on"));
938                 break;
939
940         case LFUN_SETMARK:
941                 clearSelection();
942                 if (selection.mark()) {
943                         cmd.message(N_("Mark removed"));
944                 } else {
945                         selection.mark(true);
946                         cmd.message(N_("Mark set"));
947                 }
948                 selection.cursor = cursor;
949                 bv->update();
950                 break;
951
952         case LFUN_UPCASE_WORD:
953                 changeCase(LyXText::text_uppercase);
954                 bv->update();
955                 break;
956
957         case LFUN_LOWCASE_WORD:
958                 changeCase(LyXText::text_lowercase);
959                 bv->update();
960                 break;
961
962         case LFUN_CAPITALIZE_WORD:
963                 changeCase(LyXText::text_capitalization);
964                 bv->update();
965                 break;
966
967         case LFUN_TRANSPOSE_CHARS:
968                 recUndo(cursor.par());
969                 redoParagraph();
970                 bv->update();
971                 break;
972
973         case LFUN_PASTE:
974                 cmd.message(_("Paste"));
975                 replaceSelection(bv->getLyXText());
976 #warning FIXME Check if the arg is in the domain of available selections.
977                 if (isStrUnsignedInt(cmd.argument))
978                         pasteSelection(strToUnsignedInt(cmd.argument));
979                 else
980                         pasteSelection(0);
981                 clearSelection(); // bug 393
982                 bv->update();
983                 bv->switchKeyMap();
984                 finishUndo();
985                 break;
986
987         case LFUN_CUT:
988                 cutSelection(true, true);
989                 cmd.message(_("Cut"));
990                 bv->update();
991                 break;
992
993         case LFUN_COPY:
994                 copySelection();
995                 cmd.message(_("Copy"));
996                 break;
997
998         case LFUN_BEGINNINGBUFSEL:
999                 if (in_inset_)
1000                         return DispatchResult(false);
1001                 cursorTop();
1002                 finishChange(bv, true);
1003                 break;
1004
1005         case LFUN_ENDBUFSEL:
1006                 if (in_inset_)
1007                         return DispatchResult(false);
1008                 cursorBottom();
1009                 finishChange(bv, true);
1010                 break;
1011
1012         case LFUN_GETXY:
1013                 cmd.message(tostr(cursor.x()) + ' ' + tostr(cursor.y()));
1014                 break;
1015
1016         case LFUN_SETXY: {
1017                 int x = 0;
1018                 int y = 0;
1019                 istringstream is(cmd.argument);
1020                 is >> x >> y;
1021                 if (!is)
1022                         lyxerr << "SETXY: Could not parse coordinates in '"
1023                                << cmd.argument << std::endl;
1024                 else
1025                         setCursorFromCoordinates(x, y);
1026                 break;
1027         }
1028
1029         case LFUN_GETFONT:
1030                 if (current_font.shape() == LyXFont::ITALIC_SHAPE)
1031                         cmd.message("E");
1032                 else if (current_font.shape() == LyXFont::SMALLCAPS_SHAPE)
1033                         cmd.message("N");
1034                 else
1035                         cmd.message("0");
1036                 break;
1037
1038         case LFUN_GETLAYOUT:
1039                 cmd.message(tostr(cursorPar()->layout()));
1040                 break;
1041
1042         case LFUN_LAYOUT: {
1043                 lyxerr[Debug::INFO] << "LFUN_LAYOUT: (arg) "
1044                   << cmd.argument << endl;
1045
1046                 // This is not the good solution to the empty argument
1047                 // problem, but it will hopefully suffice for 1.2.0.
1048                 // The correct solution would be to augument the
1049                 // function list/array with information about what
1050                 // functions needs arguments and their type.
1051                 if (cmd.argument.empty()) {
1052                         cmd.errorMessage(_("LyX function 'layout' needs an argument."));
1053                         break;
1054                 }
1055
1056                 // Derive layout number from given argument (string)
1057                 // and current buffer's textclass (number)
1058                 LyXTextClass const & tclass = bv->buffer()->params().getLyXTextClass();
1059                 bool hasLayout = tclass.hasLayout(cmd.argument);
1060                 string layout = cmd.argument;
1061
1062                 // If the entry is obsolete, use the new one instead.
1063                 if (hasLayout) {
1064                         string const & obs = tclass[layout]->obsoleted_by();
1065                         if (!obs.empty())
1066                                 layout = obs;
1067                 }
1068
1069                 if (!hasLayout) {
1070                         cmd.errorMessage(string(N_("Layout ")) + cmd.argument +
1071                                 N_(" not known"));
1072                         break;
1073                 }
1074
1075                 bool change_layout = (current_layout != layout);
1076
1077                 if (!change_layout && selection.set() &&
1078                         selection.start.par() != selection.end.par())
1079                 {
1080                         ParagraphList::iterator spit = getPar(selection.start);
1081                         ParagraphList::iterator epit = boost::next(getPar(selection.end));
1082                         while (spit != epit) {
1083                                 if (spit->layout()->name() != current_layout) {
1084                                         change_layout = true;
1085                                         break;
1086                                 }
1087                                 ++spit;
1088                         }
1089                 }
1090
1091                 if (change_layout) {
1092                         current_layout = layout;
1093                         setLayout(layout);
1094                         bv->owner()->setLayout(layout);
1095                         bv->update();
1096                         bv->switchKeyMap();
1097                 }
1098                 break;
1099         }
1100
1101         case LFUN_PASTESELECTION: {
1102                 // this was originally a bv->text->clearSelection(), i.e
1103                 // the outermost LyXText!
1104                 clearSelection();
1105                 string const clip = bv->getClipboard();
1106                 if (!clip.empty()) {
1107                         if (cmd.argument == "paragraph")
1108                                 insertStringAsParagraphs(clip);
1109                         else
1110                                 insertStringAsLines(clip);
1111                         bv->update();
1112                 }
1113                 break;
1114         }
1115
1116         case LFUN_GOTOERROR:
1117                 gotoInset(InsetOld::ERROR_CODE, false);
1118                 break;
1119
1120         case LFUN_GOTONOTE:
1121                 gotoInset(InsetOld::NOTE_CODE, false);
1122                 break;
1123
1124         case LFUN_REFERENCE_GOTO: {
1125                 vector<InsetOld::Code> tmp;
1126                 tmp.push_back(InsetOld::LABEL_CODE);
1127                 tmp.push_back(InsetOld::REF_CODE);
1128                 gotoInset(tmp, true);
1129                 break;
1130         }
1131
1132         case LFUN_QUOTE: {
1133                 replaceSelection(bv->getLyXText());
1134                 ParagraphList::iterator pit = cursorPar();
1135                 lyx::pos_type pos = cursor.pos();
1136                 char c;
1137                 if (!pos)
1138                         c = ' ';
1139                 else if (pit->isInset(pos - 1) && pit->getInset(pos - 1)->isSpace())
1140                         c = ' ';
1141                 else
1142                         c = pit->getChar(pos - 1);
1143
1144                 LyXLayout_ptr const & style = pit->layout();
1145
1146                 BufferParams const & bufparams = bv->buffer()->params();
1147                 if (style->pass_thru ||
1148                     pit->getFontSettings(bufparams,pos).language()->lang() == "hebrew" ||
1149                     !bv->insertInset(new InsetQuotes(c, bufparams)))
1150                         bv->owner()->dispatch(FuncRequest(LFUN_SELFINSERT, "\""));
1151                 break;
1152         }
1153
1154         case LFUN_DATE_INSERT: {
1155                 replaceSelection(bv->getLyXText());
1156                 time_t now_time_t = time(NULL);
1157                 struct tm * now_tm = localtime(&now_time_t);
1158                 setlocale(LC_TIME, "");
1159                 string arg;
1160                 if (!cmd.argument.empty())
1161                         arg = cmd.argument;
1162                 else
1163                         arg = lyxrc.date_insert_format;
1164                 char datetmp[32];
1165                 int const datetmp_len =
1166                         ::strftime(datetmp, 32, arg.c_str(), now_tm);
1167
1168                 for (int i = 0; i < datetmp_len; i++)
1169                         insertChar(datetmp[i]);
1170
1171                 selection.cursor = cursor;
1172                 moveCursor(bv, false);
1173                 break;
1174         }
1175
1176         case LFUN_MOUSE_TRIPLE:
1177                 if (!bv->buffer())
1178                         break;
1179                 if (cmd.button() == mouse_button::button1) {
1180                         selection_possible = true;
1181                         cursorHome();
1182                         selection.cursor = cursor;
1183                         cursorEnd();
1184                         setSelection();
1185                         bv->haveSelection(selection.set());
1186                 }
1187                 break;
1188
1189         case LFUN_MOUSE_DOUBLE:
1190                 if (!bv->buffer())
1191                         break;
1192                 if (cmd.button() == mouse_button::button1) {
1193                         selection_possible = true;
1194                         selectWord(lyx::WHOLE_WORD_STRICT);
1195                         bv->haveSelection(selection.set());
1196                 }
1197                 break;
1198
1199         case LFUN_MOUSE_MOTION: {
1200                 // Only use motion with button 1
1201                 //if (ev.button() != mouse_button::button1)
1202                 //      return false;
1203
1204                 if (!bv->buffer())
1205                         break;
1206                 // The test for not selection possible is needed, that
1207                 // only motion events are used, where the bottom press
1208                 // event was on the drawing area too
1209                 if (!selection_possible) {
1210                         lyxerr[Debug::ACTION] << "BufferView::Pimpl::"
1211                                 "Dispatch: no selection possible\n";
1212                         break;
1213                 }
1214                 RowList::iterator cursorrow = cursorRow();
1215
1216                 setCursorFromCoordinates(cmd.x, cmd.y);
1217
1218                 // This is to allow jumping over large insets
1219                 // FIXME: shouldn't be top-text-specific
1220                 if (cursorrow == cursorRow() && !in_inset_) {
1221                         if (cmd.y - bv->top_y() >= bv->workHeight())
1222                                 cursorDown(true);
1223                         else if (cmd.y - bv->top_y() < 0)
1224                                 cursorUp(true);
1225                 }
1226                 setSelection();
1227                 break;
1228         }
1229
1230         // Single-click on work area
1231         case LFUN_MOUSE_PRESS: {
1232                 if (!bv->buffer())
1233                         break;
1234
1235                 // ok ok, this is a hack (for xforms)
1236                 // We shouldn't go further down as we really should only do the
1237                 // scrolling and be done with this. Otherwise we may open some
1238                 // dialogs (Jug 20020424).
1239                 if (cmd.button() == mouse_button::button4) {
1240                         bv->scroll(-lyxrc.wheel_jump);
1241                         break;
1242                 }
1243                 if (cmd.button() == mouse_button::button5) {
1244                         bv->scroll(lyxrc.wheel_jump);
1245                         break;
1246                 }
1247
1248                 // Middle button press pastes if we have a selection
1249                 // We do this here as if the selection was inside an inset
1250                 // it could get cleared on the unlocking of the inset so
1251                 // we have to check this first
1252                 bool paste_internally = false;
1253                 if (cmd.button() == mouse_button::button2 && selection.set()) {
1254                         bv->owner()->dispatch(FuncRequest(LFUN_COPY));
1255                         paste_internally = true;
1256                 }
1257
1258                 selection_possible = true;
1259
1260                 // Clear the selection
1261                 clearSelection();
1262
1263                 // Right click on a footnote flag opens float menu
1264                 if (cmd.button() == mouse_button::button3) {
1265                         selection_possible = false;
1266                         break;
1267                 }
1268
1269                 setCursorFromCoordinates(cmd.x, cmd.y);
1270                 selection.cursor = cursor;
1271                 finishUndo();
1272                 bv->x_target(cursor.x() + xo_);
1273
1274                 if (bv->fitCursor())
1275                         selection_possible = false;
1276
1277                 // Insert primary selection with middle mouse
1278                 // if there is a local selection in the current buffer,
1279                 // insert this
1280                 if (cmd.button() == mouse_button::button2) {
1281                         if (paste_internally)
1282                                 bv->owner()->dispatch(FuncRequest(LFUN_PASTE));
1283                         else
1284                                 bv->owner()->dispatch(FuncRequest(LFUN_PASTESELECTION, "paragraph"));
1285                         selection_possible = false;
1286                 }
1287                 break;
1288         }
1289
1290         case LFUN_MOUSE_RELEASE: {
1291                 if (!bv->buffer())
1292                         break;
1293
1294                 // do nothing if we used the mouse wheel
1295                 if (cmd.button() == mouse_button::button4
1296                  || cmd.button() == mouse_button::button5)
1297                         return DispatchResult(true, false);
1298
1299                 selection_possible = false;
1300
1301                 if (cmd.button() == mouse_button::button2)
1302                         break;
1303
1304                 // finish selection
1305                 if (cmd.button() == mouse_button::button1)
1306                         bv->haveSelection(selection.set());
1307
1308                 bv->switchKeyMap();
1309                 bv->owner()->view_state_changed();
1310                 bv->owner()->updateMenubar();
1311                 bv->owner()->updateToolbar();
1312                 break;
1313         }
1314
1315         case LFUN_SELFINSERT: {
1316                 if (cmd.argument.empty())
1317                         break;
1318
1319                 // Automatically delete the currently selected
1320                 // text and replace it with what is being
1321                 // typed in now. Depends on lyxrc settings
1322                 // "auto_region_delete", which defaults to
1323                 // true (on).
1324
1325                 if (lyxrc.auto_region_delete) {
1326                         if (selection.set())
1327                                 cutSelection(false, false);
1328                         bv->haveSelection(false);
1329                 }
1330
1331                 clearSelection();
1332                 LyXFont const old_font = real_current_font;
1333
1334                 string::const_iterator cit = cmd.argument.begin();
1335                 string::const_iterator end = cmd.argument.end();
1336                 for (; cit != end; ++cit)
1337                         bv->owner()->getIntl().getTransManager().
1338                                 TranslateAndInsert(*cit, this);
1339
1340                 selection.cursor = cursor;
1341                 moveCursor(bv, false);
1342
1343                 // real_current_font.number can change so we need to
1344                 // update the minibuffer
1345                 if (old_font != real_current_font)
1346                         bv->owner()->view_state_changed();
1347                 bv->updateScrollbar();
1348                 break;
1349         }
1350
1351         case LFUN_URL: {
1352                 InsetCommandParams p("url");
1353                 string const data = InsetCommandMailer::params2string("url", p);
1354                 bv->owner()->getDialogs().show("url", data, 0);
1355                 break;
1356         }
1357
1358         case LFUN_HTMLURL: {
1359                 InsetCommandParams p("htmlurl");
1360                 string const data = InsetCommandMailer::params2string("url", p);
1361                 bv->owner()->getDialogs().show("url", data, 0);
1362                 break;
1363         }
1364
1365         case LFUN_INSERT_LABEL: {
1366                 InsetCommandParams p("label");
1367                 string const data = InsetCommandMailer::params2string("label", p);
1368                 bv->owner()->getDialogs().show("label", data, 0);
1369                 break;
1370         }
1371
1372
1373 #if 0
1374         case LFUN_INSET_LIST:
1375         case LFUN_INSET_THEOREM:
1376         case LFUN_INSET_CAPTION:
1377 #endif
1378         case LFUN_INSERT_NOTE:
1379         case LFUN_INSERT_CHARSTYLE:
1380         case LFUN_INSERT_BOX:
1381         case LFUN_INSERT_BRANCH:
1382         case LFUN_INSERT_BIBITEM:
1383         case LFUN_INSET_ERT:
1384         case LFUN_INSET_FLOAT:
1385         case LFUN_INSET_FOOTNOTE:
1386         case LFUN_INSET_MARGINAL:
1387         case LFUN_INSET_MINIPAGE:
1388         case LFUN_INSET_OPTARG:
1389         case LFUN_INSET_WIDE_FLOAT:
1390         case LFUN_INSET_WRAP:
1391         case LFUN_TABULAR_INSERT:
1392         case LFUN_ENVIRONMENT_INSERT:
1393                 // Open the inset, and move the current selection
1394                 // inside it.
1395                 doInsertInset(*this, cmd, true, true);
1396                 break;
1397
1398         case LFUN_INDEX_INSERT:
1399                 // Just open the inset
1400                 doInsertInset(*this, cmd, true, false);
1401                 break;
1402
1403         case LFUN_INDEX_PRINT:
1404         case LFUN_TOC_INSERT:
1405         case LFUN_HFILL:
1406         case LFUN_INSERT_LINE:
1407         case LFUN_INSERT_PAGEBREAK:
1408                 // do nothing fancy
1409                 doInsertInset(*this, cmd, false, false);
1410                 break;
1411
1412         case LFUN_DEPTH_MIN:
1413                 bv_funcs::changeDepth(bv, this, bv_funcs::DEC_DEPTH);
1414                 bv->update();
1415                 break;
1416
1417         case LFUN_DEPTH_PLUS:
1418                 bv_funcs::changeDepth(bv, this, bv_funcs::INC_DEPTH);
1419                 bv->update();
1420                 break;
1421
1422         case LFUN_MATH_DELIM:
1423         case LFUN_MATH_DISPLAY:
1424         case LFUN_INSERT_MATH:
1425         case LFUN_MATH_LIMITS:
1426         case LFUN_MATH_MACRO:
1427         case LFUN_MATH_MUTATE:
1428         case LFUN_MATH_SPACE:
1429         case LFUN_MATH_IMPORT_SELECTION:
1430         case LFUN_MATH_MODE:
1431         case LFUN_MATH_NONUMBER:
1432         case LFUN_MATH_NUMBER:
1433         case LFUN_MATH_EXTERN:
1434         case LFUN_MATH_SIZE:
1435                 mathDispatch(cmd);
1436                 break;
1437
1438         case LFUN_EMPH:
1439                 emph(bv, this);
1440                 bv->owner()->view_state_changed();
1441                 break;
1442
1443         case LFUN_BOLD:
1444                 bold(bv, this);
1445                 bv->owner()->view_state_changed();
1446                 break;
1447
1448         case LFUN_NOUN:
1449                 noun(bv, this);
1450                 bv->owner()->view_state_changed();
1451                 break;
1452
1453         case LFUN_CODE:
1454                 code(bv, this);
1455                 bv->owner()->view_state_changed();
1456                 break;
1457
1458         case LFUN_SANS:
1459                 sans(bv, this);
1460                 bv->owner()->view_state_changed();
1461                 break;
1462
1463         case LFUN_ROMAN:
1464                 roman(bv, this);
1465                 bv->owner()->view_state_changed();
1466                 break;
1467
1468         case LFUN_DEFAULT:
1469                 styleReset(bv, this);
1470                 bv->owner()->view_state_changed();
1471                 break;
1472
1473         case LFUN_UNDERLINE:
1474                 underline(bv, this);
1475                 bv->owner()->view_state_changed();
1476                 break;
1477
1478         case LFUN_FONT_SIZE:
1479                 fontSize(bv, cmd.argument, this);
1480                 bv->owner()->view_state_changed();
1481                 break;
1482
1483         case LFUN_LANGUAGE:
1484                 lang(bv, cmd.argument, this);
1485                 bv->switchKeyMap();
1486                 bv->owner()->view_state_changed();
1487                 break;
1488
1489         case LFUN_FREEFONT_APPLY:
1490                 apply_freefont(bv, this);
1491                 break;
1492
1493         case LFUN_FREEFONT_UPDATE:
1494                 update_and_apply_freefont(bv, this, cmd.argument);
1495                 break;
1496
1497         case LFUN_FINISHED_LEFT:
1498                 lyxerr << "swallow LFUN_FINISHED_LEFT" << endl;
1499                 if (rtl())
1500                         cursorRight(true);
1501                 break;
1502
1503         case LFUN_FINISHED_RIGHT:
1504                 lyxerr << "swallow LFUN_FINISHED_RIGHT" << endl;
1505                 if (!rtl())
1506                         cursorRight(true);
1507                 break;
1508
1509         case LFUN_FINISHED_UP:
1510                 lyxerr << "swallow LFUN_FINISHED_UP" << endl;
1511                 cursorUp(true);
1512                 break;
1513
1514         case LFUN_FINISHED_DOWN:
1515                 lyxerr << "swallow LFUN_FINISHED_DOWN" << endl;
1516                 cursorDown(true);
1517                 break;
1518
1519         default:
1520                 return DispatchResult(false);
1521         }
1522
1523         return DispatchResult(true, true);
1524 }