]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - usr.sbin/bsdconfig/mouse/type
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / usr.sbin / bsdconfig / mouse / type
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 # $FreeBSD$
28 #
29 ############################################################ INCLUDES
30
31 BSDCFG_SHARE="/usr/share/bsdconfig"
32 . $BSDCFG_SHARE/common.subr || exit 1
33 f_dprintf "%s: loading includes..." "$0"
34 f_include $BSDCFG_SHARE/dialog.subr
35 f_include $BSDCFG_SHARE/mustberoot.subr
36 f_include $BSDCFG_SHARE/sysrc.subr
37
38 BSDCFG_LIBE="/usr/libexec/bsdconfig" APP_DIR="110.mouse"
39 f_include_lang $BSDCFG_LIBE/$APP_DIR/include/messages.subr
40
41 ipgm=$( f_index_menusel_keyword $BSDCFG_LIBE/$APP_DIR/INDEX "$pgm" )
42 [ $? -eq $SUCCESS -a "$ipgm" ] && pgm="$ipgm"
43
44 ############################################################ FUNCTIONS
45
46 # dialog_menu_main
47 #
48 # Display the dialog(1)-based application main menu.
49 #
50 dialog_menu_main()
51 {
52         local prompt="$msg_protocol_menu_text"
53         local menu_list="
54                 '1 $msg_auto'          '$msg_auto_desc'
55                 '2 $msg_glidepoint'    '$msg_glidepoint_desc'
56                 '3 $msg_hitachi'       '$msg_hitachi_desc'
57                 '4 $msg_intellimouse'  '$msg_intellimouse_desc'
58                 '5 $msg_logitech'      '$msg_logitech_desc'
59                 '6 $msg_microsoft'     '$msg_microsoft_desc'
60                 '7 $msg_mm_series'     '$msg_mm_series_desc'
61                 '8 $msg_mouseman'      '$msg_mouseman_desc'
62                 '9 $msg_mousesystems'  '$msg_mousesystems_desc'
63                 'A $msg_thinkingmouse' '$msg_thinkingmouse_desc'
64         " # END-QUOTE
65         local defaultitem= # Calculated below
66         local hline=
67
68         local height width rows
69         eval f_dialog_menu_size height width rows \
70                                 \"\$DIALOG_TITLE\"     \
71                                 \"\$DIALOG_BACKTITLE\" \
72                                 \"\$prompt\"           \
73                                 \"\$hline\"            \
74                                 $menu_list
75
76         case "$( f_sysrc_get moused_type )" in
77         auto)          defaultitem="1 $msg_auto"          ;;
78         glidepoint)    defaultitem="2 $msg_glidepoint"    ;;
79         mmhittab)      defaultitem="3 $msg_hitachi"       ;;
80         intellimouse)  defaultitem="4 $msg_intellimouse"  ;;
81         logitech)      defaultitem="5 $msg_logitech"      ;;
82         microsoft)     defaultitem="6 $msg_microsoft"     ;;
83         mmseries)      defaultitem="7 $msg_mm_series"     ;;
84         mouseman)      defaultitem="8 $msg_mouseman"      ;;
85         mousesystems)  defaultitem="9 $msg_mousesystems"  ;;
86         thinkingmouse) defaultitem="A $msg_thinkingmouse" ;;
87         esac
88
89         local menu_choice
90         menu_choice=$( eval $DIALOG \
91                 --title \"\$DIALOG_TITLE\"         \
92                 --backtitle \"\$DIALOG_BACKTITLE\" \
93                 --hline \"\$hline\"                \
94                 --ok-label \"\$msg_ok\"            \
95                 --cancel-label \"\$msg_cancel\"    \
96                 --default-item \"\$defaultitem\"   \
97                 --menu \"\$prompt\"                \
98                 $height $width $rows               \
99                 $menu_list                         \
100                 2>&1 >&$DIALOG_TERMINAL_PASSTHRU_FD
101         )
102         local retval=$?
103         f_dialog_menutag_store -s "$menu_choice"
104         return $retval
105 }
106
107 ############################################################ MAIN
108
109 # Incorporate rc-file if it exists
110 [ -f "$HOME/.bsdconfigrc" ] && f_include "$HOME/.bsdconfigrc"
111
112 #
113 # Process command-line arguments
114 #
115 while getopts h$GETOPTS_STDARGS flag; do
116         case "$flag" in
117         h|\?) f_usage $BSDCFG_LIBE/$APP_DIR/USAGE "PROGRAM_NAME" "$pgm" ;;
118         esac
119 done
120 shift $(( $OPTIND - 1 ))
121
122 #
123 # Initialize
124 #
125 f_dialog_title "$msg_select_a_protocol_type_for_your_mouse"
126 f_dialog_backtitle "${ipgm:+bsdconfig }$pgm"
127 f_mustberoot_init
128
129 #
130 # Launch application main menu
131 #
132 dialog_menu_main || f_die
133 f_dialog_menutag_fetch mtag
134
135 moused_type_to_set=
136 case "$mtag" in
137 "1 $msg_auto") # Bus mouse, PS/2 style mouse or PnP serial mouse
138         moused_type_to_set="auto" ;;
139 "2 $msg_glidepoint") # ALPS GlidePoint pad (serial)
140         moused_type_to_set="glidepoint" ;;
141 "3 $msg_hitachi") # Hitachi tablet (serial)
142         moused_type_to_set="mmhittab" ;;
143 "4 $msg_intellimouse") # Microsoft Intellimouse (serial)
144         moused_type_to_set="intellimouse" ;;
145 "5 $msg_logitech") # Logitech protocol (old models) (serial)
146         moused_type_to_set="logitech" ;;
147 "6 $msg_microsoft") # Microsoft protocol (serial)
148         moused_type_to_set="microsoft" ;;
149 "7 $msg_mm_series") # MM Series protocol (serial)
150         moused_type_to_set="mmseries" ;;
151 "8 $msg_mouseman") # Logitech MouseMan/TrackMan models (serial)
152         moused_type_to_set="mouseman" ;;
153 "9 $msg_mousesystems") # MouseSystems protocol (serial)
154         moused_type_to_set="mousesystems" ;;
155 "A $msg_thinkingmouse") # Kensignton ThinkingMouse (serial)
156         moused_type_to_set="thinkingmouse" ;;
157 esac
158
159 if [ "$moused_type_to_set" ]; then
160         f_sysrc_set moused_type "$moused_type_to_set" || f_die
161 else
162         f_die 1 "$msg_unknown_mouse_protocol_selection"
163 fi
164
165 exit $SUCCESS
166
167 ################################################################################
168 # END
169 ################################################################################