cadMousePro-daemon/bash-completion.sh
branchv_0
changeset 30 148bda718c93
equal deleted inserted replaced
29:361687fe303a 30:148bda718c93
       
     1 # cadMousePro
       
     2 # Copyright © 2020 František Kučera (Frantovo.cz, GlobalCode.info)
       
     3 #
       
     4 # This program is free software: you can redistribute it and/or modify
       
     5 # it under the terms of the GNU General Public License as published by
       
     6 # the Free Software Foundation, version 3 of the License.
       
     7 #
       
     8 # This program is distributed in the hope that it will be useful,
       
     9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
       
    10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
       
    11 # GNU General Public License for more details.
       
    12 #
       
    13 # You should have received a copy of the GNU General Public License
       
    14 # along with this program. If not, see <http://www.gnu.org/licenses/>.
       
    15 
       
    16 _cadMousePro_completion() {
       
    17 	local w0 w1 w2
       
    18 
       
    19 	COMPREPLY=()
       
    20 	w0=${COMP_WORDS[COMP_CWORD]}
       
    21 	w1=${COMP_WORDS[COMP_CWORD-1]}
       
    22 	w2=${COMP_WORDS[COMP_CWORD-2]}
       
    23 
       
    24 	BOOLEAN=(
       
    25 		"true"
       
    26 		"false"
       
    27 	)
       
    28 
       
    29 	FREQUENCY=(
       
    30 		"125"
       
    31 		"250"
       
    32 		"500"
       
    33 		"1000"
       
    34 	)
       
    35 
       
    36 	if   [[ "$w1" == "--frequency"                     ]];    then COMPREPLY=($(compgen -W "${FREQUENCY[*]}" -- "$w0"))
       
    37 	elif [[ "$w1" == "--smart-scrolling"               ]];    then COMPREPLY=($(compgen -W "${BOOLEAN[*]}" -- "$w0"))
       
    38 	elif [[ "$w1" == "--lift-off-detection"            ]];    then COMPREPLY=($(compgen -W "${BOOLEAN[*]}" -- "$w0"))
       
    39 	elif [[ "$w1" == "--remap-wheel-press"             ]];    then COMPREPLY=($(compgen -W "${BOOLEAN[*]}" -- "$w0"))
       
    40 	elif [[ "$w1" == "--remap-gesture-button"          ]];    then COMPREPLY=($(compgen -W "${BOOLEAN[*]}" -- "$w0"))
       
    41 	elif [[ "$w1" == "--daemon"                        ]];    then COMPREPLY=($(compgen -W "${BOOLEAN[*]}" -- "$w0"))
       
    42 	else
       
    43 		OPTIONS=(
       
    44 			"--frequency"
       
    45 			"--smart-scrolling"
       
    46 			"--lift-off-detection"
       
    47 			"--remap-wheel-press"
       
    48 			"--remap-gesture-button"
       
    49 			"--daemon"
       
    50 		)
       
    51 		COMPREPLY=($(compgen -W "${OPTIONS[*]}" -- "$w0"))
       
    52 	fi
       
    53 }
       
    54 
       
    55 complete -F _cadMousePro_completion cadMousePro