1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
#
# $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/t/GtkTooltips.t,v 1.2 2004/01/10 04:43:38 kaffeetisch Exp $
#
#########################
# GtkTooltips Tests
# - rm
#########################
use Gtk2::TestHelper tests => 10;
ok( my $tips = Gtk2::Tooltips->new );
ok( my $btn = Gtk2::Button->new('Button 1') );
$tips->set_tip($btn, 'Tip 1', 'Vebose Tip 1');
ok(1);
ok( $btn = Gtk2::Button->new('Button 2') );
$tips->set_tip($btn, 'Tip 2', 'Vebose Tip 2');
is_deeply( Gtk2::Tooltips->data_get($btn),
{ tooltips => $tips,
widget => $btn,
tip_text => 'Tip 2',
tip_private => 'Vebose Tip 2' } );
ok( $btn = Gtk2::Button->new('Button 3') );
$tips->set_tip($btn, 'This is a really long, really big tooltip which doesn\'t '
.'tell you anything worth knowning. There\'s no private tip either',
undef);
ok(1);
$tips->force_window;
ok(1);
$tips->disable;
ok(1);
$tips->enable;
ok(1);
__END__
Copyright (C) 2003 by the gtk2-perl team (see the file AUTHORS for the
full list). See LICENSE for more information.
|