Languages/Python/PyKDE WebKit Tutorial/Part7

From KDE TechBase
Revision as of 20:50, 29 June 2011 by Neverendingo (talk | contribs) (Text replace - "</code>" to "</syntaxhighlight>")
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Finally we want to make our address bar do something.

We will use connect a Qt signal from the line edit into a method which will load the address.

Below self.window.show() add this connect line and the following method:

        QObject.connect(self.addressBar, SIGNAL("returnPressed()"), self.loadUrl)

    def loadUrl(self):
        print "Loading " + self.addressBar.text()
        self.web.load( QUrl(self.addressBar.text()) )

Qt signals are emitted by objects when interesting things happen. The QLineEdit documentation tells us about the returnPressed() signal. So we connect that from our addressBar line edit into a method we make called loadUrl() In C++ signals are connected to special methods called Slots but in Python we can connect them to any method.

Our loadUrl() method will print out the contents of the address bar onto your terminal, then will load the QWebView with the address. (Remember to include the http:// at the start of the address.)

See the full code.

Our completed web browser, loading a different URL.

« Back to Part 6 | On to conclusion »