| 184 | } |
| 185 | |
| 186 | QString WebView::getContextMenuScript(const QPoint &pos) |
| 187 | { |
| 188 | QString scriptCopy = m_contextMenuHelper; |
| 189 | QPointF posF(pos); |
| 190 | return scriptCopy.arg(QString::number(posF.x() / zoomFactor())).arg(QString::number(posF.y() / zoomFactor())); |
| 191 | } |
| 192 | |
| 193 | void WebView::showContextMenu(const QPoint &globalPos, const QPoint &relativePos) |
| 194 | { |
nothing calls this directly
no outgoing calls
no test coverage detected