Difference between revisions of "Languages/Python/PyKDE WebKit Tutorial/Part5"
Line 15: | Line 15: | ||
[[image:Pykde-tutorial-2.png|center]] | [[image:Pykde-tutorial-2.png|center]] | ||
− | [[Development/Languages/Python/PyKDE_WebKit_Tutorial/Part4|« | + | [[Development/Languages/Python/PyKDE_WebKit_Tutorial/Part4|« Back to Part 4]] | [[Development/Languages/Python/PyKDE_WebKit_Tutorial/Part6|On to Part 6 »]] |
Revision as of 00:10, 13 October 2008
We will change the top widget again adding a KMainWindow to contain our QWidget.
self.window = KMainWindow()
self.widget = QWidget()
self.window.setCentralWidget(self.widget)
A KMainWindow is intended to be the top level widget in most KDE applications. It makes it very easy to add menus, toolbars and a statusbar to your application. In this example I'm afraid to say it exists only to work around a bug where the application crashes if we don't use it.
See the full code.
This version will look the same as the previous.
This page was last edited on 13 October 2008, at 00:10. Content is available under Creative Commons License SA 4.0 unless otherwise noted.