mirror of
https://invent.kde.org/network/falkon.git
synced 2024-11-11 09:32:12 +01:00
Go to fullscreen in QWindoStateChangeEvent.
It is now possible to go properly to fullscreen also from Window Manager's actions/shortcuts.
This commit is contained in:
parent
e718e00e5c
commit
91c88872f8
|
@ -439,7 +439,7 @@ void QupZilla::setupMenu()
|
|||
#else
|
||||
m_actionShowFullScreen->setShortcut(QKeySequence("Ctrl+F11"));
|
||||
#endif
|
||||
connect(m_actionShowFullScreen, SIGNAL(triggered(bool)), MENU_RECEIVER, SLOT(fullScreen(bool)));
|
||||
connect(m_actionShowFullScreen, SIGNAL(triggered(bool)), MENU_RECEIVER, SLOT(toggleFullScreen(bool)));
|
||||
m_actionStop = new QAction(qIconProvider->standardIcon(QStyle::SP_BrowserStop), tr("&Stop"), MENU_RECEIVER);
|
||||
connect(m_actionStop, SIGNAL(triggered()), MENU_RECEIVER, SLOT(stop()));
|
||||
m_actionStop->setShortcut(QKeySequence("Esc"));
|
||||
|
@ -1743,15 +1743,18 @@ void QupZilla::hideNavigationSlot()
|
|||
}
|
||||
}
|
||||
|
||||
void QupZilla::fullScreen(bool make)
|
||||
bool QupZilla::event(QEvent* event)
|
||||
{
|
||||
if (make) {
|
||||
switch (event->type()) {
|
||||
case QEvent::WindowStateChange: {
|
||||
QWindowStateChangeEvent* ev = static_cast<QWindowStateChangeEvent*>(event);
|
||||
|
||||
if (!(ev->oldState() & Qt::WindowFullScreen) && windowState() & Qt::WindowFullScreen) {
|
||||
// Enter fullscreen
|
||||
m_windowStates = ev->oldState();
|
||||
|
||||
m_menuBarVisible = menuBar()->isVisible();
|
||||
m_statusBarVisible = statusBar()->isVisible();
|
||||
|
||||
m_windowStates = windowState();
|
||||
showFullScreen();
|
||||
|
||||
menuBar()->hide();
|
||||
statusBar()->hide();
|
||||
bookmarksToolbar()->hide();
|
||||
|
@ -1760,7 +1763,10 @@ void QupZilla::fullScreen(bool make)
|
|||
#ifndef Q_OS_MAC
|
||||
m_navigationBar->buttonSuperMenu()->hide();
|
||||
#endif
|
||||
|
||||
m_hideNavigationTimer->stop();
|
||||
m_actionShowFullScreen->setChecked(true);
|
||||
m_navigationBar->buttonExitFullscreen()->setVisible(true);
|
||||
emit setWebViewMouseTracking(true);
|
||||
#ifdef Q_OS_WIN
|
||||
if (m_usingTransparentBackground) {
|
||||
QtWin::extendFrameIntoClientArea(this, 0, 0, 0 , 0);
|
||||
|
@ -1768,8 +1774,8 @@ void QupZilla::fullScreen(bool make)
|
|||
}
|
||||
#endif
|
||||
}
|
||||
else {
|
||||
showNormal();
|
||||
else if (ev->oldState() & Qt::WindowFullScreen && !(windowState() & Qt::WindowFullScreen)) {
|
||||
// Leave fullscreen
|
||||
setWindowState(m_windowStates);
|
||||
|
||||
menuBar()->setVisible(m_menuBarVisible);
|
||||
|
@ -1779,19 +1785,33 @@ void QupZilla::fullScreen(bool make)
|
|||
#ifndef Q_OS_MAC
|
||||
m_navigationBar->buttonSuperMenu()->setVisible(!m_menuBarVisible);
|
||||
#endif
|
||||
|
||||
m_hideNavigationTimer->stop();
|
||||
m_actionShowFullScreen->setChecked(false);
|
||||
m_navigationBar->buttonExitFullscreen()->setVisible(false);
|
||||
emit setWebViewMouseTracking(false);
|
||||
#ifdef Q_OS_WIN
|
||||
if (m_usingTransparentBackground) {
|
||||
applyBlurToMainWindow(true);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
||||
m_hideNavigationTimer->stop();
|
||||
m_actionShowFullScreen->setChecked(make);
|
||||
m_navigationBar->buttonExitFullscreen()->setVisible(make);
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
emit setWebViewMouseTracking(make);
|
||||
return QMainWindow::event(event);
|
||||
}
|
||||
|
||||
void QupZilla::toggleFullScreen(bool make)
|
||||
{
|
||||
if (make) {
|
||||
showFullScreen();
|
||||
}
|
||||
else {
|
||||
showNormal();
|
||||
}
|
||||
}
|
||||
|
||||
void QupZilla::savePage()
|
||||
|
@ -1841,26 +1861,35 @@ void QupZilla::keyPressEvent(QKeyEvent* event)
|
|||
}
|
||||
|
||||
int number = -1;
|
||||
TabbedWebView* view = weView();
|
||||
|
||||
switch (event->key()) {
|
||||
case Qt::Key_Back:
|
||||
if (view) {
|
||||
weView()->back();
|
||||
event->accept();
|
||||
}
|
||||
break;
|
||||
|
||||
case Qt::Key_Forward:
|
||||
if (view) {
|
||||
weView()->forward();
|
||||
event->accept();
|
||||
}
|
||||
break;
|
||||
|
||||
case Qt::Key_Stop:
|
||||
if (view) {
|
||||
weView()->stop();
|
||||
event->accept();
|
||||
}
|
||||
break;
|
||||
|
||||
case Qt::Key_Refresh:
|
||||
if (view) {
|
||||
weView()->reload();
|
||||
event->accept();
|
||||
}
|
||||
break;
|
||||
|
||||
case Qt::Key_HomePage:
|
||||
|
@ -1933,7 +1962,7 @@ void QupZilla::keyPressEvent(QKeyEvent* event)
|
|||
break;
|
||||
|
||||
case Qt::Key_Equal:
|
||||
if (event->modifiers() == Qt::ControlModifier) {
|
||||
if (view && event->modifiers() == Qt::ControlModifier) {
|
||||
weView()->zoomIn();
|
||||
event->accept();
|
||||
}
|
||||
|
|
|
@ -196,7 +196,7 @@ private slots:
|
|||
void zoomIn();
|
||||
void zoomOut();
|
||||
void zoomReset();
|
||||
void fullScreen(bool make);
|
||||
void toggleFullScreen(bool make);
|
||||
void changeEncoding(QObject* obj = 0);
|
||||
|
||||
void triggerCaretBrowsing();
|
||||
|
@ -215,6 +215,7 @@ private slots:
|
|||
#endif
|
||||
|
||||
private:
|
||||
bool event(QEvent* event);
|
||||
void resizeEvent(QResizeEvent* event);
|
||||
void keyPressEvent(QKeyEvent* event);
|
||||
void keyReleaseEvent(QKeyEvent* event);
|
||||
|
|
|
@ -165,7 +165,7 @@ NavigationBar::NavigationBar(QupZilla* mainClass)
|
|||
connect(m_buttonHome, SIGNAL(middleMouseClicked()), p_QupZilla, SLOT(goHomeInNewTab()));
|
||||
connect(m_buttonHome, SIGNAL(controlClicked()), p_QupZilla, SLOT(goHomeInNewTab()));
|
||||
connect(m_buttonAddTab, SIGNAL(clicked()), p_QupZilla, SLOT(addTab()));
|
||||
connect(m_exitFullscreen, SIGNAL(clicked(bool)), p_QupZilla, SLOT(fullScreen(bool)));
|
||||
connect(m_exitFullscreen, SIGNAL(clicked(bool)), p_QupZilla, SLOT(toggleFullScreen(bool)));
|
||||
}
|
||||
|
||||
void NavigationBar::setSplitterSizes(int locationBar, int websearchBar)
|
||||
|
|
|
@ -101,7 +101,7 @@ void AddTabButton::dropEvent(QDropEvent* event)
|
|||
TabWidget::TabWidget(QupZilla* mainClass, QWidget* parent)
|
||||
: QTabWidget(parent)
|
||||
, p_QupZilla(mainClass)
|
||||
, m_lastTabIndex(0)
|
||||
, m_lastTabIndex(-1)
|
||||
, m_lastBackgroundTabIndex(-1)
|
||||
, m_isClosingToLastTabIndex(false)
|
||||
, m_isRestoringState(false)
|
||||
|
|
Loading…
Reference in New Issue
Block a user