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