ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/EV-Glib/Glib.pm
(Generate patch)

Comparing EV-Glib/Glib.pm (file contents):
Revision 1.4 by root, Sat Dec 8 15:11:49 2007 UTC vs.
Revision 1.8 by root, Sat Apr 19 03:50:53 2008 UTC

2 2
3EV::Glib - Embed the glib main loop into EV 3EV::Glib - Embed the glib main loop into EV
4 4
5=head1 SYNOPSIS 5=head1 SYNOPSIS
6 6
7 use Glib::EV; 7 use EV::Glib;
8 8
9=head1 DESCRIPTION 9=head1 DESCRIPTION
10 10
11If you want to use EV in a glib/gtk+ program, then you need to look at 11If you want to use EV in a Glib/Gtk+ program, then you need to look at
12the Glib::EV module, not this one, as this module requires you to run EV 12the Glib::EV module, not this one, as this module requires you to run EV
13in your main program. 13in your main program.
14 14
15If you want to use glib/gtk+ in an EV program, you are at the right place 15If you want to use Glib/Gtk+ in an EV program, you are at the right place
16here. 16here.
17 17
18This module embed the glib main loop into EV, that is, EV will also handle 18This module embeds the Glib main loop into EV, that is, EV will also handle
19Glib events. 19Glib events.
20 20
21This makes Glib compatible to EV. Calls into the EV main loop are more 21This makes Glib compatible to EV. Calls into the EV main loop are more
22or less equivalent to calls to Glib::MainLoop (but not vice versa, you 22or less equivalent to calls to Glib::MainLoop (but not vice versa, you
23I<have> to use the EV loop functions). 23I<have> to use the EV loop functions).
26 26
27=item * The Glib perl module is not used. 27=item * The Glib perl module is not used.
28 28
29This module has no dependency on the existing Glib perl interface, as it 29This module has no dependency on the existing Glib perl interface, as it
30uses glib directly. The Glib module can, however, be used without any 30uses glib directly. The Glib module can, however, be used without any
31problems (as long as evereybody uses shared libraries to keep everybody 31problems (as long as everybody uses shared libraries to keep everybody
32else happy). 32else happy).
33 33
34=item * The default context will be added to EV when the module is loaded. 34=item * The default context will be added to EV when the module is loaded.
35 35
36Loading this module will automatically integrate the default context into 36Loading this module will automatically integrate the default context into
66 66
67use Carp (); 67use Carp ();
68use EV (); 68use EV ();
69 69
70BEGIN { 70BEGIN {
71 $VERSION = '0.1'; 71 $VERSION = '2.0';
72 72
73 require XSLoader; 73 require XSLoader;
74 XSLoader::load (EV::Glib, $VERSION); 74 XSLoader::load (EV::Glib, $VERSION);
75 75
76 install (undef); 76 install (undef);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines