]> git.lyx.org Git - lyx.git/blob - src/BufferView.cpp
Transfer some LFUNs from LyXFunc::getStatus() to BufferView::getStatus(). What a...
[lyx.git] / src / BufferView.cpp
1 /**
2  * \file BufferView.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Alfredo Braunstein
7  * \author Lars Gullik Bjønnes
8  * \author John Levon
9  * \author André Pönitz
10  * \author Jürgen Vigna
11  *
12  * Full author contact details are available in file CREDITS.
13  */
14
15 #include <config.h>
16
17 #include "BufferView.h"
18
19 #include "Buffer.h"
20 #include "buffer_funcs.h"
21 #include "BufferList.h"
22 #include "BufferParams.h"
23 #include "CoordCache.h"
24 #include "Cursor.h"
25 #include "CutAndPaste.h"
26 #include "debug.h"
27 #include "DispatchResult.h"
28 #include "ErrorList.h"
29 #include "factory.h"
30 #include "FloatList.h"
31 #include "FuncRequest.h"
32 #include "FuncStatus.h"
33 #include "gettext.h"
34 #include "Intl.h"
35 #include "InsetIterator.h"
36 #include "Language.h"
37 #include "LaTeXFeatures.h"
38 #include "LyX.h"
39 #include "lyxfind.h"
40 #include "LyXFunc.h"
41 #include "Layout.h"
42 #include "LyXRC.h"
43 #include "MetricsInfo.h"
44 #include "Paragraph.h"
45 #include "paragraph_funcs.h"
46 #include "ParagraphParameters.h"
47 #include "ParIterator.h"
48 #include "Session.h"
49 #include "Text.h"
50 #include "TextClass.h"
51 #include "TextMetrics.h"
52 #include "TexRow.h"
53 #include "Undo.h"
54 #include "VSpace.h"
55 #include "WordLangTuple.h"
56
57
58 #include "insets/InsetBibtex.h"
59 #include "insets/InsetCommand.h" // ChangeRefs
60 #include "insets/InsetRef.h"
61 #include "insets/InsetText.h"
62
63 #include "frontends/alert.h"
64 #include "frontends/Delegates.h"
65 #include "frontends/FileDialog.h"
66 #include "frontends/FontMetrics.h"
67 #include "frontends/Painter.h"
68 #include "frontends/Selection.h"
69
70 #include "graphics/Previews.h"
71
72 #include "support/convert.h"
73 #include "support/FileFilterList.h"
74 #include "support/filetools.h"
75 #include "support/Package.h"
76 #include "support/types.h"
77 #include "support/fs_extras.h"
78
79 #include <boost/bind.hpp>
80 #include <boost/current_function.hpp>
81 #include <boost/next_prior.hpp>
82 #include <boost/filesystem/operations.hpp>
83
84 #include <cerrno>
85 #include <fstream>
86 #include <functional>
87 #include <vector>
88
89 using std::distance;
90 using std::endl;
91 using std::ifstream;
92 using std::istringstream;
93 using std::istream_iterator;
94 using std::make_pair;
95 using std::min;
96 using std::max;
97 using std::mem_fun_ref;
98 using std::string;
99 using std::vector;
100
101 namespace fs = boost::filesystem;
102
103 namespace lyx {
104
105 using support::addPath;
106 using support::bformat;
107 using support::FileFilterList;
108 using support::FileName;
109 using support::fileSearch;
110 using support::isDirWriteable;
111 using support::isFileReadable;
112 using support::makeDisplayPath;
113 using support::makeAbsPath;
114 using support::package;
115
116 namespace Alert = frontend::Alert;
117
118 namespace {
119
120 /// Return an inset of this class if it exists at the current cursor position
121 template <class T>
122 T * getInsetByCode(Cursor const & cur, Inset::Code code)
123 {
124         DocIterator it = cur;
125         Inset * inset = it.nextInset();
126         if (inset && inset->lyxCode() == code)
127                 return static_cast<T*>(inset);
128         return 0;
129 }
130
131
132 bool findInset(DocIterator & dit, vector<Inset_code> const & codes,
133         bool same_content);
134
135 bool findNextInset(DocIterator & dit, vector<Inset_code> const & codes,
136         string const & contents)
137 {
138         DocIterator tmpdit = dit;
139
140         while (tmpdit) {
141                 Inset const * inset = tmpdit.nextInset();
142                 if (inset
143                     && find(codes.begin(), codes.end(), inset->lyxCode()) != codes.end()
144                     && (contents.empty() ||
145                     static_cast<InsetCommand const *>(inset)->getContents() == contents)) {
146                         dit = tmpdit;
147                         return true;
148                 }
149                 tmpdit.forwardInset();
150         }
151
152         return false;
153 }
154
155
156 /// Looks for next inset with one of the the given code
157 bool findInset(DocIterator & dit, vector<Inset_code> const & codes,
158         bool same_content)
159 {
160         string contents;
161         DocIterator tmpdit = dit;
162         tmpdit.forwardInset();
163         if (!tmpdit)
164                 return false;
165
166         if (same_content) {
167                 Inset const * inset = tmpdit.nextInset();
168                 if (inset
169                     && find(codes.begin(), codes.end(), inset->lyxCode()) != codes.end()) {
170                         contents = static_cast<InsetCommand const *>(inset)->getContents();
171                 }
172         }
173
174         if (!findNextInset(tmpdit, codes, contents)) {
175                 if (dit.depth() != 1 || dit.pit() != 0 || dit.pos() != 0) {
176                         tmpdit  = doc_iterator_begin(tmpdit.bottom().inset());
177                         if (!findNextInset(tmpdit, codes, contents))
178                                 return false;
179                 } else
180                         return false;
181         }
182
183         dit = tmpdit;
184         return true;
185 }
186
187
188 /// Looks for next inset with the given code
189 void findInset(DocIterator & dit, Inset_code code, bool same_content)
190 {
191         findInset(dit, vector<Inset_code>(1, code), same_content);
192 }
193
194
195 /// Moves cursor to the next inset with one of the given codes.
196 void gotoInset(BufferView * bv, vector<Inset_code> const & codes,
197                bool same_content)
198 {
199         Cursor tmpcur = bv->cursor();
200         if (!findInset(tmpcur, codes, same_content)) {
201                 bv->cursor().message(_("No more insets"));
202                 return;
203         }
204
205         tmpcur.clearSelection();
206         bv->setCursor(tmpcur);
207 }
208
209
210 /// Moves cursor to the next inset with given code.
211 void gotoInset(BufferView * bv, Inset_code code, bool same_content)
212 {
213         gotoInset(bv, vector<Inset_code>(1, code), same_content);
214 }
215
216
217
218 /// the type of outline operation
219 enum OutlineOp {
220         OutlineUp, // Move this header with text down
221         OutlineDown,   // Move this header with text up
222         OutlineIn, // Make this header deeper
223         OutlineOut // Make this header shallower
224 };
225
226
227 void outline(OutlineOp mode, Cursor & cur)
228 {
229         Buffer & buf = cur.buffer();
230         pit_type & pit = cur.pit();
231         ParagraphList & pars = buf.text().paragraphs();
232         ParagraphList::iterator bgn = pars.begin();
233         // The first paragraph of the area to be copied:
234         ParagraphList::iterator start = boost::next(bgn, pit);
235         // The final paragraph of area to be copied:
236         ParagraphList::iterator finish = start;
237         ParagraphList::iterator end = pars.end();
238
239         TextClass::const_iterator lit =
240                 buf.params().getTextClass().begin();
241         TextClass::const_iterator const lend =
242                 buf.params().getTextClass().end();
243
244         int const thistoclevel = start->layout()->toclevel;
245         int toclevel;
246         switch (mode) {
247                 case OutlineUp: {
248                         // Move out (down) from this section header
249                         if (finish != end)
250                                 ++finish;
251                         // Seek the one (on same level) below
252                         for (; finish != end; ++finish) {
253                                 toclevel = finish->layout()->toclevel;
254                                 if (toclevel != Layout::NOT_IN_TOC
255                                     && toclevel <= thistoclevel) {
256                                         break;
257                                 }
258                         }
259                         ParagraphList::iterator dest = start;
260                         // Move out (up) from this header
261                         if (dest == bgn)
262                                 break;
263                         // Search previous same-level header above
264                         do {
265                                 --dest;
266                                 toclevel = dest->layout()->toclevel;
267                         } while(dest != bgn
268                                 && (toclevel == Layout::NOT_IN_TOC
269                                     || toclevel > thistoclevel));
270                         // Not found; do nothing
271                         if (toclevel == Layout::NOT_IN_TOC || toclevel > thistoclevel)
272                                 break;
273                         pit_type const newpit = std::distance(bgn, dest);
274                         pit_type const len = std::distance(start, finish);
275                         pit_type const deletepit = pit + len;
276                         recordUndo(cur, Undo::ATOMIC, newpit, deletepit - 1);
277                         pars.insert(dest, start, finish);
278                         start = boost::next(pars.begin(), deletepit);
279                         pit = newpit;
280                         pars.erase(start, finish);
281                         break;
282                 }
283                 case OutlineDown: {
284                         // Go down out of current header:
285                         if (finish != end)
286                                 ++finish;
287                         // Find next same-level header:
288                         for (; finish != end; ++finish) {
289                                 toclevel = finish->layout()->toclevel;
290                                 if (toclevel != Layout::NOT_IN_TOC && toclevel <= thistoclevel)
291                                         break;
292                         }
293                         ParagraphList::iterator dest = finish;
294                         // Go one down from *this* header:
295                         if (dest != end)
296                                 ++dest;
297                         else
298                                 break;
299                         // Go further down to find header to insert in front of:
300                         for (; dest != end; ++dest) {
301                                 toclevel = dest->layout()->toclevel;
302                                 if (toclevel != Layout::NOT_IN_TOC && toclevel <= thistoclevel)
303                                         break;
304                         }
305                         // One such was found:
306                         pit_type newpit = std::distance(bgn, dest);
307                         pit_type const len = std::distance(start, finish);
308                         recordUndo(cur, Undo::ATOMIC, pit, newpit - 1);
309                         pars.insert(dest, start, finish);
310                         start = boost::next(bgn, pit);
311                         pit = newpit - len;
312                         pars.erase(start, finish);
313                         break;
314                 }
315                 case OutlineIn:
316                         recordUndo(cur);
317                         for (; lit != lend; ++lit) {
318                                 if ((*lit)->toclevel == thistoclevel + 1 &&
319                                     start->layout()->labeltype == (*lit)->labeltype) {
320                                         start->layout((*lit));
321                                         break;
322                                 }
323                         }
324                         break;
325                 case OutlineOut:
326                         recordUndo(cur);
327                         for (; lit != lend; ++lit) {
328                                 if ((*lit)->toclevel == thistoclevel - 1 &&
329                                     start->layout()->labeltype == (*lit)->labeltype) {
330                                         start->layout((*lit));
331                                         break;
332                                 }
333                         }
334                         break;
335                 default:
336                         break;
337         }
338 }
339
340 /// A map from a Text to the associated text metrics
341 typedef std::map<Text const *, TextMetrics> TextMetricsCache;
342
343 } // anon namespace
344
345
346 /////////////////////////////////////////////////////////////////////
347 //
348 // BufferView
349 //
350 /////////////////////////////////////////////////////////////////////
351
352 struct BufferView::BufferViewPrivate
353 {
354         BufferViewPrivate(BufferView & bv): wh_(0), cursor_(bv),
355                 multiparsel_cache_(false), anchor_ref_(0), offset_ref_(0),
356                 need_centering_(false), last_inset_(0), gui_(0)
357         {}
358
359         ///
360         ScrollbarParameters scrollbarParameters_;
361         ///
362         ViewMetricsInfo metrics_info_;
363         ///
364         CoordCache coord_cache_;
365
366         /// Estimated average par height for scrollbar.
367         int wh_;
368         /// this is used to handle XSelection events in the right manner.
369         struct {
370                 CursorSlice cursor;
371                 CursorSlice anchor;
372                 bool set;
373         } xsel_cache_;
374         ///
375         Cursor cursor_;
376         ///
377         bool multiparsel_cache_;
378         ///
379         pit_type anchor_ref_;
380         ///
381         int offset_ref_;
382         ///
383         bool need_centering_;
384
385         /// keyboard mapping object.
386         Intl intl_;
387
388         /// last visited inset.
389         /** kept to send setMouseHover(false).
390           * Not owned, so don't delete.
391           */
392         Inset * last_inset_;
393
394         mutable TextMetricsCache text_metrics_;
395
396         /// Whom to notify.
397         /** Not owned, so don't delete.
398           */
399         frontend::GuiBufferViewDelegate * gui_;
400 };
401
402
403 BufferView::BufferView(Buffer & buf)
404         : width_(0), height_(0), buffer_(buf), d(*new BufferViewPrivate(*this))
405 {
406         d.xsel_cache_.set = false;
407         d.intl_.initKeyMapper(lyxrc.use_kbmap);
408
409         d.cursor_.push(buffer_.inset());
410         d.cursor_.resetAnchor();
411         d.cursor_.setCurrentFont();
412
413         if (graphics::Previews::status() != LyXRC::PREVIEW_OFF)
414                 graphics::Previews::get().generateBufferPreviews(buffer_);
415 }
416
417
418 BufferView::~BufferView()
419 {
420         // current buffer is going to be switched-off, save cursor pos
421         // Ideally, the whole cursor stack should be saved, but session
422         // currently can only handle bottom (whole document) level pit and pos.
423         // That is to say, if a cursor is in a nested inset, it will be
424         // restore to the left of the top level inset.
425         LyX::ref().session().lastFilePos().save(
426                 support::FileName(buffer_.fileName()),
427                 boost::tie(d.cursor_.bottom().pit(), d.cursor_.bottom().pos()) );
428
429         delete &d;
430 }
431
432
433 Intl & BufferView::getIntl()
434 {
435         return d.intl_;
436 }
437
438
439 Intl const & BufferView::getIntl() const
440 {
441         return d.intl_;
442 }
443
444
445 CoordCache & BufferView::coordCache()
446 {
447         return d.coord_cache_;
448 }
449
450
451 CoordCache const & BufferView::coordCache() const
452 {
453         return d.coord_cache_;
454 }
455
456
457 Buffer & BufferView::buffer()
458 {
459         return buffer_;
460 }
461
462
463 Buffer const & BufferView::buffer() const
464 {
465         return buffer_;
466 }
467
468
469 bool BufferView::fitCursor()
470 {
471         if (cursorStatus(d.cursor_) == CUR_INSIDE) {
472                 frontend::FontMetrics const & fm =
473                         theFontMetrics(d.cursor_.getFont());
474                 int const asc = fm.maxAscent();
475                 int const des = fm.maxDescent();
476                 Point const p = getPos(d.cursor_, d.cursor_.boundary());
477                 if (p.y_ - asc >= 0 && p.y_ + des < height_)
478                         return false;
479         }
480         center();
481         return true;
482 }
483
484
485 bool BufferView::multiParSel()
486 {
487         if (!d.cursor_.selection())
488                 return false;
489         bool ret = d.multiparsel_cache_;
490         d.multiparsel_cache_ = d.cursor_.selBegin().pit() != d.cursor_.selEnd().pit();
491         // Either this, or previous selection spans paragraphs
492         return ret || d.multiparsel_cache_;
493 }
494
495
496 void BufferView::processUpdateFlags(Update::flags flags)
497 {
498         // last_inset_ points to the last visited inset. This pointer may become
499         // invalid because of keyboard editing. Since all such operations
500         // causes screen update(), I reset last_inset_ to avoid such a problem.
501         d.last_inset_ = 0;
502         // This is close to a hot-path.
503         LYXERR(Debug::DEBUG)
504                 << BOOST_CURRENT_FUNCTION
505                 << "[fitcursor = " << (flags & Update::FitCursor)
506                 << ", forceupdate = " << (flags & Update::Force)
507                 << ", singlepar = " << (flags & Update::SinglePar)
508                 << "]  buffer: " << &buffer_ << endl;
509
510         // Update macro store
511         if (!(cursor().inMathed() && cursor().inMacroMode()))
512                 buffer_.buildMacros();
513
514         // Now do the first drawing step if needed. This consists on updating
515         // the CoordCache in updateMetrics().
516         // The second drawing step is done in WorkArea::redraw() if needed.
517
518         // Case when no explicit update is requested.
519         if (!flags) {
520                 // no need to redraw anything.
521                 d.metrics_info_.update_strategy = NoScreenUpdate;
522                 return;
523         }
524
525         if (flags == Update::Decoration) {
526                 d.metrics_info_.update_strategy = DecorationUpdate;
527                 buffer_.changed();
528                 return;
529         }
530
531         if (flags == Update::FitCursor
532                 || flags == (Update::Decoration | Update::FitCursor)) {
533                 bool const fit_cursor = fitCursor();
534                 // tell the frontend to update the screen if needed.
535                 if (fit_cursor) {
536                         updateMetrics(false);
537                         buffer_.changed();
538                         return;
539                 }
540                 if (flags & Update::Decoration) {
541                         d.metrics_info_.update_strategy = DecorationUpdate;
542                         buffer_.changed();
543                         return;
544                 }
545                 // no screen update is needed.
546                 d.metrics_info_.update_strategy = NoScreenUpdate;
547                 return;
548         }
549
550         bool full_metrics = flags & Update::Force;
551         if (flags & Update::MultiParSel)
552                 full_metrics |= multiParSel();
553
554         bool const single_par = !full_metrics;
555         updateMetrics(single_par);
556
557         if (!(flags & Update::FitCursor)) {
558                 buffer_.changed();
559                 return;
560         }
561
562         //FIXME: updateMetrics() does not update paragraph position
563         // This is done at draw() time. So we need a redraw!
564         buffer_.changed();
565         if (!fitCursor())
566                 // The screen has already been updated thanks to the
567                 // 'buffer_.changed()' call three line above. So no need
568                 // to redraw again.
569                 return;
570
571         // The screen has been recentered around the cursor position so
572         // refresh it:
573         updateMetrics(false);
574         buffer_.changed();
575 }
576
577
578 void BufferView::updateScrollbar()
579 {
580         Text & t = buffer_.text();
581         TextMetrics & tm = d.text_metrics_[&t];
582
583         int const parsize = int(t.paragraphs().size() - 1);
584         if (d.anchor_ref_ >  parsize)  {
585                 d.anchor_ref_ = parsize;
586                 d.offset_ref_ = 0;
587         }
588
589         LYXERR(Debug::GUI)
590                 << BOOST_CURRENT_FUNCTION
591                 << " Updating scrollbar: height: " << t.paragraphs().size()
592                 << " curr par: " << d.cursor_.bottom().pit()
593                 << " default height " << defaultRowHeight() << endl;
594
595         // It would be better to fix the scrollbar to understand
596         // values in [0..1] and divide everything by wh
597
598         // estimated average paragraph height:
599         if (d.wh_ == 0)
600                 d.wh_ = height_ / 4;
601
602         int h = tm.parMetrics(d.anchor_ref_).height();
603
604         // Normalize anchor/offset (MV):
605         while (d.offset_ref_ > h && d.anchor_ref_ < parsize) {
606                 d.anchor_ref_++;
607                 d.offset_ref_ -= h;
608                 h = tm.parMetrics(d.anchor_ref_).height();
609         }
610         // Look at paragraph heights on-screen
611         int sumh = 0;
612         int nh = 0;
613         for (pit_type pit = d.anchor_ref_; pit <= parsize; ++pit) {
614                 if (sumh > height_)
615                         break;
616                 int const h2 = tm.parMetrics(pit).height();
617                 sumh += h2;
618                 nh++;
619         }
620
621         BOOST_ASSERT(nh);
622         int const hav = sumh / nh;
623         // More realistic average paragraph height
624         if (hav > d.wh_)
625                 d.wh_ = hav;
626
627         BOOST_ASSERT(h);
628         d.scrollbarParameters_.height = (parsize + 1) * d.wh_;
629         d.scrollbarParameters_.position = d.anchor_ref_ * d.wh_ + int(d.offset_ref_ * d.wh_ / float(h));
630         d.scrollbarParameters_.lineScrollHeight = int(d.wh_ * defaultRowHeight() / float(h));
631 }
632
633
634 ScrollbarParameters const & BufferView::scrollbarParameters() const
635 {
636         return d.scrollbarParameters_;
637 }
638
639
640 void BufferView::scrollDocView(int value)
641 {
642         LYXERR(Debug::GUI) << BOOST_CURRENT_FUNCTION
643                            << "[ value = " << value << "]" << endl;
644
645         Text & t = buffer_.text();
646         TextMetrics & tm = d.text_metrics_[&t];
647
648         float const bar = value / float(d.wh_ * t.paragraphs().size());
649
650         d.anchor_ref_ = int(bar * t.paragraphs().size());
651         if (d.anchor_ref_ >  int(t.paragraphs().size()) - 1)
652                 d.anchor_ref_ = int(t.paragraphs().size()) - 1;
653
654         tm.redoParagraph(d.anchor_ref_);
655         int const h = tm.parMetrics(d.anchor_ref_).height();
656         d.offset_ref_ = int((bar * t.paragraphs().size() - d.anchor_ref_) * h);
657         updateMetrics(false);
658         buffer_.changed();
659 }
660
661
662 void BufferView::setCursorFromScrollbar()
663 {
664         TextMetrics & tm = d.text_metrics_[&buffer_.text()];
665
666         int const height = 2 * defaultRowHeight();
667         int const first = height;
668         int const last = height_ - height;
669         Cursor & cur = d.cursor_;
670
671         switch (cursorStatus(cur)) {
672         case CUR_ABOVE:
673                 // We reset the cursor because cursorStatus() does not
674                 // work when the cursor is within mathed.
675                 cur.reset(buffer_.inset());
676                 tm.setCursorFromCoordinates(cur, 0, first);
677                 cur.clearSelection();
678                 break;
679         case CUR_BELOW:
680                 // We reset the cursor because cursorStatus() does not
681                 // work when the cursor is within mathed.
682                 cur.reset(buffer_.inset());
683                 tm.setCursorFromCoordinates(cur, 0, last);
684                 cur.clearSelection();
685                 break;
686         case CUR_INSIDE:
687                 int const y = getPos(cur, cur.boundary()).y_;
688                 int const newy = min(last, max(y, first));
689                 if (y != newy) {
690                         cur.reset(buffer_.inset());
691                         tm.setCursorFromCoordinates(cur, 0, newy);
692                 }
693         }
694 }
695
696
697 Change const BufferView::getCurrentChange() const
698 {
699         if (!d.cursor_.selection())
700                 return Change(Change::UNCHANGED);
701
702         DocIterator dit = d.cursor_.selectionBegin();
703         return dit.paragraph().lookupChange(dit.pos());
704 }
705
706
707 // this could be used elsewhere as well?
708 // FIXME: This does not work within mathed!
709 CursorStatus BufferView::cursorStatus(DocIterator const & dit) const
710 {
711         Point const p = getPos(dit, dit.boundary());
712         if (p.y_ < 0)
713                 return CUR_ABOVE;
714         if (p.y_ > workHeight())
715                 return CUR_BELOW;
716         return CUR_INSIDE;
717 }
718
719
720 void BufferView::saveBookmark(unsigned int idx)
721 {
722         // tenatively save bookmark, id and pos will be used to
723         // acturately locate a bookmark in a 'live' lyx session.
724         // pit and pos will be updated with bottom level pit/pos
725         // when lyx exits.
726         LyX::ref().session().bookmarks().save(
727                 FileName(buffer_.fileName()),
728                 d.cursor_.bottom().pit(),
729                 d.cursor_.bottom().pos(),
730                 d.cursor_.paragraph().id(),
731                 d.cursor_.pos(),
732                 idx
733         );
734         if (idx)
735                 // emit message signal.
736                 message(_("Save bookmark"));
737 }
738
739
740 bool BufferView::moveToPosition(pit_type bottom_pit, pos_type bottom_pos,
741         int top_id, pos_type top_pos)
742 {
743         bool success = false;
744         DocIterator doc_it;
745
746         d.cursor_.clearSelection();
747
748         // if a valid par_id is given, try it first
749         // This is the case for a 'live' bookmark when unique paragraph ID
750         // is used to track bookmarks.
751         if (top_id > 0) {
752                 ParIterator par = buffer_.getParFromID(top_id);
753                 if (par != buffer_.par_iterator_end()) {
754                         doc_it = makeDocIterator(par, min(par->size(), top_pos));
755                         // Some slices of the iterator may not be
756                         // reachable (e.g. closed collapsable inset)
757                         // so the dociterator may need to be
758                         // shortened. Otherwise, setCursor may crash
759                         // lyx when the cursor can not be set to these
760                         // insets.
761                         size_t const n = doc_it.depth();
762                         for (size_t i = 0; i < n; ++i)
763                                 if (doc_it[i].inset().editable() != Inset::HIGHLY_EDITABLE) {
764                                         doc_it.resize(i);
765                                         break;
766                                 }
767                         success = true;
768                 }
769         }
770
771         // if top_id == 0, or searching through top_id failed
772         // This is the case for a 'restored' bookmark when only bottom
773         // (document level) pit was saved. Because of this, bookmark
774         // restoration is inaccurate. If a bookmark was within an inset,
775         // it will be restored to the left of the outmost inset that contains
776         // the bookmark.
777         if (static_cast<size_t>(bottom_pit) < buffer_.paragraphs().size()) {
778                 doc_it = doc_iterator_begin(buffer_.inset());
779                 doc_it.pit() = bottom_pit;
780                 doc_it.pos() = min(bottom_pos, doc_it.paragraph().size());
781                 success = true;
782         }
783
784         if (success) {
785                 // Note: only bottom (document) level pit is set.
786                 setCursor(doc_it);
787                 // set the current font.
788                 d.cursor_.setCurrentFont();
789                 // center the screen on this new position.
790                 center();
791         }
792
793         return success;
794 }
795
796
797 void BufferView::translateAndInsert(char_type c, Text * t, Cursor & cur)
798 {
799         if (lyxrc.rtl_support) {
800                 if (d.cursor_.real_current_font.isRightToLeft()) {
801                         if (d.intl_.keymap == Intl::PRIMARY)
802                                 d.intl_.keyMapSec();
803                 } else {
804                         if (d.intl_.keymap == Intl::SECONDARY)
805                                 d.intl_.keyMapPrim();
806                 }
807         }
808
809         d.intl_.getTransManager().translateAndInsert(c, t, cur);
810 }
811
812
813 int BufferView::workWidth() const
814 {
815         return width_;
816 }
817
818
819 void BufferView::updateOffsetRef()
820 {
821         // No need to update d.offset_ref_ in this case.
822         if (!d.need_centering_)
823                 return;
824
825         // We are not properly started yet, delay until resizing is
826         // done.
827         if (height_ == 0)
828                 return;
829
830         CursorSlice & bot = d.cursor_.bottom();
831         TextMetrics & tm = d.text_metrics_[bot.text()];
832         ParagraphMetrics const & pm = tm.parMetrics(bot.pit());
833         int y = coordOffset(d.cursor_, d.cursor_.boundary()).y_;
834         d.offset_ref_ = y + pm.ascent() - height_ / 2;
835
836         d.need_centering_ = false;
837 }
838
839
840 void BufferView::center()
841 {
842         d.anchor_ref_ = d.cursor_.bottom().pit();
843         d.need_centering_ = true;
844 }
845
846
847 FuncStatus BufferView::getStatus(FuncRequest const & cmd)
848 {
849         FuncStatus flag;
850
851         Cursor & cur = d.cursor_;
852
853         switch (cmd.action) {
854
855         case LFUN_UNDO:
856                 flag.enabled(!buffer_.undostack().empty());
857                 break;
858         case LFUN_REDO:
859                 flag.enabled(!buffer_.redostack().empty());
860                 break;
861         case LFUN_FILE_INSERT:
862         case LFUN_FILE_INSERT_PLAINTEXT_PARA:
863         case LFUN_FILE_INSERT_PLAINTEXT:
864         case LFUN_BOOKMARK_SAVE:
865                 // FIXME: Actually, these LFUNS should be moved to Text
866                 flag.enabled(cur.inTexted());
867                 break;
868         case LFUN_FONT_STATE:
869         case LFUN_LABEL_INSERT:
870         case LFUN_PARAGRAPH_GOTO:
871         // FIXME handle non-trivially
872         case LFUN_OUTLINE_UP:
873         case LFUN_OUTLINE_DOWN:
874         case LFUN_OUTLINE_IN:
875         case LFUN_OUTLINE_OUT:
876         case LFUN_NOTE_NEXT:
877         case LFUN_REFERENCE_NEXT:
878         case LFUN_WORD_FIND:
879         case LFUN_WORD_REPLACE:
880         case LFUN_MARK_OFF:
881         case LFUN_MARK_ON:
882         case LFUN_MARK_TOGGLE:
883         case LFUN_SCREEN_RECENTER:
884         case LFUN_BIBTEX_DATABASE_ADD:
885         case LFUN_BIBTEX_DATABASE_DEL:
886         case LFUN_WORDS_COUNT:
887         case LFUN_NEXT_INSET_TOGGLE:
888                 flag.enabled(true);
889                 break;
890
891         case LFUN_LABEL_GOTO: {
892                 flag.enabled(!cmd.argument().empty()
893                     || getInsetByCode<InsetRef>(cur, Inset::REF_CODE));
894                 break;
895         }
896
897         case LFUN_CHANGES_TRACK:
898                 flag.enabled(true);
899                 flag.setOnOff(buffer_.params().trackChanges);
900                 break;
901
902         case LFUN_CHANGES_OUTPUT:
903                 flag.enabled(true);
904                 flag.setOnOff(buffer_.params().outputChanges);
905                 break;
906
907         case LFUN_CHANGES_MERGE:
908         case LFUN_CHANGE_NEXT:
909         case LFUN_ALL_CHANGES_ACCEPT:
910         case LFUN_ALL_CHANGES_REJECT:
911                 // TODO: context-sensitive enabling of LFUNs
912                 // In principle, these command should only be enabled if there
913                 // is a change in the document. However, without proper
914                 // optimizations, this will inevitably result in poor performance.
915                 flag.enabled(true);
916                 break;
917
918         case LFUN_BUFFER_TOGGLE_COMPRESSION: {
919                 flag.setOnOff(buffer_.params().compressed);
920                 break;
921         }
922
923         case LFUN_SCREEN_UP:
924         case LFUN_SCREEN_DOWN:
925                 flag.enabled(true);
926                 break;
927
928         // FIXME: LFUN_SCREEN_DOWN_SELECT should be removed from
929         // everywhere else before this can enabled:
930         case LFUN_SCREEN_UP_SELECT:
931         case LFUN_SCREEN_DOWN_SELECT:
932                 flag.enabled(false);
933                 break;
934
935         case LFUN_LAYOUT_TABULAR:
936                 flag.enabled(cur.innerInsetOfType(Inset::TABULAR_CODE));
937                 break;
938
939         case LFUN_LAYOUT:
940         case LFUN_LAYOUT_PARAGRAPH:
941                 flag.enabled(cur.inset().forceDefaultParagraphs(cur.idx()));
942                 break;
943
944         case LFUN_INSET_SETTINGS: {
945                 Inset::Code code = cur.inset().lyxCode();
946                 bool enable = false;
947                 switch (code) {
948                         case Inset::TABULAR_CODE:
949                                 enable = cmd.argument() == "tabular";
950                                 break;
951                         case Inset::ERT_CODE:
952                                 enable = cmd.argument() == "ert";
953                                 break;
954                         case Inset::FLOAT_CODE:
955                                 enable = cmd.argument() == "float";
956                                 break;
957                         case Inset::WRAP_CODE:
958                                 enable = cmd.argument() == "wrap";
959                                 break;
960                         case Inset::NOTE_CODE:
961                                 enable = cmd.argument() == "note";
962                                 break;
963                         case Inset::BRANCH_CODE:
964                                 enable = cmd.argument() == "branch";
965                                 break;
966                         case Inset::BOX_CODE:
967                                 enable = cmd.argument() == "box";
968                                 break;
969                         case Inset::LISTINGS_CODE:
970                                 enable = cmd.argument() == "listings";
971                                 break;
972                         default:
973                                 break;
974                 }
975                 flag.enabled(enable);
976                 break;
977         }
978
979         case LFUN_DIALOG_SHOW_NEW_INSET:
980                 flag.enabled(cur.inset().lyxCode() != Inset::ERT_CODE &&
981                         cur.inset().lyxCode() != Inset::LISTINGS_CODE);
982                 if (cur.inset().lyxCode() == Inset::CAPTION_CODE) {
983                         FuncStatus flag;
984                         if (cur.inset().getStatus(cur, cmd, flag))
985                                 return flag;
986                 }
987                 break;
988
989         default:
990                 flag.enabled(false);
991         }
992
993         return flag;
994 }
995
996
997 Update::flags BufferView::dispatch(FuncRequest const & cmd)
998 {
999         //lyxerr << BOOST_CURRENT_FUNCTION
1000         //       << [ cmd = " << cmd << "]" << endl;
1001
1002         // Make sure that the cached BufferView is correct.
1003         LYXERR(Debug::ACTION) << BOOST_CURRENT_FUNCTION
1004                 << " action[" << cmd.action << ']'
1005                 << " arg[" << to_utf8(cmd.argument()) << ']'
1006                 << " x[" << cmd.x << ']'
1007                 << " y[" << cmd.y << ']'
1008                 << " button[" << cmd.button() << ']'
1009                 << endl;
1010
1011         Cursor & cur = d.cursor_;
1012         // Default Update flags.
1013         Update::flags updateFlags = Update::Force | Update::FitCursor;
1014
1015         switch (cmd.action) {
1016
1017         case LFUN_UNDO:
1018                 cur.message(_("Undo"));
1019                 cur.clearSelection();
1020                 if (!textUndo(*this)) {
1021                         cur.message(_("No further undo information"));
1022                         updateFlags = Update::None;
1023                 }
1024                 break;
1025
1026         case LFUN_REDO:
1027                 cur.message(_("Redo"));
1028                 cur.clearSelection();
1029                 if (!textRedo(*this)) {
1030                         cur.message(_("No further redo information"));
1031                         updateFlags = Update::None;
1032                 }
1033                 break;
1034
1035         case LFUN_FILE_INSERT:
1036                 // FIXME UNICODE
1037                 menuInsertLyXFile(to_utf8(cmd.argument()));
1038                 break;
1039
1040         case LFUN_FILE_INSERT_PLAINTEXT_PARA:
1041                 // FIXME UNICODE
1042                 insertPlaintextFile(to_utf8(cmd.argument()), true);
1043                 break;
1044
1045         case LFUN_FILE_INSERT_PLAINTEXT:
1046                 // FIXME UNICODE
1047                 insertPlaintextFile(to_utf8(cmd.argument()), false);
1048                 break;
1049
1050         case LFUN_FONT_STATE:
1051                 cur.message(cur.currentState());
1052                 break;
1053
1054         case LFUN_BOOKMARK_SAVE:
1055                 saveBookmark(convert<unsigned int>(to_utf8(cmd.argument())));
1056                 break;
1057
1058         case LFUN_LABEL_GOTO: {
1059                 docstring label = cmd.argument();
1060                 if (label.empty()) {
1061                         InsetRef * inset =
1062                                 getInsetByCode<InsetRef>(d.cursor_,
1063                                                          Inset::REF_CODE);
1064                         if (inset) {
1065                                 label = inset->getParam("reference");
1066                                 // persistent=false: use temp_bookmark
1067                                 saveBookmark(0);
1068                         }
1069                 }
1070
1071                 if (!label.empty())
1072                         gotoLabel(label);
1073                 break;
1074         }
1075
1076         case LFUN_PARAGRAPH_GOTO: {
1077                 int const id = convert<int>(to_utf8(cmd.argument()));
1078                 int i = 0;
1079                 for (Buffer * b = &buffer_; i == 0 || b != &buffer_;
1080                         b = theBufferList().next(b)) {
1081
1082                         ParIterator par = b->getParFromID(id);
1083                         if (par == b->par_iterator_end()) {
1084                                 LYXERR(Debug::INFO)
1085                                         << "No matching paragraph found! ["
1086                                         << id << "]." << endl;
1087                         } else {
1088                                 LYXERR(Debug::INFO)
1089                                         << "Paragraph " << par->id()
1090                                         << " found in buffer `"
1091                                         << b->fileName() << "'." << endl;
1092
1093                                 if (b == &buffer_) {
1094                                         // Set the cursor
1095                                         setCursor(makeDocIterator(par, 0));
1096                                 } else {
1097                                         // Switch to other buffer view and resend cmd
1098                                         theLyXFunc().dispatch(FuncRequest(
1099                                                 LFUN_BUFFER_SWITCH, b->fileName()));
1100                                         theLyXFunc().dispatch(cmd);
1101                                         updateFlags = Update::None;
1102                                 }
1103                                 break;
1104                         }
1105                         ++i;
1106                 }
1107                 break;
1108         }
1109
1110         case LFUN_OUTLINE_UP:
1111                 outline(OutlineUp, d.cursor_);
1112                 d.cursor_.text()->setCursor(d.cursor_, d.cursor_.pit(), 0);
1113                 updateLabels(buffer_);
1114                 break;
1115         case LFUN_OUTLINE_DOWN:
1116                 outline(OutlineDown, d.cursor_);
1117                 d.cursor_.text()->setCursor(d.cursor_, d.cursor_.pit(), 0);
1118                 updateLabels(buffer_);
1119                 break;
1120         case LFUN_OUTLINE_IN:
1121                 outline(OutlineIn, d.cursor_);
1122                 updateLabels(buffer_);
1123                 break;
1124         case LFUN_OUTLINE_OUT:
1125                 outline(OutlineOut, d.cursor_);
1126                 updateLabels(buffer_);
1127                 break;
1128
1129         case LFUN_NOTE_NEXT:
1130                 gotoInset(this, Inset::NOTE_CODE, false);
1131                 break;
1132
1133         case LFUN_REFERENCE_NEXT: {
1134                 vector<Inset_code> tmp;
1135                 tmp.push_back(Inset::LABEL_CODE);
1136                 tmp.push_back(Inset::REF_CODE);
1137                 gotoInset(this, tmp, true);
1138                 break;
1139         }
1140
1141         case LFUN_CHANGES_TRACK:
1142                 buffer_.params().trackChanges = !buffer_.params().trackChanges;
1143                 break;
1144
1145         case LFUN_CHANGES_OUTPUT:
1146                 buffer_.params().outputChanges = !buffer_.params().outputChanges;
1147                 if (buffer_.params().outputChanges) {
1148                         bool dvipost    = LaTeXFeatures::isAvailable("dvipost");
1149                         bool xcolorsoul = LaTeXFeatures::isAvailable("soul") &&
1150                                           LaTeXFeatures::isAvailable("xcolor");
1151
1152                         if (!dvipost && !xcolorsoul) {
1153                                 Alert::warning(_("Changes not shown in LaTeX output"),
1154                                                _("Changes will not be highlighted in LaTeX output, "
1155                                                  "because neither dvipost nor xcolor/soul are installed.\n"
1156                                                  "Please install these packages or redefine "
1157                                                  "\\lyxadded and \\lyxdeleted in the LaTeX preamble."));
1158                         } else if (!xcolorsoul) {
1159                                 Alert::warning(_("Changes not shown in LaTeX output"),
1160                                                _("Changes will not be highlighted in LaTeX output "
1161                                                  "when using pdflatex, because xcolor and soul are not installed.\n"
1162                                                  "Please install both packages or redefine "
1163                                                  "\\lyxadded and \\lyxdeleted in the LaTeX preamble."));
1164                         }
1165                 }
1166                 break;
1167
1168         case LFUN_CHANGE_NEXT:
1169                 findNextChange(this);
1170                 break;
1171
1172         case LFUN_CHANGES_MERGE:
1173                 if (findNextChange(this))
1174                         showDialog("changes");
1175                 break;
1176
1177         case LFUN_ALL_CHANGES_ACCEPT:
1178                 // select complete document
1179                 d.cursor_.reset(buffer_.inset());
1180                 d.cursor_.selHandle(true);
1181                 buffer_.text().cursorBottom(d.cursor_);
1182                 // accept everything in a single step to support atomic undo
1183                 buffer_.text().acceptOrRejectChanges(d.cursor_, Text::ACCEPT);
1184                 break;
1185
1186         case LFUN_ALL_CHANGES_REJECT:
1187                 // select complete document
1188                 d.cursor_.reset(buffer_.inset());
1189                 d.cursor_.selHandle(true);
1190                 buffer_.text().cursorBottom(d.cursor_);
1191                 // reject everything in a single step to support atomic undo
1192                 // Note: reject does not work recursively; the user may have to repeat the operation
1193                 buffer_.text().acceptOrRejectChanges(d.cursor_, Text::REJECT);
1194                 break;
1195
1196         case LFUN_WORD_FIND:
1197                 find(this, cmd);
1198                 break;
1199
1200         case LFUN_WORD_REPLACE: {
1201                 bool has_deleted = false;
1202                 if (cur.selection()) {
1203                         DocIterator beg = cur.selectionBegin();
1204                         DocIterator end = cur.selectionEnd();
1205                         if (beg.pit() == end.pit()) {
1206                                 for (pos_type p = beg.pos() ; p < end.pos() ; ++p) {
1207                                         if (cur.paragraph().isDeleted(p))
1208                                                 has_deleted = true;
1209                                 }
1210                         }
1211                 }
1212                 replace(this, cmd, has_deleted);
1213                 break;
1214         }
1215
1216         case LFUN_MARK_OFF:
1217                 cur.clearSelection();
1218                 cur.resetAnchor();
1219                 cur.message(from_utf8(N_("Mark off")));
1220                 break;
1221
1222         case LFUN_MARK_ON:
1223                 cur.clearSelection();
1224                 cur.mark() = true;
1225                 cur.resetAnchor();
1226                 cur.message(from_utf8(N_("Mark on")));
1227                 break;
1228
1229         case LFUN_MARK_TOGGLE:
1230                 cur.clearSelection();
1231                 if (cur.mark()) {
1232                         cur.mark() = false;
1233                         cur.message(from_utf8(N_("Mark removed")));
1234                 } else {
1235                         cur.mark() = true;
1236                         cur.message(from_utf8(N_("Mark set")));
1237                 }
1238                 cur.resetAnchor();
1239                 break;
1240
1241         case LFUN_SCREEN_RECENTER:
1242                 center();
1243                 break;
1244
1245         case LFUN_BIBTEX_DATABASE_ADD: {
1246                 Cursor tmpcur = d.cursor_;
1247                 findInset(tmpcur, Inset::BIBTEX_CODE, false);
1248                 InsetBibtex * inset = getInsetByCode<InsetBibtex>(tmpcur,
1249                                                 Inset::BIBTEX_CODE);
1250                 if (inset) {
1251                         if (inset->addDatabase(to_utf8(cmd.argument())))
1252                                 buffer_.updateBibfilesCache();
1253                 }
1254                 break;
1255         }
1256
1257         case LFUN_BIBTEX_DATABASE_DEL: {
1258                 Cursor tmpcur = d.cursor_;
1259                 findInset(tmpcur, Inset::BIBTEX_CODE, false);
1260                 InsetBibtex * inset = getInsetByCode<InsetBibtex>(tmpcur,
1261                                                 Inset::BIBTEX_CODE);
1262                 if (inset) {
1263                         if (inset->delDatabase(to_utf8(cmd.argument())))
1264                                 buffer_.updateBibfilesCache();
1265                 }
1266                 break;
1267         }
1268
1269         case LFUN_WORDS_COUNT: {
1270                 DocIterator from, to;
1271                 if (cur.selection()) {
1272                         from = cur.selectionBegin();
1273                         to = cur.selectionEnd();
1274                 } else {
1275                         from = doc_iterator_begin(buffer_.inset());
1276                         to = doc_iterator_end(buffer_.inset());
1277                 }
1278                 int const count = countWords(from, to);
1279                 docstring message;
1280                 if (count != 1) {
1281                         if (cur.selection())
1282                                 message = bformat(_("%1$d words in selection."),
1283                                           count);
1284                                 else
1285                                         message = bformat(_("%1$d words in document."),
1286                                                           count);
1287                 }
1288                 else {
1289                         if (cur.selection())
1290                                 message = _("One word in selection.");
1291                         else
1292                                 message = _("One word in document.");
1293                 }
1294
1295                 Alert::information(_("Count words"), message);
1296         }
1297                 break;
1298
1299         case LFUN_BUFFER_TOGGLE_COMPRESSION:
1300                 // turn compression on/off
1301                 buffer_.params().compressed = !buffer_.params().compressed;
1302                 break;
1303
1304         case LFUN_NEXT_INSET_TOGGLE: {
1305                 // this is the real function we want to invoke
1306                 FuncRequest tmpcmd = FuncRequest(LFUN_INSET_TOGGLE, cmd.origin);
1307                 // if there is an inset at cursor, see whether it
1308                 // wants to toggle.
1309                 Inset * inset = cur.nextInset();
1310                 if (inset) {
1311                         if (inset->isActive()) {
1312                                 Cursor tmpcur = cur;
1313                                 tmpcur.pushLeft(*inset);
1314                                 inset->dispatch(tmpcur, tmpcmd);
1315                                 if (tmpcur.result().dispatched()) {
1316                                         cur.dispatched();
1317                                 }
1318                         } else if (inset->editable() == Inset::IS_EDITABLE) {
1319                                 inset->edit(cur, true);
1320                         }
1321                 }
1322                 // if it did not work, try the underlying inset.
1323                 if (!cur.result().dispatched())
1324                         cur.dispatch(tmpcmd);
1325
1326                 if (cur.result().dispatched())
1327                         cur.clearSelection();
1328
1329                 break;
1330         }
1331
1332         case LFUN_SCREEN_UP:
1333         case LFUN_SCREEN_DOWN: {
1334                 Point p = getPos(cur, cur.boundary());
1335                 if (p.y_ < 0 || p.y_ > height_) {
1336                         // The cursor is off-screen so recenter before proceeding.
1337                         center();
1338                         updateMetrics(false);
1339                         //FIXME: updateMetrics() does not update paragraph position
1340                         // This is done at draw() time. So we need a redraw!
1341                         buffer_.changed();
1342                         p = getPos(cur, cur.boundary());
1343                 }
1344                 scroll(cmd.action == LFUN_SCREEN_UP? - height_ : height_);
1345                 cur.reset(buffer_.inset());
1346                 d.text_metrics_[&buffer_.text()].editXY(cur, p.x_, p.y_);
1347                 //FIXME: what to do with cur.x_target()?
1348                 finishUndo();
1349                 // The metrics are already up to date. see scroll()
1350                 updateFlags = Update::None;
1351                 break;
1352         }
1353
1354         case LFUN_SCREEN_UP_SELECT:
1355         case LFUN_SCREEN_DOWN_SELECT: {
1356                 cur.selHandle(true);
1357                 size_t initial_depth = cur.depth();
1358                 Point const p = getPos(cur, cur.boundary());
1359                 scroll(cmd.action == LFUN_SCREEN_UP_SELECT? - height_ : height_);
1360                 // FIXME: We need to verify if the cursor stayed within an inset...
1361                 //cur.reset(buffer_.inset());
1362                 d.text_metrics_[&buffer_.text()].editXY(cur, p.x_, p.y_);
1363                 finishUndo();
1364                 while (cur.depth() > initial_depth) {
1365                         cur.forwardInset();
1366                 }
1367                 // FIXME: we need to do a redraw again because of the selection
1368                 buffer_.changed();
1369                 updateFlags = Update::Force | Update::FitCursor;
1370                 break;
1371         }
1372
1373         default:
1374                 updateFlags = Update::None;
1375         }
1376
1377         return updateFlags;
1378 }
1379
1380
1381 docstring const BufferView::requestSelection()
1382 {
1383         Cursor & cur = d.cursor_;
1384
1385         if (!cur.selection()) {
1386                 d.xsel_cache_.set = false;
1387                 return docstring();
1388         }
1389
1390         if (!d.xsel_cache_.set ||
1391             cur.top() != d.xsel_cache_.cursor ||
1392             cur.anchor_.top() != d.xsel_cache_.anchor)
1393         {
1394                 d.xsel_cache_.cursor = cur.top();
1395                 d.xsel_cache_.anchor = cur.anchor_.top();
1396                 d.xsel_cache_.set = cur.selection();
1397                 return cur.selectionAsString(false);
1398         }
1399         return docstring();
1400 }
1401
1402
1403 void BufferView::clearSelection()
1404 {
1405         d.cursor_.clearSelection();
1406         // Clear the selection buffer. Otherwise a subsequent
1407         // middle-mouse-button paste would use the selection buffer,
1408         // not the more current external selection.
1409         cap::clearSelection();
1410         d.xsel_cache_.set = false;
1411         // The buffer did not really change, but this causes the
1412         // redraw we need because we cleared the selection above.
1413         buffer_.changed();
1414 }
1415
1416
1417 void BufferView::resize(int width, int height)
1418 {
1419         // Update from work area
1420         width_ = width;
1421         height_ = height;
1422
1423         updateMetrics(false);
1424 }
1425
1426
1427 Inset const * BufferView::getCoveringInset(Text const & text, int x, int y)
1428 {
1429         TextMetrics & tm = d.text_metrics_[&text];
1430         Inset * inset = tm.checkInsetHit(x, y);
1431         if (!inset)
1432                 return 0;
1433
1434         if (!inset->descendable())
1435                 // No need to go further down if the inset is not
1436                 // descendable.
1437                 return inset;
1438
1439         size_t cell_number = inset->nargs();
1440         // Check all the inner cell.
1441         for (size_t i = 0; i != cell_number; ++i) {
1442                 Text const * inner_text = inset->getText(i);
1443                 if (inner_text) {
1444                         // Try deeper.
1445                         Inset const * inset_deeper =
1446                                 getCoveringInset(*inner_text, x, y);
1447                         if (inset_deeper)
1448                                 return inset_deeper;
1449                 }
1450         }
1451
1452         return inset;
1453 }
1454
1455
1456 void BufferView::mouseEventDispatch(FuncRequest const & cmd0)
1457 {
1458         //lyxerr << BOOST_CURRENT_FUNCTION << "[ cmd0 " << cmd0 << "]" << endl;
1459
1460         // This is only called for mouse related events including
1461         // LFUN_FILE_OPEN generated by drag-and-drop.
1462         FuncRequest cmd = cmd0;
1463
1464         Cursor cur(*this);
1465         cur.push(buffer_.inset());
1466         cur.selection() = d.cursor_.selection();
1467
1468         // Either the inset under the cursor or the
1469         // surrounding Text will handle this event.
1470
1471         // make sure we stay within the screen...
1472         cmd.y = min(max(cmd.y, -1), height_);
1473
1474         if (cmd.action == LFUN_MOUSE_MOTION && cmd.button() == mouse_button::none) {
1475
1476                 // Get inset under mouse, if there is one.
1477                 Inset const * covering_inset =
1478                         getCoveringInset(buffer_.text(), cmd.x, cmd.y);
1479                 if (covering_inset == d.last_inset_)
1480                         // Same inset, no need to do anything...
1481                         return;
1482
1483                 bool need_redraw = false;
1484                 // const_cast because of setMouseHover().
1485                 Inset * inset = const_cast<Inset *>(covering_inset);
1486                 if (d.last_inset_)
1487                         // Remove the hint on the last hovered inset (if any).
1488                         need_redraw |= d.last_inset_->setMouseHover(false);
1489                 if (inset)
1490                         // Highlighted the newly hovered inset (if any).
1491                         need_redraw |= inset->setMouseHover(true);
1492                 d.last_inset_ = inset;
1493                 if (!need_redraw)
1494                         return;
1495
1496                 // if last metrics update was in singlepar mode, WorkArea::redraw() will
1497                 // not expose the button for redraw. We adjust here the metrics dimension
1498                 // to enable a full redraw in any case as this is not costly.
1499                 TextMetrics & tm = d.text_metrics_[&buffer_.text()];
1500                 std::pair<pit_type, ParagraphMetrics const *> firstpm = tm.first();
1501                 std::pair<pit_type, ParagraphMetrics const *> lastpm = tm.last();
1502                 int y1 = firstpm.second->position() - firstpm.second->ascent();
1503                 int y2 = lastpm.second->position() + lastpm.second->descent();
1504                 d.metrics_info_ = ViewMetricsInfo(firstpm.first, lastpm.first, y1, y2,
1505                         FullScreenUpdate, buffer_.text().paragraphs().size());
1506                 // Reinitialize anchor to first pit.
1507                 d.anchor_ref_ = firstpm.first;
1508                 d.offset_ref_ = -y1;
1509                 LYXERR(Debug::PAINTING)
1510                         << "Mouse hover detected at: (" << cmd.x << ", " << cmd.y << ")"
1511                         << "\nTriggering redraw: y1: " << y1 << " y2: " << y2
1512                         << " pit1: " << firstpm.first << " pit2: " << lastpm.first << endl;
1513
1514                 // This event (moving without mouse click) is not passed further.
1515                 // This should be changed if it is further utilized.
1516                 buffer_.changed();
1517                 return;
1518         }
1519
1520         // Build temporary cursor.
1521         Inset * inset = d.text_metrics_[&buffer_.text()].editXY(cur, cmd.x, cmd.y);
1522
1523         // Put anchor at the same position.
1524         cur.resetAnchor();
1525
1526         // Try to dispatch to an non-editable inset near this position
1527         // via the temp cursor. If the inset wishes to change the real
1528         // cursor it has to do so explicitly by using
1529         //  cur.bv().cursor() = cur;  (or similar)
1530         if (inset)
1531                 inset->dispatch(cur, cmd);
1532
1533         // Now dispatch to the temporary cursor. If the real cursor should
1534         // be modified, the inset's dispatch has to do so explicitly.
1535         if (!cur.result().dispatched())
1536                 cur.dispatch(cmd);
1537
1538         //Do we have a selection?
1539         theSelection().haveSelection(cursor().selection());
1540
1541         // If the command has been dispatched,
1542         if (cur.result().dispatched()
1543                 // an update is asked,
1544                 && cur.result().update())
1545                 processUpdateFlags(cur.result().update());
1546 }
1547
1548
1549 void BufferView::scroll(int y)
1550 {
1551         if (y > 0)
1552                 scrollDown(y);
1553         else if (y < 0)
1554                 scrollUp(-y);
1555 }
1556
1557
1558 void BufferView::scrollDown(int offset)
1559 {
1560         Text * text = &buffer_.text();
1561         TextMetrics & tm = d.text_metrics_[text];
1562         int ymax = height_ + offset;
1563         while (true) {
1564                 std::pair<pit_type, ParagraphMetrics const *> last = tm.last();
1565                 int bottom_pos = last.second->position() + last.second->descent();
1566                 if (last.first + 1 == int(text->paragraphs().size())) {
1567                         if (bottom_pos <= height_)
1568                                 return;
1569                         offset = min(offset, bottom_pos - height_);
1570                         break;
1571                 }
1572                 if (bottom_pos > ymax)
1573                         break;
1574                 tm.newParMetricsDown();
1575         }
1576         d.offset_ref_ += offset;
1577         updateMetrics(false);
1578         buffer_.changed();
1579 }
1580
1581
1582 void BufferView::scrollUp(int offset)
1583 {
1584         Text * text = &buffer_.text();
1585         TextMetrics & tm = d.text_metrics_[text];
1586         int ymin = - offset;
1587         while (true) {
1588                 std::pair<pit_type, ParagraphMetrics const *> first = tm.first();
1589                 int top_pos = first.second->position() - first.second->ascent();
1590                 if (first.first == 0) {
1591                         if (top_pos >= 0)
1592                                 return;
1593                         offset = min(offset, - top_pos);
1594                         break;
1595                 }
1596                 if (top_pos < ymin)
1597                         break;
1598                 tm.newParMetricsUp();
1599         }
1600         d.offset_ref_ -= offset;
1601         updateMetrics(false);
1602         buffer_.changed();
1603 }
1604
1605
1606 void BufferView::setCursorFromRow(int row)
1607 {
1608         int tmpid = -1;
1609         int tmppos = -1;
1610
1611         buffer_.texrow().getIdFromRow(row, tmpid, tmppos);
1612
1613         d.cursor_.reset(buffer_.inset());
1614         if (tmpid == -1)
1615                 buffer_.text().setCursor(d.cursor_, 0, 0);
1616         else
1617                 buffer_.text().setCursor(d.cursor_, buffer_.getParFromID(tmpid).pit(), tmppos);
1618 }
1619
1620
1621 void BufferView::gotoLabel(docstring const & label)
1622 {
1623         for (InsetIterator it = inset_iterator_begin(buffer_.inset()); it; ++it) {
1624                 vector<docstring> labels;
1625                 it->getLabelList(buffer_, labels);
1626                 if (std::find(labels.begin(), labels.end(), label) != labels.end()) {
1627                         setCursor(it);
1628                         processUpdateFlags(Update::FitCursor);
1629                         return;
1630                 }
1631         }
1632 }
1633
1634
1635 TextMetrics const & BufferView::textMetrics(Text const * t) const
1636 {
1637         return const_cast<BufferView *>(this)->textMetrics(t);
1638 }
1639
1640
1641 TextMetrics & BufferView::textMetrics(Text const * t)
1642 {
1643         TextMetricsCache::iterator tmc_it  = d.text_metrics_.find(t);
1644         if (tmc_it == d.text_metrics_.end()) {
1645                 tmc_it = d.text_metrics_.insert(
1646                         make_pair(t, TextMetrics(this, const_cast<Text *>(t)))).first;
1647         }
1648         return tmc_it->second;
1649 }
1650
1651
1652 ParagraphMetrics const & BufferView::parMetrics(Text const * t,
1653                 pit_type pit) const
1654 {
1655         return textMetrics(t).parMetrics(pit);
1656 }
1657
1658
1659 int BufferView::workHeight() const
1660 {
1661         return height_;
1662 }
1663
1664
1665 void BufferView::setCursor(DocIterator const & dit)
1666 {
1667         size_t const n = dit.depth();
1668         for (size_t i = 0; i < n; ++i)
1669                 dit[i].inset().edit(d.cursor_, true);
1670
1671         d.cursor_.setCursor(dit);
1672         d.cursor_.selection() = false;
1673 }
1674
1675
1676 bool BufferView::checkDepm(Cursor & cur, Cursor & old)
1677 {
1678         // Would be wrong to delete anything if we have a selection.
1679         if (cur.selection())
1680                 return false;
1681
1682         bool need_anchor_change = false;
1683         bool changed = d.cursor_.text()->deleteEmptyParagraphMechanism(cur, old,
1684                 need_anchor_change);
1685
1686         if (need_anchor_change)
1687                 cur.resetAnchor();
1688
1689         if (!changed)
1690                 return false;
1691
1692         updateLabels(buffer_);
1693
1694         updateMetrics(false);
1695         buffer_.changed();
1696         return true;
1697 }
1698
1699
1700 bool BufferView::mouseSetCursor(Cursor & cur)
1701 {
1702         BOOST_ASSERT(&cur.bv() == this);
1703
1704         // this event will clear selection so we save selection for
1705         // persistent selection
1706         cap::saveSelection(cursor());
1707
1708         // Has the cursor just left the inset?
1709         bool badcursor = false;
1710         bool leftinset = (&d.cursor_.inset() != &cur.inset());
1711         if (leftinset)
1712                 badcursor = notifyCursorLeaves(d.cursor_, cur);
1713
1714         // do the dEPM magic if needed
1715         // FIXME: (1) move this to InsetText::notifyCursorLeaves?
1716         // FIXME: (2) if we had a working InsetText::notifyCursorLeaves,
1717         // the leftinset bool would not be necessary (badcursor instead).
1718         bool update = leftinset;
1719         if (!badcursor && d.cursor_.inTexted())
1720                 update |= checkDepm(cur, d.cursor_);
1721
1722         // if the cursor was in an empty script inset and the new
1723         // position is in the nucleus of the inset, notifyCursorLeaves
1724         // will kill the script inset itself. So we check all the
1725         // elements of the cursor to make sure that they are correct.
1726         // For an example, see bug 2933:
1727         // http://bugzilla.lyx.org/show_bug.cgi?id=2933
1728         // The code below could maybe be moved to a DocIterator method.
1729         //lyxerr << "cur before " << cur <<std::endl;
1730         DocIterator dit(cur.inset());
1731         dit.push_back(cur.bottom());
1732         size_t i = 1;
1733         while (i < cur.depth() && dit.nextInset() == &cur[i].inset()) {
1734                 dit.push_back(cur[i]);
1735                 ++i;
1736         }
1737         //lyxerr << "5 cur after" << dit <<std::endl;
1738
1739         d.cursor_.setCursor(dit);
1740         d.cursor_.boundary(cur.boundary());
1741         d.cursor_.clearSelection();
1742         finishUndo();
1743         return update;
1744 }
1745
1746
1747 void BufferView::putSelectionAt(DocIterator const & cur,
1748                                 int length, bool backwards)
1749 {
1750         d.cursor_.clearSelection();
1751
1752         setCursor(cur);
1753
1754         if (length) {
1755                 if (backwards) {
1756                         d.cursor_.pos() += length;
1757                         d.cursor_.setSelection(d.cursor_, -length);
1758                 } else
1759                         d.cursor_.setSelection(d.cursor_, length);
1760         }
1761 }
1762
1763
1764 Cursor & BufferView::cursor()
1765 {
1766         return d.cursor_;
1767 }
1768
1769
1770 Cursor const & BufferView::cursor() const
1771 {
1772         return d.cursor_;
1773 }
1774
1775
1776 pit_type BufferView::anchor_ref() const
1777 {
1778         return d.anchor_ref_;
1779 }
1780
1781
1782 ViewMetricsInfo const & BufferView::viewMetricsInfo()
1783 {
1784         return d.metrics_info_;
1785 }
1786
1787
1788 bool BufferView::singleParUpdate()
1789 {
1790         Text & buftext = buffer_.text();
1791         pit_type const bottom_pit = d.cursor_.bottom().pit();
1792         TextMetrics & tm = textMetrics(&buftext);
1793         int old_height = tm.parMetrics(bottom_pit).height();
1794
1795         // In Single Paragraph mode, rebreak only
1796         // the (main text, not inset!) paragraph containing the cursor.
1797         // (if this paragraph contains insets etc., rebreaking will
1798         // recursively descend)
1799         tm.redoParagraph(bottom_pit);
1800         ParagraphMetrics const & pm = tm.parMetrics(bottom_pit);                
1801         if (pm.height() != old_height)
1802                 // Paragraph height has changed so we cannot proceed to
1803                 // the singlePar optimisation.
1804                 return false;
1805
1806         int y1 = pm.position() - pm.ascent();
1807         int y2 = pm.position() + pm.descent();
1808         d.metrics_info_ = ViewMetricsInfo(bottom_pit, bottom_pit, y1, y2,
1809                 SingleParUpdate, buftext.paragraphs().size());
1810         LYXERR(Debug::PAINTING)
1811                 << BOOST_CURRENT_FUNCTION
1812                 << "\ny1: " << y1
1813                 << " y2: " << y2
1814                 << " pit: " << bottom_pit
1815                 << " singlepar: 1"
1816                 << endl;
1817         return true;
1818 }
1819
1820
1821 void BufferView::updateMetrics(bool singlepar)
1822 {
1823         if (singlepar && singleParUpdate())
1824                 // No need to update the full screen metrics.
1825                 return;
1826
1827         Text & buftext = buffer_.text();
1828         pit_type const npit = int(buftext.paragraphs().size());
1829
1830         if (d.anchor_ref_ > int(npit - 1)) {
1831                 d.anchor_ref_ = int(npit - 1);
1832                 d.offset_ref_ = 0;
1833         }
1834
1835         // Clear out the position cache in case of full screen redraw,
1836         d.coord_cache_.clear();
1837
1838         // Clear out paragraph metrics to avoid having invalid metrics
1839         // in the cache from paragraphs not relayouted below
1840         // The complete text metrics will be redone.
1841         d.text_metrics_.clear();
1842
1843         TextMetrics & tm = textMetrics(&buftext);
1844
1845         pit_type const pit = d.anchor_ref_;
1846         int pit1 = pit;
1847         int pit2 = pit;
1848
1849         // Rebreak anchor paragraph.
1850         tm.redoParagraph(pit);
1851
1852         // Take care of anchor offset if case a recentering is needed.
1853         updateOffsetRef();
1854
1855         int y0 = tm.parMetrics(pit).ascent() - d.offset_ref_;
1856
1857         // Redo paragraphs above anchor if necessary.
1858         int y1 = y0;
1859         while (y1 > 0 && pit1 > 0) {
1860                 y1 -= tm.parMetrics(pit1).ascent();
1861                 --pit1;
1862                 tm.redoParagraph(pit1);
1863                 y1 -= tm.parMetrics(pit1).descent();
1864         }
1865
1866         // Take care of ascent of first line
1867         y1 -= tm.parMetrics(pit1).ascent();
1868
1869         // Normalize anchor for next time
1870         d.anchor_ref_ = pit1;
1871         d.offset_ref_ = -y1;
1872
1873         // Grey at the beginning is ugly
1874         if (pit1 == 0 && y1 > 0) {
1875                 y0 -= y1;
1876                 y1 = 0;
1877                 d.anchor_ref_ = 0;
1878         }
1879
1880         // Redo paragraphs below the anchor if necessary.
1881         int y2 = y0;
1882         while (y2 < height_ && pit2 < int(npit) - 1) {
1883                 y2 += tm.parMetrics(pit2).descent();
1884                 ++pit2;
1885                 tm.redoParagraph(pit2);
1886                 y2 += tm.parMetrics(pit2).ascent();
1887         }
1888
1889         // Take care of descent of last line
1890         y2 += tm.parMetrics(pit2).descent();
1891
1892         LYXERR(Debug::PAINTING)
1893                 << BOOST_CURRENT_FUNCTION
1894                 << "\n y1: " << y1
1895                 << " y2: " << y2
1896                 << " pit1: " << pit1
1897                 << " pit2: " << pit2
1898                 << " npit: " << npit
1899                 << " singlepar: 0"
1900                 << endl;
1901
1902         d.metrics_info_ = ViewMetricsInfo(pit1, pit2, y1, y2,
1903                 FullScreenUpdate, npit);
1904
1905         if (lyxerr.debugging(Debug::WORKAREA)) {
1906                 LYXERR(Debug::WORKAREA) << "BufferView::updateMetrics" << endl;
1907                 d.coord_cache_.dump();
1908         }
1909 }
1910
1911
1912 void BufferView::menuInsertLyXFile(string const & filenm)
1913 {
1914         BOOST_ASSERT(d.cursor_.inTexted());
1915         string filename = filenm;
1916
1917         if (filename.empty()) {
1918                 // Launch a file browser
1919                 // FIXME UNICODE
1920                 string initpath = lyxrc.document_path;
1921                 string const trypath = buffer_.filePath();
1922                 // If directory is writeable, use this as default.
1923                 if (isDirWriteable(FileName(trypath)))
1924                         initpath = trypath;
1925
1926                 // FIXME UNICODE
1927                 FileDialog fileDlg(_("Select LyX document to insert"),
1928                         LFUN_FILE_INSERT,
1929                         make_pair(_("Documents|#o#O"), from_utf8(lyxrc.document_path)),
1930                         make_pair(_("Examples|#E#e"),
1931                                     from_utf8(addPath(package().system_support().absFilename(),
1932                                     "examples"))));
1933
1934                 FileDialog::Result result =
1935                         fileDlg.open(from_utf8(initpath),
1936                                      FileFilterList(_("LyX Documents (*.lyx)")),
1937                                      docstring());
1938
1939                 if (result.first == FileDialog::Later)
1940                         return;
1941
1942                 // FIXME UNICODE
1943                 filename = to_utf8(result.second);
1944
1945                 // check selected filename
1946                 if (filename.empty()) {
1947                         // emit message signal.
1948                         message(_("Canceled."));
1949                         return;
1950                 }
1951         }
1952
1953         // Get absolute path of file and add ".lyx"
1954         // to the filename if necessary
1955         filename = fileSearch(string(), filename, "lyx").absFilename();
1956
1957         docstring const disp_fn = makeDisplayPath(filename);
1958         // emit message signal.
1959         message(bformat(_("Inserting document %1$s..."), disp_fn));
1960
1961         docstring res;
1962         Buffer buf("", false);
1963         if (lyx::loadLyXFile(&buf, FileName(filename))) {
1964                 ErrorList & el = buffer_.errorList("Parse");
1965                 // Copy the inserted document error list into the current buffer one.
1966                 el = buf.errorList("Parse");
1967                 recordUndo(d.cursor_);
1968                 cap::pasteParagraphList(d.cursor_, buf.paragraphs(),
1969                                              buf.params().getTextClassPtr(), el);
1970                 res = _("Document %1$s inserted.");
1971         } else
1972                 res = _("Could not insert document %1$s");
1973
1974         // emit message signal.
1975         message(bformat(res, disp_fn));
1976         buffer_.errors("Parse");
1977         updateMetrics(false);
1978 }
1979
1980
1981 Point BufferView::coordOffset(DocIterator const & dit, bool boundary) const
1982 {
1983         int x = 0;
1984         int y = 0;
1985         int lastw = 0;
1986
1987         // Addup contribution of nested insets, from inside to outside,
1988         // keeping the outer paragraph for a special handling below
1989         for (size_t i = dit.depth() - 1; i >= 1; --i) {
1990                 CursorSlice const & sl = dit[i];
1991                 int xx = 0;
1992                 int yy = 0;
1993                 
1994                 // get relative position inside sl.inset()
1995                 sl.inset().cursorPos(*this, sl, boundary && (i + 1 == dit.depth()), xx, yy);
1996                 
1997                 // Make relative position inside of the edited inset relative to sl.inset()
1998                 x += xx;
1999                 y += yy;
2000                 
2001                 // In case of an RTL inset, the edited inset will be positioned to the left
2002                 // of xx:yy
2003                 if (sl.text()) {
2004                         bool boundary_i = boundary && i + 1 == dit.depth();
2005                         bool rtl = textMetrics(sl.text()).isRTL(sl, boundary_i);
2006                         if (rtl)
2007                                 x -= lastw;
2008                 }
2009
2010                 // remember width for the case that sl.inset() is positioned in an RTL inset
2011                 if (i && dit[i - 1].text()) {
2012                         // If this Inset is inside a Text Inset, retrieve the Dimension
2013                         // from the containing text instead of using Inset::dimension() which
2014                         // might not be implemented.
2015                         // FIXME (Abdel 23/09/2007): this is a bit messy because of the
2016                         // elimination of Inset::dim_ cache. This coordOffset() method needs
2017                         // to be rewritten in light of the new design.
2018                         Dimension const & dim = parMetrics(dit[i - 1].text(),
2019                                 dit[i - 1].pit()).insetDimension(&sl.inset());
2020                         lastw = dim.wid;
2021                 } else {
2022                         Dimension const dim = sl.inset().dimension(*this);
2023                         lastw = dim.wid;
2024                 }
2025                 
2026                 //lyxerr << "Cursor::getPos, i: "
2027                 // << i << " x: " << xx << " y: " << y << endl;
2028         }
2029
2030         // Add contribution of initial rows of outermost paragraph
2031         CursorSlice const & sl = dit[0];
2032         TextMetrics const & tm = textMetrics(sl.text());
2033         ParagraphMetrics const & pm = tm.parMetrics(sl.pit());
2034         BOOST_ASSERT(!pm.rows().empty());
2035         y -= pm.rows()[0].ascent();
2036 #if 1
2037         // FIXME: document this mess
2038         size_t rend;
2039         if (sl.pos() > 0 && dit.depth() == 1) {
2040                 int pos = sl.pos();
2041                 if (pos && boundary)
2042                         --pos;
2043 //              lyxerr << "coordOffset: boundary:" << boundary << " depth:" << dit.depth() << " pos:" << pos << " sl.pos:" << sl.pos() << std::endl;
2044                 rend = pm.pos2row(pos);
2045         } else
2046                 rend = pm.pos2row(sl.pos());
2047 #else
2048         size_t rend = pm.pos2row(sl.pos());
2049 #endif
2050         for (size_t rit = 0; rit != rend; ++rit)
2051                 y += pm.rows()[rit].height();
2052         y += pm.rows()[rend].ascent();
2053         
2054         TextMetrics const & bottom_tm = textMetrics(dit.bottom().text());
2055         
2056         // Make relative position from the nested inset now bufferview absolute.
2057         int xx = bottom_tm.cursorX(dit.bottom(), boundary && dit.depth() == 1);
2058         x += xx;
2059         
2060         // In the RTL case place the nested inset at the left of the cursor in 
2061         // the outer paragraph
2062         bool boundary_1 = boundary && 1 == dit.depth();
2063         bool rtl = bottom_tm.isRTL(dit.bottom(), boundary_1);
2064         if (rtl)
2065                 x -= lastw;
2066         
2067         return Point(x, y);
2068 }
2069
2070
2071 Point BufferView::getPos(DocIterator const & dit, bool boundary) const
2072 {
2073         CursorSlice const & bot = dit.bottom();
2074         TextMetrics const & tm = textMetrics(bot.text());
2075         if (!tm.has(bot.pit()))
2076                 return Point(-1, -1);
2077
2078         Point p = coordOffset(dit, boundary); // offset from outer paragraph
2079         p.y_ += tm.parMetrics(bot.pit()).position();
2080         return p;
2081 }
2082
2083
2084 void BufferView::draw(frontend::Painter & pain)
2085 {
2086         PainterInfo pi(this, pain);
2087         // Should the whole screen, including insets, be refreshed?
2088         // FIXME: We should also distinguish DecorationUpdate to avoid text
2089         // drawing if possible. This is not possible to do easily right now
2090         // because of the single backing pixmap.
2091         pi.full_repaint = d.metrics_info_.update_strategy != SingleParUpdate;
2092
2093         if (pi.full_repaint)
2094                 // Clear background (if not delegated to rows)
2095                 pain.fillRectangle(0, d.metrics_info_.y1, width_,
2096                         d.metrics_info_.y2 - d.metrics_info_.y1,
2097                         buffer_.inset().backgroundColor());
2098
2099         LYXERR(Debug::PAINTING) << "\t\t*** START DRAWING ***" << endl;
2100         Text & text = buffer_.text();
2101         TextMetrics const & tm = d.text_metrics_[&text];
2102         int y = d.metrics_info_.y1 + tm.parMetrics(d.metrics_info_.p1).ascent();
2103         if (!pi.full_repaint)
2104                 tm.drawParagraph(pi, d.metrics_info_.p1, 0, y);
2105         else
2106                 tm.draw(pi, 0, y);
2107         LYXERR(Debug::PAINTING) << "\n\t\t*** END DRAWING  ***" << endl;
2108
2109         // and grey out above (should not happen later)
2110 //      lyxerr << "par ascent: " << text.getPar(d.metrics_info_.p1).ascent() << endl;
2111         if (d.metrics_info_.y1 > 0
2112                 && d.metrics_info_.update_strategy == FullScreenUpdate)
2113                 pain.fillRectangle(0, 0, width_, d.metrics_info_.y1, Color::bottomarea);
2114
2115         // and possibly grey out below
2116 //      lyxerr << "par descent: " << text.getPar(d.metrics_info_.p1).ascent() << endl;
2117         if (d.metrics_info_.y2 < height_
2118                 && d.metrics_info_.update_strategy == FullScreenUpdate)
2119                 pain.fillRectangle(0, d.metrics_info_.y2, width_,
2120                         height_ - d.metrics_info_.y2, Color::bottomarea);
2121 }
2122
2123
2124 void BufferView::message(docstring const & msg)
2125 {
2126         if (d.gui_)
2127                 d.gui_->message(msg);
2128 }
2129
2130
2131 void BufferView::showDialog(std::string const & name)
2132 {
2133         if (d.gui_)
2134                 d.gui_->showDialog(name);
2135 }
2136
2137
2138 void BufferView::showDialogWithData(std::string const & name,
2139         std::string const & data)
2140 {
2141         if (d.gui_)
2142                 d.gui_->showDialogWithData(name, data);
2143 }
2144
2145
2146 void BufferView::showInsetDialog(std::string const & name,
2147         std::string const & data, Inset * inset)
2148 {
2149         if (d.gui_)
2150                 d.gui_->showInsetDialog(name, data, inset);
2151 }
2152
2153
2154 void BufferView::updateDialog(std::string const & name, std::string const & data)
2155 {
2156         if (d.gui_)
2157                 d.gui_->updateDialog(name, data);
2158 }
2159
2160
2161 void BufferView::setGuiDelegate(frontend::GuiBufferViewDelegate * gui)
2162 {
2163         d.gui_ = gui;
2164 }
2165
2166
2167 // FIXME: Move this out of BufferView again
2168 docstring BufferView::contentsOfPlaintextFile(string const & f,
2169         bool asParagraph)
2170 {
2171         FileName fname(f);
2172
2173         if (fname.empty()) {
2174                 FileDialog fileDlg(_("Select file to insert"),
2175                                    ( asParagraph
2176                                      ? LFUN_FILE_INSERT_PLAINTEXT_PARA 
2177                                      : LFUN_FILE_INSERT_PLAINTEXT) );
2178
2179                 FileDialog::Result result =
2180                         fileDlg.open(from_utf8(buffer().filePath()),
2181                                      FileFilterList(), docstring());
2182
2183                 if (result.first == FileDialog::Later)
2184                         return docstring();
2185
2186                 fname = makeAbsPath(to_utf8(result.second));
2187
2188                 if (fname.empty())
2189                         return docstring();
2190         }
2191
2192         if (!fs::is_readable(fname.toFilesystemEncoding())) {
2193                 docstring const error = from_ascii(strerror(errno));
2194                 docstring const file = makeDisplayPath(fname.absFilename(), 50);
2195                 docstring const text =
2196                   bformat(_("Could not read the specified document\n"
2197                             "%1$s\ndue to the error: %2$s"), file, error);
2198                 Alert::error(_("Could not read file"), text);
2199                 return docstring();
2200         }
2201
2202         ifstream ifs(fname.toFilesystemEncoding().c_str());
2203         if (!ifs) {
2204                 docstring const error = from_ascii(strerror(errno));
2205                 docstring const file = makeDisplayPath(fname.absFilename(), 50);
2206                 docstring const text =
2207                   bformat(_("Could not open the specified document\n"
2208                             "%1$s\ndue to the error: %2$s"), file, error);
2209                 Alert::error(_("Could not open file"), text);
2210                 return docstring();
2211         }
2212
2213         ifs.unsetf(std::ios::skipws);
2214         istream_iterator<char> ii(ifs);
2215         istream_iterator<char> end;
2216 #if !defined(USE_INCLUDED_STRING) && !defined(STD_STRING_IS_GOOD)
2217         // We use this until the compilers get better...
2218         std::vector<char> tmp;
2219         copy(ii, end, back_inserter(tmp));
2220         string const tmpstr(tmp.begin(), tmp.end());
2221 #else
2222         // This is what we want to use and what we will use once the
2223         // compilers get good enough.
2224         //string tmpstr(ii, end); // yet a reason for using std::string
2225         // alternate approach to get the file into a string:
2226         string tmpstr;
2227         copy(ii, end, back_inserter(tmpstr));
2228 #endif
2229
2230         // FIXME UNICODE: We don't know the encoding of the file
2231         docstring file_content = from_utf8(tmpstr);
2232         if (file_content.empty()) {
2233                 Alert::error(_("Reading not UTF-8 encoded file"),
2234                              _("The file is not UTF-8 encoded.\n"
2235                                "It will be read as local 8Bit-encoded.\n"
2236                                "If this does not give the correct result\n"
2237                                "then please change the encoding of the file\n"
2238                                "to UTF-8 with a program other than LyX.\n"));
2239                 file_content = from_local8bit(tmpstr);
2240         }
2241
2242         return normalize_c(file_content);
2243 }
2244
2245
2246 void BufferView::insertPlaintextFile(string const & f, bool asParagraph)
2247 {
2248         docstring const tmpstr = contentsOfPlaintextFile(f, asParagraph);
2249
2250         if (tmpstr.empty())
2251                 return;
2252
2253         Cursor & cur = cursor();
2254         cap::replaceSelection(cur);
2255         recordUndo(cur);
2256         if (asParagraph)
2257                 cur.innerText()->insertStringAsParagraphs(cur, tmpstr);
2258         else
2259                 cur.innerText()->insertStringAsLines(cur, tmpstr);
2260 }
2261
2262
2263 } // namespace lyx