]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiWorkArea.cpp
do what the FIXME suggested
[lyx.git] / src / frontends / qt4 / GuiWorkArea.cpp
index 50dad561e77318824d009d503667e20c594df0f7..60a2de62657a62234c4abfa1f7211ba94ead1de6 100644 (file)
@@ -47,6 +47,9 @@
 #include <QContextMenuEvent>
 #include <QInputContext>
 #include <QHelpEvent>
+#ifdef Q_WS_MAC
+#include <QMacStyle>
+#endif
 #include <QMainWindow>
 #include <QPainter>
 #include <QPalette>
@@ -68,6 +71,7 @@ int const CursorWidth = 2;
 #else
 int const CursorWidth = 1;
 #endif
+int const TabIndicatorWidth = 3;
 
 #undef KeyPress
 #undef NoModifier 
@@ -121,44 +125,71 @@ public:
 
        void draw(QPainter & painter)
        {
-               if (show_ && rect_.isValid()) {
-                       switch (shape_) {
-                       case L_SHAPE:
-                               painter.fillRect(rect_.x(), rect_.y(), CursorWidth, rect_.height(), color_);
-                               painter.setPen(color_);
-                               painter.drawLine(rect_.bottomLeft().x() + CursorWidth, rect_.bottomLeft().y(),
-                                                                                                rect_.bottomRight().x(), rect_.bottomLeft().y());
-                               break;
-                       
-                       case REVERSED_L_SHAPE:
-                               painter.fillRect(rect_.x() + rect_.height() / 3, rect_.y(), CursorWidth, rect_.height(), color_);
-                               painter.setPen(color_);
-                               painter.drawLine(rect_.bottomRight().x() - CursorWidth, rect_.bottomLeft().y(),
-                                                                                                        rect_.bottomLeft().x(), rect_.bottomLeft().y());
-                               break;
-                                       
-                       default:
-                               painter.fillRect(rect_, color_);
-                               break;
+               if (!show_ || !rect_.isValid())
+                       return;
+               
+               int y = rect_.top();
+               int l = x_ - rect_.left();
+               int r = rect_.right() - x_;
+               int bot = rect_.bottom();
+
+               // draw vertica linel
+               painter.fillRect(x_, y, CursorWidth, rect_.height(), color_);
+               
+               // draw RTL/LTR indication
+               painter.setPen(color_);
+               if (l_shape_) {
+                       if (rtl_)
+                               painter.drawLine(x_, bot, x_ - l, bot);
+                       else
+                               painter.drawLine(x_, bot, x_ + CursorWidth + r, bot);
+               }
+               
+               // draw completion triangle
+               if (completable_) {
+                       int m = y + rect_.height() / 2;
+                       int d = TabIndicatorWidth - 1;
+                       if (rtl_) {
+                               painter.drawLine(x_ - 1, m - d, x_ - 1 - d, m);
+                               painter.drawLine(x_ - 1, m + d, x_ - 1 - d, m);
+                       } else {
+                               painter.drawLine(x_ + CursorWidth, m - d, x_ + CursorWidth + d, m);
+                               painter.drawLine(x_ + CursorWidth, m + d, x_ + CursorWidth + d, m);
                        }
                }
        }
 
-       void update(int x, int y, int h, CursorShape shape)
+       void update(int x, int y, int h, bool l_shape,
+               bool rtl, bool completable)
        {
                color_ = guiApp->colorCache().get(Color_cursor);
-               shape_ = shape;
-               switch (shape) {
-               case L_SHAPE:
-                       rect_ = QRect(x, y, CursorWidth + h / 3, h);
-                       break;
-               case REVERSED_L_SHAPE:
-                       rect_ = QRect(x - h / 3, y, CursorWidth + h / 3, h);
-                       break;
-               default: 
-                       rect_ = QRect(x, y, CursorWidth, h);
-                       break;
+               l_shape_ = l_shape;
+               rtl_ = rtl;
+               completable_ = completable;
+               x_ = x;
+               
+               // extension to left and right
+               int l = 0;
+               int r = 0;
+
+               // RTL/LTR indication
+               if (l_shape_) {
+                       if (rtl)
+                               l += h / 3;
+                       else
+                               r += h / 3;
                }
+               
+               // completion triangle
+               if (completable_) {
+                       if (rtl)
+                               l = max(l, TabIndicatorWidth);
+                       else
+                               r = max(r, TabIndicatorWidth);
+               }
+
+               // compute overall rectangle
+               rect_ = QRect(x - l, y, CursorWidth + r + l, h);
        }
 
        void show(bool set_show = true) { show_ = set_show; }
@@ -167,14 +198,20 @@ public:
        QRect const & rect() { return rect_; }
 
 private:
-       ///
-       CursorShape shape_;
+       /// cursor is in RTL or LTR text
+       bool rtl_;
+       /// indication for RTL or LTR
+       bool l_shape_;
+       /// triangle to show that a completion is available
+       bool completable_;
        ///
        bool show_;
        ///
        QColor color_;
-       ///
+       /// rectangle, possibly with l_shape and completion triangle
        QRect rect_;
+       /// x position (were the vertical line is drawn)
+       int x_;
 };
 
 
@@ -214,6 +251,11 @@ GuiWorkArea::GuiWorkArea(Buffer & buffer, GuiView & lv)
        setAcceptDrops(true);
        setMouseTracking(true);
        setMinimumSize(100, 70);
+#ifdef Q_WS_MACX
+       setFrameStyle(QFrame::NoFrame); 
+#else
+       setFrameStyle(QFrame::Box);
+#endif
        updateWindowTitle();
 
        viewport()->setAutoFillBackground(false);
@@ -264,7 +306,11 @@ void GuiWorkArea::setFullScreen(bool full_screen)
                if (lyxrc.full_screen_scrollbar)
                        setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
        } else {
+#ifdef Q_WS_MACX
+               setFrameStyle(QFrame::NoFrame); 
+#else
                setFrameStyle(QFrame::Box);
+#endif
                setVerticalScrollBarPolicy(Qt::ScrollBarAsNeeded);
        }
 }
