| 523 | void PDFDocumentView::goPrev() { goToPage(_currentPage - 1, Qt::AlignBottom); } |
| 524 | void PDFDocumentView::goNext() { goToPage(_currentPage + 1, Qt::AlignTop); } |
| 525 | void PDFDocumentView::goFirst() { goToPage(static_cast<size_type>(0)); } |
| 526 | void PDFDocumentView::goLast() { goToPage(_lastPage - 1); } |
| 527 | |
| 528 | void PDFDocumentView::goPrevViewRect() { |