Difference between revisions of "Languages/Python/PyKDE WebKit Tutorial/Part6"
Neverendingo (talk | contribs) m (Text replace - "</code>" to "</syntaxhighlight>") |
m (Ochurlaud moved page Development/Languages/Python/PyKDE WebKit Tutorial/Part6 to Languages/Python/PyKDE WebKit Tutorial/Part6) |
Revision as of 17:39, 10 March 2016
Now we can add our address bar.
After creating the layout add:
self.addressBar = QLineEdit(self.widget)
layout.addWidget(self.addressBar)
A QLineEdit is a widget into which you can type a line of text.
See the full code.
The programme with a line edit for an address bar.
This page was last edited on 10 March 2016, at 17:39. Content is available under Creative Commons License SA 4.0 unless otherwise noted.