| 1345 | } |
| 1346 | |
| 1347 | void PDFDocumentView::notifyTextSelectionChanged() |
| 1348 | { |
| 1349 | DocumentTool::Select * tool = dynamic_cast<DocumentTool::Select *>(getToolByType(DocumentTool::AbstractTool::Tool_Select)); |
| 1350 | if (!tool) return; |
| 1351 | emit textSelectionChanged(tool->isTextSelected()); |
| 1352 | } |
| 1353 | |
| 1354 | void PDFDocumentView::registerTool(std::unique_ptr<DocumentTool::AbstractTool> tool) |
| 1355 | { |
no test coverage detected