Extending Qt WebKit: Difference between revisions

From Qt Wiki
Jump to navigation Jump to search
(Add "cleanup" tag)
(Cleanup)
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Cleanup | reason=Auto-imported from ExpressionEngine.}}
{{LangSwitch}}
 
[[Category:Developing with Qt::QtWebKit]]
[[Category:Developing with Qt::QtWebKit]]
[toc align_right="yes" depth="2"]
'''English''' [[Estenent_QtWebKit|Catalan]] [[Extendiendo_QtWebKit|Spanish]] "French":http://qt-devnet.developpez.com/tutoriels/qtwebkit/etendre-webkit/ [[Extending_Qt_WebKit_Japanese|日本語]]
= Extending Qt WebKit =
The QtWebKit module makes it possible for developers to extend and combine features found in Qt and WebKit. This hybrid C++ / Web design is becoming popular for a variety of reasons, including the fact that it allows teams to leverage the large community of skilled web developers.
The QtWebKit module makes it possible for developers to extend and combine features found in Qt and WebKit. This hybrid C++ / Web design is becoming popular for a variety of reasons, including the fact that it allows teams to leverage the large community of skilled web developers.


A series of articles from "Qt Quarterly":http://doc.qt.nokia.com/qq/index.html provide a good introduction to the technologies and processes involved.
A series of articles from Qt Quarterly provide a good introduction to the technologies and processes involved.


== Build network interfaces ==
== Build network interfaces ==


