Sun, 17 Sep 2006 05:35:46 +0000
[gaim-migrate @ 17291]
This is a really huge commit for basically nothing, I decided that Gaim::Gtk
should really be Gaim::GtkUI (which will line up better with any eventual
Gaim::GntUI that might exist, etc.). So that's what this is, I think I got
everything, it builds here at least.
| 14629 | 1 | package Gaim::GtkUI; |
| 14478 | 2 | |
| 3 | use 5.008; | |
| 4 | use strict; | |
| 5 | use warnings; | |
| 6 | use Carp; | |
| 7 | ||
| 8 | our $VERSION = '0.01'; | |
| 9 | ||
| 10 | use Gaim; | |
| 11 | ||
| 12 | require XSLoader; | |
| 14629 | 13 | XSLoader::load('Gaim::GtkUI', $VERSION); |
| 14478 | 14 | |
| 15 | 1; | |
| 16 | __END__ | |
| 17 | ||
| 18 | =head1 NAME | |
| 19 | ||
| 14629 | 20 | Gaim::GtkUI - Perl extension for the Gaim instant messenger. |
| 14478 | 21 | |
| 22 | =head1 SYNOPSIS | |
| 23 | ||
| 14629 | 24 | use Gaim::GtkUI; |
| 14478 | 25 | |
| 26 | =head1 ABSTRACT | |
| 27 | ||
| 28 | This module provides the interface for using perl scripts as plugins in | |
| 29 | Gaim, with access to the Gaim Gtk interface functions. | |
| 30 | ||
| 31 | =head1 DESCRIPTION | |
| 32 | ||
| 33 | This module provides the interface for using perl scripts as plugins in Gaim, | |
| 34 | with access to the Gaim Gtk interface functions. With this, developers can | |
| 35 | write perl scripts that can be loaded in Gaim as plugins. The script can | |
| 36 | interact with IMs, chats, accoutns, the buddy list, gaim signals, and more. | |
| 37 | ||
| 38 | The API for the perl interface is very similar to that of the Gaim C API, | |
| 39 | which can be viewed at http://gaim.sourceforge.net/api/ or in the header files | |
| 40 | in the Gaim source tree. | |
| 41 | ||
| 42 | =head1 FUNCTIONS | |
| 43 | ||
| 44 | =over | |
| 45 | ||
| 46 | =back | |
| 47 | ||
| 48 | =head1 SEE ALSO | |
| 49 | Gaim C API documentation - http://gaim.sourceforge.net/api/ | |
| 50 | ||
| 51 | The Gaim perl module. | |
| 52 | ||
| 53 | Gaim website - http://gaim.sourceforge.net/ | |
| 54 | ||
| 55 | =head1 AUTHOR | |
| 56 | ||
| 57 | Etan Reisner, E<lt>deryni@gmail.comE<gt> | |
| 58 | ||
| 59 | =head1 COPYRIGHT AND LICENSE | |
| 60 | ||
| 61 | Copyright 2006 by Etan Reisner |