summaryrefslogtreecommitdiffstats
path: root/perl-install/mouse.pm
blob: 2caacff2b498a99a970bb6a44e9cb392dc46cba7 (plain)
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
package mouse; # $Id$

#use diagnostics;
#use strict;

#-######################################################################################
#- misc imports
#-######################################################################################
use common;
use modules;
use detect_devices;
use run_program;
use devices;
use modules;
use any;
use log;

my @mouses_fields = qw(nbuttons MOUSETYPE XMOUSETYPE name);

my %mice = 
 arch() =~ /^sparc/ ? 
(
 'sunmouse' =>
 [ [ 'sunmouse' ],
   [ [ 3, 'sun', 'sun', __("Sun - Mouse") ]
   ]]
) :
(
 'PS/2' => 
 [ [ 'psaux' ],
   [ [ 2, 'ps/2', 'PS/2', __("Standard") ],
     [ 5, 'ps/2', 'MouseManPlusPS/2', __("Logitech MouseMan+") ],
     [ 5, 'imps2', 'IMPS/2', __("Generic PS2 Wheel Mouse") ],
     [ 5, 'ps/2', 'GlidePointPS/2', __("GlidePoint") ],
     '',
     [ 5, 'ps/2', 'ThinkingMousePS/2', __("Kensington Thinking Mouse") ],
     [ 5, 'netmouse', 'NetMousePS/2', __("Genius NetMouse") ],
     [ 5, 'netmouse', 'NetScrollPS/2', __("Genius NetScroll") ],
   ]],
     
 'USB' =>
 [ [ 'usbmouse' ],
   [ if_(arch() eq 'ppc', [ 1, 'ps/2', 'PS/2', __("1 button") ]),
     [ 2, 'ps/2', 'PS/2', __("Generic 2 Button Mouse") ],
     [ 3, 'ps/2', 'PS/2', __("Generic") ],
     [ 5, 'ps/2', 'IMPS/2', __("Wheel") ],
   ]],

 __("serial") =>
 [ [ map { "ttyS$_" } 0..3 ],
   [ [ 2, 'Microsoft', 'Microsoft', __("Generic 2 Button Mouse") ],
     [ 3, 'Microsoft', 'Microsoft', __("Generic 3 Button Mouse") ],
     [ 5, 'ms3', 'IntelliMouse', __("Microsoft IntelliMouse") ],
     [ 3, 'MouseMan', 'MouseMan', __("Logitech MouseMan") ],
     [ 2, 'MouseSystems', 'MouseSystems', __("Mouse Systems") ],     
     '',
     [ 3, 'logim', 'MouseMan', __("Logitech CC Series") ],
     [ 5, 'pnp', 'IntelliMouse', __("Logitech MouseMan+/FirstMouse+") ],
     [ 5, 'ms3', 'IntelliMouse', __("Genius NetMouse") ],
     [ 2, 'MMSeries', 'MMSeries', __("MM Series") ],
     [ 2, 'MMHitTab', 'MMHittab', __("MM HitTablet") ],
     [ 3, 'Logitech', 'Logitech', __("Logitech Mouse (serial, old C7 type)") ],
     [ 3, 'Microsoft', 'ThinkingMouse', __("Kensington Thinking Mouse") ],
   ]],

 __("busmouse") =>
 [ [ arch() eq 'ppc' ? 'adbmouse' : ('atibm', 'inportbm', 'logibm') ],
   [ if_(arch() eq 'ppc', [ 1, 'Busmouse', 'BusMouse', __("1 button") ]),
     [ 2, 'Busmouse', 'BusMouse', __("2 buttons") ],
     [ 3, 'Busmouse', 'BusMouse', __("3 buttons") ],
   ]],

 __("none") =>
 [ [ 'none' ],
   [ [ 0, 'none', 'Microsoft', __("No mouse") ],
   ]],
);


sub xmouse2xId { 
    #- xmousetypes must be sorted as found in /usr/include/X11/extensions/xf86misc.h
    #- so that first mean "0", etc
    my @xmousetypes = (
		   "Microsoft",
		   "MouseSystems",
		   "MMSeries",
		   "Logitech",
		   "BusMouse", #MouseMan,
		   "Logitech",
		   "PS/2",
		   "MMHittab",
		   "GlidePoint",
		   "IntelliMouse",
		   "ThinkingMouse",
		   "IMPS/2",
		   "ThinkingMousePS/2",
		   "MouseManPlusPS/2",
		   "GlidePointPS/2",
		   "NetMousePS/2",
		   "NetScrollPS/2",
		   "SysMouse",
		   "Auto",
		   "AceCad",
		   "WSMouse",
		   "USB",
    );
    my ($id) = @_;
    $id = 'BusMouse' if $id eq 'MouseMan';
    my $i; map_index { $_ eq $id and $i = $::i } @xmousetypes; $i;
}

my %mouse_btn_keymap = (
    0   => "NONE",
    67  => "F9",
    68  => "F10",
    87  => "F11",
    88  => "F12",
    85  => "F13",
    89  => "F14",
    90  => "F15",
    56  => "L-Option/Alt",
    125 => "L-Command",
    98  => "Num: /",
    55  => "Num: *",
    117 => "Num: =",
);
sub ppc_one_button_keys { keys %mouse_btn_keymap }
sub ppc_one_button_key2text { $mouse_btn_keymap{$_[0]} }

