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