@@ -428,22 +474,19 @@ void GuiWorkArea::showCursor()
        if (cursor_visible_)
                return;
 
-       CursorShape shape = BAR_SHAPE;
-
+       // RTL or not RTL
+       bool l_shape = false;
        Font const & realfont = buffer_view_->cursor().real_current_font;
        BufferParams const & bp = buffer_view_->buffer().params();
        bool const samelang = realfont.language() == bp.language;
        bool const isrtl = realfont.isVisibleRightToLeft();
 
-       if (!samelang || isrtl != bp.language->rightToLeft()) {
-               shape = L_SHAPE;
-               if (isrtl)
-                       shape = REVERSED_L_SHAPE;
-       }
+       if (!samelang || isrtl != bp.language->rightToLeft())
+               l_shape = true;
 
        // The ERT language hack needs fixing up
        if (realfont.language() == latex_language)
-               shape = BAR_SHAPE;
+               l_shape = false;
 
        Font const font = buffer_view_->cursor().getFont();
        FontMetrics const & fm = theFontMetrics(font);
@@ -462,9 +505,12 @@ void GuiWorkArea::showCursor()
                cursorInView = false;
 
        // show cursor on screen
+       bool completable = completer_.completionAvailable()
+               && !completer_.popupVisible()
+               && !completer_.inlineVisible();
        if (cursorInView) {
                cursor_visible_ = true;
-               showCursor(x, y, h, shape);
+               showCursor(x, y, h, l_shape, isrtl, completable);
        }
 }
 
@@ -578,7 +624,9 @@ void GuiWorkArea::contextMenuEvent(QContextMenuEvent * e)
 
 void GuiWorkArea::focusInEvent(QFocusEvent * e)
 {
-       lyx_view_->setCurrentWorkArea(this);
+       if (lyx_view_->currentWorkArea() != this)
+               lyx_view_->setCurrentWorkArea(this);
+
        // Repaint the whole screen.
        // Note: this is different from redraw() as only the backing pixmap
        // will be redrawn, which is cheap.
@@ -845,7 +893,8 @@ void GuiWorkArea::updateScreen()
 }
 
 
-void GuiWorkArea::showCursor(int x, int y, int h, CursorShape shape)
+void GuiWorkArea::showCursor(int x, int y, int h,
+       bool l_shape, bool rtl, bool completable)
 {
        if (schedule_redraw_) {
                buffer_view_->updateMetrics();
@@ -858,7 +907,7 @@ void GuiWorkArea::showCursor(int x, int y, int h, CursorShape shape)
                return;
        }
 
-       cursor_->update(x, y, h, shape);
+       cursor_->update(x, y, h, l_shape, rtl, completable);
        cursor_->show();
        viewport()->update(cursor_->rect());
 }