sub raw2mouse {
    my ($type, $raw) = @_;
    $raw or return;

    my %l; @l{@mouses_fields} = @$raw;
    +{ %l, type => $type };
}

sub update_type_name {
    my ($mouse) = @_;
    while (my ($k, $v) = each %mice) {
	$mouse->{device} =~ /usb/ && $k ne 'USB' and next; #- avoid mixing USB and PS/2 mice.
	foreach (@{$v->[1]}) {
	    if ($_->[0] == $mouse->{nbuttons} && $_->[2] eq $mouse->{XMOUSETYPE}) {
		add2hash($mouse, { MOUSETYPE => $_->[1],
				   type      => $k,
				   name      => $_->[3],
				 });
		return $mouse;
	    }
	}
    }
}

sub fullnames { 
    map_each { 
	my $type = $::a;
	grep {$_} map {
	    if ($_) {
		my $l = raw2mouse($type, $_);
		"$type|$l->{name}";
	    } else { 
		$type .= "|[" . _("Other") . "]";
		'';
	    }
	} @{$::b->[1]}
    } %mice;
}

sub fullname2mouse {
    my ($fname, %opts) = @_;
    my ($type, @l) = split '\|', $fname;
    my ($name) = pop @l;
  search:
    $opts{device} ||= $mice{$type}[0][0];
    foreach (@{$mice{$type}[1]}) {
	my $l = raw2mouse($type, $_);
	$name eq $l->{name} and return { %$l, %opts };
    }
    if ($name eq '1 Button' || $name eq '1 button') {
	$name = "Generic 2 Button Mouse";
	goto search;
    }
    die "$fname not found ($type, $name)";
}

sub serial_ports() { map { "ttyS$_" } 0..7 }
sub serial_port2text {
    $_[0] =~ /ttyS(\d+)/ ? "$_[0] / COM" . ($1 + 1) : $_[0];
}

sub read {
    my ($prefix) = @_;
    my %mouse = getVarsFromSh "$prefix/etc/sysconfig/mouse";
    eval { add2hash_(\%mouse, fullname2mouse($mouse{FULLNAME})) };
    $mouse{device} = readlink "$prefix/dev/mouse" or log::l("reading $prefix/dev/mouse symlink failed");
    $mouse{nbuttons} = $mouse{XEMU3} eq "yes" ? 2 : $mouse{WHEEL} eq "yes" ? 5 : 3;
    \%mouse;
}

sub write {
    my ($prefix, $mouse) = @_;
    local $mouse->{FULLNAME} = qq("$mouse->{type}|$mouse->{name}"); #-"
    local $mouse->{XEMU3} = bool2yesno($mouse->{nbuttons} < 3);
    local $mouse->{WHEEL} = bool2yesno($mouse->{nbuttons} > 3);
    setVarsInSh("$prefix/etc/sysconfig/mouse", $mouse, qw(MOUSETYPE XMOUSETYPE FULLNAME XEMU3 WHEEL device));
    any::devfssymlinkf ($mouse->{device}, 'mouse', $prefix) or log::l("creating $prefix/dev/mouse symlink failed");
    $mouse->{auxmouse} and any::devfssymlinkf ($mouse->{auxmouse}{device}, 'mouse1', $prefix) or log::l("creating $prefix/dev/mouse1 symlink failed");

    if (arch() =~ /ppc/) {
	my $s = join('',
	  "dev.mac_hid.mouse_button_emulation = " . to_bool($mouse->{button2_key} || $mouse->{button3_key}) . "\n",
	  if_($mouse->{button2_key}, "dev.mac_hid.mouse_button2_keycode = $mouse->{button2_key}\n"),
	  if_($mouse->{button3_key}, "dev.mac_hid.mouse_button3_keycode = $mouse->{button3_key}\n"),
	);
	substInFile { 
	    $_ = '' if /^\Qdev.mac_hid.mouse_button/;
	    $_ .= $s if eof;
	} "$prefix/etc/sysctl.conf";
	#- hack - dev RPM symlinks to mouse0 - lands on mouse1 with new input layer on PPC input/mice will get both ADB and USB
	symlinkf "/dev/input/mice", "$prefix/dev/usbmouse" if ($mouse->{device} eq "usbmouse");    
    }
}

sub mouseconfig {
    my ($t, $mouse, @wacom);

    #- Whouah! probing all devices from ttyS0 to ttyS3 once a time!
    detect_devices::probeSerialDevices();

    #- check new probing methods keep everything used here intact!
    foreach (0..3) {
	$t = detect_devices::probeSerial("/dev/ttyS$_");
	if ($t->{CLASS} eq 'MOUSE') {
	    $t->{MFG} ||= $t->{MANUFACTURER};

	    $mouse = fullname2mouse("serial|Microsoft IntelliMouse") if $t->{MFG} eq 'MSH' && $t->{MODEL} eq '0001';
	    $mouse = fullname2mouse("serial|Logitech MouseMan") if $t->{MFG} eq 'LGI' && $t->{MODEL} =~ /^80/;
	    $mouse = fullname2mouse("serial|Genius NetMouse") if $t->{MFG} eq 'KYE' && $t->{MODEL} eq '0003';

	    $mouse ||= fullname2mouse("serial|Generic 2 Button Mouse"); #- generic by default.
	    $mouse->{device} = "ttyS$_";
	    last;
	} elsif ($t->{CLASS} eq "PEN" || $t->{MANUFACTURER} eq "WAC") {
	    push @wacom, "ttyS$_";
	}
    }
    $mouse, @wacom;
}

