1#!/bin/sh
2#-
3# Copyright (c) 2012-2013 Devin Teske
4# All rights reserved.
5#
6# Redistribution and use in source and binary forms, with or without
7# modification, are permitted provided that the following conditions
8# are met:
9# 1. Redistributions of source code must retain the above copyright
10#    notice, this list of conditions and the following disclaimer.
11# 2. Redistributions in binary form must reproduce the above copyright
12#    notice, this list of conditions and the following disclaimer in the
13#    documentation and/or other materials provided with the distribution.
14#
15# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18# ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25# SUCH DAMAGE.
26#
27#
28############################################################ INCLUDES
29
30BSDCFG_SHARE="/usr/share/bsdconfig"
31. $BSDCFG_SHARE/common.subr || exit 1
32f_dprintf "%s: loading includes..." "$0"
33f_include $BSDCFG_SHARE/dialog.subr
34f_include $BSDCFG_SHARE/mustberoot.subr
35f_include $BSDCFG_SHARE/sysrc.subr
36
37BSDCFG_LIBE="/usr/libexec/bsdconfig" APP_DIR="110.mouse"
38f_include_lang $BSDCFG_LIBE/$APP_DIR/include/messages.subr
39
40f_index_menusel_keyword $BSDCFG_LIBE/$APP_DIR/INDEX "$pgm" ipgm &&
41	pgm="${ipgm:-$pgm}"
42
43############################################################ FUNCTIONS
44
45# dialog_menu_main
46#
47# Display the dialog(1)-based application main menu.
48#
49dialog_menu_main()
50{
51	local prompt="$msg_protocol_menu_text"
52	local menu_list="
53		'1 $msg_auto'          '$msg_auto_desc'
54		'2 $msg_glidepoint'    '$msg_glidepoint_desc'
55		'3 $msg_hitachi'       '$msg_hitachi_desc'
56		'4 $msg_intellimouse'  '$msg_intellimouse_desc'
57		'5 $msg_logitech'      '$msg_logitech_desc'
58		'6 $msg_microsoft'     '$msg_microsoft_desc'
59		'7 $msg_mm_series'     '$msg_mm_series_desc'
60		'8 $msg_mouseman'      '$msg_mouseman_desc'
61		'9 $msg_mousesystems'  '$msg_mousesystems_desc'
62		'A $msg_thinkingmouse' '$msg_thinkingmouse_desc'
63	" # END-QUOTE
64	local defaultitem= # Calculated below
65	local hline=
66
67	local height width rows
68	eval f_dialog_menu_size height width rows \
69	                        \"\$DIALOG_TITLE\"     \
70	                        \"\$DIALOG_BACKTITLE\" \
71	                        \"\$prompt\"           \
72	                        \"\$hline\"            \
73	                        $menu_list
74
75	case "$( f_sysrc_get moused_type )" in
76	auto)          defaultitem="1 $msg_auto"          ;;
77	glidepoint)    defaultitem="2 $msg_glidepoint"    ;;
78	mmhittab)      defaultitem="3 $msg_hitachi"       ;;
79	intellimouse)  defaultitem="4 $msg_intellimouse"  ;;
80	logitech)      defaultitem="5 $msg_logitech"      ;;
81	microsoft)     defaultitem="6 $msg_microsoft"     ;;
82	mmseries)      defaultitem="7 $msg_mm_series"     ;;
83	mouseman)      defaultitem="8 $msg_mouseman"      ;;
84	mousesystems)  defaultitem="9 $msg_mousesystems"  ;;
85	thinkingmouse) defaultitem="A $msg_thinkingmouse" ;;
86	esac
87
88	local menu_choice
89	menu_choice=$( eval $DIALOG \
90		--title \"\$DIALOG_TITLE\"         \
91		--backtitle \"\$DIALOG_BACKTITLE\" \
92		--hline \"\$hline\"                \
93		--ok-label \"\$msg_ok\"            \
94		--cancel-label \"\$msg_cancel\"    \
95		--default-item \"\$defaultitem\"   \
96		--menu \"\$prompt\"                \
97		$height $width $rows               \
98		$menu_list                         \
99		2>&1 >&$DIALOG_TERMINAL_PASSTHRU_FD
100	)
101	local retval=$?
102	f_dialog_menutag_store -s "$menu_choice"
103	return $retval
104}
105
106############################################################ MAIN
107
108# Incorporate rc-file if it exists
109[ -f "$HOME/.bsdconfigrc" ] && f_include "$HOME/.bsdconfigrc"
110
111#
112# Process command-line arguments
113#
114while getopts h$GETOPTS_STDARGS flag; do
115	case "$flag" in
116	h|\?) f_usage $BSDCFG_LIBE/$APP_DIR/USAGE "PROGRAM_NAME" "$pgm" ;;
117	esac
118done
119shift $(( $OPTIND - 1 ))
120
121#
122# Initialize
123#
124f_dialog_title "$msg_select_a_protocol_type_for_your_mouse"
125f_dialog_backtitle "${ipgm:+bsdconfig }$pgm"
126f_mustberoot_init
127
128#
129# Launch application main menu
130#
131dialog_menu_main || f_die
132f_dialog_menutag_fetch mtag
133
134moused_type_to_set=
135case "$mtag" in
136"1 $msg_auto") # Bus mouse, PS/2 style mouse or PnP serial mouse
137	moused_type_to_set="auto" ;;
138"2 $msg_glidepoint") # ALPS GlidePoint pad (serial)
139	moused_type_to_set="glidepoint" ;;
140"3 $msg_hitachi") # Hitachi tablet (serial)
141	moused_type_to_set="mmhittab" ;;
142"4 $msg_intellimouse") # Microsoft Intellimouse (serial)
143	moused_type_to_set="intellimouse" ;;
144"5 $msg_logitech") # Logitech protocol (old models) (serial)
145	moused_type_to_set="logitech" ;;
146"6 $msg_microsoft") # Microsoft protocol (serial)
147	moused_type_to_set="microsoft" ;;
148"7 $msg_mm_series") # MM Series protocol (serial)
149	moused_type_to_set="mmseries" ;;
150"8 $msg_mouseman") # Logitech MouseMan/TrackMan models (serial)
151	moused_type_to_set="mouseman" ;;
152"9 $msg_mousesystems") # MouseSystems protocol (serial)
153	moused_type_to_set="mousesystems" ;;
154"A $msg_thinkingmouse") # Kensignton ThinkingMouse (serial)
155	moused_type_to_set="thinkingmouse" ;;
156esac
157
158if [ "$moused_type_to_set" ]; then
159	f_eval_catch "$0" f_sysrc_set \
160		'f_sysrc_set moused_type "%s"' "$moused_type_to_set" || f_die
161else
162	f_die 1 "$msg_unknown_mouse_protocol_selection"
163fi
164
165exit $SUCCESS
166
167################################################################################
168# END
169################################################################################
170