| 1067 | } |
| 1068 | |
| 1069 | QString Render::getCurrentPagesInformation() |
| 1070 | { |
| 1071 | QString s = QString::number(currentIndex + 1); |
| 1072 | if (doublePage && (currentIndex + 1 < (int)comic->numPages())) { |
| 1073 | if (currentPageIsDoublePage()) { |
| 1074 | if (doubleMangaPage) |
| 1075 | s = QString::number(currentIndex + 2) + "-" + s; |
| 1076 | else |
| 1077 | s += "-" + QString::number(currentIndex + 2); |
| 1078 | } |
| 1079 | } |
| 1080 | s += "/" + QString::number(comic->numPages()); |
| 1081 | return s; |
| 1082 | } |
| 1083 | |
| 1084 | void Render::setBookmark() |
| 1085 | { |
no test coverage detected