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