KPart (Kate)

#!/usr/bin/env python

# [SNIPPET_NAME: KPart (Kate)]
# [SNIPPET_CATEGORIES: PyKDE4]
# [SNIPPET_DESCRIPTION: KPart example using the Kate part]
# [SNIPPET_AUTHOR: Jonathan Riddell <[email protected]>]
# [SNIPPET_LICENSE: GPL]
# [SNIPPET_DOCS: http://api.kde.org/pykde-4.3-api/kdecore/KLibLoader.html, http://api.kde.org/pykde-4.3-api/kparts/index.html]

import sys

from PyKDE4.kdecore import *
from PyKDE4.kdeui import *
from PyKDE4.kparts import *

from PyQt4.QtGui import QLabel

class MainWindow (KMainWindow):
    def __init__ (self):
        KMainWindow.__init__(self)

        self.resize(640, 480)

        factory = KLibLoader.self().factory("katepart")
        part = factory.create(self, "KatePart")
        self.setCentralWidget(part.widget())

#--------------- main ------------------
if __name__ == '__main__':

    appName     = "katepart_example"
    catalog     = ""
    programName = ki18n("Kate Part Example")
    version     = "1.0"
    description = ki18n("Example loading a Kate Part")
    license     = KAboutData.License_GPL
    copyright   = ki18n("(c) 2009 Canonical Ltd")
    text        = ki18n("none")
    homePage    = "www.kubuntu.org"
    bugEmail    = "[email protected]"
    
    aboutData   = KAboutData(appName, catalog, programName, version, description,
                                license, copyright, text, homePage, bugEmail)
            
    KCmdLineArgs.init(sys.argv, aboutData)
        
    app = KApplication()
    mainWindow = MainWindow()
    mainWindow.show()
    app.exec_()