sub detect() {
    if (arch() =~ /^sparc/) {
	return fullname2mouse("sunmouse|Sun - Mouse");
    }
    if (arch() eq "ppc") {
        return fullname2mouse(detect_devices::hasMousePS2("usbmouse") ? 
			      "USB|1 button" :
			      # No need to search for an ADB mouse.  If I did, the PPC kernel would
			      # find one whether or not I had one installed!  So..  default to it.
			      "busmouse|1 button");
    }

    my @wacom;
    my $fast_mouse_probe = sub {
	my $auxmouse = detect_devices::hasMousePS2("psaux") && fullname2mouse("PS/2|Standard", unsafe => 1);

	if (modules::get_probeall("usb-interface")) {
	    if (my (@l) = detect_devices::usbMice()) {
		log::l("found usb mouse $_->{driver} $_->{description} ($_->{type})") foreach @l;
		eval { modules::load(qw(hid mousedev usbmouse)) };
		if (!$@ && detect_devices::tryOpen("usbmouse")) {
		    my $mouse = fullname2mouse($l[0]{driver} =~ /Mouse:(.*)/ ? $1 : "USB|Generic");
		    $auxmouse and $mouse->{auxmouse} = $auxmouse; #- for laptop, we kept the PS/2 as secondary (symbolic).
		    return $mouse;
		}
		eval { modules::unload(qw(usbmouse mousedev hid)) };
	    }
	}
	$auxmouse;
    };

    if (modules::get_probeall("usb-interface")) {
	my $keep_mouse;
	if (my (@l) = detect_devices::usbWacom()) {
	    log::l("found usb wacom $_->{driver} $_->{description} ($_->{type})") foreach @l;
	    eval { modules::load("wacom", "evdev"); };
	    unless ($@) {
		foreach (0..$#l) {
		    detect_devices::tryOpen("input/event$_") and $keep_mouse = 1, push @wacom, "input/event$_";
		}
	    }
	    $keep_mouse or eval { modules::unload("evdev", "wacom"); };
	}
    }

    #- at this level, not all possible mice are detected so avoid invoking serial_probe
    #- which takes a while for its probe.
    if ($::isStandalone) {
	my $mouse = $fast_mouse_probe->();
	$mouse and return ($mouse, @wacom);
    }

    #- probe serial device to make sure a wacom has been detected.
    eval { modules::load("serial") };
    my ($r, @serial_wacom) = mouseconfig(); push @wacom, @serial_wacom;

    if (!$::isStandalone) {
	my $mouse = $fast_mouse_probe->();
	$r && $mouse and $r->{auxmouse} = $mouse; #- we kept the auxilliary mouse as PS/2.
	$r and return ($r, @wacom);
	$mouse and return ($mouse, @wacom);
    } else {
	$r and return ($r, @wacom);
    }

    #- in case only a wacom has been found, assume an inexistant mouse (necessary).
    @wacom and return { CLASS      => 'MOUSE',
			nbuttons   => 2,
			device     => "nothing",
			MOUSETYPE  => "Microsoft",
			XMOUSETYPE => "Microsoft"}, @wacom;

    if (!modules::get_probeall("usb-interface") && detect_devices::is_a_recent_computer() && $::isInstall && !$::noauto) {
	#- special case for non detected usb interface on a box with no mouse.
	#- we *must* find out if there really is no usb, otherwise the box may
	#- not be accessible via the keyboard (if the keyboard is USB)
	#- the only way to know this is to make a full pci probe
	modules::load_category('bus/usb', '', 'unsafe'); 
	if (my $mouse = $fast_mouse_probe->()) {
	    return $mouse;
	}
    }

    #- defaults to generic serial mouse on ttyS0.
    #- Oops? using return let return a hash ref, if not using it, it return a list directly :-)
    return fullname2mouse("serial|Generic 2 Button Mouse", unsafe => 1);
}

