Mercurial > pidgin
view PLUGIN_HOWTO @ 15002:1a8aa1ff4c62
[gaim-migrate @ 17782]
Patch #1508458: "Improvements for per-account statusboxes"
"If someone changes the status of an account using a
per-account status-selector, and the current
savedstatus is a transient savedstatus, then the
changed status for the account is added as a substatus
for the savedstatus. This is useful because a user can
create a custom status using the per-account
statusboxes in the buddy-list, and then using the
'New...' item from the global selectors, which will
automatically populate the different statuses of all
the accounts."
committer: Tailor Script <tailor@pidgin.im>
author | Sadrul Habib Chowdhury <imadil@gmail.com> |
---|---|
date | Sun, 19 Nov 2006 17:24:56 +0000 |
parents | 7acebc9d043f |
children | cc3c50816cc9 |
line wrap: on
line source
For information on writing a plugin for Gaim, go http://gaim.sourceforge.net/api/ and see the HOWTOs in the "Related Pages" section. You can also generate this documentation locally by installing doxygen and graphviz dot, then running "make docs" in the Gaim source tree. The documentation will be in the docs/html directory. This next paragraph is old and possibly out of date: Compilation of the plugins is fairly straight-forward; there is a Makefile in this directory that has a rule for making the .so file from a .c file. No modification of the Makefile should be necessary, unless if you simply want to type 'make' to have it made; otherwise, 'make filename.so' will take filename.c and make the .so plugin from it. If you need to link in with extra libraries, you can set the environment variable PLUGIN_LIBS to be the libraries you want to link with. It should be possible to compile plugins outside of the Gaim source tree, which is a much cleaner solution.