diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-02-06 17:29:11 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-02-06 17:29:11 +0000 |
commit | 0cebc05b5155b1303566f16b926e98b6bba92932 (patch) | |
tree | 79f7375b8bf40cfe3eef48988b8dee5d3394c2e6 /perl-install/standalone | |
parent | bf034b9f3c4ea46fb42a081b526b4550fe2a375b (diff) | |
download | drakx-0cebc05b5155b1303566f16b926e98b6bba92932.tar drakx-0cebc05b5155b1303566f16b926e98b6bba92932.tar.gz drakx-0cebc05b5155b1303566f16b926e98b6bba92932.tar.bz2 drakx-0cebc05b5155b1303566f16b926e98b6bba92932.tar.xz drakx-0cebc05b5155b1303566f16b926e98b6bba92932.zip |
- no special testing mouse in embedded
- use mouse::change_mouse_live()
Diffstat (limited to 'perl-install/standalone')
-rwxr-xr-x | perl-install/standalone/mousedrake | 17 |
1 files changed, 4 insertions, 13 deletions
diff --git a/perl-install/standalone/mousedrake b/perl-install/standalone/mousedrake index c41812388..f4ba291c7 100755 --- a/perl-install/standalone/mousedrake +++ b/perl-install/standalone/mousedrake @@ -18,6 +18,8 @@ modules::mergein_conf('/etc/modules.conf') if -r '/etc/modules.conf'; undef $::Plug; begin: my $mouse = mouse::read(); +my %old = %$mouse; + if (!$::noauto) { my $probed_mouse = mouse::detect(); $mouse = $probed_mouse if !$mouse->{XMOUSETYPE} || !$probed_mouse->{unsafe}; @@ -26,18 +28,6 @@ if (!$::noauto) { if (!$mouse || !$::auto) { $mouse ||= mouse::fullname2mouse("serial|Generic 2 Button Mouse"); my $test_hbox; - if ($::isEmbedded && $in->isa('interactive::gtk')) { - #- HACK: waiting for the ask_from_treelistf to attach itself - #- and adding the nice test mouse to it - Glib::Timeout->add(100, sub { - defined $::Plug && defined $::Plug->child or return 1; - $test_hbox = Gtk2::HBox->new(0, 0); - $::WizardTable->attach($test_hbox, 2, 3, 1, 2, ['fill', 'expand'], ['fill', 'expand'], 0, 0); - $test_hbox->show_all; - mouse::test_mouse_standalone($mouse, $test_hbox); - 0; - }); - } my $name = $in->ask_from_treelistf('mousedrake', N("Please choose your mouse type."), '|', sub { join '|', map { translate($_) } split '\|', $_[0] }, [ mouse::fullnames ], @@ -64,7 +54,8 @@ if (!$mouse || !$::auto) { mouse::write_conf($in, $mouse, 1); -if (!$::isEmbedded && $in->isa('interactive::gtk')) { +if ($in->isa('interactive::gtk') && mouse::change_mouse_live($mouse, \%old)) { + require ugtk2; ugtk2->import(qw(:wrappers :create)); my $w = ugtk2->new(N("Mouse test")); |