Hybrid designs often require some custom Qt code to handle network interactions. "Using a Simple Web Service with Qt ":http://doc.qt.nokia.com/qq/qq23-web-service.html uses the "MathTran":http://www.mathtran.org/ Web service to preview TeX markup entered in a text editor as an image. The 2007 article uses classes that are now obsolete, but it's worth a read.
Hybrid designs often require some custom Qt code to handle network interactions. [http://doc.qt.nokia.com/qq/qq23-web-service.html Using a Simple Web Service with Qt ] uses the [http://www.mathtran.org/ MathTran] Web service to preview TeX markup entered in a text editor as an image. The 2007 article uses classes that are now obsolete, but it's worth a read.


== Add Qt widgets to Web-centric user interfaces ==
== Add Qt widgets to Web-centric user interfaces ==


David Boddie's "Plugging into the Web":http://doc.qt.nokia.com/qq/qq26-webplugin.html shows how to include Qt widgets in Web-centric user interfaces. He begins with the basics of using a QWebView widget to display a Web page:
David Boddie's ''Plugging into the Web'' shows how to include Qt widgets in web-centric user interfaces. He begins with the basics of using a QWebView widget to display a Web page:


<code> int main(int argc, char *argv[])
<code>
{
int main(int argc, char *argv[]) {
QApplication app(argc, argv);
    QApplication app(argc, argv);
QWebView view;
    QWebView view;
view.load(QUrl("http://www.trolltech.com/"));
    view.load(QUrl("http://www.trolltech.com/"));
view.show();
    view.show();
return app.exec();
    return app.exec();
}
}
</code>
</code>


Line 34: Line 27:
== Adding New Protocols to QtWebKit ==
== Adding New Protocols to QtWebKit ==


David's follow-on "Adding New Protocols to QtWebKit":http://doc.qt.nokia.com/qq/32/qq32-webkit-protocols.html uses of Qt's network access API with WebKit to turn QWebView into a simple FTP client. Qt's network access API is a technology that aims to replace much, but not all, of the functionality provided by the QHttp and QFtp classes. Although the network access API is a Qt-specific technology, the QtWebKit module integrates this Qt technology with WebKit to enable customization of the browser engine by Qt application developers. It also means that we can control how the browser engine obtains and renders content.
David's follow-on ''Adding New Protocols to QtWebKit'' uses of Qt's network access API with WebKit to turn QWebView into a simple FTP client. Qt's network access API is a technology that aims to replace much, but not all, of the functionality provided by the QHttp and QFtp classes. Although the network access API is a Qt-specific technology, the QtWebKit module integrates this Qt technology with WebKit to enable customization of the browser engine by Qt application developers. It also means that we can control how the browser engine obtains and renders content.


Since QNetworkRequest and QNetworkReply are designed to provide a reusable abstraction for network operations, it seems obvious to use these classes to add FTP support to browsers written using QtWebKit. To do this, we first need to examine the network access classes before we see how the QtWebKit module uses them to manage network operations.
Since QNetworkRequest and QNetworkReply are designed to provide a reusable abstraction for network operations, it seems obvious to use these classes to add FTP support to browsers written using QtWebKit. To do this, we first need to examine the network access classes before we see how the QtWebKit module uses them to manage network operations.
Line 42: Line 35:
<code>
<code>
NetworkAccessManager::NetworkAccessManager(QNetworkAccessManager *manager, QObject *parent)
NetworkAccessManager::NetworkAccessManager(QNetworkAccessManager *manager, QObject *parent)
: QNetworkAccessManager(parent)
    : QNetworkAccessManager(parent)
{
{
setCache(manager->cache());
    setCache(manager->cache());
setCookieJar(manager->cookieJar());
    setCookieJar(manager->cookieJar());
setProxy(manager->proxy());
    setProxy(manager->proxy());
setProxyFactory(manager->proxyFactory());
    setProxyFactory(manager->proxyFactory());
}
}
</code>

Latest revision as of 17:52, 28 June 2015

En Ar Bg De El Es Fa Fi Fr Hi Hu It Ja Kn Ko Ms Nl Pl Pt Ru Sq Th Tr Uk Zh

The QtWebKit module makes it possible for developers to extend and combine features found in Qt and WebKit. This hybrid C++ / Web design is becoming popular for a variety of reasons, including the fact that it allows teams to leverage the large community of skilled web developers.

A series of articles from Qt Quarterly provide a good introduction to the technologies and processes involved.

Build network interfaces

Hybrid designs often require some custom Qt code to handle network interactions. Using a Simple Web Service with Qt uses the MathTran Web service to preview TeX markup entered in a text editor as an image. The 2007 article uses classes that are now obsolete, but it's worth a read.

Add Qt widgets to Web-centric user interfaces

David Boddie's Plugging into the Web shows how to include Qt widgets in web-centric user interfaces. He begins with the basics of using a QWebView widget to display a Web page:

int main(int argc, char *argv[]) {
    QApplication app(argc, argv);
    QWebView view;
    view.load(QUrl("http://www.trolltech.com/"));
    view.show();
    return app.exec();
}

and goes on to show how to use QWebPluginFactory to create a simple widget to display comma-separated-variable files.

Adding New Protocols to QtWebKit

David's follow-on Adding New Protocols to QtWebKit uses of Qt's network access API with WebKit to turn QWebView into a simple FTP client. Qt's network access API is a technology that aims to replace much, but not all, of the functionality provided by the QHttp and QFtp classes. Although the network access API is a Qt-specific technology, the QtWebKit module integrates this Qt technology with WebKit to enable customization of the browser engine by Qt application developers. It also means that we can control how the browser engine obtains and renders content.

Since QNetworkRequest and QNetworkReply are designed to provide a reusable abstraction for network operations, it seems obvious to use these classes to add FTP support to browsers written using QtWebKit. To do this, we first need to examine the network access classes before we see how the QtWebKit module uses them to manage network operations.

Here's how he replaces an existing network manager for a QWebPage by subclassing QNetworkAccessManager and reimplementing its createRequest() function to check for URLs with the ftp scheme.

NetworkAccessManager::NetworkAccessManager(QNetworkAccessManager *manager, QObject *parent)
    : QNetworkAccessManager(parent)
{
    setCache(manager->cache());
    setCookieJar(manager->cookieJar());
    setProxy(manager->proxy());
    setProxyFactory(manager->proxyFactory());
}