]> git.lyx.org Git - lyx.git/blob - src/BufferView_pimpl.C
Fix crash when entering unhandled math objects in toolbar
[lyx.git] / src / BufferView_pimpl.C
1 #include <config.h>
2
3 #include <unistd.h>
4 #include <sys/wait.h>
5
6 #ifdef __GNUG__
7 #pragma implementation
8 #endif
9
10 #include "BufferView_pimpl.h"
11 #include "WorkArea.h"
12 #include "lyxscreen.h"
13 #include "lyxtext.h"
14 #include "lyxrow.h"
15 #include "LyXView.h"
16 #include "commandtags.h"
17 #include "lyxfunc.h"
18 #include "minibuffer.h"
19 #include "font.h"
20 #include "bufferview_funcs.h"
21 #include "TextCache.h"
22 #include "bufferlist.h"
23 #include "insets/insetbib.h"
24 #include "lyx_gui_misc.h"
25 #include "lyxrc.h"
26 #include "intl.h"
27 #include "support/LAssert.h"
28 #include "frontends/Dialogs.h"
29
30 #ifdef SIGC_CXX_NAMESPACES
31 using SigC::slot;
32 #endif
33
34 using std::pair;
35 using std::endl;
36 using std::vector;
37 using std::make_pair;
38
39 /* the selection possible is needed, that only motion events are 
40  * used, where the bottom press event was on the drawing area too */
41 bool selection_possible = false;
42
43 extern BufferList bufferlist;
44 extern char ascii_type;
45
46 extern "C" void TimerCB(FL_OBJECT *, long); 
47 extern void sigchldhandler(pid_t pid, int * status);
48 extern int bibitemMaxWidth(BufferView *, LyXFont const &);
49
50
51 static inline
52 void waitForX()
53 {
54         XSync(fl_get_display(), 0);
55 }
56
57
58 static
59 void SetXtermCursor(Window win)
60 {
61         static Cursor cursor;
62         static bool cursor_undefined = true;
63         if (cursor_undefined){
64                 cursor = XCreateFontCursor(fl_get_display(), XC_xterm);
65                 XFlush(fl_get_display());
66                 cursor_undefined = false;
67         }
68         XDefineCursor(fl_get_display(), win, cursor);
69         XFlush(fl_get_display());
70 }
71
72
73 BufferView::Pimpl::Pimpl(BufferView * b, LyXView * o,
74              int xpos, int ypos, int width, int height)
75         : bv_(b), owner_(o), cursor_timeout(400)
76 {
77         buffer_ = 0;
78         workarea_ = new WorkArea(bv_, xpos, ypos, width, height);
79         // Setup the signals
80         workarea_->workAreaExpose
81                 .connect(slot(this, &BufferView::Pimpl::workAreaExpose));
82         workarea_->workAreaEnter
83                 .connect(slot(this, &BufferView::Pimpl::enterView));
84         workarea_->workAreaLeave
85                 .connect(slot(this, &BufferView::Pimpl::leaveView));
86         workarea_->workAreaButtonPress
87                 .connect(slot(this, &BufferView::Pimpl::workAreaButtonPress));
88         workarea_->workAreaButtonRelease
89                 .connect(slot(this,
90                               &BufferView::Pimpl::workAreaButtonRelease));
91         workarea_->workAreaMotionNotify
92                 .connect(slot(this, &BufferView::Pimpl::workAreaMotionNotify));
93         workarea_->workAreaDoubleClick
94                 .connect(slot(this, &BufferView::Pimpl::doubleClick));
95         workarea_->workAreaTripleClick
96                 .connect(slot(this, &BufferView::Pimpl::tripleClick));
97         workarea_->workAreaKeyPress
98                 .connect(slot(this, &BufferView::Pimpl::workAreaKeyPress));
99         
100         screen_ = 0;
101
102         cursor_timeout.timeout.connect(slot(this,
103                                             &BufferView::Pimpl::cursorToggle));
104         current_scrollbar_value = 0;
105         cursor_timeout.start();
106         workarea_->setFocus();
107         using_xterm_cursor = false;
108 }
109
110
111 Painter & BufferView::Pimpl::painter() 
112 {
113         return workarea_->getPainter();
114 }
115
116
117 void BufferView::Pimpl::buffer(Buffer * b)
118 {
119         lyxerr[Debug::INFO] << "Setting buffer in BufferView ("
120                             << b << ")" << endl;
121         if (buffer_) {
122                 bv_->insetSleep();
123                 buffer_->delUser(bv_);
124
125                 // Put the old text into the TextCache, but
126                 // only if the buffer is still loaded.
127                 // Also set the owner of the test to 0
128                 //              bv_->text->owner(0);
129                 textcache.add(buffer_, workarea_->workWidth(), bv_->text);
130                 if (lyxerr.debugging())
131                         textcache.show(lyxerr, "BufferView::buffer");
132                 
133                 bv_->text = 0;
134         }
135
136         // Set current buffer
137         buffer_ = b;
138
139         if (bufferlist.getState() == BufferList::CLOSING) return;
140         
141         // Nuke old image
142         // screen is always deleted when the buffer is changed.
143         delete screen_;
144         screen_ = 0;
145
146         // If we are closing the buffer, use the first buffer as current
147         if (!buffer_) {
148                 buffer_ = bufferlist.first();
149         }
150
151         if (buffer_) {
152                 lyxerr[Debug::INFO] << "Buffer addr: " << buffer_ << endl;
153                 buffer_->addUser(bv_);
154                 // If we don't have a text object for this, we make one
155                 if (bv_->text == 0) {
156                         resizeCurrentBuffer();
157                 } else {
158                         updateScreen();
159                         updateScrollbar();
160                 }
161                 bv_->text->first = screen_->TopCursorVisible(bv_->text);
162                 owner_->updateMenubar();
163                 owner_->updateToolbar();
164                 // Similarly, buffer-dependent dialogs should be updated or
165                 // hidden. This should go here because some dialogs (eg ToC)
166                 // require bv_->text.
167                 owner_->getDialogs()->updateBufferDependent(true);
168                 redraw();
169                 bv_->insetWakeup();
170         } else {
171                 lyxerr[Debug::INFO] << "  No Buffer!" << endl;
172                 owner_->updateMenubar();
173                 owner_->updateToolbar();
174                 owner_->getDialogs()->hideBufferDependent();
175                 updateScrollbar();
176                 workarea_->redraw();
177
178                 // Also remove all remaining text's from the testcache.
179                 // (there should not be any!) (if there is any it is a
180                 // bug!)
181                 if (lyxerr.debugging())
182                         textcache.show(lyxerr, "buffer delete all");
183                 textcache.clear();
184         }
185         // should update layoutchoice even if we don't have a buffer.
186         owner_->updateLayoutChoice();
187         owner_->getMiniBuffer()->Init();
188         owner_->updateWindowTitle();
189 }
190
191
192 void BufferView::Pimpl::resize(int xpos, int ypos, int width, int height)
193 {
194         workarea_->resize(xpos, ypos, width, height);
195         update(SELECT);
196         redraw();
197 }
198
199
200 void BufferView::Pimpl::resize()
201 {
202         // This will resize the buffer. (Asger)
203         if (buffer_)
204                 resizeCurrentBuffer();
205 }
206
207
208 void BufferView::Pimpl::redraw()
209 {
210         lyxerr[Debug::INFO] << "BufferView::redraw()" << endl;
211         workarea_->redraw();
212 }
213
214
215 bool BufferView::Pimpl::fitCursor(LyXText * text)
216 {
217         Assert(screen_); // it is a programming error to call fitCursor
218         // without a valid screen.
219         bool ret = screen_->FitCursor(text);
220         if (ret)
221             updateScrollbar();
222         return ret;
223 }
224
225
226 void BufferView::Pimpl::redoCurrentBuffer()
227 {
228         lyxerr[Debug::INFO] << "BufferView::redoCurrentBuffer" << endl;
229         if (buffer_ && bv_->text) {
230                 resize();
231                 owner_->updateLayoutChoice();
232         }
233 }
234
235
236 int BufferView::Pimpl::resizeCurrentBuffer()
237 {
238         lyxerr[Debug::INFO] << "resizeCurrentBuffer" << endl;
239         
240         LyXParagraph * par = 0;
241         LyXParagraph * selstartpar = 0;
242         LyXParagraph * selendpar = 0;
243         int pos = 0;
244         int selstartpos = 0;
245         int selendpos = 0;
246         int selection = 0;
247         int mark_set = 0;
248
249         ProhibitInput(bv_);
250
251         owner_->getMiniBuffer()->Set(_("Formatting document..."));   
252
253         if (bv_->text) {
254                 par = bv_->text->cursor.par();
255                 pos = bv_->text->cursor.pos();
256                 selstartpar = bv_->text->sel_start_cursor.par();
257                 selstartpos = bv_->text->sel_start_cursor.pos();
258                 selendpar = bv_->text->sel_end_cursor.par();
259                 selendpos = bv_->text->sel_end_cursor.pos();
260                 selection = bv_->text->selection;
261                 mark_set = bv_->text->mark_set;
262                 delete bv_->text;
263                 bv_->text = new LyXText(bv_);
264         } else {
265                 // See if we have a text in TextCache that fits
266                 // the new buffer_ with the correct width.
267                 bv_->text = textcache.findFit(buffer_, workarea_->workWidth());
268                 if (bv_->text) {
269                         if (lyxerr.debugging()) {
270                                 lyxerr << "Found a LyXText that fits:\n";
271                                 textcache.show(lyxerr, make_pair(buffer_, make_pair(workarea_->workWidth(), bv_->text)));
272                         }
273                         // Set the owner of the newly found text
274                         //      bv_->text->owner(bv_);
275                         if (lyxerr.debugging())
276                                 textcache.show(lyxerr, "resizeCurrentBuffer");
277                 } else {
278                         bv_->text = new LyXText(bv_);
279                 }
280         }
281         updateScreen();
282
283         if (par) {
284                 bv_->text->selection = true;
285                 /* at this point just to avoid the Delete-Empty-Paragraph
286                  * Mechanism when setting the cursor */
287                 bv_->text->mark_set = mark_set;
288                 if (selection) {
289                         bv_->text->SetCursor(bv_, selstartpar, selstartpos);
290                         bv_->text->sel_cursor = bv_->text->cursor;
291                         bv_->text->SetCursor(bv_, selendpar, selendpos);
292                         bv_->text->SetSelection();
293                         bv_->text->SetCursor(bv_, par, pos);
294                 } else {
295                         bv_->text->SetCursor(bv_, par, pos);
296                         bv_->text->sel_cursor = bv_->text->cursor;
297                         bv_->text->selection = false;
298                 }
299         }
300         bv_->text->first = screen_->TopCursorVisible(bv_->text);
301         buffer_->resizeInsets(bv_);
302         // this will scroll the screen such that the cursor becomes visible
303         updateScrollbar();
304         redraw();
305         owner_->getMiniBuffer()->Init();
306         bv_->setState();
307         AllowInput(bv_);
308
309         // Now if the title form still exist kill it
310         TimerCB(0, 0);
311
312         return 0;
313 }
314
315
316 void BufferView::Pimpl::gotoError()
317 {
318         if (!screen_)
319                 return;
320    
321         screen_->HideCursor();
322         bv_->beforeChange();
323         update(BufferView::SELECT|BufferView::FITCUR);
324         LyXCursor tmp;
325
326         if (!bv_->text->GotoNextError(bv_)) {
327                 if (bv_->text->cursor.pos() 
328                     || bv_->text->cursor.par() != bv_->text->FirstParagraph()) {
329                         tmp = bv_->text->cursor;
330                         bv_->text->cursor.par(bv_->text->FirstParagraph());
331                         bv_->text->cursor.pos(0);
332                         if (!bv_->text->GotoNextError(bv_)) {
333                                 bv_->text->cursor = tmp;
334                                 owner_->getMiniBuffer()
335                                         ->Set(_("No more errors"));
336                                 LyXBell();
337                         }
338                 } else {
339                         owner_->getMiniBuffer()->Set(_("No more errors"));
340                         LyXBell();
341                 }
342         }
343         update(BufferView::SELECT|BufferView::FITCUR);
344         bv_->text->sel_cursor = bv_->text->cursor;
345 }
346
347
348 void BufferView::Pimpl::updateScreen()
349 {
350         // Regenerate the screen.
351         delete screen_;
352         screen_ = new LyXScreen(*workarea_);
353 }
354
355
356 void BufferView::Pimpl::updateScrollbar()
357 {
358         /* If the text is smaller than the working area, the scrollbar
359          * maximum must be the working area height. No scrolling will 
360          * be possible */
361
362         if (!buffer_) {
363                 workarea_->setScrollbar(0, 1.0);
364                 return;
365         }
366         
367         static unsigned long max2 = 0;
368         static unsigned long height2 = 0;
369
370         unsigned long cbth = 0;
371         long cbsf = 0;
372
373         if (bv_->text) {
374                 cbth = bv_->text->height;
375                 cbsf = bv_->text->first;
376         }
377
378         // check if anything has changed.
379         if (max2 == cbth &&
380             height2 == workarea_->height() &&
381             current_scrollbar_value == cbsf)
382                 return; // no
383         max2 = cbth;
384         height2 = workarea_->height();
385         current_scrollbar_value = cbsf;
386
387         if (cbth <= height2) { // text is smaller than screen
388                 workarea_->setScrollbar(0, 1.0); // right?
389                 return;
390         }
391
392         long maximum_height = workarea_->height() * 3 / 4 + cbth;
393         long value = cbsf;
394
395         // set the scrollbar
396         double hfloat = workarea_->height();
397         double maxfloat = maximum_height;
398
399         float slider_size = 0.0;
400         int slider_value = value;
401
402         workarea_->setScrollbarBounds(0, bv_->text->height - workarea_->height());
403         double lineh = bv_->text->DefaultHeight();
404         workarea_->setScrollbarIncrements(lineh);
405         if (maxfloat > 0.0) {
406                 if ((hfloat / maxfloat) * float(height2) < 3)
407                         slider_size = 3.0/float(height2);
408                 else
409                         slider_size = hfloat / maxfloat;
410         } else
411                 slider_size = hfloat;
412
413         workarea_->setScrollbar(slider_value, slider_size / workarea_->height());
414 }
415
416
417 // Callback for scrollbar slider
418 void BufferView::Pimpl::scrollCB(double value)
419 {
420         if (buffer_ == 0) return;
421
422         current_scrollbar_value = long(value);
423         if (current_scrollbar_value < 0)
424                 current_scrollbar_value = 0;
425    
426         if (!screen_)
427                 return;
428
429         screen_->Draw(bv_->text, current_scrollbar_value);
430
431         if (lyxrc.cursor_follows_scrollbar) {
432                 LyXText * vbt = bv_->text;
433                 int height = vbt->DefaultHeight();
434                 
435                 if (vbt->cursor.y() < (int)(bv_->text->first + height)) {
436                         vbt->SetCursorFromCoordinates(bv_, 0,
437                                                       bv_->text->first +
438                                                       height);
439                 } else if (vbt->cursor.y() >
440                            (int)(bv_->text->first+workarea_->height()-height))
441                 {
442                         vbt->SetCursorFromCoordinates(bv_, 0,
443                                                       bv_->text->first +
444                                                       workarea_->height()  -
445                                                       height);
446                 }
447         }
448         waitForX();
449 }
450
451
452 int BufferView::Pimpl::scrollUp(long time)
453 {
454         if (buffer_ == 0) return 0;
455         if (!screen_) return 0;
456    
457         double value = workarea_->getScrollbarValue();
458    
459         if (value == 0) return 0;
460
461         float add_value =  (bv_->text->DefaultHeight()
462                             + float(time) * float(time) * 0.125);
463    
464         if (add_value > workarea_->height())
465                 add_value = float(workarea_->height() -
466                                   bv_->text->DefaultHeight());
467    
468         value -= add_value;
469
470         if (value < 0)
471                 value = 0;
472    
473         workarea_->setScrollbarValue(value);
474    
475         bv_->scrollCB(value); 
476         return 0;
477 }
478
479
480 int BufferView::Pimpl::scrollDown(long time)
481 {
482         if (buffer_ == 0) return 0;
483         if (!screen_) return 0;
484    
485         double value= workarea_->getScrollbarValue();
486         pair<float, float> p = workarea_->getScrollbarBounds();
487         double max = p.second;
488         
489         if (value == max) return 0;
490
491         float add_value =  (bv_->text->DefaultHeight()
492                             + float(time) * float(time) * 0.125);
493    
494         if (add_value > workarea_->height())
495                 add_value = float(workarea_->height() -
496                                   bv_->text->DefaultHeight());
497    
498         value += add_value;
499    
500         if (value > max)
501                 value = max;
502
503         workarea_->setScrollbarValue(value);
504         
505         bv_->scrollCB(value); 
506         return 0;
507 }
508
509
510 void BufferView::Pimpl::workAreaKeyPress(KeySym keysym, unsigned int state)
511 {
512         bv_->owner()->getLyXFunc()->processKeySym(keysym, state);
513 }
514
515
516 void BufferView::Pimpl::workAreaMotionNotify(int x, int y, unsigned int state)
517 {
518         // Only use motion with button 1
519         if (!(state & Button1MotionMask))
520                 return;
521
522         if (buffer_ == 0 || !screen_) return;
523
524         // Check for inset locking
525         if (bv_->theLockingInset()) {
526                 LyXCursor cursor = bv_->text->cursor;
527                 bv_->theLockingInset()->
528                         InsetMotionNotify(bv_,
529                                           x - cursor.x() -
530                                           bv_->theLockingInset()->scroll(),
531                                           y - cursor.y() + bv_->text->first,
532                                           state);
533                 return;
534         }
535    
536         /* The selection possible is needed, that only motion events are 
537          * used, where the bottom press event was on the drawing area too */
538         if (selection_possible) {
539                 screen_->HideCursor();
540
541                 bv_->text->SetCursorFromCoordinates(bv_, x, y + bv_->text->first);
542       
543                 if (!bv_->text->selection)
544                         update(BufferView::UPDATE); // Maybe an empty line was deleted
545       
546                 bv_->text->SetSelection();
547                 screen_->ToggleToggle(bv_->text);
548                 fitCursor(bv_->text);
549                 screen_->ShowCursor(bv_->text);
550         }
551         return;
552 }
553
554
555 // Single-click on work area
556 void BufferView::Pimpl::workAreaButtonPress(int xpos, int ypos,
557                                             unsigned int button)
558 {
559         last_click_x = -1;
560         last_click_y = -1;
561
562         if (buffer_ == 0 || !screen_) return;
563
564         Inset * inset_hit = checkInsetHit(bv_->text, xpos, ypos, button);
565
566         // ok ok, this is a hack.
567         if (button == 4 || button == 5) {
568                 switch (button) {
569                 case 4:
570                         scrollUp(lyxrc.wheel_jump); // default 100, set in lyxrc
571                         break;
572                 case 5:
573                         scrollDown(lyxrc.wheel_jump);
574                         break;
575                 }
576         }
577         
578         if (bv_->theLockingInset()) {
579                 // We are in inset locking mode
580                 
581                 /* Check whether the inset was hit. If not reset mode,
582                    otherwise give the event to the inset */
583                 if (inset_hit == bv_->theLockingInset()) {
584                         bv_->theLockingInset()->
585                                 InsetButtonPress(bv_,
586                                                  xpos, ypos,
587                                                  button);
588                         return;
589                 } else {
590                         bv_->unlockInset(bv_->theLockingInset());
591                 }
592         }
593         
594         if (!inset_hit)
595                 selection_possible = true;
596         screen_->HideCursor();
597
598         int const screen_first = bv_->text->first;
599         
600         // Middle button press pastes if we have a selection
601         bool paste_internally = false;
602         if (button == 2
603             && bv_->text->selection) {
604                 owner_->getLyXFunc()->Dispatch(LFUN_COPY);
605                 paste_internally = true;
606         }
607         
608         // Clear the selection
609         screen_->ToggleSelection(bv_->text);
610         bv_->text->ClearSelection();
611         bv_->text->FullRebreak(bv_);
612         screen_->Update(bv_->text);
613         updateScrollbar();
614         
615         // Single left click in math inset?
616         if ((inset_hit != 0) &&
617             (inset_hit->Editable()==Inset::HIGHLY_EDITABLE)) {
618                 // Highly editable inset, like math
619                 UpdatableInset * inset = static_cast<UpdatableInset *>(inset_hit);
620                 selection_possible = false;
621                 owner_->updateLayoutChoice();
622                 owner_->getMiniBuffer()->Set(inset->EditMessage());
623                 inset->InsetButtonPress(bv_, xpos, ypos, button);
624                 inset->Edit(bv_, xpos, ypos, button);
625                 return;
626         } 
627         
628         // Right click on a footnote flag opens float menu
629         if (button == 3) { 
630                 selection_possible = false;
631                 return;
632         }
633         
634         if (!inset_hit) // otherwise it was already set in checkInsetHit(...)
635                 bv_->text->SetCursorFromCoordinates(bv_, xpos, ypos + screen_first);
636         bv_->text->FinishUndo();
637         bv_->text->sel_cursor = bv_->text->cursor;
638         bv_->text->cursor.x_fix(bv_->text->cursor.x());
639         
640         owner_->updateLayoutChoice();
641         if (fitCursor(bv_->text)) {
642                 selection_possible = false;
643         }
644         
645         // Insert primary selection with middle mouse
646         // if there is a local selection in the current buffer,
647         // insert this
648         if (button == 2) {
649                 if (paste_internally)
650                         owner_->getLyXFunc()->Dispatch(LFUN_PASTE);
651                 else
652                         owner_->getLyXFunc()->Dispatch(LFUN_PASTESELECTION,
653                                                        "paragraph");
654                 selection_possible = false;
655                 return;
656         }
657 }
658
659
660 void BufferView::Pimpl::doubleClick(int /*x*/, int /*y*/, unsigned int button) 
661 {
662         // select a word
663         if (buffer_ && !bv_->theLockingInset()) {
664                 if (screen_ && button == 1) {
665                         screen_->HideCursor();
666                         screen_->ToggleSelection(bv_->text);
667                         bv_->text->SelectWord(bv_);
668                         screen_->ToggleSelection(bv_->text, false);
669                         /* This will fit the cursor on the screen
670                          * if necessary */
671                         update(BufferView::SELECT|BufferView::FITCUR);
672                 }
673         }   
674 }
675
676
677 void BufferView::Pimpl::tripleClick(int /*x*/, int /*y*/, unsigned int button)
678 {
679         // select a line
680         if (buffer_ && screen_ && !bv_->theLockingInset() && (button == 1)) {
681                 screen_->HideCursor();
682                 screen_->ToggleSelection(bv_->text);
683                 bv_->text->CursorHome(bv_);
684                 bv_->text->sel_cursor = bv_->text->cursor;
685                 bv_->text->CursorEnd(bv_);
686                 bv_->text->SetSelection();
687                 screen_->ToggleSelection(bv_->text, false);
688                 /* This will fit the cursor on the screen
689                  * if necessary */
690                 update(BufferView::SELECT|BufferView::FITCUR);
691         }
692 }
693
694
695 void BufferView::Pimpl::enterView()
696 {
697         if (active() && available()) {
698                 SetXtermCursor(workarea_->getWin());
699                 using_xterm_cursor = true;
700         }
701 }
702
703
704 void BufferView::Pimpl::leaveView()
705 {
706         if (using_xterm_cursor) {
707                 XUndefineCursor(fl_get_display(), workarea_->getWin());
708                 using_xterm_cursor = false;
709         }
710 }
711
712
713 void BufferView::Pimpl::workAreaButtonRelease(int x, int y,
714                                               unsigned int button)
715 {
716         if (buffer_ == 0 || screen_ == 0) return;
717
718         // If we hit an inset, we have the inset coordinates in these
719         // and inset_hit points to the inset.  If we do not hit an
720         // inset, inset_hit is 0, and inset_x == x, inset_y == y.
721         Inset * inset_hit = checkInsetHit(bv_->text, x, y, button);
722
723         if (bv_->theLockingInset()) {
724                 // We are in inset locking mode.
725
726                 /* LyX does a kind of work-area grabbing for insets.
727                    Only a ButtonPress Event outside the inset will 
728                    force a InsetUnlock. */
729                 bv_->theLockingInset()->
730                         InsetButtonRelease(bv_, x, y, button);
731                 return;
732         }
733         
734         selection_possible = false;
735         
736         if (button >= 2) return;
737
738         bv_->setState();
739         owner_->showState();
740
741         // Did we hit an editable inset?
742         if (inset_hit != 0) {
743                 // Inset like error, notes and figures
744                 selection_possible = false;
745
746                 // CHECK fix this proper in 0.13
747
748                 // Following a ref shouldn't issue
749                 // a push on the undo-stack
750                 // anylonger, now that we have
751                 // keybindings for following
752                 // references and returning from
753                 // references.  IMHO though, it
754                 // should be the inset's own business
755                 // to push or not push on the undo
756                 // stack. They don't *have* to
757                 // alter the document...
758                 // (Joacim)
759                 // ...or maybe the SetCursorParUndo()
760                 // below isn't necessary at all anylonger?
761                 if (inset_hit->LyxCode() == Inset::REF_CODE) {
762                         bv_->text->SetCursorParUndo(bv_->buffer());
763                 }
764
765                 owner_->getMiniBuffer()->Set(inset_hit->EditMessage());
766                 if (inset_hit->Editable()==Inset::HIGHLY_EDITABLE) {
767                         // Highly editable inset, like math
768                         UpdatableInset *inset = (UpdatableInset *)inset_hit;
769                         inset->InsetButtonRelease(bv_, x, y, button);
770                 } else {
771                         inset_hit->InsetButtonRelease(bv_, x, y, button);
772                         inset_hit->Edit(bv_, x, y, button);
773                 }
774                 return;
775         }
776
777         // check whether we want to open a float
778         if (bv_->text) {
779                 bool hit = false;
780                 char c = ' ';
781                 if (bv_->text->cursor.pos() <
782                     bv_->text->cursor.par()->Last()) {
783                         c = bv_->text->cursor.par()->
784                                 GetChar(bv_->text->cursor.pos());
785                 }
786 #ifndef NEW_INSETS
787                 if (c == LyXParagraph::META_FOOTNOTE
788                     || c == LyXParagraph::META_MARGIN
789                     || c == LyXParagraph::META_FIG
790                     || c == LyXParagraph::META_TAB
791                     || c == LyXParagraph::META_WIDE_FIG
792                     || c == LyXParagraph::META_WIDE_TAB
793                     || c == LyXParagraph::META_ALGORITHM){
794                         hit = true;
795                 } else
796 #endif
797                         if (bv_->text->cursor.pos() - 1 >= 0) {
798                         c = bv_->text->cursor.par()->
799                                 GetChar(bv_->text->cursor.pos() - 1);
800 #ifndef NEW_INSETS
801                         if (c == LyXParagraph::META_FOOTNOTE
802                             || c == LyXParagraph::META_MARGIN
803                             || c == LyXParagraph::META_FIG
804                             || c == LyXParagraph::META_TAB
805                             || c == LyXParagraph::META_WIDE_FIG 
806                             || c == LyXParagraph::META_WIDE_TAB
807                             || c == LyXParagraph::META_ALGORITHM){
808                                 // We are one step too far to the right
809                                 bv_->text->CursorLeft(bv_);
810                                 hit = true;
811                         }
812 #endif
813                 }
814                 if (hit == true) {
815 #ifndef NEW_INSETS
816                         bv_->toggleFloat();
817 #endif
818                         selection_possible = false;
819                         return;
820                 }
821         }
822
823 #ifndef NEW_INSETS
824         // Do we want to close a float? (click on the float-label)
825         if (bv_->text->cursor.row()->par()->footnoteflag == 
826             LyXParagraph::OPEN_FOOTNOTE
827             && bv_->text->cursor.row()->previous() &&
828             bv_->text->cursor.row()->previous()->par()->
829             footnoteflag != LyXParagraph::OPEN_FOOTNOTE){
830                 LyXFont font(LyXFont::ALL_SANE);
831                 font.setSize(LyXFont::SIZE_FOOTNOTE);
832
833                 int box_x = 20; // LYX_PAPER_MARGIN;
834                 box_x += lyxfont::width(" wide-tab ", font);
835
836                 unsigned int screen_first = bv_->text->first;
837
838                 if (x < box_x
839                     && y + screen_first > bv_->text->cursor.y() -
840                     bv_->text->cursor.row()->baseline()
841                     && y + screen_first < bv_->text->cursor.y() -
842                     bv_->text->cursor.row()->baseline()
843                     + lyxfont::maxAscent(font) * 1.2 + lyxfont::maxDescent(font) * 1.2) {
844                         bv_->toggleFloat();
845                         selection_possible = false;
846                         return;
847                 }
848         }
849 #endif
850
851         // Maybe we want to edit a bibitem ale970302
852         if (bv_->text->cursor.par()->bibkey && x < 20 + 
853             bibitemMaxWidth(bv_, textclasslist.
854                             TextClass(buffer_->
855                                       params.textclass).defaultfont())) {
856                 bv_->text->cursor.par()->bibkey->Edit(bv_, 0, 0, 0);
857         }
858
859         return;
860 }
861
862
863 /* 
864  * Returns an inset if inset was hit. 0 otherwise.
865  * If hit, the coordinates are changed relative to the inset. 
866  * Otherwise coordinates are not changed, and false is returned.
867  */
868 Inset * BufferView::Pimpl::checkInsetHit(LyXText * text, int & x, int & y,
869                                          unsigned int /* button */)
870 {
871         if (!screen_)
872                 return 0;
873   
874         int y_tmp = y + text->first;
875   
876         LyXCursor cursor;
877         text->SetCursorFromCoordinates(bv_, cursor, x, y_tmp);
878
879         if (cursor.pos() < cursor.par()->Last()
880             && cursor.par()->GetChar(cursor.pos()) == LyXParagraph::META_INSET
881             && cursor.par()->GetInset(cursor.pos())
882             && cursor.par()->GetInset(cursor.pos())->Editable()) {
883
884                 // Check whether the inset really was hit
885                 Inset * tmpinset = cursor.par()->GetInset(cursor.pos());
886                 LyXFont font = text->GetFont(bv_->buffer(),
887                                                   cursor.par(), cursor.pos());
888                 bool is_rtl = font.isVisibleRightToLeft();
889                 int start_x;
890                 int end_x;
891
892                 if (is_rtl) {
893                         start_x = cursor.x() - tmpinset->width(bv_, font) + tmpinset->scroll();
894                         end_x = cursor.x() + tmpinset->scroll();
895                 } else {
896                         start_x = cursor.x() + tmpinset->scroll();
897                         end_x = cursor.x() + tmpinset->width(bv_, font) + tmpinset->scroll();
898                 }
899
900                 if (x > start_x && x < end_x
901                     && y_tmp > cursor.y() - tmpinset->ascent(bv_, font)
902                     && y_tmp < cursor.y() + tmpinset->descent(bv_, font)) {
903                         text->SetCursor(bv_, cursor.par(),cursor.pos(),true);
904                         x = x - start_x;
905                         // The origin of an inset is on the baseline
906                         y = y_tmp - (text->cursor.y()); 
907                         return tmpinset;
908                 }
909         }
910
911         if ((cursor.pos() - 1 >= 0) &&
912             (cursor.par()->GetChar(cursor.pos()-1) == LyXParagraph::META_INSET) &&
913             (cursor.par()->GetInset(cursor.pos() - 1)) &&
914             (cursor.par()->GetInset(cursor.pos() - 1)->Editable())) {
915                 Inset * tmpinset = cursor.par()->GetInset(cursor.pos()-1);
916                 LyXFont font = text->GetFont(bv_->buffer(), cursor.par(),
917                                                   cursor.pos()-1);
918                 bool is_rtl = font.isVisibleRightToLeft();
919                 int start_x;
920                 int end_x;
921
922                 if (!is_rtl) {
923                         start_x = cursor.x() - tmpinset->width(bv_, font) +
924                             tmpinset->scroll();
925                         end_x = cursor.x() + tmpinset->scroll();
926                 } else {
927                         start_x = cursor.x() + tmpinset->scroll();
928                         end_x = cursor.x() + tmpinset->width(bv_, font) +
929                             tmpinset->scroll();
930                 }
931                 if (x > start_x && x < end_x
932                     && y_tmp > cursor.y() - tmpinset->ascent(bv_, font)
933                     && y_tmp < cursor.y() + tmpinset->descent(bv_, font)) {
934 #if 0
935                         if (move_cursor && (tmpinset != bv_->theLockingInset()))
936 #endif
937                                 text->SetCursor(bv_, cursor.par(),cursor.pos()-1,true);
938                         x = x - start_x;
939                         // The origin of an inset is on the baseline
940                         y = y_tmp - (text->cursor.y()); 
941                         return tmpinset;
942                 }
943         }
944         return 0;
945 }
946
947
948 void BufferView::Pimpl::workAreaExpose()
949 {
950         // this is a hack to ensure that we only call this through
951         // BufferView::redraw().
952         //if (!lgb_hack) {
953         //      redraw();
954         //}
955         
956         static int work_area_width = 0;
957         static unsigned int work_area_height = 0;
958
959         bool widthChange = workarea_->workWidth() != work_area_width;
960         bool heightChange = workarea_->height() != work_area_height;
961
962         // update from work area
963         work_area_width = workarea_->workWidth();
964         work_area_height = workarea_->height();
965         if (buffer_ != 0) {
966                 if (widthChange) {
967                         // All buffers need a resize
968                         bufferlist.resize();
969
970                         // Remove all texts from the textcache
971                         // This is not _really_ what we want to do. What
972                         // we really want to do is to delete in textcache
973                         // that does not have a BufferView with matching
974                         // width, but as long as we have only one BufferView
975                         // deleting all gives the same result.
976                         if (lyxerr.debugging())
977                                 textcache.show(lyxerr, "Expose delete all");
978                         textcache.clear();
979                 } else if (heightChange) {
980                         // Rebuild image of current screen
981                         updateScreen();
982                         // fitCursor() ensures we don't jump back
983                         // to the start of the document on vertical
984                         // resize
985                         fitCursor(bv_->text);
986
987                         // The main window size has changed, repaint most stuff
988                         redraw();
989                         // ...including the minibuffer
990                         owner_->getMiniBuffer()->Init();
991
992                 } else if (screen_) screen_->Redraw(bv_->text);
993         } else {
994                 // Grey box when we don't have a buffer
995                 workarea_->greyOut();
996         }
997
998         // always make sure that the scrollbar is sane.
999         updateScrollbar();
1000         owner_->updateLayoutChoice();
1001         return;
1002 }
1003
1004
1005 void BufferView::Pimpl::update()
1006 {
1007         if (screen_) screen_->Update(bv_->text);
1008 }
1009
1010 // Values used when calling update:
1011 // -3 - update
1012 // -2 - update, move sel_cursor if selection, fitcursor
1013 // -1 - update, move sel_cursor if selection, fitcursor, mark dirty
1014 //  0 - update, move sel_cursor if selection, fitcursor 
1015 //  1 - update, move sel_cursor if selection, fitcursor, mark dirty
1016 //  3 - update, move sel_cursor if selection
1017 //
1018 // update -
1019 // a simple redraw of the parts that need refresh
1020 //
1021 // move sel_cursor if selection -
1022 // the text's sel_cursor is moved if there is selection is progress
1023 //
1024 // fitcursor -
1025 // fitCursor() is called and the scrollbar updated
1026 //
1027 // mark dirty -
1028 // the buffer is marked dirty.
1029 //
1030 // enum {
1031 //       UPDATE = 0,
1032 //       SELECT = 1,
1033 //       FITCUR = 2,
1034 //       CHANGE = 4 
1035 // };
1036 //
1037 // UPDATE_ONLY = UPDATE;
1038 // UPDATE_SELECT = UPDATE | SELECT;
1039 // UPDATE_SELECT_MOVE = UPDATE | SELECT | FITCUR;
1040 // UPDATE_SELECT_MOVE_AFTER_CHANGE = UPDATE | SELECT | FITCUR | CHANGE;
1041 //
1042 // update(-3) -> update(0)         -> update(0) -> update(UPDATE)
1043 // update(-2) -> update(1 + 2)     -> update(3) -> update(SELECT|FITCUR)
1044 // update(-1) -> update(1 + 2 + 4) -> update(7) -> update(SELECT|FITCUR|CHANGE)
1045 // update(1)  -> update(1 + 2 + 4) -> update(7) -> update(SELECT|FITCUR|CHANGE)
1046 // update(3)  -> update(1)         -> update(1) -> update(SELECT)
1047
1048 void BufferView::Pimpl::update(BufferView::UpdateCodes f)
1049 {
1050         owner_->updateLayoutChoice();
1051
1052         if (!bv_->text->selection && (f & SELECT)) {
1053                 bv_->text->sel_cursor = bv_->text->cursor;
1054         }
1055
1056         bv_->text->FullRebreak(bv_);
1057
1058         update();
1059
1060         if ((f & FITCUR)) {
1061                 fitCursor(bv_->text);
1062         }
1063
1064         if ((f & CHANGE)) {
1065                 if (buffer_->isLyxClean()) {
1066                         buffer_->markDirty();
1067                         owner_->getMiniBuffer()->setTimer(4);
1068                 } else {
1069                         buffer_->markDirty();
1070                 }
1071         }
1072 }
1073
1074
1075 // Callback for cursor timer
1076 void BufferView::Pimpl::cursorToggle()
1077 {
1078         // Quite a nice place for asyncron Inset updating, isn't it?
1079         // Actually no! This is run even if no buffer exist... so (Lgb)
1080         if (!buffer_) {
1081                 goto set_timer_and_return;
1082         }
1083
1084         // NOTE:
1085         // On my quest to solve the gs render hangups I am now
1086         // disabling the SIGHUP completely, and will do a wait
1087         // now and then instead. If the guess that xforms somehow
1088         // destroys something is true, this is likely (hopefully)
1089         // to solve the problem...at least I hope so. Lgb
1090
1091         // ...Ok this seems to work...at least it does not make things
1092         // worse so far. However I still see gs processes that hangs.
1093         // I would really like to know _why_ they are hanging. Anyway
1094         // the solution without the SIGCHLD handler seems to be easier
1095         // to debug.
1096
1097         // When attaching gdb to a a running gs that hangs it shows
1098         // that it is waiting for input(?) Is it possible for us to
1099         // provide that input somehow? Or figure what it is expecing
1100         // to read?
1101
1102         // One solution is to, after some time, look if there are some
1103         // old gs processes still running and if there are: kill them
1104         // and re render.
1105
1106         // Another solution is to provide the user an option to rerender
1107         // a picture. This would, for the picture in question, check if
1108         // there is a gs running for it, if so kill it, and start a new
1109         // rendering process.
1110
1111         // these comments posted to lyx@via
1112         {
1113                 int status = 1;
1114                 int pid = waitpid(static_cast<pid_t>(0), &status, WNOHANG);
1115                 if (pid == -1) // error find out what is wrong
1116                         ; // ignore it for now.
1117                 else if (pid > 0)
1118                         sigchldhandler(pid, &status);
1119         }
1120
1121         updatelist.update(bv_);
1122         
1123         if (!screen_) {
1124                 goto set_timer_and_return;
1125         }
1126
1127         if (!bv_->theLockingInset()) {
1128                 screen_->CursorToggle(bv_->text);
1129         } else {
1130                 bv_->theLockingInset()->ToggleInsetCursor(bv_);
1131         }
1132         
1133   set_timer_and_return:
1134         cursor_timeout.restart();
1135         return;
1136 }
1137
1138
1139 void BufferView::Pimpl::cursorPrevious(LyXText * text)
1140 {
1141         if (!text->cursor.row()->previous())
1142                 return;
1143         
1144         int y = text->first;
1145         if (text->inset_owner)
1146                 y += bv_->text->first;
1147         Row * cursorrow = text->cursor.row();
1148         text->SetCursorFromCoordinates(bv_, bv_->text->cursor.x_fix(), y);
1149         bv_->text->FinishUndo();
1150         // This is to allow jumping over large insets
1151         if ((cursorrow == text->cursor.row()))
1152                 text->CursorUp(bv_);
1153         
1154         if (text->inset_owner ||
1155             text->cursor.row()->height() < workarea_->height())
1156                 screen_->Draw(bv_->text,
1157                               text->cursor.y()
1158                               - text->cursor.row()->baseline()
1159                               + text->cursor.row()->height()
1160                               - workarea_->height() + 1 );
1161         updateScrollbar();
1162 }
1163
1164
1165 void BufferView::Pimpl::cursorNext(LyXText * text)
1166 {
1167         if (!text->cursor.row()->next())
1168                 return;
1169         
1170         int y = text->first + workarea_->height();
1171 //      if (text->inset_owner)
1172 //              y += bv_->text->first;
1173         text->GetRowNearY(y);
1174     
1175         Row * cursorrow = text->cursor.row();
1176         text->SetCursorFromCoordinates(bv_, text->cursor.x_fix(), y); // + workarea_->height());
1177         bv_->text->FinishUndo();
1178         // This is to allow jumping over large insets
1179         if ((cursorrow == bv_->text->cursor.row()))
1180                 text->CursorDown(bv_);
1181         
1182         if (text->inset_owner ||
1183             text->cursor.row()->height() < workarea_->height())
1184                 screen_->Draw(bv_->text, text->cursor.y() -
1185                               text->cursor.row()->baseline());
1186         updateScrollbar();
1187 }
1188
1189
1190 bool BufferView::Pimpl::available() const
1191 {
1192         if (buffer_ && bv_->text) return true;
1193         return false;
1194 }
1195
1196
1197 void BufferView::Pimpl::beforeChange()
1198 {
1199         toggleSelection();
1200         bv_->text->ClearSelection();
1201
1202         // CHECK
1203         //owner_->update_timeout.stop();
1204 }
1205
1206
1207 void BufferView::Pimpl::savePosition()
1208 {
1209         backstack.push(buffer_->fileName(),
1210                        bv_->text->cursor.x(),
1211                        bv_->text->cursor.y());
1212 }
1213
1214
1215 void BufferView::Pimpl::restorePosition()
1216 {
1217         if (backstack.empty()) return;
1218         
1219         int  x, y;
1220         string fname = backstack.pop(&x, &y);
1221
1222         beforeChange();
1223
1224         if( fname != buffer_->fileName() ) {
1225                 Buffer * b = bufferlist.exists(fname) ?
1226                         bufferlist.getBuffer(fname) :
1227                         bufferlist.loadLyXFile(fname); // don't ask, just load it
1228                 if( b != 0 ) buffer(b);
1229         }
1230
1231         bv_->text->SetCursorFromCoordinates(bv_, x, y);
1232         update(BufferView::SELECT|BufferView::FITCUR);
1233 }
1234
1235
1236 bool BufferView::Pimpl::NoSavedPositions()
1237 {
1238         return backstack.empty();
1239 }
1240
1241
1242 void BufferView::Pimpl::setState()
1243 {
1244         if (!lyxrc.rtl_support)
1245                 return;
1246
1247         if (bv_->text->real_current_font.isRightToLeft() &&
1248             bv_->text->real_current_font.latex() != LyXFont::ON) {
1249                 if (owner_->getIntl()->primarykeymap)
1250                         owner_->getIntl()->KeyMapSec();
1251         } else {
1252                 if (!owner_->getIntl()->primarykeymap)
1253                         owner_->getIntl()->KeyMapPrim();
1254         }
1255 }
1256
1257
1258 void BufferView::Pimpl::insetSleep()
1259 {
1260         if (bv_->theLockingInset() && !bv_->inset_slept) {
1261                 bv_->theLockingInset()->GetCursorPos(bv_, bv_->slx, bv_->sly);
1262                 bv_->theLockingInset()->InsetUnlock(bv_);
1263                 bv_->inset_slept = true;
1264         }
1265 }
1266
1267
1268 void BufferView::Pimpl::insetWakeup()
1269 {
1270         if (bv_->theLockingInset() && bv_->inset_slept) {
1271                 bv_->theLockingInset()->Edit(bv_, bv_->slx, bv_->sly, 0);
1272                 bv_->inset_slept = false;
1273         }
1274 }
1275
1276
1277 void BufferView::Pimpl::insetUnlock()
1278 {
1279         if (bv_->theLockingInset()) {
1280                 if (!bv_->inset_slept)
1281                         bv_->theLockingInset()->InsetUnlock(bv_);
1282                 bv_->theLockingInset(0);
1283                 bv_->text->FinishUndo();
1284                 bv_->inset_slept = false;
1285         }
1286 }
1287
1288
1289 bool BufferView::Pimpl::focus() const
1290 {
1291         return workarea_->hasFocus();
1292 }
1293
1294
1295 void BufferView::Pimpl::focus(bool f)
1296 {
1297         if (f) workarea_->setFocus();
1298 }
1299
1300
1301 bool BufferView::Pimpl::active() const
1302 {
1303         return workarea_->active();
1304 }
1305
1306
1307 bool BufferView::Pimpl::belowMouse() const 
1308 {
1309         return workarea_->belowMouse();
1310 }
1311
1312
1313 void BufferView::Pimpl::showCursor()
1314 {
1315         if (screen_)
1316                 screen_->ShowCursor(bv_->text);
1317 }
1318
1319
1320 void BufferView::Pimpl::hideCursor()
1321 {
1322         if (screen_)
1323                 screen_->HideCursor();
1324 }
1325
1326
1327 void BufferView::Pimpl::toggleSelection(bool b)
1328 {
1329         if (screen_)
1330                 screen_->ToggleSelection(bv_->text, b);
1331 }
1332
1333
1334 void BufferView::Pimpl::toggleToggle()
1335 {
1336         if (screen_)
1337                 screen_->ToggleToggle(bv_->text);
1338 }
1339
1340
1341 void BufferView::Pimpl::center() 
1342 {
1343         beforeChange();
1344         if (bv_->text->cursor.y() > (int)(workarea_->height() / 2)) {
1345                 screen_->Draw(bv_->text, bv_->text->cursor.y() - workarea_->height() / 2);
1346         } else {
1347                 screen_->Draw(bv_->text, 0);
1348         }
1349         update(BufferView::SELECT|BufferView::FITCUR);
1350         redraw();
1351 }
1352
1353
1354 void BufferView::Pimpl::pasteClipboard(bool asPara) 
1355 {
1356         if (buffer_ == 0) return;
1357
1358         screen_->HideCursor();
1359         bv_->beforeChange();
1360         
1361         string clip(workarea_->getClipboard());
1362         
1363         if (clip.empty()) return;
1364
1365         if (asPara) {
1366                 bv_->text->InsertStringB(bv_, clip);
1367         } else {
1368                 bv_->text->InsertStringA(bv_, clip);
1369         }
1370         update(BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
1371 }
1372
1373
1374 void BufferView::Pimpl::stuffClipboard(string const & stuff) const
1375 {
1376         workarea_->putClipboard(stuff);
1377 }