mirror of
https://github.com/bspeice/libcvautomation
synced 2025-09-03 21:25:28 -04:00
Add the mouse scroll functions to the bash wrapper, update documentation
Minor documentation cleanup More documentation cleanup Fix an issue with accidentally copying the opencv2 includes to opencv1 Document mouse scroll functionality, continue cleanup
This commit is contained in:
@ -317,6 +317,33 @@ jiggle_mouse ()
|
||||
eval '$CVAINPUT -s "mousejiggle" >> $OUTFILE'
|
||||
} # ---------- end of function jiggle_mouse ----------
|
||||
|
||||
#--- FUNCTION ----------------------------------------------------------------
|
||||
# NAME: mouse_scrollu
|
||||
# DESCRIPTION: Scroll the mouse wheel up one
|
||||
# PARAMETERS:
|
||||
# RETURNS:
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
mouse_scrollu ()
|
||||
{
|
||||
out "mouse_scrollu"
|
||||
eval '$CVAINPUT -s "mousescrollu" >> $OUTFILE'
|
||||
|
||||
} # ---------- end of function mouse_scrollu ----------
|
||||
|
||||
|
||||
#--- FUNCTION ----------------------------------------------------------------
|
||||
# NAME: mouse_scrolld
|
||||
# DESCRIPTION: Scroll the mouse wheel down one
|
||||
# PARAMETERS:
|
||||
# RETURNS:
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
mouse_scrolld ()
|
||||
{
|
||||
out "mouse_scrolld"
|
||||
eval '$CVAINPUT -s "mousescrolld" >> $OUTFILE'
|
||||
} # ---------- end of function mouse_scrolld ----------
|
||||
|
||||
#--- FUNCTION ----------------------------------------------------------------
|
||||
# NAME: key_str
|
||||
|
Reference in New Issue
Block a user