summaryrefslogtreecommitdiffstats
path: root/perl-install/mouse.pm
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2002-11-19 07:07:23 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2002-11-19 07:07:23 +0000
commit28d4ca95eaa3eeed3ec04652fe8a89f99be0fe45 (patch)
tree4d3d363c68e28a58a6c68c8f5a7410533f642006 /perl-install/mouse.pm
parent345f064136c7f868901f0f2f376d9646f4f019f9 (diff)
downloaddrakx-backup-do-not-use-28d4ca95eaa3eeed3ec04652fe8a89f99be0fe45.tar
drakx-backup-do-not-use-28d4ca95eaa3eeed3ec04652fe8a89f99be0fe45.tar.gz
drakx-backup-do-not-use-28d4ca95eaa3eeed3ec04652fe8a89f99be0fe45.tar.bz2
drakx-backup-do-not-use-28d4ca95eaa3eeed3ec04652fe8a89f99be0fe45.tar.xz
drakx-backup-do-not-use-28d4ca95eaa3eeed3ec04652fe8a89f99be0fe45.zip
perldoc: explain basic usage of mouse.pm, regarding
problems that show up in early interaction between harddrake::data and mouse
Diffstat (limited to 'perl-install/mouse.pm')
-rw-r--r--perl-install/mouse.pm38
1 files changed, 38 insertions, 0 deletions
diff --git a/perl-install/mouse.pm b/perl-install/mouse.pm
index 7a2e74460..dd34ff2de 100644
--- a/perl-install/mouse.pm
+++ b/perl-install/mouse.pm
@@ -550,3 +550,41 @@ sub test_mouse {
$darea->signal_connect(expose_event => sub { $drawarea->() });
$darea->size($width, $height);
}
+
+
+=begin
+
+=head1 NAME
+
+mouse - Perl functions to handle mice
+
+=head1 SYNOPSYS
+
+ require modules;
+ require mouse;
+ modules::mergein_conf('/etc/modules.conf') if -r '/etc/modules.conf';
+ &mouse::detect();
+
+=head1 DESCRIPTION
+
+C<mouse> is a perl module used by mousedrake to detect and configure the mouse.
+
+=head1 COPYRIGHT
+
+Copyright (C) 2000-2002 MandrakeSoft <tvignaud@mandrakesoft.com>
+
+This program is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 2, or (at your option)
+any later version.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with this program; if not, write to the Free Software
+Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+=cut