[SOLVED] How i get the position of textcursor in QWebView Editable

Issue

I I have an editable QWebView, and would like to get the position (QPoint) of TextCursor.
I searched but could only find the position of the cursor (mouse pointer)
webview-> cursor.pos ();
and this position is not what I want.

Anyone have any suggestions?

Thank you!

Solution

Resolved, to catch the QPoint TextCursor in editable QWebView is used:

webview->page ()->inputMethodQuery(Qt::ImMicroFocus).toRect ().center()

(for example: center() )

Thanks to those who helped me!

Answered By – FelipeMac

Answer Checked By – Gilberto Lyons (BugsFixing Admin)

Leave a Reply

Your email address will not be published. Required fields are marked *