Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
II 有一个可编辑的 QWebView,并想获得 TextCursor 的位置(QPoint)。我搜索但只能找到光标(鼠标指针)的位置 webview-> cursor.pos(); 而这个职位不是我想要的。
有人有什么建议吗?
谢谢!
已解决,使用可编辑的 QWebView 捕获 QPoint TextCursor:
webview->page ()->inputMethodQuery(Qt::ImMicroFocus).toRect ().center()
(例如: center() )
感谢那些帮助过我的人!