[webkit-dev] Some Critical QtWebKit Doubts

Benjamin Meyer ben at meyerhome.net
Thu Sep 18 20:05:43 PDT 2008


On Sep 18, 2008, at 9:57 PM, cpanigrahi at mail.vavni.com wrote:

> Hi,
>
> I am going through the source code of "QtWebKit". Can anybody help  
> me to
> get the answers for my below doubts:
>
> Let us assume that I want to open a static simple HTML page i.e.,
> "index.html", which is located in my system locally. So, I requested  
> as
> below:
>
> view->load(QUrl("/usr/chandra/Desktop/index.html"));
>
> 1) Which class is locating and taking "index.html" page from my  
> Desktop?
>
> 2) Which class is sending my unparsed "index.html" page to "WebCore"
> module for parsing?
>
> 3) Which class is receiving unparsed "index.html" in "WebCore"  
> module to
> do parsing?
>
> 4) After completion of the parsing by "WebCore" module, where and  
> how can
> I find the generated parsed data format? Which object is holding the
> generated parsed data?
>
> 5) Where and How "Qt" is receiving the parsed data from "WebCore"  
> module?
>
> Thanks in advance.
>
> Regards
> Chandra

Those are not doubts, but questions.  Doubts are like:  I doubt you  
have gone to the webkit wiki where there is a doc that while it  
doesn't have much can get you started. http://trac.webkit.org/wiki/QtWebKitHacking

Short answer to #1 & #2 is that QNetworkAccessManager (from Qt) does  
that actual IO.  Valgrind, docs and code browsing are good for the rest.

-Benjamin Meyer


More information about the webkit-dev mailing list