m |
m (Add deletion proposal.) |
||
| (8 intermediate revisions by 6 users not shown) | |||
| Line 1: | Line 1: | ||
| − | {{Template: | + | {{Template:Delete|KDE 3 content.}} |
| − | + | ''by Thorsten Stärk'' | |
| − | + | ||
This documentation is intended for developers programming on - or | This documentation is intended for developers programming on - or | ||
writing plugins for - Kontact. Kontact is a KDE program uniting several | writing plugins for - Kontact. Kontact is a KDE program uniting several | ||
| Line 7: | Line 7: | ||
Personal information management is e.g. writing mails, planning your | Personal information management is e.g. writing mails, planning your | ||
calendar dates or tracking your time. If you want to learn how to use | calendar dates or tracking your time. If you want to learn how to use | ||
| − | Kontact, visit [http://www.kontact.org The Kontact homepage]. | + | Kontact, visit [http://www.kontact.org The Kontact homepage]. |
| − | + | == Tutorial FactBox == | |
| − | + | {| border="1" style="text-align: left; width: 247px; height: 58px;" | |
| − | + | |- | |
| − | + | |style="vertical-align: top;"|lasts || style="vertical-align: top;"|3 hours | |
| − | + | |- | |
| − | + | |style="vertical-align: top;"|without this tutorial || style="vertical-align: top;"|3 weekends | |
| − | + | |} | |
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | == How to write a plugin for Kontact == | |
| − | for Kontact | + | |
| − | |||
This chapter demonstrates how to turn an existing KDE program into a | This chapter demonstrates how to turn an existing KDE program into a | ||
Kontact plugin. This is done on the example of the program KArm from | Kontact plugin. This is done on the example of the program KArm from | ||
| − | KDE 3.4.1. First, we will create a [[Development/Architecture/ | + | KDE 3.4.1. First, we will create a [[Development/Architecture/KDE4/KParts|KPart]] out of the program, then, we |
will use this for a Kontact plugin. Then, we will look at some errors | will use this for a Kontact plugin. Then, we will look at some errors | ||
that may occur with that work. A KPart is a KDE component that can be | that may occur with that work. A KPart is a KDE component that can be | ||
used as a program, with the difference that it cannot run alone, | used as a program, with the difference that it cannot run alone, | ||
because it needs a program building a "mainwindow" for it. | because it needs a program building a "mainwindow" for it. | ||
| − | |||
| − | + | == How to create the KPart == | |
| − | + | To turn our KDE Program into a [[Development/Architecture/KDE4/KParts|KPart]], we create a verbatim KPart with | |
KDevelop and copy it over to our program's source directory. For this, | KDevelop and copy it over to our program's source directory. For this, | ||
I assume, you want to modify the program karm from KDE 3.4.1 and it can | I assume, you want to modify the program karm from KDE 3.4.1 and it can | ||
| − | be found in | + | be found in {{path|/home/user/svn/3.4.1/kdepim/karm}}. I assume your home |
| − | directory is | + | directory is {{path|/home/user}} and you are on KDevelop 3.2.0. |
| − | + | Start KDevelop, close all open projects (Project -> close), then chose | |
<tt>Project | New Project -> C++ -> KDE -> Application Framework | <tt>Project | New Project -> C++ -> KDE -> Application Framework | ||
(KParts)</tt>. Set "Application Name" to "karm", continue as instructed. | (KParts)</tt>. Set "Application Name" to "karm", continue as instructed. | ||
Now test your verbatim KPart by executing it in KDevelop. Expected result | Now test your verbatim KPart by executing it in KDevelop. Expected result | ||
| − | is a "Could not find our part". | + | is a "Could not find our part". |
| − | + | This is because you do not yet have the KPart installed. KDevelop will | |
| − | store your work in | + | store your work in {{path|/home/user/karm/}}, so test your verbatim KPart |
| − | by doing a make install in | + | by doing a make install in {{path|/home/user/karm/}} and executing the |
| − | KDevelop project. Expected result is a text-editing window, the verbatim KPart. | + | KDevelop project. Expected result is a text-editing window, the verbatim KPart. |
| − | + | KDevelop has created {{path|karm.h}}, {{path|karm.cpp}}, {{path|karm_part.h}}, | |
| − | + | {{path|karm_part.cpp}}, {{path|karm_part.desktop}} and {{path|Makefile.am}} | |
| − | in | + | in {{path|home/user/karm/src/}}. {{path|karm.h}} and {{path|karm.cpp}} |
just open a mainwindow and display the karm_part in it. We do not need | just open a mainwindow and display the karm_part in it. We do not need | ||
them, as we already have a mainwindow for our program. So | them, as we already have a mainwindow for our program. So | ||
| − | copy the files karm_part.* to | + | copy the files {{path|karm_part.*}} to {{path|/home/user/svn/3.4.1/kdepim/karm}} |
and adapt the files to display your main widget instead of a text | and adapt the files to display your main widget instead of a text | ||
| − | editor. You may want to replace QMultiLineEdit by your main widget. | + | editor. You may want to replace {{qt3|QMultiLineEdit}} by your main widget. |
| − | Finally adapt the Makefile | + | Finally adapt the {{path|Makefile}} {{path|/home/user/svn/3.4.1/kdepim/karm/Makefile.am}} |
to include the added files. This is hard to generalize, I show it here | to include the added files. This is hard to generalize, I show it here | ||
| − | for the KArm program. | + | for the KArm program. |
| − | + | You may want to have a look at [http://websvn.kde.org/trunk/KDE/kdepim/karm/Makefile.am?rev=412382&r1=409203&r2=412382 the diff] | |
| − | between the old and the new Makefile.am. Now replace <tt>karm_SOURCES</tt> by <tt>libkarm_shared_la_SOURCES</tt> and remove main.cpp from the list. Add a <tt>noinst_LTLIBRARIES = libkarm_shared.la</tt> | + | between the old and the new {{path|Makefile.am}}. Now replace <tt>karm_SOURCES</tt> by <tt>libkarm_shared_la_SOURCES</tt> and remove main.cpp from the list. Add a <tt>noinst_LTLIBRARIES = libkarm_shared.la</tt> |
before that line. That causes that all the karm files will not be bound to a binary karm, | before that line. That causes that all the karm files will not be bound to a binary karm, | ||
but to a library <tt>libkarm_shared.la</tt>. This binary can then be used to | but to a library <tt>libkarm_shared.la</tt>. This binary can then be used to | ||
link as well karm as our KPart. Add <tt>libkarm_shared.la</tt> to <tt>karm_LDADD</tt> | link as well karm as our KPart. Add <tt>libkarm_shared.la</tt> to <tt>karm_LDADD</tt> | ||
before that line, place a <tt>karm_SOURCES=main.cpp</tt>. These lines now draw the library | before that line, place a <tt>karm_SOURCES=main.cpp</tt>. These lines now draw the library | ||
| − | <tt>libkarm_shared.la</tt>. Finally, add a kpart section as from | + | <tt>libkarm_shared.la</tt>. Finally, add a kpart section as from {{path|/home/user/karm/src/Makefile.am}} to karm's {{path|Makefile.am}}. This should look like this: |
| − | + | ||
| − | + | ||
| − | + | ||
################## | ################## | ||
# KPART SECTION | # KPART SECTION | ||
| Line 100: | Line 86: | ||
partrc_DATA = karmui.rc | partrc_DATA = karmui.rc | ||
| − | + | After that, test your changes of {{path|Makefile.am}}. You have to do <tt>make -f | |
Makefile.cvs && ./configure && make</tt> in | Makefile.cvs && ./configure && make</tt> in | ||
| − | + | {{path|/home/user/svn/3.4.1/kdepim/}}. | |
| − | <p><span style="color: #ff0000;">Warning:</span> running <tt>./configure && make</tt> <b>is not enough</b>. Makefile.am's are processed by <tt>make -f Makefile.cvs.</tt> | + | <p><span style="color: #ff0000;">Warning:</span> running <tt>./configure && make</tt> <b>is not enough</b>. {{path|Makefile.am}}'s are processed by <tt>make -f Makefile.cvs.</tt> |
Install your KPart, e.g. with make install. Then test your KPart: | Install your KPart, e.g. with make install. Then test your KPart: | ||
| Line 117: | Line 103: | ||
Konqueror will show what was shown by your application before. | Konqueror will show what was shown by your application before. | ||
| − | + | == How to get the Kontact plugin == | |
You best clone a little Kontact plugin and then adapt it to your | You best clone a little Kontact plugin and then adapt it to your | ||
| Line 127: | Line 113: | ||
will direct your commits to the original folder. Better do it that way: | will direct your commits to the original folder. Better do it that way: | ||
| − | + | * create a folder {{path|/home/user/svn/3.4.1/kdepim/kontact/plugins/karm}} | |
| − | + | * copy ''only'' {{path|Makefile.am}}, {{path|multisynk_plugin.cpp}}, {{path|multisynk_plugin.h}}, {{path|multisynkplugin.desktop}} from {{path|/home/user/svn/3.4.1/kdepim/kontact/plugins/multisynk/}} to {{path|../karm/}} | |
| − | + | * rename the four files and adapt them to their new names | |
| − | + | * adapt the {{path|karmplugin.desktop}} file to point to your KPart's library, in this case <tt>X-KDE-KontactPartLibraryName=libkarmpart</tt> | |
| − | + | ||
| − | + | You see, the deciding step is to tell a {{path|.desktop}} file to use the libs of a KPart. The only modification on the plugin's code is related to | |
| − | + | ||
| − | + | ||
| − | library, in this case <tt>X-KDE-KontactPartLibraryName=libkarmpart</tt | + | |
| − | + | ||
| − | + | ||
| − | You see, the deciding step is to tell a desktop | + | |
| − | a KPart. The only modification on the plugin's code is related to | + | |
renaming the files. That is elegant. | renaming the files. That is elegant. | ||
| − | + | * give your plugin a distinct name | |
| − | + | * add your plugin folder (karm) to the makefile for kontact plugins (in your kdepim folder under {{path|kontact/plugins/Makefile.am}}): | |
| − | + | <syntaxhighlight lang="bash"> | |
| − | + | ||
SUBDIRS = $(KPILOT_KONTACTPLUGIN) kaddressbook kmail knotes korganizer \ | SUBDIRS = $(KPILOT_KONTACTPLUGIN) kaddressbook kmail knotes korganizer \ | ||
summary weather knode newsticker multisynk specialdates akregator karm | summary weather knode newsticker multisynk specialdates akregator karm | ||
| − | + | </syntaxhighlight> | |
| − | + | * <tt>make -f Makefile.cvs && ./configure && make && make install</tt> your kdepim | |
| − | + | * test your plugin | |
| − | && make install</tt> your kdepim | + | ** start Kontact, chose <i>Settings|Configure Kontact -> Configure</i> |
| − | + | ** verify that you find your program's plugin to be chosen there. | |
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | == Pitfalls == | |
| − | + | * the program no longer sets it icons correctly | |
| − | + | ** this pitfall occurred as well in the plugin as in the KPart due to the fact that my program was using UserIcon to load the Icons instead of the {{class|KIconLoader}}. UserIcon looks for the application name to find out the icons' path. As there was no application (only a KPart), it gave up on searching the icons. | |
| − | + | ||
| − | + | == Suggested readings == | |
| − | to the fact that my program was using UserIcon to load the Icons | + | |
| − | instead of the KIconLoader. UserIcon looks for the application name to | + | |
| − | find out the icons' path. As there was no application (only a KPart), | + | |
| − | it gave up on searching the icons. | + | |
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
* http://www-106.ibm.com/developerworks/linux/edu/l-dw-linuxkp1-i.html : DeveloperWorks article from David Faure on the KPart technology | * http://www-106.ibm.com/developerworks/linux/edu/l-dw-linuxkp1-i.html : DeveloperWorks article from David Faure on the KPart technology | ||
* http://websvn.kde.org/trunk/KDE/kdepim/karm/Makefile.am?rev=412382&r1=409203&r2=412382 : Code example showing the integration of the karm part, file Makefile.am | * http://websvn.kde.org/trunk/KDE/kdepim/karm/Makefile.am?rev=412382&r1=409203&r2=412382 : Code example showing the integration of the karm part, file Makefile.am | ||
| + | |||
[[Category:Tutorial]] | [[Category:Tutorial]] | ||
[[Category:C++]] | [[Category:C++]] | ||
| + | [[Category:PIM]] | ||
| Warning |
|---|
| This page has been nominated for deletion.
Reason: KDE 3 content. If you disagree with its deletion, remove the template and discuss it on its talk page. |
by Thorsten Stärk
This documentation is intended for developers programming on - or writing plugins for - Kontact. Kontact is a KDE program uniting several KDE components for personal information management under one roof. Personal information management is e.g. writing mails, planning your calendar dates or tracking your time. If you want to learn how to use Kontact, visit The Kontact homepage.
Contents |
| lasts | 3 hours |
| without this tutorial | 3 weekends |
This chapter demonstrates how to turn an existing KDE program into a Kontact plugin. This is done on the example of the program KArm from KDE 3.4.1. First, we will create a KPart out of the program, then, we will use this for a Kontact plugin. Then, we will look at some errors that may occur with that work. A KPart is a KDE component that can be used as a program, with the difference that it cannot run alone, because it needs a program building a "mainwindow" for it.
To turn our KDE Program into a KPart, we create a verbatim KPart with KDevelop and copy it over to our program's source directory. For this, I assume, you want to modify the program karm from KDE 3.4.1 and it can be found in /home/user/svn/3.4.1/kdepim/karm. I assume your home directory is /home/user and you are on KDevelop 3.2.0.
Start KDevelop, close all open projects (Project -> close), then chose Project | New Project -> C++ -> KDE -> Application Framework (KParts). Set "Application Name" to "karm", continue as instructed. Now test your verbatim KPart by executing it in KDevelop. Expected result is a "Could not find our part".
This is because you do not yet have the KPart installed. KDevelop will store your work in /home/user/karm/, so test your verbatim KPart by doing a make install in /home/user/karm/ and executing the KDevelop project. Expected result is a text-editing window, the verbatim KPart.
KDevelop has created karm.h, karm.cpp, karm_part.h, karm_part.cpp, karm_part.desktop and Makefile.am in home/user/karm/src/. karm.h and karm.cpp just open a mainwindow and display the karm_part in it. We do not need them, as we already have a mainwindow for our program. So copy the files karm_part.* to /home/user/svn/3.4.1/kdepim/karm and adapt the files to display your main widget instead of a text editor. You may want to replace QMultiLineEdit by your main widget. Finally adapt the Makefile /home/user/svn/3.4.1/kdepim/karm/Makefile.am to include the added files. This is hard to generalize, I show it here for the KArm program.
You may want to have a look at the diff between the old and the new Makefile.am. Now replace karm_SOURCES by libkarm_shared_la_SOURCES and remove main.cpp from the list. Add a noinst_LTLIBRARIES = libkarm_shared.la before that line. That causes that all the karm files will not be bound to a binary karm, but to a library libkarm_shared.la. This binary can then be used to link as well karm as our KPart. Add libkarm_shared.la to karm_LDADD before that line, place a karm_SOURCES=main.cpp. These lines now draw the library libkarm_shared.la. Finally, add a kpart section as from /home/user/karm/src/Makefile.am to karm's Makefile.am. This should look like this:
##################
# KPART SECTION
##################
kde_module_LTLIBRARIES = libkarmpart.la
# the Part's source, library search path, and link libraries
libkarmpart_la_SOURCES = karm_part.cpp
libkarmpart_la_LDFLAGS = -module -avoid-version -no-undefined $(KDE_PLUGIN) $(all_libraries)
libkarmpart_la_LIBADD = libkarm_shared.la $(LIB_KPARTS) $(LIB_KFILE) \
-lkdeprint $(top_builddir)/libkcal/libkcal.la \
$(top_builddir)/kresources/remote/libkcal_resourceremote.la \
$(top_builddir)/libkdepim/libkdepim.la $(LIBXSS)
# this is where the desktop file will go
partdesktopdir = $(kde_servicesdir)
partdesktop_DATA = karm_part.desktop
# this is where the part's XML-GUI resource file goes
partrcdir = $(kde_datadir)/karmpart
partrc_DATA = karmui.rc
After that, test your changes of Makefile.am. You have to do make -f Makefile.cvs && ./configure && make in /home/user/svn/3.4.1/kdepim/.
Warning: running ./configure && make is not enough. Makefile.am's are processed by make -f Makefile.cvs. Install your KPart, e.g. with make install. Then test your KPart:
You best clone a little Kontact plugin and then adapt it to your program.
Warning: Do not copy any directory within your svn working copy, change it and re-commit. Every folder in the working copy contains a subfolder .svn/ which will direct your commits to the original folder. Better do it that way:
You see, the deciding step is to tell a .desktop file to use the libs of a KPart. The only modification on the plugin's code is related to renaming the files. That is elegant.
SUBDIRS = $(KPILOT_KONTACTPLUGIN) kaddressbook kmail knotes korganizer \ summary weather knode newsticker multisynk specialdates akregator karm