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