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