@@ -1066,14 +1115,52 @@ void GuiWorkArea::setReadOnly(bool)
 }
 
 
+bool GuiWorkArea::isFullScreen()
+{
+       return lyx_view_ && lyx_view_->isFullScreen();
+}
+
+
 ////////////////////////////////////////////////////////////////////
 //
 // TabWorkArea 
 //
 ////////////////////////////////////////////////////////////////////
 
+#ifdef Q_WS_MACX
+class NoTabFrameMacStyle : public QMacStyle {
+public:
+       ///
+       QRect subElementRect(SubElement element, const QStyleOption * option,
+                            const QWidget * widget = 0 ) const 
+       {
+               QRect rect = QMacStyle::subElementRect(element, option, widget);
+               bool noBar = static_cast<QTabWidget const *>(widget)->count() <= 1;
+               
+               // The Qt Mac style puts the contents into a 3 pixel wide box
+               // which looks very ugly and not like other Mac applications.
+               // Hence we remove this here, and moreover the 16 pixel round
+               // frame above if the tab bar is hidden.
+               if (element == QStyle::SE_TabWidgetTabContents) {
+                       rect.adjust(- rect.left(), 0, rect.left(), 0);
+                       if (noBar)
+                               rect.setTop(0);
+               }
+
+               return rect;
+       }
+};
+
+NoTabFrameMacStyle noTabFramemacStyle;
+#endif
+
+
 TabWorkArea::TabWorkArea(QWidget * parent) : QTabWidget(parent)
 {
+#ifdef Q_WS_MACX
+       setStyle(&noTabFramemacStyle);
+#endif
+
        QPalette pal = palette();
        pal.setColor(QPalette::Active, QPalette::Button,
                pal.color(QPalette::Active, QPalette::Window));
@@ -1086,7 +1173,7 @@ TabWorkArea::TabWorkArea(QWidget * parent) : QTabWidget(parent)
                this, SLOT(on_currentTabChanged(int)));
 
        QToolButton * closeBufferButton = new QToolButton(this);
-    closeBufferButton->setPalette(pal);
+       closeBufferButton->setPalette(pal);
        // FIXME: rename the icon to closebuffer.png
        closeBufferButton->setIcon(QIcon(":/images/closetab.png"));
        closeBufferButton->setText("Close File");
@@ -1099,7 +1186,7 @@ TabWorkArea::TabWorkArea(QWidget * parent) : QTabWidget(parent)
        setCornerWidget(closeBufferButton, Qt::TopRightCorner);
 
        QToolButton * closeTabButton = new QToolButton(this);
-    closeTabButton->setPalette(pal);
+       closeTabButton->setPalette(pal);
        closeTabButton->setIcon(QIcon(":/images/hidetab.png"));
        closeTabButton->setText("Hide tab");
        closeTabButton->setAutoRaise(true);
@@ -1192,12 +1279,17 @@ GuiWorkArea * TabWorkArea::addWorkArea(Buffer & buffer, GuiView & view)
        wa->setUpdatesEnabled(false);
        // Hide tabbar if there's no tab (avoid a resize and a flashing tabbar
        // when hiding it again below).
-       showBar(count() > 0);
+       if (!(currentWorkArea() && currentWorkArea()->isFullScreen()))
+               showBar(count() > 0);
        addTab(wa, wa->windowTitle());
        QObject::connect(wa, SIGNAL(titleChanged(GuiWorkArea *)),
                this, SLOT(updateTabText(GuiWorkArea *)));
-       // Hide tabbar if there's only one tab.
-       showBar(count() > 1);
+       if (currentWorkArea() && currentWorkArea()->isFullScreen())
+               setFullScreen(true);
+       else
+               // Hide tabbar if there's only one tab.
+               showBar(count() > 1);
+
        return wa;
 }
 
@@ -1216,8 +1308,11 @@ bool TabWorkArea::removeWorkArea(GuiWorkArea * work_area)
        if (count()) {
                // make sure the next work area is enabled.
                currentWidget()->setUpdatesEnabled(true);
-               // Hide tabbar if there's only one tab.
-               showBar(count() > 1);
+               if ((currentWorkArea() && currentWorkArea()->isFullScreen()))
+                       setFullScreen(true);
+               else
+                       // Hide tabbar if there's only one tab.
+                       showBar(count() > 1);
        }
        return true;
 }