MagnifyingGlass ==============================
| 138 | // ============================== |
| 139 | // |
| 140 | MagnifyingGlass::MagnifyingGlass(PDFDocumentView * parent) : |
| 141 | AbstractTool(parent), |
| 142 | _magnifier(new PDFDocumentMagnifierView(parent)), |
| 143 | _started(false) |
| 144 | { |
| 145 | _cursor = QCursor(QIcon::fromTheme(QStringLiteral("tool-magnifier-cursor")).pixmap(32)); |
| 146 | } |
| 147 | |
| 148 | void MagnifyingGlass::setMagnifierShape(const MagnifierShape shape) |
| 149 | { |
nothing calls this directly
no outgoing calls
no test coverage detected