| 81 | } |
| 82 | |
| 83 | void CodexInterface::forwardPage() { |
| 84 | if (m_currentCodex && m_currentPage < m_currentCodex->pageCount() - 1) { |
| 85 | ++m_currentPage; |
| 86 | setupPageText(); |
| 87 | } |
| 88 | } |
| 89 | |
| 90 | void CodexInterface::backwardPage() { |
| 91 | if (m_currentCodex && m_currentPage > 0) { |