Sophie

Sophie

distrib > Mandriva > 2008.1 > i586 > by-pkgid > bdf90c6227038336035f80be2705a00d > files > 10

perl-Gtk2-TrayManager-0.05-4mdv2008.1.i586.rpm

#!/usr/bin/perl
use Gtk2 -init;
use Gtk2::TrayIcon;
use strict;

my $icon = Gtk2::TrayIcon->new('foo');

$icon->add(Gtk2::Image->new_from_stock('gtk-dialog-warning', 'menu'));

$icon->show_all;

Glib::Timeout->add(5000, sub {
	print "sending message\n";
	$icon->send_message(5000, "hello, world!");
});

Gtk2->main;