Difference between revisions of "Languages/Python/PyKDE WebKit Tutorial/Part6"
Line 17: | Line 17: | ||
− | [[Development/Languages/Python/PyKDE_WebKit_Tutorial/ | + | [[Development/Languages/Python/PyKDE_WebKit_Tutorial/Part5|« Back to Part 5]] | [[Development/Languages/Python/PyKDE_WebKit_Tutorial/Part7|On to Part 7 »]] |
[[Category:Python]] | [[Category:Python]] |
Revision as of 00:48, 13 October 2008
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 13 October 2008, at 00:48. Content is available under Creative Commons License SA 4.0 unless otherwise noted.