summaryrefslogtreecommitdiffstats
path: root/usr.sbin/sysinstall/mouse.c
diff options
context:
space:
mode:
authorjkh <jkh@FreeBSD.org>1998-03-07 08:59:32 +0000
committerjkh <jkh@FreeBSD.org>1998-03-07 08:59:32 +0000
commit75d39d7a552fc717e9e539107a8fcbf6d84d0e44 (patch)
tree97214572fb85254d213c07c6554304ab412fb0fa /usr.sbin/sysinstall/mouse.c
parent6682846885f7b3347088fca27d9c55c86426311e (diff)
downloadFreeBSD-src-75d39d7a552fc717e9e539107a8fcbf6d84d0e44.zip
FreeBSD-src-75d39d7a552fc717e9e539107a8fcbf6d84d0e44.tar.gz
Add a mouse configuration menu.
Submitted by: Kazutaka YOKOTA <yokota@zodiac.mech.utsunomiya-u.ac.jp>
Diffstat (limited to 'usr.sbin/sysinstall/mouse.c')
-rw-r--r--usr.sbin/sysinstall/mouse.c68
1 files changed, 68 insertions, 0 deletions
diff --git a/usr.sbin/sysinstall/mouse.c b/usr.sbin/sysinstall/mouse.c
new file mode 100644
index 0000000..c7b6c19
--- /dev/null
+++ b/usr.sbin/sysinstall/mouse.c
@@ -0,0 +1,68 @@
+/*-
+ * Copyright (c) 1998 Kazutaka YOKOTA (yokota@zodiac.mech.utsunomiya-u.ac.jp)
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ * 3. The name of the author may not be used to endorse or promote
+ * products derived from this software without specific prior written
+ * permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE AUTHRO AND CONTRIBUTORS ``AS IS'' AND
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHRO OR CONTRIBUTORS BE LIABLE
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+ * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ * SUCH DAMAGE.
+ *
+ * $Id$
+ */
+
+#include "sysinstall.h"
+#include <string.h>
+
+int
+mousedTest(dialogMenuItem *self)
+{
+ char *type;
+ char *port;
+ int ret;
+
+ type = variable_get(VAR_MOUSED_TYPE);
+ port = variable_get(VAR_MOUSED_PORT);
+ if ((type == NULL) || (port == NULL)
+ || (strlen(type) <= 0) || (strlen(port) <= 0)
+ || (strcmp(type, "NO") == 0)) {
+ msgConfirm("Please select a mouse protocol and a port first.");
+ return DITEM_FAILURE;
+ }
+
+ msgNotify("Trying to start the mouse daemon...");
+ vsystem("kill `cat /var/run/moused.pid`");
+ vsystem("vidcontrol -m on");
+ vsystem("moused -t %s -p %s", type, port);
+
+ ret = msgYesNo("Now move the mouse and see if it works.\n"
+ "(Note that buttons don't have any effect for now.)\n\n"
+ " Is the mouse cursor moving?\n");
+ if (ret) {
+ vsystem("vidcontrol -m off");
+ vsystem("kill `cat /var/run/moused.pid`");
+ variable_set(VAR_MOUSED "=NO");
+ } else {
+ variable_set(VAR_MOUSED "=YES");
+ }
+
+ return DITEM_SUCCESS;
+}
OpenPOWER on IntegriCloud