mirror of
https://github.com/moparisthebest/Simba
synced 2024-11-22 09:12:19 -05:00
Changes...
git-svn-id: http://www.villavu.com/repositories/merlijn/mufasa@241 3f818213-9676-44b0-a9b4-5e4c4e03d09d
This commit is contained in:
parent
6a868620b5
commit
71128bfc01
@ -1,5 +1,5 @@
|
|||||||
|
|
||||||
.PHONY: default clean intro psbook
|
.PHONY: default clean intro psbook html all
|
||||||
|
|
||||||
intro_ := mufasa_intro
|
intro_ := mufasa_intro
|
||||||
psbook_ := mufasa_ps_handbook
|
psbook_ := mufasa_ps_handbook
|
||||||
@ -16,3 +16,8 @@ createreport:
|
|||||||
$(MAKE) -C Pics/
|
$(MAKE) -C Pics/
|
||||||
texi2pdf $(intro_).tex #--silent
|
texi2pdf $(intro_).tex #--silent
|
||||||
texi2pdf $(psbook_).tex #--silent
|
texi2pdf $(psbook_).tex #--silent
|
||||||
|
|
||||||
|
html:
|
||||||
|
$(MAKE) -C Pics/
|
||||||
|
latex2html $(intro_).tex
|
||||||
|
latex2html $(psbook_).tex
|
||||||
|
@ -40,35 +40,40 @@ TMousePress, which defines if the mouse button is to be down or up.
|
|||||||
% TClickType = (mouse_Left, mouse_Right, mouse_Middle);
|
% TClickType = (mouse_Left, mouse_Right, mouse_Middle);
|
||||||
% TMousePress = (mouse_Down, mouse_Up);
|
% TMousePress = (mouse_Down, mouse_Up);
|
||||||
|
|
||||||
\subsection{\textbf{procedure} {\color{blue}{MoveMouse}}({\color{typeRed}
|
\subsection{MoveMouse}
|
||||||
{in x, y: }}{\color{typeGreen}{Integer}})}
|
\textbf{procedure} {\color{blue}{MoveMouse}}({\color{typeRed}
|
||||||
|
{in x, y: }}{\color{typeGreen}{Integer}})
|
||||||
|
|
||||||
MoveMouse moves the mouse pointer to the specified x and y coordinates.
|
MoveMouse moves the mouse pointer to the specified x and y coordinates.
|
||||||
|
|
||||||
\subsection{\textbf{procedure} {\color{blue}{GetMousePos}}({\color{typeRed}
|
\subsection{GetMousePos}
|
||||||
{out x, y: }}{\color{typeGreen}{Integer}})}
|
\textbf{procedure} {\color{blue}{GetMousePos}}({\color{typeRed}
|
||||||
|
{out x, y: }}{\color{typeGreen}{Integer}})
|
||||||
|
|
||||||
GetMousePos returns the current position of the mouse in X and Y.
|
GetMousePos returns the current position of the mouse in X and Y.
|
||||||
|
|
||||||
\subsection{\textbf{procedure} {\color{blue}{HoldMouse}}({\color{typeRed}
|
\subsection{HoldMouse}
|
||||||
|
\textbf{procedure} {\color{blue}{HoldMouse}}({\color{typeRed}
|
||||||
{x, y: }}{\color{typeGreen}{Integer}}; {\color{typeRed}{clickType :}}
|
{x, y: }}{\color{typeGreen}{Integer}}; {\color{typeRed}{clickType :}}
|
||||||
{\color{typeGreen}{clickType}})}
|
{\color{typeGreen}{clickType}})
|
||||||
|
|
||||||
HoldMouse holds the given mouse button (clickType) down at the specified x,y
|
HoldMouse holds the given mouse button (clickType) down at the specified x,y
|
||||||
coordinate. If the mouse if not at the given x, y yet, the mouse position
|
coordinate. If the mouse if not at the given x, y yet, the mouse position
|
||||||
will be set to x, y.
|
will be set to x, y.
|
||||||
|
|
||||||
\subsection{\textbf{procedure} {\color{blue}{ReleaseMouse}}({\color{typeRed}
|
\subsection{ReleaseMouse}
|
||||||
|
\textbf{procedure} {\color{blue}{ReleaseMouse}}({\color{typeRed}
|
||||||
{x, y: }}{\color{typeGreen}{Integer}}; {\color{typeRed}{clickType :}}
|
{x, y: }}{\color{typeGreen}{Integer}}; {\color{typeRed}{clickType :}}
|
||||||
{\color{typeGreen}{clickType}})}
|
{\color{typeGreen}{clickType}})
|
||||||
|
|
||||||
ReleaseMouse releases the given mouse button (clickType) at the specified x,y
|
ReleaseMouse releases the given mouse button (clickType) at the specified x,y
|
||||||
coordinate. If the mouse if not at the given x, y yet, the mouse position
|
coordinate. If the mouse if not at the given x, y yet, the mouse position
|
||||||
will be set to x, y.
|
will be set to x, y.
|
||||||
|
|
||||||
\subsection{\textbf{procedure} {\color{blue}{ClickMouse}}({\color{typeRed}
|
\subsection{ClickMouse}
|
||||||
|
\textbf{procedure} {\color{blue}{ClickMouse}}({\color{typeRed}
|
||||||
{x, y: }}{\color{typeGreen}{Integer}}; {\color{typeRed}{clickType :}}
|
{x, y: }}{\color{typeGreen}{Integer}}; {\color{typeRed}{clickType :}}
|
||||||
{\color{typeGreen}{clickType}})}
|
{\color{typeGreen}{clickType}})
|
||||||
|
|
||||||
ClickMouse performs a click with the given mouse button (clickType) at the
|
ClickMouse performs a click with the given mouse button (clickType) at the
|
||||||
specified x, y coordinate.
|
specified x, y coordinate.
|
||||||
|
Loading…
Reference in New Issue
Block a user