| 4428 | |
| 4429 | |
| 4430 | void MainWindow::toggleFullscreen() { |
| 4431 | bool goingFullscreen = !isFullScreen(); |
| 4432 | if (goingFullscreen) { |
| 4433 | showFullScreen(); |
| 4434 | } else { |
| 4435 | showNormal(); |
| 4436 | } |
| 4437 | if (m_navigationBar) { |
| 4438 | m_navigationBar->setFullscreenChecked(goingFullscreen); |
| 4439 | } |
| 4440 | } |
| 4441 | |
| 4442 | void MainWindow::showJumpToPageDialog() { |
| 4443 | DocumentViewport* vp = currentViewport(); |
no test coverage detected