The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Gtk::ColorSelectButton - A clickable colour preview label

SYNOPSIS

    use Gtk::ColorSelectButton;

    $color_button = Gtk::ColorSelectButton->new();
    $hbox->pack_start($color_button, 1,1,0);
    $color_button->show();

    ...
    print join(" ",$color_button->color);
    ...

DESCRIPTION

Gtk::ColorSelectButton shows a button with a uniform color. Pressing this buton pops up the color_selection dialog in which a new color may be chosen. When the color selection dialog is closed, the chosen color is reflected in the color of the button.

The member function color provides a way to access the chosen color.

AUTHOR

Dov Grobgeld <dov@imagic.weizmann.ac.il>

COPYRIGHT

Copyright (c) 1998 Dov Grobgeld. All rights reserved. This program may be redistributed and copied under the same licence as Perl itself.