ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/CV/lib/Gtk2/CV.pm
Revision: 1.8
Committed: Sat Nov 8 13:34:37 2003 UTC (20 years, 8 months ago) by root
Branch: MAIN
Changes since 1.7: +1 -1 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 package Gtk2::CV;
2
3 use XSLoader;
4
5 $VERSION = 0.14;
6
7 XSLoader::load "Gtk2::CV", $VERSION;
8
9 use Gtk2;
10
11 sub find_rcfile {
12 my $path;
13
14 for (@INC) {
15 $path = "$_/Gtk2/CV/$_[0]";
16 return $path if -r $path;
17 }
18
19 die "FATAL: can't find required file $_[0]\n";
20 }
21
22 sub require_image {
23 new_from_file Gtk2::Gdk::Pixbuf find_rcfile "images/$_[0]";
24 }
25
26 1;
27