#- write_conf : write the mouse infos into the Xconfig files.
#- input :
#-  $mouse : the hashtable containing the informations
#- $mouse input
#-  $mouse->{nbuttons} : number of buttons : integer
#-  $mouse->{device} : device of the mouse : string : ex 'psaux'
#-  $mouse->{XMOUSETYPE} : type of the mouse for gpm : string : ex 'PS/2'
#-  $mouse->{type} : type (generic ?) of the mouse : string : ex 'PS/2'
#-  $mouse->{name} : name of the mouse : string : ex 'Standard'
#-  $mouse->{MOUSETYPE} : type of the mouse : string : ex "ps/2"
#-  $mouse->{XEMU3} : emulate 3rd button : string : 'yes' or 'no'
sub write_conf {
    my ($mouse) = @_;

    &write('', $mouse);
    modules::write_conf('') if $mouse->{device} eq "usbmouse" && !$::testing;

    my $f = "/etc/X11/XF86Config";
    my $g = "/etc/X11/XF86Config-4";

    my $update_mouse = sub {
	my ($mouse) = @_;

	my ($zaxis, $zaxis_aux) = map { [
					 $_->{nbuttons} > 3 ? [ "ZAxisMapping", "4 5" ] : (),
					 $_->{nbuttons} > 5 ? [ "ZAxisMapping", "6 7" ] : (),
					 $_->{nbuttons} < 3 ? ([ "Emulate3Buttons" ], [ "Emulate3Timeout", "50" ]) : ()
					] } grep { $_ } ($mouse, $mouse->{auxmouse});

	my ($str_zaxis, $str_zaxis_aux) = map { join('', map { qq(\n    $_->[0]) . ($_->[1] && qq( $_->[1])) } @$_)
					    } grep { $_ } ($zaxis, $zaxis_aux);
	my $found_auxmouse = 0;
	substInFile {
	    if (/^Section\s+"Pointer"/ .. /^EndSection/) {
		$_ = '' if /(ZAxisMapping|Emulate3)/; #- remove existing line
		s|^(\s*Protocol\s+).*|$1"$mouse->{XMOUSETYPE}"|;
		s|^(\s*Device\s+).*|$1"/dev/$mouse->{device}"$str_zaxis|;
	    }
	    if ($mouse->{auxmouse}) {
		if (/DeviceName\s+"Mouse2"/ .. /^EndSection/) {
		    $found_auxmouse = 1;
		    $_ = '' if /(ZAxisMapping|Emulate3|AlwaysCore)/; #- remove existing line
		    s|^(\s*Protocol\s+).*|$1"$mouse->{auxmouse}{XMOUSETYPE}"|;
		    s|^(\s*Device\s+).*|$1"/dev/$mouse->{auxmouse}{device}"\n        AlwaysCore$str_zaxis_aux|;
		}
	    }
	} $f if -e $f && !$::testing;
	substInFile {
	    if (my $l = /^Section\s+"Pointer"/ .. /^EndSection/) {
		$l =~ /E/ and $_ .= qq(

Section "XInput"
    SubSection "Mouse"
        DeviceName "Mouse2"
        Protocol   "$mouse->{auxmouse}{XMOUSETYPE}"
        Device     "/dev/$mouse->{auxmouse}{device}"
        AlwaysCore$str_zaxis_aux
    EndSubSection
EndSection
);
	    }
	} $f if !$found_auxmouse && $mouse->{auxmouse} && -e $f && !$::testing;

	($str_zaxis, $str_zaxis_aux) = map { join('', map { qq(\n    Option "$_->[0]") . ($_->[1] && qq( "$_->[1]")) } @$_)
					 } grep { $_ } ($zaxis, $zaxis_aux);
	$found_auxmouse = 0;
	substInFile {
	    if (/Identifier\s+"Mouse1"/ .. /^EndSection/) {
		$_ = '' if /(ZAxisMapping|Emulate3)/; #- remove existing line
		s|^(\s*Option\s+"Protocol"\s+).*|$1"$mouse->{XMOUSETYPE}"|; #"
		s|^(\s*Option\s+"Device"\s+).*|$1"/dev/mouse"$str_zaxis|;
	    }
	    if ($mouse->{auxmouse}) {
		if (/Identifier\s+"Mouse2"/ .. /^EndSection/) {
		    $found_auxmouse = 1;
		    $_ = '' if /(ZAxisMapping|Emulate3)/; #- remove existing line
		    s|^(\s*Option\s+"Protocol"\s+).*|$1"$mouse->{auxmouse}{XMOUSETYPE}"|; #"
		    s|^(\s*Option\s+"Device"\s+).*|$1"/dev/$mouse->{auxmouse}{device}"$str_zaxis_aux|; #"
		}
	    }
	} $g if -e $g && !$::testing;
	substInFile {
	    if (my $l = /Identifier\s+"Mouse1"/ .. /^EndSection/) {
		$l =~ /E/ and $_ .= qq(

Section "InputDevice"
    Identifier "Mouse2"
    Option     "Protocol" "$mouse->{auxmouse}{XMOUSETYPE}"
    Option     "Device"   "/dev/$mouse->{auxmouse}{XMOUSETYPE}"$str_zaxis_aux
EndSection
);
	    }
	} $g if !$found_auxmouse && $mouse->{auxmouse} && -e $g && !$::testing;
    };
    $update_mouse->($mouse);
}

sub test_mouse_install {
    my ($mouse) = @_;
    require my_gtk;
    my_gtk->import(qw(:wrappers :helpers));
    my $w = my_gtk->new;
    my ($width, $height, $offset) = (210, round_up(min(350, $::windowheight - 150), 6), 25);
    my $darea = new Gtk::DrawingArea;
    $darea->set_events([ 'button_press_mask', 'button_release_mask' ]);  #$darea must be unrealized.
    gtkadd($w->{window},
  	   gtkpack(my $vbox_grab = new Gtk::VBox(0,0),
		   gtksize(gtkset_usize($darea, $width+1, $height+1), $width+1, $height+1),
		   my $okcancel = gtkset_sensitive(create_okcancel($w, '', '', "edge"), 1)
		  ),
	  );
    $okcancel->set_uposition(7, $height-43);
    Gtk->timeout_add(2000, sub { gtkset_sensitive($okcancel, 1); $okcancel->draw(undef); });
    test_mouse($mouse, $w, $darea, $width, $height);
    $w->{window}->set_usize(undef, $height+10);
    $w->sync; # HACK
    Gtk::Gdk->pointer_grab($darea->window, 1,
			   [ 'pointer_motion_mask'],
			   $darea->window, undef ,0);
    $w->main;
}

