These pages describe plugins for GIMP, a freely available image manipulation
tool for Unix. For the latest news on GIMP, check out my GIMP News page.
Zachary Beane
EOM
;
select(STDOUT);
close(FILE);
}
sub plugin_menu {
local($myself, $x, $section, $title, $file) = @_;
$last_section = "foo";
for($x = 0; $tree[$x]; $x++){
($section, $title, $file) = split(',,', $tree[$x]);
if($section ne $last_section){
print "
$section
\n";
$last_section = $section;
}
if($file eq $myself){
print qq{ $title <
\n};
}
else {
print qq{ $title
\n};
}
}
}