summaryrefslogtreecommitdiff
path: root/src/webview.cpp
diff options
context:
space:
mode:
authormegabigbug <megabigbug@arrakis.(none)>2009-12-24 14:30:43 +0100
committermegabigbug <megabigbug@arrakis.(none)>2009-12-24 14:30:43 +0100
commit69587a901be8391a59fa0665129d95cee3967775 (patch)
tree5830ba4b7d44768e7da9d65335ef28111827a1c9 /src/webview.cpp
parenthide tabbar in fulscreen mode (diff)
downloadrekonq-69587a901be8391a59fa0665129d95cee3967775.tar.xz
in fullscreen mode: show toolbar tabbar when mouse is on top of the screen
Diffstat (limited to 'src/webview.cpp')
-rw-r--r--src/webview.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/webview.cpp b/src/webview.cpp
index 462adc08..a35b7143 100644
--- a/src/webview.cpp
+++ b/src/webview.cpp
@@ -313,6 +313,17 @@ void WebView::mousePressEvent(QMouseEvent *event)
void WebView::mouseMoveEvent(QMouseEvent *event)
{
m_mousePos = event->pos();
+ if (Application::instance()->mainWindow()->isFullScreen())
+ {
+ if (event->pos().y()>=0 && event->pos().y()<=4)
+ {
+ Application::instance()->mainWindow()->setWidgetsVisible(true);
+ }
+ else
+ {
+ Application::instance()->mainWindow()->setWidgetsVisible(false);
+ }
+ }
KWebView::mouseMoveEvent(event);
}