NAME
Gimp::UI - Programming interface to libgimpui, plus Gtk widgets for other parameter types.
SYNOPSIS
use Gimp::UI;
DESCRIPTION
If you use Gimp::Fu in your script, a GUI will be taken care of for you. However, for an example of implementing your own UI, see examples/example-no-fu
.
$combo_box = new Gimp::UI::Combo::Image;
$combo_box = new Gimp::UI::Combo::Layer;
$button = new Gimp::UI::PatternSelect;
$button = new Gimp::UI::BrushSelect;
$button = new Gimp::UI::GradientSelect;
($result, @new_vals) = Gimp::UI::interact(
$functionname, $blurb, $help, $params, $menupath, @previous_vals
); # $result = true if "Ok", false if "Cancel"
AUTHOR
Marc Lehmann <pcg@goof.com>, Seth Burgess <sjburges@gimp.org>
SEE ALSO
perl(1), Gimp.