Re: [Interest] User interactions on webpage in Qtwebkit browser!

2012-07-20 Thread Lata Agrawal
Thanks Igor. I worked perfectly. Regards, Lata On 19 July 2012 19:06, Igor Grivko wrote: > Hi Lata, > > I can suggest to look at the > > void QWebView::linkClicked ( const QUrl & *url* ) > [signal] > > This signal is emitted whenever the user clicks on a link and the page's

Re: [Interest] User interactions on webpage in Qtwebkit browser!

2012-07-19 Thread Igor Grivko
Hi Lata, I can suggest to look at the voidQWebView::linkClicked( constQUrl &/url/)[signal] This signal is emitted whenever the user clicks on a link and the page's linkDelegationPolicy property is set to delegate the link handling for the specified/url/. *See also*QWebPage::linkDelega

[Interest] User interactions on webpage in Qtwebkit browser!

2012-07-19 Thread Lata Agrawal
Hi all, I have following requirement and I have no clue how to go ahead with this: I am loading a webpage in QtWebkit browser. I want to log all user interactions with the webpage like clicking on a button, image, text entry etc. I am not sure how to approach this problem. Any pointers would be h