Development/Tutorials/Writing kontact plugins: Difference between revisions
Appearance
< Development | Tutorials
Line 17: | Line 17: | ||
* write a subclass mypart of KParts::Part | * write a subclass mypart of KParts::Part | ||
** use a Widget in it and use setWidget to get your widget into the KPart | ** use a Widget in it and use setWidget to get your widget into the KPart | ||
* write a subclass mypartmainwindow of KParts::MainWindow | |||
** because [http://api.kde.org/4.x-api/kdelibs-apidocs/kparts/html/classKParts_1_1MainWindow.html#f96742c32da821dd7350deebc0a65382 createGUI] is protected | |||
* write main.cpp | * write main.cpp | ||
** use new mypart(mw) to get your part into your main window | ** use new mypart(mw) to get your part into your main window | ||
Revision as of 18:40, 9 February 2008
Kontact plugins are KParts that get loaded at runtime. To integrate your KPart into kontact, you will need to have a .desktop file like this:
ls /home/kde-devel/kde/share/kde4/services/kontact/ akregatorplugin.desktop knotesplugin.desktop akregatorplugin3.2.desktop korganizerplugin.desktop journalplugin.desktop newstickerplugin.desktop kaddressbookplugin.desktop plannerplugin.desktop karmplugin.desktop specialdatesplugin.desktop kmailplugin.desktop summaryplugin.desktop kmobiletools.desktop todoplugin.desktop knodeplugin.desktop weatherplugin.desktop
Writing a KPart
The following is what you do
- write a subclass mypart of KParts::Part
- use a Widget in it and use setWidget to get your widget into the KPart
- write a subclass mypartmainwindow of KParts::MainWindow
- because createGUI is protected
- write main.cpp
- use new mypart(mw) to get your part into your main window
See also
- http://pim.kde.org/development/tutorials/creatingplugins.php - tutorial for KDE 3
- http://api.kde.org/4.x-api/kdelibs-apidocs/kparts/html/classKParts_1_1MainWindow.html - the mainwindow where you display your kpart in