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 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
|
#
# $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/t/GtkMenu.t,v 1.9 2006/07/07 22:14:47 kaffeetisch Exp $
#
#########################
# GtkMenu Tests
# - rm
#########################
use Gtk2::TestHelper tests => 55;
ok( my $menubar = Gtk2::MenuBar->new );
my ($num, $menu, $accelgroup, $button, $menuitem, $rootmenu, $optmenu);
foreach $num (qw/1 2 3/)
{
ok( $menu = Gtk2::Menu->new );
$accelgroup = Gtk2::AccelGroup->new;
$menu->set_accel_group ($accelgroup);
is ($menu->get_accel_group, $accelgroup);
$menu->set_accel_path ("<gtk2perl>/main/menu");
$menu->set_title ("gtk2perl bla");
is ($menu->get_title, "gtk2perl bla");
$menu->set_tearoff_state (FALSE);
ok (!$menu->get_tearoff_state);
$menu->reposition;
$button = Gtk2::Button->new ("Bla");
$menu->attach_to_widget ($button, sub {
my ($callback_button, $callback_menu) = @_;
is ($callback_button, $button);
is ($callback_menu, $menu);
});
is ($menu->get_attach_widget, $button);
SKIP: {
skip "new 2.6 stuff", 1
unless Gtk2->CHECK_VERSION (2, 6, 0);
my @list = Gtk2::Menu->get_for_attach_widget ($button);
is ($list[0], $menu);
}
$menu->detach;
SKIP: {
skip "set_screen is new in 2.2", 0
unless Gtk2->CHECK_VERSION (2, 2, 0);
$menu->set_screen (Gtk2::Gdk::Screen->get_default);
}
$menuitem = undef;
foreach (qw/One Two Three Four/)
{
ok( $menuitem = Gtk2::MenuItem->new($_.' '.$num) );
$menu->append( $menuitem );
}
ok( $rootmenu = Gtk2::MenuItem->new('_Root Menu '.$num) );
$menu->reorder_child($menuitem, 1);
$menu->set_active (TRUE);
is ($menu->get_active, $menuitem);
if( $num == 1 )
{
$rootmenu->set_submenu($menu);
# $menu->set_tearoff_state(TRUE);
$menubar->append($rootmenu);
ok(TRUE);
}
elsif( $num == 2 )
{
$rootmenu->set_submenu($menu);
$rootmenu->set_right_justified(TRUE);
$menubar->append($rootmenu);
ok(TRUE);
}
elsif( $num == 3 )
{
ok(TRUE);
}
ok(TRUE);
}
ok( $optmenu = Gtk2::OptionMenu->new );
$optmenu->set_menu($menu);
my $i_know_you = 0;
my $position_callback = sub {
return if $i_know_you++;
my ($menu, $x, $y, $data) = @_;
isa_ok ($menu, "Gtk2::Menu");
like ($x, qr/^\d+$/);
like ($y, qr/^\d+$/);
is ($data, "bla");
SKIP: {
skip("attach and set_monitor are new in 2.4", 0)
unless Gtk2->CHECK_VERSION (2, 4, 0);
$menu->attach(Gtk2::MenuItem->new("Bla"), 0, 1, 0, 1);
$menu->set_monitor(0);
}
return (50, 50);
};
$menu->popup(undef, undef, $position_callback, "bla", 1, 0);
$menu->popdown;
ok(TRUE);
# If we never entered the pos. callback, fake four tests
unless ($i_know_you) {
foreach (0 .. 3) {
ok (TRUE, 'faking pos. callback');
}
}
__END__
Copyright (C) 2003 by the gtk2-perl team (see the file AUTHORS for the
full list). See LICENSE for more information.
|