| 12 | } |
| 13 | |
| 14 | void ContinuousViewModel::reset() |
| 15 | { |
| 16 | numPagesValue = 0; |
| 17 | pageSizes.clear(); |
| 18 | defaultPageSize = QSize(800, 1200); |
| 19 | scrollYValue = 0; |
| 20 | anchorPage = -1; |
| 21 | layoutSnapshot = LayoutSnapshot(); |
| 22 | emit stateChanged(); |
| 23 | } |
| 24 | |
| 25 | void ContinuousViewModel::setNumPages(int count) |
| 26 | { |
nothing calls this directly
no test coverage detected