qwebkit

How to get QWebKit to display image?

Okay, I have a Qt executable in the same directory as a file logo.png. I call the following: QString msg("<html><body><img src='logo.png' /></body></html>"); webView->setHtml(msg); where webview is the QWebKit pointer However, when I execute the program, the image does not display. I am executing the program from the directory that...

how to insert last input as first table record in QwebKit

Hello all im using Qwebkit and i like to be able to insert into html table each data input that comes last as first record ( ...my data ...) in to the table . here is my code this is only example : ui.webView->page()->mainFrame()->setHtml("<html><body><p>HTML Table Test</p>" "<table id=\"mainT...

QT and QwebKit can i load javascript file as resource file and use it ?

Hello all i wander if i can load javascript as resource file to use in QwebKit well its dont have to be resource file , i just looking for a method to emmbed js files in to my application ...

Qwebkit and flash player,why its not working in windows

Hello all im using Qwebkit and every time im loading youtube , its asking me to download the latest flash player plugin , even so i already installed the plugin and i can see youtube videos in firefox and explorer very well what is the deal with Qwebkit and Flash plagin ? ...

how to load page in the background in Qwebkit?

im using Qwebkit to load heavy html page but mean while i don't what to show the user blank page , how can i in QT load the html page in the background and in the mean while show another HTML page in the same QwebKit widget ? ...

Qt can i drag and drop from widget to Qwebkit ?

Im developing simple html editor and i like to be able to drap and drop from abutton that for example represent html text line and in the Qwebkit the html text line will be created does Qt support such action ? how should i approach such thing ? ...

Qt: can i load and manipulate the web page dom with QWebKit without rendering the page?

is there any way to load url and to manipulate the page dom without rendering the page i like to do it problematically without showing the page it self in the browser ...

Parsing html frame

Hi2all, what a good-way for parsing html page, by using QWebKit (lang cpp). I need to view frame, trimmed <div id="chat_wrapper"> *any_html_data* </div>? ...

Is it possible to embed html with js into QwebKit

will I need to load java script objects into QwebKit when my application is loading I can use setHtml with the html and the java script string formatted but its very hard to Maintain. My question is can I embed the html and java script as resource into Qwebkit ? Also I don’t what that the html and the javascript be available to the appli...