ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/CV/lib/Gtk2/CV.pm
(Generate patch)

Comparing CV/lib/Gtk2/CV.pm (file contents):
Revision 1.1 by root, Sun Nov 2 12:55:41 2003 UTC vs.
Revision 1.28 by root, Sun Oct 22 22:17:53 2006 UTC

1package Gtk2::CV; 1package Gtk2::CV;
2 2
3use XSLoader; 3use Gtk2;
4use Glib;
4 5
6use IO::AIO;
7
8BEGIN {
9 use XSLoader;
10
11 $VERSION = '1.3';
12
5XSLoader::load "Gtk2::CV", 0.0001; 13 XSLoader::load "Gtk2::CV", $VERSION;
14}
15
16my $aio_source;
17
18# we use a low priority watcher to give GUI interactions as high a priority
19# as possible.
20sub enable_aio {
21 $aio_source ||=
22 add_watch Glib::IO IO::AIO::poll_fileno,
23 in => sub {
24 eval { IO::AIO::poll_cb };
25 warn $@ if $q;#d#
26 1
27 },
28 undef,
29 &Glib::G_PRIORITY_LOW;
30}
31
32sub disable_aio {
33 remove Glib::Source $aio_source if $aio_source;
34 undef $aio_source;
35}
36
37enable_aio;
38
39sub find_rcfile($) {
40 my $path;
41
42 for (@INC) {
43 $path = "$_/Gtk2/CV/$_[0]";
44 return $path if -r $path;
45 }
46
47 die "FATAL: can't find required file $_[0]\n";
48}
49
50sub require_image($) {
51 new_from_file Gtk2::Gdk::Pixbuf find_rcfile "images/$_[0]";
52}
53
54sub dealpha_compose($) {
55 return $_[0] unless $_[0]->get_has_alpha;
56
57 Gtk2::CV::dealpha_expose $_[0]->composite_color_simple (
58 $_[0]->get_width, $_[0]->get_height,
59 'nearest', 255, 16, 0xffc0c0c0, 0xff606060,
60 )
61}
62
63# TODO: make preferences
64sub dealpha($) {
65 &dealpha_compose
66}
6 67
71; 681;
8 69

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines