]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiWorkArea.cpp
When ignoring an update, request one for later
[lyx.git] / src / frontends / qt4 / GuiWorkArea.cpp
1 /**
2  * \file GuiWorkArea.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author John Levon
7  * \author Abdelrazak Younes
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #include <config.h>
13
14 #include "GuiWorkArea.h"
15 #include "GuiWorkArea_Private.h"
16
17 #include "ColorCache.h"
18 #include "FontLoader.h"
19 #include "GuiApplication.h"
20 #include "GuiCompleter.h"
21 #include "GuiKeySymbol.h"
22 #include "GuiPainter.h"
23 #include "GuiView.h"
24 #include "Menus.h"
25 #include "qt_helpers.h"
26
27 #include "Buffer.h"
28 #include "BufferList.h"
29 #include "BufferParams.h"
30 #include "BufferView.h"
31 #include "CoordCache.h"
32 #include "Cursor.h"
33 #include "Font.h"
34 #include "FuncRequest.h"
35 #include "KeySymbol.h"
36 #include "Language.h"
37 #include "LyX.h"
38 #include "LyXRC.h"
39 #include "LyXVC.h"
40 #include "Text.h"
41 #include "TextMetrics.h"
42 #include "Undo.h"
43 #include "version.h"
44
45 #include "graphics/GraphicsImage.h"
46 #include "graphics/GraphicsLoader.h"
47
48 #include "support/convert.h"
49 #include "support/debug.h"
50 #include "support/lassert.h"
51 #include "support/TempFile.h"
52
53 #include "frontends/Application.h"
54 #include "frontends/FontMetrics.h"
55 #include "frontends/WorkAreaManager.h"
56
57 #include <QContextMenuEvent>
58 #if (QT_VERSION < 0x050000)
59 #include <QInputContext>
60 #endif
61 #include <QDrag>
62 #include <QHelpEvent>
63 #ifdef Q_OS_MAC
64 #include <QProxyStyle>
65 #endif
66 #include <QMainWindow>
67 #include <QMimeData>
68 #include <QMenu>
69 #include <QPainter>
70 #include <QPalette>
71 #include <QScrollBar>
72 #include <QStyleOption>
73 #include <QStylePainter>
74 #include <QTimer>
75 #include <QToolButton>
76 #include <QToolTip>
77 #include <QMenuBar>
78
79 #include <cmath>
80 #include <iostream>
81
82 int const TabIndicatorWidth = 3;
83
84 #undef KeyPress
85 #undef NoModifier
86
87 using namespace std;
88 using namespace lyx::support;
89
90 namespace lyx {
91
92
93 /// return the LyX mouse button state from Qt's
94 static mouse_button::state q_button_state(Qt::MouseButton button)
95 {
96         mouse_button::state b = mouse_button::none;
97         switch (button) {
98                 case Qt::LeftButton:
99                         b = mouse_button::button1;
100                         break;
101                 case Qt::MidButton:
102                         b = mouse_button::button2;
103                         break;
104                 case Qt::RightButton:
105                         b = mouse_button::button3;
106                         break;
107                 default:
108                         break;
109         }
110         return b;
111 }
112
113
114 /// return the LyX mouse button state from Qt's
115 mouse_button::state q_motion_state(Qt::MouseButtons state)
116 {
117         mouse_button::state b = mouse_button::none;
118         if (state & Qt::LeftButton)
119                 b |= mouse_button::button1;
120         if (state & Qt::MidButton)
121                 b |= mouse_button::button2;
122         if (state & Qt::RightButton)
123                 b |= mouse_button::button3;
124         return b;
125 }
126
127
128 namespace frontend {
129
130 class CaretWidget {
131 public:
132         CaretWidget() : rtl_(false), l_shape_(false), completable_(false),
133                 x_(0), caret_width_(0)
134         {}
135
136         void draw(QPainter & painter)
137         {
138                 if (!rect_.isValid())
139                         return;
140
141                 int y = rect_.top();
142                 int l = x_ - rect_.left();
143                 int r = rect_.right() - x_;
144                 int bot = rect_.bottom();
145
146                 // draw vertical line
147                 painter.fillRect(x_, y, caret_width_, rect_.height(), color_);
148
149                 // draw RTL/LTR indication
150                 painter.setPen(color_);
151                 if (l_shape_) {
152                         if (rtl_)
153                                 painter.drawLine(x_, bot, x_ - l + 1, bot);
154                         else
155                                 painter.drawLine(x_, bot, x_ + caret_width_ + r - 1, bot);
156                 }
157
158                 // draw completion triangle
159                 if (completable_) {
160                         int m = y + rect_.height() / 2;
161                         int d = TabIndicatorWidth - 1;
162                         if (rtl_) {
163                                 painter.drawLine(x_ - 1, m - d, x_ - 1 - d, m);
164                                 painter.drawLine(x_ - 1, m + d, x_ - 1 - d, m);
165                         } else {
166                                 painter.drawLine(x_ + caret_width_, m - d, x_ + caret_width_ + d, m);
167                                 painter.drawLine(x_ + caret_width_, m + d, x_ + caret_width_ + d, m);
168                         }
169                 }
170         }
171
172         void update(int x, int y, int h, bool l_shape,
173                 bool rtl, bool completable)
174         {
175                 color_ = guiApp->colorCache().get(Color_cursor);
176                 l_shape_ = l_shape;
177                 rtl_ = rtl;
178                 completable_ = completable;
179                 x_ = x;
180
181                 // extension to left and right
182                 int l = 0;
183                 int r = 0;
184
185                 // RTL/LTR indication
186                 if (l_shape_) {
187                         if (rtl)
188                                 l += h / 3;
189                         else
190                                 r += h / 3;
191                 }
192
193                 // completion triangle
194                 if (completable_) {
195                         if (rtl)
196                                 l = max(l, TabIndicatorWidth);
197                         else
198                                 r = max(r, TabIndicatorWidth);
199                 }
200
201                 //FIXME: LyXRC::cursor_width should be caret_width
202                 caret_width_ = lyxrc.cursor_width
203                         ? lyxrc.cursor_width
204                         : 1 + int((lyxrc.currentZoom + 50) / 200.0);
205
206                 // compute overall rectangle
207                 rect_ = QRect(x - l, y, caret_width_ + r + l, h);
208         }
209
210         QRect const & rect() { return rect_; }
211
212 private:
213         /// caret is in RTL or LTR text
214         bool rtl_;
215         /// indication for RTL or LTR
216         bool l_shape_;
217         /// triangle to show that a completion is available
218         bool completable_;
219         ///
220         QColor color_;
221         /// rectangle, possibly with l_shape and completion triangle
222         QRect rect_;
223         /// x position (were the vertical line is drawn)
224         int x_;
225         /// the width of the vertical blinking bar
226         int caret_width_;
227 };
228
229
230 // This is a 'heartbeat' generating synthetic mouse move events when the
231 // cursor is at the top or bottom edge of the viewport. One scroll per 0.2 s
232 SyntheticMouseEvent::SyntheticMouseEvent()
233         : timeout(200), restart_timeout(true)
234 {}
235
236
237 GuiWorkArea::Private::Private(GuiWorkArea * parent)
238 : p(parent), buffer_view_(0), lyx_view_(0),
239   caret_(0), caret_visible_(false),
240   need_resize_(false), preedit_lines_(1),
241   last_pixel_ratio_(1.0),
242   completer_(new GuiCompleter(p, p)), dialog_mode_(false), shell_escape_(false),
243   read_only_(false), clean_(true), externally_modified_(false)
244 {
245         int const time = QApplication::cursorFlashTime() / 2;
246         if (time > 0) {
247                 caret_timeout_.setInterval(time);
248                 caret_timeout_.start();
249         } else {
250                 // let's initialize this just to be safe
251                 caret_timeout_.setInterval(500);
252         }
253 }
254
255
256 GuiWorkArea::Private::~Private()
257 {
258         // If something is wrong with the buffer, we can ignore it safely
259         try {
260                 buffer_view_->buffer().workAreaManager().remove(p);
261         } catch(...) {}
262         delete buffer_view_;
263         delete caret_;
264         // Completer has a QObject parent and is thus automatically destroyed.
265         // See #4758.
266         // delete completer_;
267 }
268
269
270 GuiWorkArea::GuiWorkArea(QWidget * /* w */)
271 : d(new Private(this))
272 {
273         new CompressorProxy(this); // not a leak
274 }
275
276
277 GuiWorkArea::GuiWorkArea(Buffer & buffer, GuiView & gv)
278 : d(new Private(this))
279 {
280         new CompressorProxy(this); // not a leak
281         setGuiView(gv);
282         buffer.params().display_pixel_ratio = theGuiApp()->pixelRatio();
283         setBuffer(buffer);
284         init();
285 }
286
287
288 double GuiWorkArea::pixelRatio() const
289 {
290 #if QT_VERSION >= 0x050000
291         return qt_scale_factor * devicePixelRatio();
292 #else
293         return 1.0;
294 #endif
295 }
296
297
298 void GuiWorkArea::init()
299 {
300         // Setup the signals
301         connect(&d->caret_timeout_, SIGNAL(timeout()),
302                 this, SLOT(toggleCaret()));
303
304         // This connection is closed at the same time as this is destroyed.
305         d->synthetic_mouse_event_.timeout.timeout.connect([this](){
306                         generateSyntheticMouseEvent();
307                 });
308
309         d->resetScreen();
310         // With Qt4.5 a mouse event will happen before the first paint event
311         // so make sure that the buffer view has an up to date metrics.
312         d->buffer_view_->resize(viewport()->width(), viewport()->height());
313         d->caret_ = new frontend::CaretWidget();
314
315         setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
316         setAcceptDrops(true);
317         setMouseTracking(true);
318         setMinimumSize(100, 70);
319         setFrameStyle(QFrame::NoFrame);
320         updateWindowTitle();
321
322         d->updateCursorShape();
323
324         // we paint our own background
325         viewport()->setAttribute(Qt::WA_OpaquePaintEvent);
326
327         setFocusPolicy(Qt::StrongFocus);
328
329         LYXERR(Debug::GUI, "viewport width: " << viewport()->width()
330                 << "  viewport height: " << viewport()->height());
331
332         // Enables input methods for asian languages.
333         // Must be set when creating custom text editing widgets.
334         setAttribute(Qt::WA_InputMethodEnabled, true);
335 }
336
337
338 GuiWorkArea::~GuiWorkArea()
339 {
340         delete d;
341 }
342
343
344 void GuiWorkArea::Private::updateCursorShape()
345 {
346         bool const clickable = buffer_view_ && buffer_view_->clickableInset();
347         p->viewport()->setCursor(clickable ? Qt::PointingHandCursor
348                                            : Qt::IBeamCursor);
349 }
350
351
352 void GuiWorkArea::setGuiView(GuiView & gv)
353 {
354         d->lyx_view_ = &gv;
355 }
356
357
358 void GuiWorkArea::setBuffer(Buffer & buffer)
359 {
360         delete d->buffer_view_;
361         d->buffer_view_ = new BufferView(buffer);
362         buffer.workAreaManager().add(this);
363
364         // HACK: Prevents an additional redraw when the scrollbar pops up
365         // which regularily happens on documents with more than one page.
366         // The policy  should be set to "Qt::ScrollBarAsNeeded" soon.
367         // Since we have no geometry information yet, we assume that
368         // a document needs a scrollbar if there is more then four
369         // paragraph in the outermost text.
370         if (buffer.text().paragraphs().size() > 4)
371                 setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOn);
372         QTimer::singleShot(50, this, SLOT(fixVerticalScrollBar()));
373         Q_EMIT bufferViewChanged();
374 }
375
376
377 void GuiWorkArea::fixVerticalScrollBar()
378 {
379         if (!isFullScreen())
380                 setVerticalScrollBarPolicy(Qt::ScrollBarAsNeeded);
381 }
382
383
384 void GuiWorkArea::close()
385 {
386         d->lyx_view_->removeWorkArea(this);
387 }
388
389
390 void GuiWorkArea::setFullScreen(bool full_screen)
391 {
392         d->buffer_view_->setFullScreen(full_screen);
393         setFrameStyle(QFrame::NoFrame);
394         if (full_screen) {
395                 setFrameStyle(QFrame::NoFrame);
396                 if (lyxrc.full_screen_scrollbar)
397                         setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
398         } else
399                 setVerticalScrollBarPolicy(Qt::ScrollBarAsNeeded);
400 }
401
402
403 BufferView & GuiWorkArea::bufferView()
404 {
405         return *d->buffer_view_;
406 }
407
408
409 BufferView const & GuiWorkArea::bufferView() const
410 {
411         return *d->buffer_view_;
412 }
413
414
415 void GuiWorkArea::stopBlinkingCaret()
416 {
417         d->caret_timeout_.stop();
418         d->hideCaret();
419 }
420
421
422 void GuiWorkArea::startBlinkingCaret()
423 {
424         // do not show the cursor if the view is busy
425         if (view().busy())
426                 return;
427
428         Point p;
429         int h = 0;
430         d->buffer_view_->caretPosAndHeight(p, h);
431         // Don't start blinking if the cursor isn't on screen.
432         if (!d->buffer_view_->cursorInView(p, h))
433                 return;
434
435         d->showCaret();
436
437         // Avoid blinking when debugging PAINTING, since it creates too much noise
438         if (!lyxerr.debugging(Debug::PAINTING)) {
439                 // we are not supposed to cache this value.
440                 int const time = QApplication::cursorFlashTime() / 2;
441                 if (time <= 0)
442                         return;
443                 d->caret_timeout_.setInterval(time);
444                 d->caret_timeout_.start();
445         }
446 }
447
448
449 void GuiWorkArea::toggleCaret()
450 {
451         if (d->caret_visible_)
452                 d->hideCaret();
453         else
454                 d->showCaret();
455 }
456
457
458 void GuiWorkArea::scheduleRedraw(bool update_metrics)
459 {
460         if (!isVisible())
461                 // No need to redraw in this case.
462                 return;
463
464         // No need to do anything if this is the current view. The BufferView
465         // metrics are already up to date.
466         if (update_metrics || d->lyx_view_ != guiApp->currentView()
467                 || d->lyx_view_->currentWorkArea() != this) {
468                 // FIXME: it would be nice to optimize for the off-screen case.
469                 d->buffer_view_->cursor().fixIfBroken();
470                 d->buffer_view_->updateMetrics();
471                 d->buffer_view_->cursor().fixIfBroken();
472         }
473
474         // update caret position, because otherwise it has to wait until
475         // the blinking interval is over
476         d->updateCaretGeometry();
477
478         LYXERR(Debug::WORKAREA, "WorkArea::redraw screen");
479         viewport()->update();
480
481         /// FIXME: is this still true now that paintEvent does the actual painting?
482         /// \warning: scrollbar updating *must* be done after the BufferView is drawn
483         /// because \c BufferView::updateScrollbar() is called in \c BufferView::draw().
484         d->updateScrollbar();
485         d->lyx_view_->updateStatusBar();
486
487         if (lyxerr.debugging(Debug::WORKAREA))
488                 d->buffer_view_->coordCache().dump();
489
490         updateWindowTitle();
491
492         d->updateCursorShape();
493 }
494
495
496 // Keep in sync with GuiWorkArea::processKeySym below
497 bool GuiWorkArea::queryKeySym(KeySymbol const & key, KeyModifier mod) const
498 {
499         return guiApp->queryKeySym(key, mod);
500 }
501
502
503 // Keep in sync with GuiWorkArea::queryKeySym above
504 void GuiWorkArea::processKeySym(KeySymbol const & key, KeyModifier mod)
505 {
506         if (d->lyx_view_->isFullScreen() && d->lyx_view_->menuBar()->isVisible()
507                 && lyxrc.full_screen_menubar) {
508                 // FIXME HACK: we should not have to do this here. See related comment
509                 // in GuiView::event() (QEvent::ShortcutOverride)
510                 d->lyx_view_->menuBar()->hide();
511         }
512
513         // In order to avoid bad surprise in the middle of an operation,
514         // we better stop the blinking caret...
515         // the caret gets restarted in GuiView::restartCaret()
516         stopBlinkingCaret();
517         guiApp->processKeySym(key, mod);
518 }
519
520
521 void GuiWorkArea::Private::dispatch(FuncRequest const & cmd)
522 {
523         // Handle drag&drop
524         if (cmd.action() == LFUN_FILE_OPEN) {
525                 DispatchResult dr;
526                 lyx_view_->dispatch(cmd, dr);
527                 return;
528         }
529
530         bool const notJustMovingTheMouse =
531                 cmd.action() != LFUN_MOUSE_MOTION || cmd.button() != mouse_button::none;
532
533         // In order to avoid bad surprise in the middle of an operation, we better stop
534         // the blinking caret.
535         if (notJustMovingTheMouse)
536                 p->stopBlinkingCaret();
537
538         buffer_view_->mouseEventDispatch(cmd);
539
540         // Skip these when selecting
541         // FIXME: let GuiView take care of those.
542         if (cmd.action() != LFUN_MOUSE_MOTION) {
543                 completer_->updateVisibility(false, false);
544                 lyx_view_->updateDialogs();
545                 lyx_view_->updateStatusBar();
546         }
547
548         // GUI tweaks except with mouse motion with no button pressed.
549         if (notJustMovingTheMouse) {
550                 // Slight hack: this is only called currently when we
551                 // clicked somewhere, so we force through the display
552                 // of the new status here.
553                 // FIXME: let GuiView take care of those.
554                 lyx_view_->clearMessage();
555
556                 // Show the caret immediately after any operation
557                 p->startBlinkingCaret();
558         }
559
560         updateCursorShape();
561 }
562
563
564 void GuiWorkArea::Private::resizeBufferView()
565 {
566         // WARNING: Please don't put any code that will trigger a repaint here!
567         // We are already inside a paint event.
568         p->stopBlinkingCaret();
569         // Warn our container (GuiView).
570         p->busy(true);
571
572         Point point;
573         int h = 0;
574         buffer_view_->caretPosAndHeight(point, h);
575         bool const caret_in_view = buffer_view_->cursorInView(point, h);
576         buffer_view_->resize(p->viewport()->width(), p->viewport()->height());
577         if (caret_in_view)
578                 buffer_view_->scrollToCursor();
579         updateCaretGeometry();
580
581         // Update scrollbars which might have changed due different
582         // BufferView dimension. This is especially important when the
583         // BufferView goes from zero-size to the real-size for the first time,
584         // as the scrollbar paramters are then set for the first time.
585         updateScrollbar();
586
587         need_resize_ = false;
588         p->busy(false);
589         // Eventually, restart the caret after the resize event.
590         // We might be resizing even if the focus is on another widget so we only
591         // restart the caret if we have the focus.
592         if (p->hasFocus())
593                 QTimer::singleShot(50, p, SLOT(startBlinkingCaret()));
594 }
595
596
597 void GuiWorkArea::Private::updateCaretGeometry()
598 {
599         Point point;
600         int h = 0;
601         buffer_view_->caretPosAndHeight(point, h);
602         if (!buffer_view_->cursorInView(point, h))
603                 return;
604
605         // RTL or not RTL
606         bool l_shape = false;
607         Font const & realfont = buffer_view_->cursor().real_current_font;
608         BufferParams const & bp = buffer_view_->buffer().params();
609         bool const samelang = realfont.language() == bp.language;
610         bool const isrtl = realfont.isVisibleRightToLeft();
611
612         if (!samelang || isrtl != bp.language->rightToLeft())
613                 l_shape = true;
614
615         // The ERT language hack needs fixing up
616         if (realfont.language() == latex_language)
617                 l_shape = false;
618
619         // show caret on screen
620         Cursor & cur = buffer_view_->cursor();
621         bool completable = cur.inset().showCompletionCursor()
622                 && completer_->completionAvailable()
623                 && !completer_->popupVisible()
624                 && !completer_->inlineVisible();
625         caret_visible_ = true;
626
627         //int cur_x = buffer_view_->getPos(cur).x_;
628         // We may have decided to slide the cursor row so that caret
629         // is visible.
630         point.x_ -= buffer_view_->horizScrollOffset();
631
632         caret_->update(point.x_, point.y_, h, l_shape, isrtl, completable);
633 }
634
635
636 void GuiWorkArea::Private::showCaret()
637 {
638         if (caret_visible_)
639                 return;
640
641         updateCaretGeometry();
642         p->viewport()->update(caret_->rect());
643 }
644
645
646 void GuiWorkArea::Private::hideCaret()
647 {
648         if (!caret_visible_)
649                 return;
650
651         caret_visible_ = false;
652         //if (!qApp->focusWidget())
653                 p->viewport()->update(caret_->rect());
654 }
655
656
657 void GuiWorkArea::Private::updateScrollbar()
658 {
659         // Prevent setRange() and setSliderPosition from causing recursive calls via
660         // the signal valueChanged. (#10311)
661         QObject::disconnect(p->verticalScrollBar(), SIGNAL(valueChanged(int)),
662                             p, SLOT(scrollTo(int)));
663         ScrollbarParameters const & scroll = buffer_view_->scrollbarParameters();
664         p->verticalScrollBar()->setRange(scroll.min, scroll.max);
665         p->verticalScrollBar()->setPageStep(scroll.page_step);
666         p->verticalScrollBar()->setSingleStep(scroll.single_step);
667         p->verticalScrollBar()->setSliderPosition(0);
668         // Connect to the vertical scroll bar
669         QObject::connect(p->verticalScrollBar(), SIGNAL(valueChanged(int)),
670                          p, SLOT(scrollTo(int)));
671 }
672
673
674 void GuiWorkArea::scrollTo(int value)
675 {
676         stopBlinkingCaret();
677         d->buffer_view_->scrollDocView(value, true);
678
679         if (lyxrc.cursor_follows_scrollbar) {
680                 d->buffer_view_->setCursorFromScrollbar();
681                 // FIXME: let GuiView take care of those.
682                 d->lyx_view_->updateLayoutList();
683         }
684         // Show the caret immediately after any operation.
685         startBlinkingCaret();
686         // FIXME QT5
687 #ifdef Q_WS_X11
688         QApplication::syncX();
689 #endif
690 }
691
692
693 bool GuiWorkArea::event(QEvent * e)
694 {
695         switch (e->type()) {
696         case QEvent::ToolTip: {
697                 QHelpEvent * helpEvent = static_cast<QHelpEvent *>(e);
698                 if (lyxrc.use_tooltip) {
699                         QPoint pos = helpEvent->pos();
700                         if (pos.x() < viewport()->width()) {
701                                 QString s = toqstr(d->buffer_view_->toolTip(pos.x(), pos.y()));
702                                 QToolTip::showText(helpEvent->globalPos(), formatToolTip(s,35));
703                         }
704                         else
705                                 QToolTip::hideText();
706                 }
707                 // Don't forget to accept the event!
708                 e->accept();
709                 return true;
710         }
711
712         case QEvent::ShortcutOverride:
713                 // keyPressEvent is ShortcutOverride-aware and only accepts the event in
714                 // this case
715                 keyPressEvent(static_cast<QKeyEvent *>(e));
716                 return e->isAccepted();
717
718         case QEvent::KeyPress: {
719                 // We catch this event in order to catch the Tab or Shift+Tab key press
720                 // which are otherwise reserved to focus switching between controls
721                 // within a dialog.
722                 QKeyEvent * ke = static_cast<QKeyEvent*>(e);
723                 if ((ke->key() == Qt::Key_Tab && ke->modifiers() == Qt::NoModifier)
724                         || (ke->key() == Qt::Key_Backtab && (
725                                 ke->modifiers() == Qt::ShiftModifier
726                                 || ke->modifiers() == Qt::NoModifier))) {
727                         keyPressEvent(ke);
728                         return true;
729                 }
730                 return QAbstractScrollArea::event(e);
731         }
732
733         default:
734                 return QAbstractScrollArea::event(e);
735         }
736         return false;
737 }
738
739
740 void GuiWorkArea::contextMenuEvent(QContextMenuEvent * e)
741 {
742         string name;
743         if (e->reason() == QContextMenuEvent::Mouse)
744                 // the menu name is set on mouse press
745                 name = d->context_menu_name_;
746         else {
747                 QPoint pos = e->pos();
748                 Cursor const & cur = d->buffer_view_->cursor();
749                 if (e->reason() == QContextMenuEvent::Keyboard && cur.inTexted()) {
750                         // Do not access the context menu of math right in front of before
751                         // the cursor. This does not work when the cursor is in text.
752                         Inset * inset = cur.paragraph().getInset(cur.pos());
753                         if (inset && inset->asInsetMath())
754                                 --pos.rx();
755                         else if (cur.pos() > 0) {
756                                 inset = cur.paragraph().getInset(cur.pos() - 1);
757                                 if (inset)
758                                         ++pos.rx();
759                         }
760                 }
761                 name = d->buffer_view_->contextMenu(pos.x(), pos.y());
762         }
763
764         if (name.empty()) {
765                 e->accept();
766                 return;
767         }
768         // always show mnemonics when the keyboard is used to show the context menu
769         // FIXME: This should be fixed in Qt itself
770         bool const keyboard = (e->reason() == QContextMenuEvent::Keyboard);
771         QMenu * menu = guiApp->menus().menu(toqstr(name), *d->lyx_view_, keyboard);
772         if (!menu) {
773                 e->accept();
774                 return;
775         }
776         // Position the menu to the right.
777         // FIXME: menu position should be different for RTL text.
778         menu->exec(e->globalPos());
779         e->accept();
780 }
781
782
783 void GuiWorkArea::focusInEvent(QFocusEvent * e)
784 {
785         LYXERR(Debug::DEBUG, "GuiWorkArea::focusInEvent(): " << this << endl);
786         if (d->lyx_view_->currentWorkArea() != this) {
787                 d->lyx_view_->setCurrentWorkArea(this);
788                 d->lyx_view_->currentWorkArea()->bufferView().buffer().updateBuffer();
789         }
790
791         startBlinkingCaret();
792         QAbstractScrollArea::focusInEvent(e);
793 }
794
795
796 void GuiWorkArea::focusOutEvent(QFocusEvent * e)
797 {
798         LYXERR(Debug::DEBUG, "GuiWorkArea::focusOutEvent(): " << this << endl);
799         stopBlinkingCaret();
800         QAbstractScrollArea::focusOutEvent(e);
801 }
802
803
804 void GuiWorkArea::mousePressEvent(QMouseEvent * e)
805 {
806         if (d->dc_event_.active && d->dc_event_ == *e) {
807                 d->dc_event_.active = false;
808                 FuncRequest cmd(LFUN_MOUSE_TRIPLE, e->x(), e->y(),
809                         q_button_state(e->button()), q_key_state(e->modifiers()));
810                 d->dispatch(cmd);
811                 e->accept();
812                 return;
813         }
814
815 #if (QT_VERSION < 0x050000) && !defined(__HAIKU__)
816         inputContext()->reset();
817 #endif
818
819         FuncRequest const cmd(LFUN_MOUSE_PRESS, e->x(), e->y(),
820                         q_button_state(e->button()), q_key_state(e->modifiers()));
821         d->dispatch(cmd);
822
823         // Save the context menu on mouse press, because also the mouse
824         // cursor is set on mouse press. Afterwards, we can either release
825         // the mousebutton somewhere else, or the cursor might have moved
826         // due to the DEPM. We need to do this after the mouse has been
827         // set in dispatch(), because the selection state might change.
828         if (e->button() == Qt::RightButton)
829                 d->context_menu_name_ = d->buffer_view_->contextMenu(e->x(), e->y());
830
831         e->accept();
832 }
833
834
835 void GuiWorkArea::mouseReleaseEvent(QMouseEvent * e)
836 {
837         if (d->synthetic_mouse_event_.timeout.running())
838                 d->synthetic_mouse_event_.timeout.stop();
839
840         FuncRequest const cmd(LFUN_MOUSE_RELEASE, e->x(), e->y(),
841                         q_button_state(e->button()), q_key_state(e->modifiers()));
842         d->dispatch(cmd);
843         e->accept();
844 }
845
846
847 void GuiWorkArea::mouseMoveEvent(QMouseEvent * e)
848 {
849         // we kill the triple click if we move
850         doubleClickTimeout();
851         FuncRequest cmd(LFUN_MOUSE_MOTION, e->x(), e->y(),
852                         q_motion_state(e->buttons()), q_key_state(e->modifiers()));
853
854         e->accept();
855
856         // If we're above or below the work area...
857         if ((e->y() <= 20 || e->y() >= viewport()->height() - 20)
858                         && e->buttons() == mouse_button::button1) {
859                 // Make sure only a synthetic event can cause a page scroll,
860                 // so they come at a steady rate:
861                 if (e->y() <= 20)
862                         // _Force_ a scroll up:
863                         cmd.set_y(e->y() - 21);
864                 else
865                         cmd.set_y(e->y() + 21);
866                 // Store the event, to be handled when the timeout expires.
867                 d->synthetic_mouse_event_.cmd = cmd;
868
869                 if (d->synthetic_mouse_event_.timeout.running()) {
870                         // Discard the event. Note that it _may_ be handled
871                         // when the timeout expires if
872                         // synthetic_mouse_event_.cmd has not been overwritten.
873                         // Ie, when the timeout expires, we handle the
874                         // most recent event but discard all others that
875                         // occurred after the one used to start the timeout
876                         // in the first place.
877                         return;
878                 }
879
880                 d->synthetic_mouse_event_.restart_timeout = true;
881                 d->synthetic_mouse_event_.timeout.start();
882                 // Fall through to handle this event...
883
884         } else if (d->synthetic_mouse_event_.timeout.running()) {
885                 // Store the event, to be possibly handled when the timeout
886                 // expires.
887                 // Once the timeout has expired, normal control is returned
888                 // to mouseMoveEvent (restart_timeout = false).
889                 // This results in a much smoother 'feel' when moving the
890                 // mouse back into the work area.
891                 d->synthetic_mouse_event_.cmd = cmd;
892                 d->synthetic_mouse_event_.restart_timeout = false;
893                 return;
894         }
895         d->dispatch(cmd);
896 }
897
898
899 void GuiWorkArea::wheelEvent(QWheelEvent * ev)
900 {
901         // Wheel rotation by one notch results in a delta() of 120 (see
902         // documentation of QWheelEvent)
903         // But first we have to ignore horizontal scroll events.
904 #if QT_VERSION < 0x050000
905         if (ev->orientation() == Qt::Horizontal) {
906                 ev->accept();
907                 return;
908         }
909         double const delta = ev->delta() / 120.0;
910 #else
911         QPoint const aDelta = ev->angleDelta();
912         // skip horizontal wheel event
913         if (abs(aDelta.x()) > abs(aDelta.y())) {
914                 ev->accept();
915                 return;
916         }
917         double const delta = aDelta.y() / 120.0;
918 #endif
919
920         bool zoom = false;
921         switch (lyxrc.scroll_wheel_zoom) {
922         case LyXRC::SCROLL_WHEEL_ZOOM_CTRL:
923                 zoom = ev->modifiers() & Qt::ControlModifier;
924                 zoom &= !(ev->modifiers() & (Qt::ShiftModifier | Qt::AltModifier));
925                 break;
926         case LyXRC::SCROLL_WHEEL_ZOOM_SHIFT:
927                 zoom = ev->modifiers() & Qt::ShiftModifier;
928                 zoom &= !(ev->modifiers() & (Qt::ControlModifier | Qt::AltModifier));
929                 break;
930         case LyXRC::SCROLL_WHEEL_ZOOM_ALT:
931                 zoom = ev->modifiers() & Qt::AltModifier;
932                 zoom &= !(ev->modifiers() & (Qt::ShiftModifier | Qt::ControlModifier));
933                 break;
934         case LyXRC::SCROLL_WHEEL_ZOOM_OFF:
935                 break;
936         }
937         if (zoom) {
938                 docstring arg = convert<docstring>(int(5 * delta));
939                 lyx::dispatch(FuncRequest(LFUN_BUFFER_ZOOM_IN, arg));
940                 return;
941         }
942
943         // Take into account the desktop wide settings.
944         int const lines = qApp->wheelScrollLines();
945         int const page_step = verticalScrollBar()->pageStep();
946         // Test if the wheel mouse is set to one screen at a time.
947         // This is according to
948         // https://doc.qt.io/qt-5/qapplication.html#wheelScrollLines-prop
949         int scroll_value =
950                 min(lines * verticalScrollBar()->singleStep(), page_step);
951
952         // Take into account the rotation and the user preferences.
953         scroll_value = int(scroll_value * delta * lyxrc.mouse_wheel_speed);
954         LYXERR(Debug::SCROLLING, "wheelScrollLines = " << lines
955                         << " delta = " << delta << " scroll_value = " << scroll_value
956                         << " page_step = " << page_step);
957         // Now scroll.
958         verticalScrollBar()->setValue(verticalScrollBar()->value() - scroll_value);
959
960         ev->accept();
961 }
962
963
964 void GuiWorkArea::generateSyntheticMouseEvent()
965 {
966         int const e_y = d->synthetic_mouse_event_.cmd.y();
967         int const wh = d->buffer_view_->workHeight();
968         bool const up = e_y < 0;
969         bool const down = e_y > wh;
970
971         // Set things off to generate the _next_ 'pseudo' event.
972         int step = 50;
973         if (d->synthetic_mouse_event_.restart_timeout) {
974                 // This is some magic formulae to determine the speed
975                 // of scrolling related to the position of the mouse.
976                 int time = 200;
977                 if (up || down) {
978                         int dist = up ? -e_y : e_y - wh;
979                         time = max(min(200, 250000 / (dist * dist)), 1) ;
980
981                         if (time < 40) {
982                                 step = 80000 / (time * time);
983                                 time = 40;
984                         }
985                 }
986                 d->synthetic_mouse_event_.timeout.setTimeout(time);
987                 d->synthetic_mouse_event_.timeout.start();
988         }
989
990         // Can we scroll further ?
991         int const value = verticalScrollBar()->value();
992         if (value == verticalScrollBar()->maximum()
993                   || value == verticalScrollBar()->minimum()) {
994                 d->synthetic_mouse_event_.timeout.stop();
995                 return;
996         }
997
998         // Scroll
999         if (step <= 2 * wh) {
1000                 d->buffer_view_->scroll(up ? -step : step);
1001                 d->buffer_view_->updateMetrics();
1002         } else {
1003                 d->buffer_view_->scrollDocView(value + (up ? -step : step), false);
1004         }
1005
1006         // In which paragraph do we have to set the cursor ?
1007         Cursor & cur = d->buffer_view_->cursor();
1008         // FIXME: we don't know how to handle math.
1009         Text * text = cur.text();
1010         if (!text)
1011                 return;
1012         TextMetrics const & tm = d->buffer_view_->textMetrics(text);
1013
1014         // Quit gracefully if there are no metrics, since otherwise next
1015         // line would crash (bug #10324).
1016         // This situation seems related to a (not yet understood) timing problem.
1017         if (tm.empty())
1018                 return;
1019
1020         pair<pit_type, const ParagraphMetrics *> pp = up ? tm.first() : tm.last();
1021         ParagraphMetrics const & pm = *pp.second;
1022         pit_type const pit = pp.first;
1023
1024         if (pm.rows().empty())
1025                 return;
1026
1027         // Find the row at which we set the cursor.
1028         RowList::const_iterator rit = pm.rows().begin();
1029         RowList::const_iterator rlast = pm.rows().end();
1030         int yy = pm.position() - pm.ascent();
1031         for (--rlast; rit != rlast; ++rit) {
1032                 int h = rit->height();
1033                 if ((up && yy + h > 0)
1034                           || (!up && yy + h > wh - defaultRowHeight()))
1035                         break;
1036                 yy += h;
1037         }
1038
1039         // Find the position of the cursor
1040         bool bound;
1041         int x = d->synthetic_mouse_event_.cmd.x();
1042         pos_type const pos = tm.getPosNearX(*rit, x, bound);
1043
1044         // Set the cursor
1045         cur.pit() = pit;
1046         cur.pos() = pos;
1047         cur.boundary(bound);
1048
1049         d->buffer_view_->buffer().changed(false);
1050         return;
1051 }
1052
1053
1054 // CompressorProxy adapted from Kuba Ober https://stackoverflow.com/a/21006207
1055 CompressorProxy::CompressorProxy(GuiWorkArea * wa) : QObject(wa), flag_(false)
1056 {
1057         qRegisterMetaType<KeySymbol>("KeySymbol");
1058         qRegisterMetaType<KeyModifier>("KeyModifier");
1059         connect(wa, SIGNAL(compressKeySym(KeySymbol, KeyModifier, bool)),
1060                 this, SLOT(slot(KeySymbol, KeyModifier, bool)),
1061                 Qt::QueuedConnection);
1062         connect(this, SIGNAL(signal(KeySymbol, KeyModifier)),
1063                 wa, SLOT(processKeySym(KeySymbol, KeyModifier)));
1064 }
1065
1066
1067 bool CompressorProxy::emitCheck(bool isAutoRepeat)
1068 {
1069         flag_ = true;
1070         if (isAutoRepeat)
1071                 QCoreApplication::sendPostedEvents(this, QEvent::MetaCall); // recurse
1072         bool result = flag_;
1073         flag_ = false;
1074         return result;
1075 }
1076
1077
1078 void CompressorProxy::slot(KeySymbol sym, KeyModifier mod, bool isAutoRepeat)
1079 {
1080         if (emitCheck(isAutoRepeat))
1081                 Q_EMIT signal(sym, mod);
1082         else
1083                 LYXERR(Debug::KEY, "system is busy: autoRepeat key event ignored");
1084 }
1085
1086
1087 void GuiWorkArea::keyPressEvent(QKeyEvent * ev)
1088 {
1089         // this is also called for ShortcutOverride events. In this case, one must
1090         // not act but simply accept the event explicitly.
1091         bool const act = (ev->type() != QEvent::ShortcutOverride);
1092
1093         // Do not process here some keys if dialog_mode_ is set
1094         bool const for_dialog_mode = d->dialog_mode_
1095                 && (ev->modifiers() == Qt::NoModifier
1096                     || ev->modifiers() == Qt::ShiftModifier)
1097                 && (ev->key() == Qt::Key_Escape
1098                     || ev->key() == Qt::Key_Enter
1099                     || ev->key() == Qt::Key_Return);
1100         // also do not use autoRepeat to input shortcuts
1101         bool const autoRepeat = ev->isAutoRepeat();
1102
1103         if (for_dialog_mode || (!act && autoRepeat)) {
1104                 ev->ignore();
1105                 return;
1106         }
1107
1108         // intercept some keys if completion popup is visible
1109         if (d->completer_->popupVisible()) {
1110                 switch (ev->key()) {
1111                 case Qt::Key_Enter:
1112                 case Qt::Key_Return:
1113                         if (act)
1114                                 d->completer_->activate();
1115                         ev->accept();
1116                         return;
1117                 }
1118         }
1119
1120         KeyModifier const m = q_key_state(ev->modifiers());
1121
1122         if (act && lyxerr.debugging(Debug::KEY)) {
1123                 std::string str;
1124                 if (m & ShiftModifier)
1125                         str += "Shift-";
1126                 if (m & ControlModifier)
1127                         str += "Control-";
1128                 if (m & AltModifier)
1129                         str += "Alt-";
1130                 if (m & MetaModifier)
1131                         str += "Meta-";
1132                 LYXERR(Debug::KEY, " count: " << ev->count() << " text: " << ev->text()
1133                        << " isAutoRepeat: " << ev->isAutoRepeat() << " key: " << ev->key()
1134                        << " keyState: " << str);
1135         }
1136
1137         KeySymbol sym;
1138         setKeySymbol(&sym, ev);
1139         if (sym.isOK()) {
1140                 if (act) {
1141                         Q_EMIT compressKeySym(sym, m, autoRepeat);
1142                         ev->accept();
1143                 } else
1144                         // here, !autoRepeat, as determined at the beginning
1145                         ev->setAccepted(queryKeySym(sym, m));
1146         } else {
1147                 ev->ignore();
1148         }
1149 }
1150
1151
1152 void GuiWorkArea::doubleClickTimeout()
1153 {
1154         d->dc_event_.active = false;
1155 }
1156
1157
1158 void GuiWorkArea::mouseDoubleClickEvent(QMouseEvent * ev)
1159 {
1160         d->dc_event_ = DoubleClick(ev);
1161         QTimer::singleShot(QApplication::doubleClickInterval(), this,
1162                         SLOT(doubleClickTimeout()));
1163         FuncRequest cmd(LFUN_MOUSE_DOUBLE, ev->x(), ev->y(),
1164                         q_button_state(ev->button()), q_key_state(ev->modifiers()));
1165         d->dispatch(cmd);
1166         ev->accept();
1167 }
1168
1169
1170 void GuiWorkArea::resizeEvent(QResizeEvent * ev)
1171 {
1172         QAbstractScrollArea::resizeEvent(ev);
1173         d->need_resize_ = true;
1174         ev->accept();
1175 }
1176
1177
1178 void GuiWorkArea::Private::paintPreeditText(GuiPainter & pain)
1179 {
1180         if (preedit_string_.empty())
1181                 return;
1182
1183         // FIXME: shall we use real_current_font here? (see #10478)
1184         FontInfo const font = buffer_view_->cursor().getFont().fontInfo();
1185         FontMetrics const & fm = theFontMetrics(font);
1186         int const height = fm.maxHeight();
1187         int cur_x = caret_->rect().left();
1188         int cur_y = caret_->rect().bottom();
1189
1190         // get attributes of input method cursor.
1191         // cursor_pos : cursor position in preedit string.
1192         size_t cursor_pos = 0;
1193         bool cursor_is_visible = false;
1194         for (auto const & attr : preedit_attr_) {
1195                 if (attr.type == QInputMethodEvent::Cursor) {
1196                         cursor_pos = attr.start;
1197                         cursor_is_visible = attr.length != 0;
1198                         break;
1199                 }
1200         }
1201
1202         size_t const preedit_length = preedit_string_.length();
1203
1204         // get position of selection in input method.
1205         // FIXME: isn't there a way to do this simplier?
1206         // rStart : cursor position in selected string in IM.
1207         size_t rStart = 0;
1208         // rLength : selected string length in IM.
1209         size_t rLength = 0;
1210         if (cursor_pos < preedit_length) {
1211                 for (auto const & attr : preedit_attr_) {
1212                         if (attr.type == QInputMethodEvent::TextFormat) {
1213                                 if (attr.start <= int(cursor_pos)
1214                                         && int(cursor_pos) < attr.start + attr.length) {
1215                                                 rStart = attr.start;
1216                                                 rLength = attr.length;
1217                                                 if (!cursor_is_visible)
1218                                                         cursor_pos += rLength;
1219                                                 break;
1220                                 }
1221                         }
1222                 }
1223         }
1224         else {
1225                 rStart = cursor_pos;
1226                 rLength = 0;
1227         }
1228
1229         int const right_margin = buffer_view_->rightMargin();
1230         Painter::preedit_style ps;
1231         // Most often there would be only one line:
1232         preedit_lines_ = 1;
1233         for (size_t pos = 0; pos != preedit_length; ++pos) {
1234                 char_type const typed_char = preedit_string_[pos];
1235                 // reset preedit string style
1236                 ps = Painter::preedit_default;
1237
1238                 // if we reached the right extremity of the screen, go to next line.
1239                 if (cur_x + fm.width(typed_char) > p->viewport()->width() - right_margin) {
1240                         cur_x = right_margin;
1241                         cur_y += height + 1;
1242                         ++preedit_lines_;
1243                 }
1244                 // preedit strings are displayed with dashed underline
1245                 // and partial strings are displayed white on black indicating
1246                 // that we are in selecting mode in the input method.
1247                 // FIXME: rLength == preedit_length is not a changing condition
1248                 // FIXME: should be put out of the loop.
1249                 if (pos >= rStart
1250                         && pos < rStart + rLength
1251                         && !(cursor_pos < rLength && rLength == preedit_length))
1252                         ps = Painter::preedit_selecting;
1253
1254                 if (pos == cursor_pos
1255                         && (cursor_pos < rLength && rLength == preedit_length))
1256                         ps = Painter::preedit_cursor;
1257
1258                 // draw one character and update cur_x.
1259                 cur_x += pain.preeditText(cur_x, cur_y, typed_char, font, ps);
1260         }
1261 }
1262
1263
1264 void GuiWorkArea::paintEvent(QPaintEvent * ev)
1265 {
1266         // Do not trigger the painting machinery if we are not ready (see
1267         // bug #10989). The second test triggers when in the middle of a
1268         // dispatch operation.
1269         if (view().busy() || d->buffer_view_->buffer().undo().activeUndoGroup()) {
1270                 // Since macOS has turned the screen black at this point, our
1271                 // backing store has to be copied to screen (this is a no-op
1272                 // except on macOS).
1273                 d->updateScreen(ev->rect());
1274                 // Ignore this paint event, but request a new one for later.
1275                 viewport()->update();
1276                 ev->accept();
1277                 return;
1278         }
1279
1280         // LYXERR(Debug::PAINTING, "paintEvent begin: x: " << rc.x()
1281         //      << " y: " << rc.y() << " w: " << rc.width() << " h: " << rc.height());
1282
1283         if (d->need_resize_ || pixelRatio() != d->last_pixel_ratio_) {
1284                 d->resetScreen();
1285                 d->resizeBufferView();
1286         }
1287
1288         d->last_pixel_ratio_ = pixelRatio();
1289
1290         GuiPainter pain(d->screenDevice(), pixelRatio());
1291
1292         d->buffer_view_->draw(pain, d->caret_visible_);
1293
1294         // The preedit text, if needed
1295         d->paintPreeditText(pain);
1296
1297         // and the caret
1298         if (d->caret_visible_)
1299                 d->caret_->draw(pain);
1300
1301         d->updateScreen(ev->rect());
1302
1303         ev->accept();
1304 }
1305
1306
1307 void GuiWorkArea::inputMethodEvent(QInputMethodEvent * e)
1308 {
1309         LYXERR(Debug::KEY, "preeditString: " << e->preeditString()
1310                    << " commitString: " << e->commitString());
1311
1312         // insert the processed text in the document (handles undo)
1313         if (!e->commitString().isEmpty()) {
1314                 FuncRequest cmd(LFUN_SELF_INSERT,
1315                                 qstring_to_ucs4(e->commitString()),
1316                                 FuncRequest::KEYBOARD);
1317                 dispatch(cmd);
1318                 // FIXME: this is supposed to remove traces from preedit
1319                 // string. Can we avoid calling it explicitely?
1320                 d->buffer_view_->updateMetrics();
1321         }
1322
1323         // Hide the caret during the test transformation.
1324         if (e->preeditString().isEmpty())
1325                 startBlinkingCaret();
1326         else
1327                 stopBlinkingCaret();
1328
1329         if (d->preedit_string_.empty() && e->preeditString().isEmpty()) {
1330                 // Nothing to do
1331                 e->accept();
1332                 return;
1333         }
1334
1335         // The preedit text and its attributes will be used in paintPreeditText
1336         d->preedit_string_ = qstring_to_ucs4(e->preeditString());
1337         d->preedit_attr_ = e->attributes();
1338
1339
1340         // redraw area of preedit string.
1341         int height = d->caret_->rect().height();
1342         int cur_y = d->caret_->rect().bottom();
1343         viewport()->update(0, cur_y - height, viewport()->width(),
1344                 (height + 1) * d->preedit_lines_);
1345
1346         if (d->preedit_string_.empty()) {
1347                 d->preedit_lines_ = 1;
1348                 e->accept();
1349                 return;
1350         }
1351
1352         // Don't forget to accept the event!
1353         e->accept();
1354 }
1355
1356
1357 QVariant GuiWorkArea::inputMethodQuery(Qt::InputMethodQuery query) const
1358 {
1359         QRect cur_r(0, 0, 0, 0);
1360         switch (query) {
1361                 // this is the CJK-specific composition window position and
1362                 // the context menu position when the menu key is pressed.
1363                 case Qt::ImMicroFocus:
1364                         cur_r = d->caret_->rect();
1365                         if (d->preedit_lines_ != 1)
1366                                 cur_r.moveLeft(10);
1367                         cur_r.moveBottom(cur_r.bottom()
1368                                 + cur_r.height() * (d->preedit_lines_ - 1));
1369                         // return lower right of caret in LyX.
1370                         return cur_r;
1371                 default:
1372                         return QWidget::inputMethodQuery(query);
1373         }
1374 }
1375
1376
1377 void GuiWorkArea::updateWindowTitle()
1378 {
1379         Buffer const & buf = bufferView().buffer();
1380         if (buf.fileName() != d->file_name_
1381             || buf.params().shell_escape != d->shell_escape_
1382             || buf.hasReadonlyFlag() != d->read_only_
1383             || buf.lyxvc().vcstatus() != d->vc_status_
1384             || buf.isClean() != d->clean_
1385             || buf.notifiesExternalModification() != d->externally_modified_) {
1386                 d->file_name_ = buf.fileName();
1387                 d->shell_escape_ = buf.params().shell_escape;
1388                 d->read_only_ = buf.hasReadonlyFlag();
1389                 d->vc_status_ = buf.lyxvc().vcstatus();
1390                 d->clean_ = buf.isClean();
1391                 d->externally_modified_ = buf.notifiesExternalModification();
1392                 Q_EMIT titleChanged(this);
1393         }
1394 }
1395
1396
1397 bool GuiWorkArea::isFullScreen() const
1398 {
1399         return d->lyx_view_ && d->lyx_view_->isFullScreen();
1400 }
1401
1402
1403 bool GuiWorkArea::inDialogMode() const
1404 {
1405         return d->dialog_mode_;
1406 }
1407
1408
1409 void GuiWorkArea::setDialogMode(bool mode)
1410 {
1411         d->dialog_mode_ = mode;
1412 }
1413
1414
1415 GuiCompleter & GuiWorkArea::completer()
1416 {
1417         return *d->completer_;
1418 }
1419
1420 GuiView const & GuiWorkArea::view() const
1421 {
1422         return *d->lyx_view_;
1423 }
1424
1425
1426 GuiView & GuiWorkArea::view()
1427 {
1428         return *d->lyx_view_;
1429 }
1430
1431 ////////////////////////////////////////////////////////////////////
1432 //
1433 // EmbeddedWorkArea
1434 //
1435 ////////////////////////////////////////////////////////////////////
1436
1437
1438 EmbeddedWorkArea::EmbeddedWorkArea(QWidget * w): GuiWorkArea(w)
1439 {
1440         support::TempFile tempfile("embedded.internal");
1441         tempfile.setAutoRemove(false);
1442         buffer_ = theBufferList().newInternalBuffer(tempfile.name().absFileName());
1443         buffer_->setUnnamed(true);
1444         buffer_->setFullyLoaded(true);
1445         setBuffer(*buffer_);
1446         setDialogMode(true);
1447 }
1448
1449
1450 EmbeddedWorkArea::~EmbeddedWorkArea()
1451 {
1452         // No need to destroy buffer and bufferview here, because it is done
1453         // in theBufferList() destruction loop at application exit
1454 }
1455
1456
1457 void EmbeddedWorkArea::closeEvent(QCloseEvent * ev)
1458 {
1459         disable();
1460         GuiWorkArea::closeEvent(ev);
1461 }
1462
1463
1464 void EmbeddedWorkArea::hideEvent(QHideEvent * ev)
1465 {
1466         disable();
1467         GuiWorkArea::hideEvent(ev);
1468 }
1469
1470
1471 QSize EmbeddedWorkArea::sizeHint () const
1472 {
1473         // FIXME(?):
1474         // GuiWorkArea sets the size to the screen's viewport
1475         // by returning a value this gets overridden
1476         // EmbeddedWorkArea is now sized to fit in the layout
1477         // of the parent, and has a minimum size set in GuiWorkArea
1478         // which is what we return here
1479         return QSize(100, 70);
1480 }
1481
1482
1483 void EmbeddedWorkArea::disable()
1484 {
1485         stopBlinkingCaret();
1486         if (view().currentWorkArea() != this)
1487                 return;
1488         // No problem if currentMainWorkArea() is 0 (setCurrentWorkArea()
1489         // tolerates it and shows the background logo), what happens if
1490         // an EmbeddedWorkArea is closed after closing all document WAs
1491         view().setCurrentWorkArea(view().currentMainWorkArea());
1492 }
1493
1494 ////////////////////////////////////////////////////////////////////
1495 //
1496 // TabWorkArea
1497 //
1498 ////////////////////////////////////////////////////////////////////
1499
1500 #ifdef Q_OS_MAC
1501 class NoTabFrameMacStyle : public QProxyStyle {
1502 public:
1503         ///
1504         QRect subElementRect(SubElement element, const QStyleOption * option,
1505                              const QWidget * widget = 0) const
1506         {
1507                 QRect rect = QProxyStyle::subElementRect(element, option, widget);
1508                 bool noBar = static_cast<QTabWidget const *>(widget)->count() <= 1;
1509
1510                 // The Qt Mac style puts the contents into a 3 pixel wide box
1511                 // which looks very ugly and not like other Mac applications.
1512                 // Hence we remove this here, and moreover the 16 pixel round
1513                 // frame above if the tab bar is hidden.
1514                 if (element == QStyle::SE_TabWidgetTabContents) {
1515                         rect.adjust(- rect.left(), 0, rect.left(), 0);
1516                         if (noBar)
1517                                 rect.setTop(0);
1518                 }
1519
1520                 return rect;
1521         }
1522 };
1523
1524 NoTabFrameMacStyle noTabFrameMacStyle;
1525 #endif
1526
1527
1528 TabWorkArea::TabWorkArea(QWidget * parent)
1529         : QTabWidget(parent), clicked_tab_(-1), midpressed_tab_(-1)
1530 {
1531 #ifdef Q_OS_MAC
1532         setStyle(&noTabFrameMacStyle);
1533 #endif
1534
1535         QPalette pal = palette();
1536         pal.setColor(QPalette::Active, QPalette::Button,
1537                 pal.color(QPalette::Active, QPalette::Window));
1538         pal.setColor(QPalette::Disabled, QPalette::Button,
1539                 pal.color(QPalette::Disabled, QPalette::Window));
1540         pal.setColor(QPalette::Inactive, QPalette::Button,
1541                 pal.color(QPalette::Inactive, QPalette::Window));
1542
1543         QObject::connect(this, SIGNAL(currentChanged(int)),
1544                 this, SLOT(on_currentTabChanged(int)));
1545
1546         closeBufferButton = new QToolButton(this);
1547         closeBufferButton->setPalette(pal);
1548         // FIXME: rename the icon to closebuffer.png
1549         closeBufferButton->setIcon(QIcon(getPixmap("images/", "closetab", "svgz,png")));
1550         closeBufferButton->setText("Close File");
1551         closeBufferButton->setAutoRaise(true);
1552         closeBufferButton->setCursor(Qt::ArrowCursor);
1553         closeBufferButton->setToolTip(qt_("Close File"));
1554         closeBufferButton->setEnabled(true);
1555         QObject::connect(closeBufferButton, SIGNAL(clicked()),
1556                 this, SLOT(closeCurrentBuffer()));
1557         setCornerWidget(closeBufferButton, Qt::TopRightCorner);
1558
1559         // setup drag'n'drop
1560         QTabBar* tb = new DragTabBar;
1561         connect(tb, SIGNAL(tabMoveRequested(int, int)),
1562                 this, SLOT(moveTab(int, int)));
1563         tb->setElideMode(Qt::ElideNone);
1564         setTabBar(tb);
1565
1566         // make us responsible for the context menu of the tabbar
1567         tb->setContextMenuPolicy(Qt::CustomContextMenu);
1568         connect(tb, SIGNAL(customContextMenuRequested(const QPoint &)),
1569                 this, SLOT(showContextMenu(const QPoint &)));
1570         connect(tb, SIGNAL(tabCloseRequested(int)),
1571                 this, SLOT(closeTab(int)));
1572
1573         setUsesScrollButtons(true);
1574 }
1575
1576
1577 void TabWorkArea::mousePressEvent(QMouseEvent *me)
1578 {
1579         if (me->button() == Qt::MidButton)
1580                 midpressed_tab_ = tabBar()->tabAt(me->pos());
1581         else
1582                 QTabWidget::mousePressEvent(me);
1583 }
1584
1585
1586 void TabWorkArea::mouseReleaseEvent(QMouseEvent *me)
1587 {
1588         if (me->button() == Qt::MidButton) {
1589                 int const midreleased_tab = tabBar()->tabAt(me->pos());
1590                 if (midpressed_tab_ == midreleased_tab && posIsTab(me->pos()))
1591                         closeTab(midreleased_tab);
1592         } else
1593                 QTabWidget::mouseReleaseEvent(me);
1594 }
1595
1596
1597 void TabWorkArea::paintEvent(QPaintEvent * event)
1598 {
1599         if (tabBar()->isVisible()) {
1600                 QTabWidget::paintEvent(event);
1601         } else {
1602                 // Prevent the selected tab to influence the
1603                 // painting of the frame of the tab widget.
1604                 // This is needed for gtk style in Qt.
1605                 QStylePainter p(this);
1606 #if QT_VERSION < 0x050000
1607                 QStyleOptionTabWidgetFrameV2 opt;
1608 #else
1609                 QStyleOptionTabWidgetFrame opt;
1610 #endif
1611                 initStyleOption(&opt);
1612                 opt.rect = style()->subElementRect(QStyle::SE_TabWidgetTabPane,
1613                         &opt, this);
1614                 opt.selectedTabRect = QRect();
1615                 p.drawPrimitive(QStyle::PE_FrameTabWidget, opt);
1616         }
1617 }
1618
1619
1620 bool TabWorkArea::posIsTab(QPoint position)
1621 {
1622         // tabAt returns -1 if tab does not covers position
1623         return tabBar()->tabAt(position) > -1;
1624 }
1625
1626
1627 void TabWorkArea::mouseDoubleClickEvent(QMouseEvent * event)
1628 {
1629         if (event->button() != Qt::LeftButton)
1630                 return;
1631
1632         // this code chunk is unnecessary because it seems the event only makes
1633         // it this far if it is not on a tab. I'm not sure why this is (maybe
1634         // it is handled and ended in DragTabBar?), and thus I'm not sure if
1635         // this is true in all cases and if it will be true in the future so I
1636         // leave this code for now. (skostysh, 2016-07-21)
1637         //
1638         // return early if double click on existing tabs
1639         if (posIsTab(event->pos()))
1640                 return;
1641
1642         dispatch(FuncRequest(LFUN_BUFFER_NEW));
1643 }
1644
1645
1646 void TabWorkArea::setFullScreen(bool full_screen)
1647 {
1648         for (int i = 0; i != count(); ++i) {
1649                 if (GuiWorkArea * wa = workArea(i))
1650                         wa->setFullScreen(full_screen);
1651         }
1652
1653         if (lyxrc.full_screen_tabbar)
1654                 showBar(!full_screen && count() > 1);
1655         else
1656                 showBar(count() > 1);
1657 }
1658
1659
1660 void TabWorkArea::showBar(bool show)
1661 {
1662         tabBar()->setEnabled(show);
1663         tabBar()->setVisible(show);
1664         closeBufferButton->setVisible(show && lyxrc.single_close_tab_button);
1665         setTabsClosable(!lyxrc.single_close_tab_button);
1666 }
1667
1668
1669 GuiWorkAreaContainer * TabWorkArea::widget(int index) const
1670 {
1671         QWidget * w = QTabWidget::widget(index);
1672         if (!w)
1673                 return nullptr;
1674         GuiWorkAreaContainer * wac = dynamic_cast<GuiWorkAreaContainer *>(w);
1675         LATTEST(wac);
1676         return wac;
1677 }
1678
1679
1680 GuiWorkAreaContainer * TabWorkArea::currentWidget() const
1681 {
1682         return widget(currentIndex());
1683 }
1684
1685
1686 GuiWorkArea * TabWorkArea::workArea(int index) const
1687 {
1688         GuiWorkAreaContainer * w = widget(index);
1689         if (!w)
1690                 return nullptr;
1691         return w->workArea();
1692 }
1693
1694
1695 GuiWorkArea * TabWorkArea::currentWorkArea() const
1696 {
1697         return workArea(currentIndex());
1698 }
1699
1700
1701 GuiWorkArea * TabWorkArea::workArea(Buffer & buffer) const
1702 {
1703         // FIXME: this method doesn't work if we have more than one work area
1704         // showing the same buffer.
1705         for (int i = 0; i != count(); ++i) {
1706                 GuiWorkArea * wa = workArea(i);
1707                 LASSERT(wa, return 0);
1708                 if (&wa->bufferView().buffer() == &buffer)
1709                         return wa;
1710         }
1711         return 0;
1712 }
1713
1714
1715 void TabWorkArea::closeAll()
1716 {
1717         while (count()) {
1718                 QWidget * wac = widget(0);
1719                 LASSERT(wac, return);
1720                 removeTab(0);
1721                 delete wac;
1722         }
1723 }
1724
1725
1726 int TabWorkArea::indexOfWorkArea(GuiWorkArea * w) const
1727 {
1728         for (int index = 0; index < count(); ++index)
1729                 if (workArea(index) == w)
1730                         return index;
1731         return -1;
1732 }
1733
1734
1735 bool TabWorkArea::setCurrentWorkArea(GuiWorkArea * work_area)
1736 {
1737         LASSERT(work_area, return false);
1738         int index = indexOfWorkArea(work_area);
1739         if (index == -1)
1740                 return false;
1741
1742         if (index == currentIndex())
1743                 // Make sure the work area is up to date.
1744                 on_currentTabChanged(index);
1745         else
1746                 // Switch to the work area.
1747                 setCurrentIndex(index);
1748         work_area->setFocus();
1749
1750         return true;
1751 }
1752
1753
1754 GuiWorkArea * TabWorkArea::addWorkArea(Buffer & buffer, GuiView & view)
1755 {
1756         GuiWorkArea * wa = new GuiWorkArea(buffer, view);
1757         GuiWorkAreaContainer * wac = new GuiWorkAreaContainer(wa);
1758         wa->setUpdatesEnabled(false);
1759         // Hide tabbar if there's no tab (avoid a resize and a flashing tabbar
1760         // when hiding it again below).
1761         if (!(currentWorkArea() && currentWorkArea()->isFullScreen()))
1762                 showBar(count() > 0);
1763         addTab(wac, wa->windowTitle());
1764         QObject::connect(wa, SIGNAL(titleChanged(GuiWorkArea *)),
1765                 this, SLOT(updateTabTexts()));
1766         if (currentWorkArea() && currentWorkArea()->isFullScreen())
1767                 setFullScreen(true);
1768         else
1769                 // Hide tabbar if there's only one tab.
1770                 showBar(count() > 1);
1771
1772         updateTabTexts();
1773
1774         return wa;
1775 }
1776
1777
1778 bool TabWorkArea::removeWorkArea(GuiWorkArea * work_area)
1779 {
1780         LASSERT(work_area, return false);
1781         int index = indexOfWorkArea(work_area);
1782         if (index == -1)
1783                 return false;
1784
1785         work_area->setUpdatesEnabled(false);
1786         QWidget * wac = widget(index);
1787         removeTab(index);
1788         delete wac;
1789
1790         if (count()) {
1791                 // make sure the next work area is enabled.
1792                 currentWidget()->setUpdatesEnabled(true);
1793                 if (currentWorkArea() && currentWorkArea()->isFullScreen())
1794                         setFullScreen(true);
1795                 else
1796                         // Show tabbar only if there's more than one tab.
1797                         showBar(count() > 1);
1798         } else
1799                 lastWorkAreaRemoved();
1800
1801         updateTabTexts();
1802
1803         return true;
1804 }
1805
1806
1807 void TabWorkArea::on_currentTabChanged(int i)
1808 {
1809         // returns e.g. on application destruction
1810         if (i == -1)
1811                 return;
1812         GuiWorkArea * wa = workArea(i);
1813         LASSERT(wa, return);
1814         wa->setUpdatesEnabled(true);
1815         wa->scheduleRedraw(true);
1816         wa->setFocus();
1817         ///
1818         currentWorkAreaChanged(wa);
1819
1820         LYXERR(Debug::GUI, "currentTabChanged " << i
1821                 << " File: " << wa->bufferView().buffer().absFileName());
1822 }
1823
1824
1825 void TabWorkArea::closeCurrentBuffer()
1826 {
1827         GuiWorkArea * wa;
1828         if (clicked_tab_ == -1)
1829                 wa = currentWorkArea();
1830         else {
1831                 wa = workArea(clicked_tab_);
1832                 LASSERT(wa, return);
1833         }
1834         wa->view().closeWorkArea(wa);
1835 }
1836
1837
1838 void TabWorkArea::hideCurrentTab()
1839 {
1840         GuiWorkArea * wa;
1841         if (clicked_tab_ == -1)
1842                 wa = currentWorkArea();
1843         else {
1844                 wa = workArea(clicked_tab_);
1845                 LASSERT(wa, return);
1846         }
1847         wa->view().hideWorkArea(wa);
1848 }
1849
1850
1851 void TabWorkArea::closeTab(int index)
1852 {
1853         on_currentTabChanged(index);
1854         GuiWorkArea * wa;
1855         if (index == -1)
1856                 wa = currentWorkArea();
1857         else {
1858                 wa = workArea(index);
1859                 LASSERT(wa, return);
1860         }
1861         wa->view().closeWorkArea(wa);
1862 }
1863
1864
1865 ///
1866 class DisplayPath {
1867 public:
1868         /// make vector happy
1869         DisplayPath() : tab_(-1), dottedPrefix_(false) {}
1870         ///
1871         DisplayPath(int tab, FileName const & filename)
1872                 : tab_(tab)
1873         {
1874                 filename_ = (filename.extension() == "lyx") ?
1875                         toqstr(filename.onlyFileNameWithoutExt())
1876                         : toqstr(filename.onlyFileName());
1877                 postfix_ = toqstr(filename.absoluteFilePath()).
1878                         split("/", QString::SkipEmptyParts);
1879                 postfix_.pop_back();
1880                 abs_ = toqstr(filename.absoluteFilePath());
1881                 dottedPrefix_ = false;
1882         }
1883
1884         /// Absolute path for debugging.
1885         QString abs() const
1886         {
1887                 return abs_;
1888         }
1889         /// Add the first segment from the postfix or three dots to the prefix.
1890         /// Merge multiple dot tripples. In fact dots are added lazily, i.e. only
1891         /// when really needed.
1892         void shiftPathSegment(bool dotted)
1893         {
1894                 if (postfix_.count() <= 0)
1895                         return;
1896
1897                 if (!dotted) {
1898                         if (dottedPrefix_ && !prefix_.isEmpty())
1899                                 prefix_ += ellipsisSlash_;
1900                         prefix_ += postfix_.front() + "/";
1901                 }
1902                 dottedPrefix_ = dotted && !prefix_.isEmpty();
1903                 postfix_.pop_front();
1904         }
1905         ///
1906         QString displayString() const
1907         {
1908                 if (prefix_.isEmpty())
1909                         return filename_;
1910
1911                 bool dots = dottedPrefix_ || !postfix_.isEmpty();
1912                 return prefix_ + (dots ? ellipsisSlash_ : "") + filename_;
1913         }
1914         ///
1915         QString forecastPathString() const
1916         {
1917                 if (postfix_.count() == 0)
1918                         return displayString();
1919
1920                 return prefix_
1921                         + (dottedPrefix_ ? ellipsisSlash_ : "")
1922                         + postfix_.front() + "/";
1923         }
1924         ///
1925         bool final() const { return postfix_.empty(); }
1926         ///
1927         int tab() const { return tab_; }
1928
1929 private:
1930         /// ".../"
1931         static QString const ellipsisSlash_;
1932         ///
1933         QString prefix_;
1934         ///
1935         QStringList postfix_;
1936         ///
1937         QString filename_;
1938         ///
1939         QString abs_;
1940         ///
1941         int tab_;
1942         ///
1943         bool dottedPrefix_;
1944 };
1945
1946
1947 QString const DisplayPath::ellipsisSlash_ = QString(QChar(0x2026)) + "/";
1948
1949
1950 ///
1951 bool operator<(DisplayPath const & a, DisplayPath const & b)
1952 {
1953         return a.displayString() < b.displayString();
1954 }
1955
1956 ///
1957 bool operator==(DisplayPath const & a, DisplayPath const & b)
1958 {
1959         return a.displayString() == b.displayString();
1960 }
1961
1962
1963 void TabWorkArea::updateTabTexts()
1964 {
1965         size_t n = count();
1966         if (n == 0)
1967                 return;
1968         std::list<DisplayPath> paths;
1969         typedef std::list<DisplayPath>::iterator It;
1970
1971         // collect full names first: path into postfix, empty prefix and
1972         // filename without extension
1973         for (size_t i = 0; i < n; ++i) {
1974                 GuiWorkArea * i_wa = workArea(i);
1975                 FileName const fn = i_wa->bufferView().buffer().fileName();
1976                 paths.push_back(DisplayPath(i, fn));
1977         }
1978
1979         // go through path segments and see if it helps to make the path more unique
1980         bool somethingChanged = true;
1981         bool allFinal = false;
1982         while (somethingChanged && !allFinal) {
1983                 // adding path segments changes order
1984                 paths.sort();
1985
1986                 LYXERR(Debug::GUI, "updateTabTexts() iteration start");
1987                 somethingChanged = false;
1988                 allFinal = true;
1989
1990                 // find segments which are not unique (i.e. non-atomic)
1991                 It it = paths.begin();
1992                 It segStart = it;
1993                 QString segString = it->displayString();
1994                 for (; it != paths.end(); ++it) {
1995                         // look to the next item
1996                         It next = it;
1997                         ++next;
1998
1999                         // final?
2000                         allFinal = allFinal && it->final();
2001
2002                         LYXERR(Debug::GUI, "it = " << it->abs()
2003                                << " => " << it->displayString());
2004
2005                         // still the same segment?
2006                         QString nextString;
2007                         if ((next != paths.end()
2008                              && (nextString = next->displayString()) == segString))
2009                                 continue;
2010                         LYXERR(Debug::GUI, "segment ended");
2011
2012                         // only a trivial one with one element?
2013                         if (it == segStart) {
2014                                 // start new segment
2015                                 segStart = next;
2016                                 segString = nextString;
2017                                 continue;
2018                         }
2019
2020                         // We found a non-atomic segment
2021                         // We know that segStart <= it < next <= paths.end().
2022                         // The assertion below tells coverity about it.
2023                         LATTEST(segStart != paths.end());
2024                         QString dspString = segStart->forecastPathString();
2025                         LYXERR(Debug::GUI, "first forecast found for "
2026                                << segStart->abs() << " => " << dspString);
2027                         It sit = segStart;
2028                         ++sit;
2029                         // Shift path segments and hope for the best
2030                         // that it makes the path more unique.
2031                         somethingChanged = true;
2032                         bool moreUnique = false;
2033                         for (; sit != next; ++sit) {
2034                                 if (sit->forecastPathString() != dspString) {
2035                                         LYXERR(Debug::GUI, "different forecast found for "
2036                                                 << sit->abs() << " => " << sit->forecastPathString());
2037                                         moreUnique = true;
2038                                         break;
2039                                 }
2040                                 LYXERR(Debug::GUI, "same forecast found for "
2041                                         << sit->abs() << " => " << dspString);
2042                         }
2043
2044                         // if the path segment helped, add it. Otherwise add dots
2045                         bool dots = !moreUnique;
2046                         LYXERR(Debug::GUI, "using dots = " << dots);
2047                         for (sit = segStart; sit != next; ++sit) {
2048                                 sit->shiftPathSegment(dots);
2049                                 LYXERR(Debug::GUI, "shifting "
2050                                         << sit->abs() << " => " << sit->displayString());
2051                         }
2052
2053                         // start new segment
2054                         segStart = next;
2055                         segString = nextString;
2056                 }
2057         }
2058
2059         // set new tab titles
2060         for (It it = paths.begin(); it != paths.end(); ++it) {
2061                 int const tab_index = it->tab();
2062                 Buffer const & buf = workArea(tab_index)->bufferView().buffer();
2063                 QString tab_text = it->displayString().replace("&", "&&");
2064                 if (!buf.fileName().empty() && !buf.isClean())
2065                         tab_text += "*";
2066                 QString tab_tooltip = it->abs();
2067                 if (buf.hasReadonlyFlag()) {
2068                         setTabIcon(tab_index, QIcon(getPixmap("images/", "emblem-readonly", "svgz,png")));
2069                         tab_tooltip = qt_("%1 (read only)").arg(tab_tooltip);
2070                 } else
2071                         setTabIcon(tab_index, QIcon());
2072                 if (buf.notifiesExternalModification()) {
2073                         QString const warn = qt_("%1 (modified externally)");
2074                         tab_tooltip = warn.arg(tab_tooltip);
2075                         tab_text += QChar(0x26a0);
2076                 }
2077                 setTabText(tab_index, tab_text);
2078                 setTabToolTip(tab_index, tab_tooltip);
2079         }
2080 }
2081
2082
2083 void TabWorkArea::showContextMenu(const QPoint & pos)
2084 {
2085         // which tab?
2086         clicked_tab_ = static_cast<DragTabBar *>(tabBar())->tabAt(pos);
2087         if (clicked_tab_ == -1)
2088                 return;
2089
2090         // show tab popup
2091         QMenu popup;
2092         popup.addAction(QIcon(getPixmap("images/", "hidetab", "svgz,png")),
2093                 qt_("Hide tab"), this, SLOT(hideCurrentTab()));
2094         popup.addAction(QIcon(getPixmap("images/", "closetab", "svgz,png")),
2095                 qt_("Close tab"), this, SLOT(closeCurrentBuffer()));
2096         popup.exec(tabBar()->mapToGlobal(pos));
2097
2098         clicked_tab_ = -1;
2099 }
2100
2101
2102 void TabWorkArea::moveTab(int fromIndex, int toIndex)
2103 {
2104         QWidget * w = widget(fromIndex);
2105         QIcon icon = tabIcon(fromIndex);
2106         QString text = tabText(fromIndex);
2107
2108         setCurrentIndex(fromIndex);
2109         removeTab(fromIndex);
2110         insertTab(toIndex, w, icon, text);
2111         setCurrentIndex(toIndex);
2112 }
2113
2114
2115 DragTabBar::DragTabBar(QWidget* parent)
2116         : QTabBar(parent)
2117 {
2118         setAcceptDrops(true);
2119         setTabsClosable(!lyxrc.single_close_tab_button);
2120 }
2121
2122
2123 void DragTabBar::mousePressEvent(QMouseEvent * event)
2124 {
2125         if (event->button() == Qt::LeftButton)
2126                 dragStartPos_ = event->pos();
2127         QTabBar::mousePressEvent(event);
2128 }
2129
2130
2131 void DragTabBar::mouseMoveEvent(QMouseEvent * event)
2132 {
2133         // If the left button isn't pressed anymore then return
2134         if (!(event->buttons() & Qt::LeftButton))
2135                 return;
2136
2137         // If the distance is too small then return
2138         if ((event->pos() - dragStartPos_).manhattanLength()
2139             < QApplication::startDragDistance())
2140                 return;
2141
2142         // did we hit something after all?
2143         int tab = tabAt(dragStartPos_);
2144         if (tab == -1)
2145                 return;
2146
2147         // simulate button release to remove highlight from button
2148         int i = currentIndex();
2149         QMouseEvent me(QEvent::MouseButtonRelease, dragStartPos_,
2150                 event->button(), event->buttons(), 0);
2151         QTabBar::mouseReleaseEvent(&me);
2152         setCurrentIndex(i);
2153
2154         // initiate Drag
2155         QDrag * drag = new QDrag(this);
2156         QMimeData * mimeData = new QMimeData;
2157         // a crude way to distinguish tab-reodering drops from other ones
2158         mimeData->setData("action", "tab-reordering") ;
2159         drag->setMimeData(mimeData);
2160
2161         // get tab pixmap as cursor
2162         QRect r = tabRect(tab);
2163         QPixmap pixmap(r.size());
2164         render(&pixmap, - r.topLeft());
2165         drag->setPixmap(pixmap);
2166         drag->exec();
2167 }
2168
2169
2170 void DragTabBar::dragEnterEvent(QDragEnterEvent * event)
2171 {
2172         // Only accept if it's an tab-reordering request
2173         QMimeData const * m = event->mimeData();
2174         QStringList formats = m->formats();
2175         if (formats.contains("action")
2176             && m->data("action") == "tab-reordering")
2177                 event->acceptProposedAction();
2178 }
2179
2180
2181 void DragTabBar::dropEvent(QDropEvent * event)
2182 {
2183         int fromIndex = tabAt(dragStartPos_);
2184         int toIndex = tabAt(event->pos());
2185
2186         // Tell interested objects that
2187         if (fromIndex != toIndex)
2188                 tabMoveRequested(fromIndex, toIndex);
2189         event->acceptProposedAction();
2190 }
2191
2192
2193 GuiWorkAreaContainer::GuiWorkAreaContainer(GuiWorkArea * wa, QWidget * parent)
2194         : QWidget(parent), wa_(wa)
2195 {
2196         LASSERT(wa, return);
2197         Ui::WorkAreaUi::setupUi(this);
2198         layout()->addWidget(wa);
2199         connect(wa, SIGNAL(titleChanged(GuiWorkArea *)),
2200                 this, SLOT(updateDisplay()));
2201         connect(reloadPB, SIGNAL(clicked()), this, SLOT(reload()));
2202         connect(ignorePB, SIGNAL(clicked()), this, SLOT(ignore()));
2203         setMessageColour({notificationFrame}, {reloadPB, ignorePB});
2204         updateDisplay();
2205 }
2206
2207
2208 void GuiWorkAreaContainer::updateDisplay()
2209 {
2210         Buffer const & buf = wa_->bufferView().buffer();
2211         notificationFrame->setHidden(!buf.notifiesExternalModification());
2212         QString const label = qt_("<b>The file %1 changed on disk.</b>")
2213                 .arg(toqstr(buf.fileName().displayName()));
2214         externalModificationLabel->setText(label);
2215 }
2216
2217
2218 void GuiWorkAreaContainer::dispatch(FuncRequest f) const
2219 {
2220         lyx::dispatch(FuncRequest(LFUN_BUFFER_SWITCH,
2221                                   wa_->bufferView().buffer().absFileName()));
2222         lyx::dispatch(f);
2223 }
2224
2225
2226 void GuiWorkAreaContainer::reload() const
2227 {
2228         dispatch(FuncRequest(LFUN_BUFFER_RELOAD));
2229 }
2230
2231
2232 void GuiWorkAreaContainer::ignore() const
2233 {
2234         dispatch(FuncRequest(LFUN_BUFFER_EXTERNAL_MODIFICATION_CLEAR));
2235 }
2236
2237
2238 void GuiWorkAreaContainer::mouseDoubleClickEvent(QMouseEvent * event)
2239 {
2240         // prevent TabWorkArea from opening a new buffer on double click
2241         event->accept();
2242 }
2243
2244
2245 } // namespace frontend
2246 } // namespace lyx
2247
2248 #include "moc_GuiWorkArea.cpp"