Sophie

Sophie

distrib > Mandriva > current > x86_64 > media > main-release > by-pkgid > ac99723d01876fa4e8b3d4f5302f83df > files > 12

perl-Gtk2-NotificationBubble-0.01-10mdv2010.1.x86_64.rpm

use Gtk2::NotificationBubble;
use Gtk2::TrayIcon;
Gtk2->init;

my $icon= Gtk2::TrayIcon->new("test");
my $label= Gtk2::Label->new("test");
$icon->add($label);
$icon->show_all;

my $bubble = Gtk2::NotificationBubble->new;
$bubble->attach($icon);
$bubble->set("Hello", undef, "I'm a bubble!");
$bubble->show(5000);

Gtk2->main;