KDE TechBase is a Wiki - You can help! Please contribute! Questions?
Please ask development related questions in the KDE Community Forum.
Please ask development related questions in the KDE Community Forum.
Development/Languages/Python/PyKDE WebKit Tutorial/Part6
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.

