From 01b50433477d91cc669f414b747f0ef116826b1f Mon Sep 17 00:00:00 2001 From: damien Date: Tue, 28 Aug 2001 12:52:32 +0000 Subject: cursor confined to test windo --- perl-install/install_gtk.pm | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) (limited to 'perl-install/install_gtk.pm') diff --git a/perl-install/install_gtk.pm b/perl-install/install_gtk.pm index 2c198464c..2631c2024 100644 --- a/perl-install/install_gtk.pm +++ b/perl-install/install_gtk.pm @@ -443,13 +443,15 @@ sub test_mouse { my ($bw, $bh) = ($width / 3, $height / 3); gtkadd($w->{window}, - gtkpack(new Gtk::VBox(0,0), + gtkpack(my $vbox_grab = new Gtk::VBox(0,0), my $darea = gtkset_usize(new Gtk::DrawingArea, $width+1, $height+1), - '', - create_okcancel($w, '', '', "edge"), +# '', + my $okcancel = create_okcancel($w, '', '', "edge"), ), ); + $okcancel->set_uposition(2, $height-30); + my $draw_rect; $draw_rect = sub { my ($black, $fill, $rect) = @_; $draw_rect->(0, 1, $rect) if !$fill; #- blank it first @@ -506,6 +508,10 @@ sub test_mouse { $w->{cancel}->grab_focus; # my $timeout = Gtk->timeout_add(1000, sub { if ($time-- == 0) { log::l("timeout test_mouse"); undef $w->{retval}; Gtk->main_quit } 1 }); # my $b = before_leaving { log::l("removing timeout"); Gtk->timeout_remove($timeout) }; + $w->{window}->realize; + Gtk::Gdk->pointer_grab($darea->window, 1, + [ 'pointer_motion_mask'], + $darea->window, undef ,0); $w->main; } -- cgit v1.2.1