Sophie

Sophie

distrib > Mandriva > 2010.0 > i586 > media > contrib-release > by-pkgid > 1469af0fb1f2c1bd657234c8185e1be4 > files > 10

perl-Gtk2-TrayManager-0.50.0-1mdv2010.0.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;