sub test_mouse_standalone {
    my ($mouse, $hbox) = @_;
    require my_gtk;
    my_gtk->import(qw(:wrappers));
    my ($width, $height, $offset) = (210, round_up(min(350, $::windowheight - 150), 6), 25);
    my $darea = new Gtk::DrawingArea;
    $darea->set_events([ 'button_press_mask', 'button_release_mask' ]);  #$darea must be unrealized.
    gtkpack($hbox,
	    gtkpack(gtkset_border_width(new Gtk::VBox(0,10), 10),
		    gtksize(gtkset_usize($darea, $width+1, $height+1), $width, $height)
		   )
	   );
    test_mouse($mouse, $hbox, $darea, $width, $height);
}

sub test_mouse {
    my ($mouse, $w, $darea, $width, $height) = @_;

    $darea->realize();
    my $wait = 0;
    my ($m3_image, $m3_mask) = gtkcreate_xpm('mouse_3b.xpm');
    my ($m3_imagep, $m3_maskp) = gtkcreate_xpm('mouse_3b+.xpm');
    my ($m3_left, $m3_left_mask) = gtkcreate_xpm('mouse_left.xpm');
    my ($m3_right, $m3_right_mask) = gtkcreate_xpm('mouse_right.xpm');
    my ($m3_middle, $m3_middle_mask) = gtkcreate_xpm('mouse_middle.xpm');
    my ($aru, $aru_mask) = gtkcreate_xpm('arrow_up.xpm');
    my ($ard, $ard_mask) = gtkcreate_xpm('arrow_down.xpm');
    my $image = $m3_image;
    $mouse->{nbuttons} > 3 and $image = $m3_imagep;
    my $draw_text = sub {
  	my ($t, $y) = @_;
  	my $font = $darea->style->font;
  	my $w = $font->string_width($t);
  	$darea->window->draw_string($font, $darea->style->black_gc, ($darea->allocation->[2]-$width)/2 + ($width - $w) / 2, ($darea->allocation->[3]-$height)/2 + $y, $t);
    };
    my $drawarea; $drawarea = sub { $darea->window->draw_pixmap ($darea->style->bg_gc('normal'),
								 $image, 0, 0,
								 ($darea->allocation->[2]-$width)/2, ($darea->allocation->[3]-$height)/2,
								 210, 350);
				    $draw_text->(_("Please test the mouse"), $height - 120);
				    $draw_text->(_("To activate the mouse,"), $height - 105) if $mouse->{XMOUSETYPE} eq 'IMPS/2';
				    $draw_text->(_("MOVE YOUR WHEEL!"), $height - 90) if $mouse->{XMOUSETYPE} eq 'IMPS/2';
				    return if $::isStandalone;
				    $darea->window->draw_rectangle($darea->style->bg_gc('normal'), 1, 0, $height-65, $width, $height);
				};

    my $paintButton = sub {
	my ($nb, $pressed) = @_;
	my $x = 60 + $nb*33;
	$drawarea->();
	if ($nb == 0) {
	    $darea->window->draw_pixmap ($darea->style->bg_gc('normal'),
					 $m3_left, 0, 0,
					 ($darea->allocation->[2]-$width)/2+31, ($darea->allocation->[3]-$height)/2 + 52,
					 59, 91);
	} elsif ($nb == 2) {
	    $darea->window->draw_pixmap ($darea->style->bg_gc('normal'),
					 $m3_right, 0, 0,
					 ($darea->allocation->[2]-$width)/2+117, ($darea->allocation->[3]-$height)/2 + 52,
					 61, 91);
	} elsif ($nb == 1) {
	    if ($mouse->{nbuttons} > 3) {
		$darea->window->draw_pixmap ($darea->style->bg_gc('normal'),
					     $m3_middle, 0, 0,
					     ($darea->allocation->[2]-$width)/2+98, ($darea->allocation->[3]-$height)/2 + 67,
					     13, 62);
	    } else {
  		$darea->window->draw_arc ( $darea->style->black_gc,
  					   1, ($darea->allocation->[2]-$width)/2 + $x, ($darea->allocation->[3]-$height)/2 + 90, 20, 25,
  					   0, 360*64);
	    }
	} elsif ($nb == 3) {
	    $wait=1;
	    $darea->window->draw_pixmap ($darea->style->bg_gc('normal'),
					 $aru, 0, 0,
					 ($darea->allocation->[2]-$width)/2+102, ($darea->allocation->[3]-$height)/2 + 57,
					 6, 8);
	    $darea->window->draw_pixmap ($darea->style->bg_gc('normal'),
					 $m3_middle, 0, 0,
					 ($darea->allocation->[2]-$width)/2+98, ($darea->allocation->[3]-$height)/2 + 67,
					 13, 62);
	    Gtk->timeout_add(200, sub { $wait = 0 });
	} elsif ($nb == 4) {
	    $wait=1;
	    $darea->window->draw_pixmap ($darea->style->bg_gc('normal'),
					 $ard, 0, 0,
					 ($darea->allocation->[2]-$width)/2+102, ($darea->allocation->[3]-$height)/2 + 131,
					 6, 8);
	    $darea->window->draw_pixmap ($darea->style->bg_gc('normal'),
					 $m3_middle, 0, 0,
					 ($darea->allocation->[2]-$width)/2+98, ($darea->allocation->[3]-$height)/2 + 67,
					 13, 62);
	    Gtk->timeout_add(200, sub { $wait = 0 });
	}
    };
    $darea->signal_connect(button_press_event => sub {
  			       my $b = $_[1]{button};
			       $paintButton->($b - 1);
  			   });
    $darea->signal_connect(button_release_event => sub {
			       while ($wait) { my_gtk::flush() }
			       $drawarea->()
  			   });
    $darea->signal_connect(expose_event => sub { $drawarea->() });
    $darea->size($width, $height);
}
span> "_: keyboard\n" "Polish (qwertz layout)" msgstr "" #: ../lib/keyboard.pm:281 #, fuzzy, c-format msgid "" "_: keyboard\n" "Pashto" msgstr "Polainnais" #: ../lib/keyboard.pm:282 #, c-format msgid "" "_: keyboard\n" "Portuguese" msgstr "Portaingéilis" #: ../lib/keyboard.pm:283 #, c-format msgid "" "_: keyboard\n" "Canadian (Quebec)" msgstr "" #: ../lib/keyboard.pm:284 #, fuzzy, c-format msgid "" "_: keyboard\n" "Romanian (qwertz)" msgstr "Rúisis (Yawerty)" #: ../lib/keyboard.pm:285 #, fuzzy, c-format msgid "" "_: keyboard\n" "Romanian (qwerty)" msgstr "Rúisis (Yawerty)" #: ../lib/keyboard.pm:287 #, fuzzy, c-format msgid "" "_: keyboard\n" "Russian (phonetic)" msgstr "Bulgáiris" #: ../lib/keyboard.pm:289 #, c-format msgid "" "_: keyboard\n" "Slovenian" msgstr "Slóivéanach" #: ../lib/keyboard.pm:291 #, c-format msgid "" "_: keyboard\n" "Sinhala" msgstr "" #: ../lib/keyboard.pm:292 #, c-format msgid "" "_: keyboard\n" "Slovakian (QWERTZ)" msgstr "Slóbaicis (QWERTZ)" #: ../lib/keyboard.pm:293 #, c-format msgid "" "_: keyboard\n" "Slovakian (QWERTY)" msgstr "Slóbaicis (QWERTY)" #: ../lib/keyboard.pm:294 #, fuzzy, c-format msgid "" "_: keyboard\n" "Saami (norwegian)" msgstr "Dvorak (Ioruais)" #: ../lib/keyboard.pm:295 #, c-format msgid "" "_: keyboard\n" "Saami (swedish/finnish)" msgstr "" #: ../lib/keyboard.pm:297 #, c-format msgid "" "_: keyboard\n" "Sindhi" msgstr "Sindis" #: ../lib/keyboard.pm:299 #, c-format msgid "" "_: keyboard\n" "Serbian (cyrillic)" msgstr "" #: ../lib/keyboard.pm:300 #, c-format msgid "" "_: keyboard\n" "Syriac" msgstr "Síris" #: ../lib/keyboard.pm:301 #, fuzzy, c-format msgid "" "_: keyboard\n" "Syriac (phonetic)" msgstr "Bulgáiris" #: ../lib/keyboard.pm:302 #, c-format msgid "" "_: keyboard\n" "Telugu" msgstr "Teileagúis" #: ../lib/keyboard.pm:304 #, c-format msgid "" "_: keyboard\n" "Tamil (ISCII-layout)" msgstr "" #: ../lib/keyboard.pm:305 #, c-format msgid "" "_: keyboard\n" "Tamil (Typewriter-layout)" msgstr "" #: ../lib/keyboard.pm:306 #, c-format msgid "" "_: keyboard\n" "Thai (Kedmanee)" msgstr "Téalannach (Kedmanee)" #: ../lib/keyboard.pm:307 #, fuzzy, c-format msgid "" "_: keyboard\n" "Thai (TIS-820)" msgstr "Meárchlár US" #: ../lib/keyboard.pm:309 #, c-format msgid "" "_: keyboard\n" "Thai (Pattachote)" msgstr "Téalannach (Pattachote)" #: ../lib/keyboard.pm:311 #, c-format msgid "" "_: keyboard\n" "Tifinagh (moroccan layout) (+latin/arabic)" msgstr "" #: ../lib/keyboard.pm:312 #, c-format msgid "" "_: keyboard\n" "Tifinagh (phonetic) (+latin/arabic)" msgstr "" #: ../lib/keyboard.pm:314 #, c-format msgid "" "_: keyboard\n" "Tajik" msgstr "Táidsícis" #: ../lib/keyboard.pm:316 #, c-format msgid "" "_: keyboard\n" "Turkmen" msgstr "Turcamáinis" #: ../lib/keyboard.pm:317 #, c-format msgid "" "_: keyboard\n" "Turkish (traditional \"F\" model)" msgstr "" #: ../lib/keyboard.pm:318 #, c-format msgid "" "_: keyboard\n" "Turkish (modern \"Q\" model)" msgstr "" #: ../lib/keyboard.pm:320 #, c-format msgid "" "_: keyboard\n" "Ukrainian" msgstr "Úcránach" #: ../lib/keyboard.pm:322 #, fuzzy, c-format msgid "" "_: keyboard\n" "Urdu keyboard" msgstr "Méarchlár Chóiris" #: ../lib/keyboard.pm:324 #, c-format msgid "US keyboard (international)" msgstr "Mearchlár US (idirnaisiúnta)" #: ../lib/keyboard.pm:325 #, c-format msgid "ISO9995-3 (US keyboard with 3 levels per key)" msgstr "" #: ../lib/keyboard.pm:326 #, c-format msgid "" "_: keyboard\n" "Uzbek (cyrillic)" msgstr "" #: ../lib/keyboard.pm:328 #, c-format msgid "" "_: keyboard\n" "Vietnamese \"numeric row\" QWERTY" msgstr "" #: ../lib/keyboard.pm:329 #, c-format msgid "" "_: keyboard\n" "Yugoslavian (latin)" msgstr "" #: ../lib/keyboard.pm:336 #, c-format msgid "Right Alt key" msgstr "" #: ../lib/keyboard.pm:337 #, c-format msgid "Both Shift keys simultaneously" msgstr "" #: ../lib/keyboard.pm:338 #, c-format msgid "Control and Shift keys simultaneously" msgstr "" #: ../lib/keyboard.pm:339 #, c-format msgid "CapsLock key" msgstr "" #: ../lib/keyboard.pm:340 #, c-format msgid "Shift and CapsLock keys simultaneously" msgstr "" #: ../lib/keyboard.pm:341 #, c-format msgid "Ctrl and Alt keys simultaneously" msgstr "" #: ../lib/keyboard.pm:342 #, c-format msgid "Alt and Shift keys simultaneously" msgstr "" #: ../lib/keyboard.pm:343 #, c-format msgid "\"Menu\" key" msgstr "" #: ../lib/keyboard.pm:344 #, c-format msgid "Left \"Windows\" key" msgstr "" #: ../lib/keyboard.pm:345 #, c-format msgid "Right \"Windows\" key" msgstr "" #: ../lib/keyboard.pm:346 #, c-format msgid "Both Control keys simultaneously" msgstr "" #: ../lib/keyboard.pm:347 #, c-format msgid "Both Alt keys simultaneously" msgstr "" #: ../lib/keyboard.pm:348 #, c-format msgid "Left Shift key" msgstr "" #: ../lib/keyboard.pm:349 #, c-format msgid "Right Shift key" msgstr "" #: ../lib/keyboard.pm:350 #, c-format msgid "Left Alt key" msgstr "" #: ../lib/keyboard.pm:351 #, fuzzy, c-format msgid "Left Control key" msgstr "Scríos Printéir" #: ../lib/keyboard.pm:352 #, fuzzy, c-format msgid "Right Control key" msgstr "Scríos Printéir" #: ../lib/keyboard.pm:388 #, c-format msgid "" "Here you can choose the key or key combination that will \n" "allow switching between the different keyboard layouts\n" "(eg: latin and non latin)" msgstr "" #: ../lib/keyboard.pm:393 #, c-format msgid "Warning" msgstr "Rabhadh" #: ../lib/keyboard.pm:394 #, c-format msgid "" "This setting will be activated after the installation.\n" "During installation, you will need to use the Right Control\n" "key to switch between the different keyboard layouts." msgstr "" #: ../lib/mouse.pm:25 #, c-format msgid "Sun - Mouse" msgstr "Luchóg - Sun" #: ../lib/mouse.pm:31 #, c-format msgid "Standard" msgstr "Caighdeánach" #: ../lib/mouse.pm:32 #, c-format msgid "Logitech MouseMan+" msgstr "Luchóg MouseMan+" #: ../lib/mouse.pm:33 #, fuzzy, c-format msgid "Generic PS2 Wheel Mouse" msgstr "Mouse Gnáth (PS/2)" #: ../lib/mouse.pm:34 #, c-format msgid "GlidePoint" msgstr "GlidePoint" #: ../lib/mouse.pm:37 ../lib/mouse.pm:71 #, c-format msgid "Kensington Thinking Mouse" msgstr "Kensington Thinking Mouse" #: ../lib/mouse.pm:38 ../lib/mouse.pm:66 #, c-format msgid "Genius NetMouse" msgstr "Genius NetMouse" #: ../lib/mouse.pm:39 #, c-format msgid "Genius NetScroll" msgstr "Genius NetScroll" #: ../lib/mouse.pm:40 ../lib/mouse.pm:50 #, c-format msgid "Microsoft Explorer" msgstr "Microsoft Explorer" #: ../lib/mouse.pm:45 ../lib/mouse.pm:77 #, c-format msgid "1 button" msgstr "1 Cnaipe" #: ../lib/mouse.pm:46 ../lib/mouse.pm:55 #, c-format msgid "Generic 2 Button Mouse" msgstr "Luchóg 2-cnaipe Loiceadh" #: ../lib/mouse.pm:48 ../lib/mouse.pm:57 #, fuzzy, c-format msgid "Generic 3 Button Mouse with Wheel emulation" msgstr "Luchóg Gnáth 3-cnaipe" #: ../lib/mouse.pm:49 #, c-format msgid "Wheel" msgstr "Rothar" #: ../lib/mouse.pm:53 #, c-format msgid "serial" msgstr "srathach" #: ../lib/mouse.pm:56 #, c-format msgid "Generic 3 Button Mouse" msgstr "Luchóg Gnáth 3-cnaipe" #: ../lib/mouse.pm:58 #, c-format msgid "Microsoft IntelliMouse" msgstr "Microsoft IntelliMouse" #: ../lib/mouse.pm:59 #, c-format msgid "Logitech MouseMan" msgstr "Luchóg MouseMan" #: ../lib/mouse.pm:60 #, fuzzy, c-format msgid "Logitech MouseMan with Wheel emulation" msgstr "Luchóg MouseMan" #: ../lib/mouse.pm:61 #, c-format msgid "Mouse Systems" msgstr "Mouse Systems" #: ../lib/mouse.pm:63 #, c-format msgid "Logitech CC Series" msgstr "Luchóg Logitech CC" #: ../lib/mouse.pm:64 #, fuzzy, c-format msgid "Logitech CC Series with Wheel emulation" msgstr "Luchóg Logitech CC" #: ../lib/mouse.pm:65 #, c-format msgid "Logitech MouseMan+/FirstMouse+" msgstr "Logitech MouseMan+/FirstMouse+" #: ../lib/mouse.pm:67 #, c-format msgid "MM Series" msgstr "MM Series" #: ../lib/mouse.pm:68 #, c-format msgid "MM HitTablet" msgstr "MM HitTablet" #: ../lib/mouse.pm:69 #, c-format msgid "Logitech Mouse (serial, old C7 type)" msgstr "Luchóg Logitech (srathach, séan cinéal C7)" #: ../lib/mouse.pm:70 #, fuzzy, c-format msgid "Logitech Mouse (serial, old C7 type) with Wheel emulation" msgstr "Luchóg Logitech (srathach, séan cinéal C7)" #: ../lib/mouse.pm:72 #, fuzzy, c-format msgid "Kensington Thinking Mouse with Wheel emulation" msgstr "Kensington Thinking Mouse" #: ../lib/mouse.pm:75 #, c-format msgid "busmouse" msgstr "busmouse" #: ../lib/mouse.pm:78 #, c-format msgid "2 buttons" msgstr "2 cnaipí" #: ../lib/mouse.pm:79 #, c-format msgid "3 buttons" msgstr "3 cnaipí" #: ../lib/mouse.pm:80 #, c-format msgid "3 buttons with Wheel emulation" msgstr "" #: ../lib/mouse.pm:83 #, c-format msgid "Universal" msgstr "Uilíoch" #: ../lib/mouse.pm:85 #, c-format msgid "Any PS/2 & USB mice" msgstr "" #: ../lib/mouse.pm:86 #, c-format msgid "Force evdev" msgstr "" #: ../lib/mouse.pm:87 #, fuzzy, c-format msgid "Microsoft Xbox Controller S" msgstr "Microsoft Explorer" #: ../lib/mouse.pm:88 #, c-format msgid "VirtualBox mouse" msgstr "" #: ../lib/mouse.pm:91 #, c-format msgid "none" msgstr "Ar bith" #: ../lib/mouse.pm:93 #, c-format msgid "No mouse" msgstr "Luchóg ar bith" #: ../lib/mouse.pm:506 #, c-format msgid "Testing the mouse" msgstr "" #: ../lib/mouse.pm:538 #, c-format msgid "Please choose your type of mouse." msgstr "Roghnaigh cineál do luiche." #: ../lib/mouse.pm:539 #, fuzzy, c-format msgid "Mouse choice" msgstr "Rogha Láimhe" #: ../lib/mouse.pm:555 #, c-format msgid "Emulate third button?" msgstr "" #: ../lib/mouse.pm:559 #, c-format msgid "Mouse Port" msgstr "Gaireas luchóige" #: ../lib/mouse.pm:560 #, fuzzy, c-format msgid "Please choose which serial port your mouse is connected to." msgstr "Cén cinéal luchóg atá agat?" #: ../lib/mouse.pm:569 #, c-format msgid "Buttons emulation" msgstr "" #: ../lib/mouse.pm:571 #, c-format msgid "Button 2 Emulation" msgstr "" #: ../lib/mouse.pm:572 #, c-format msgid "Button 3 Emulation" msgstr "" #: ../lib/mouse.pm:623 #, c-format msgid "Please test the mouse" msgstr "Teastáil an luchóg, le do thoil" #: ../lib/mouse.pm:625 #, c-format msgid "To activate the mouse," msgstr "" #: ../lib/mouse.pm:626 #, c-format msgid "MOVE YOUR WHEEL!" msgstr "BOG DO ROTHAR!" #: ../tools/XFdrake:71 #, fuzzy, c-format msgid "You need to reboot for changes to take effect" msgstr "Beidh ort an ríomhaire a aththosnú sula ndéanfar an athrú" #: ../tools/keyboarddrake:32 #, c-format msgid "Keyboard" msgstr "Eocharclár" #: ../tools/keyboarddrake:33 #, c-format msgid "Please, choose your keyboard layout." msgstr "Cén leagan amach atá ar d'eocharchlársa." #: ../tools/keyboarddrake:34 #, c-format msgid "Keyboard layout" msgstr "Leagan Amach Méarchláir" #: ../tools/keyboarddrake:42 #, fuzzy, c-format msgid "Keyboard type" msgstr "Eocharclár" #: ../tools/keyboarddrake:54 #, c-format msgid "Do you want the BackSpace to return Delete in console?" msgstr "" #: ../tools/mousedrake:44 #, fuzzy, c-format msgid "Mouse test" msgstr "Mouse Systems" #: ../tools/mousedrake:47 #, fuzzy, c-format msgid "Please test your mouse:" msgstr "Teastáil an luchóg, le do thoil"