mirror of
https://github.com/moparisthebest/Simba
synced 2025-01-30 23:00:18 -05:00
The missing piece. :)
git-svn-id: http://www.villavu.com/repositories/merlijn/mufasa@266 3f818213-9676-44b0-a9b4-5e4c4e03d09d
This commit is contained in:
parent
8b6081f1d2
commit
2bb26ee30f
11
Doc/Makefile
11
Doc/Makefile
@ -3,23 +3,28 @@
|
|||||||
|
|
||||||
intro_ := mufasa_intro
|
intro_ := mufasa_intro
|
||||||
psbook_ := mufasa_ps_handbook
|
psbook_ := mufasa_ps_handbook
|
||||||
|
book_ := mufasa_handbook
|
||||||
|
|
||||||
|
default: tex
|
||||||
default: intro
|
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -rvf $(intro_)
|
rm -rvf $(intro_)
|
||||||
rm -rvf $(psbook_)
|
rm -rvf $(psbook_)
|
||||||
|
rm -rvf $(book_)
|
||||||
find -iname "$(intro_)*" | grep -v svn | grep -v tex | xargs rm -vf
|
find -iname "$(intro_)*" | grep -v svn | grep -v tex | xargs rm -vf
|
||||||
find -iname "$(psbook_)*" | grep -v svn | grep -v tex | xargs rm -vf
|
find -iname "$(psbook_)*" | grep -v svn | grep -v tex | xargs rm -vf
|
||||||
|
find -iname "$(book_)*" | grep -v svn | grep -v tex | xargs rm -vf
|
||||||
$(MAKE) -C Pics/ clean
|
$(MAKE) -C Pics/ clean
|
||||||
|
|
||||||
intro:
|
tex:
|
||||||
$(MAKE) -C Pics/
|
$(MAKE) -C Pics/
|
||||||
texi2pdf $(intro_).tex #--silent
|
texi2pdf $(intro_).tex #--silent
|
||||||
texi2pdf $(psbook_).tex #--silent
|
texi2pdf $(psbook_).tex #--silent
|
||||||
|
texi2pdf $(book_).tex #--silent
|
||||||
|
|
||||||
|
|
||||||
html:
|
html:
|
||||||
$(MAKE) -C Pics/
|
$(MAKE) -C Pics/
|
||||||
latex2html $(intro_).tex -local_icons -nofootnode
|
latex2html $(intro_).tex -local_icons -nofootnode
|
||||||
latex2html $(psbook_).tex -local_icons -nofootnode
|
latex2html $(psbook_).tex -local_icons -nofootnode
|
||||||
|
latex2html $(book_).tex -local_icons -nofootnode
|
||||||
|
63
Doc/mufasa_handbook.tex
Normal file
63
Doc/mufasa_handbook.tex
Normal file
@ -0,0 +1,63 @@
|
|||||||
|
\documentclass[a4paper]{report}
|
||||||
|
\usepackage{amsmath}
|
||||||
|
\usepackage{color}
|
||||||
|
|
||||||
|
\begin{document}
|
||||||
|
\title{Mufasa Handbook}
|
||||||
|
\author{Merlijn Wajer \and Raymond van Veneti\"{e}}
|
||||||
|
|
||||||
|
\maketitle
|
||||||
|
\tableofcontents
|
||||||
|
|
||||||
|
\chapter{Foreword}
|
||||||
|
|
||||||
|
This document is aimed at proving a more in depth description on the
|
||||||
|
functions in the Mufasa Macro Library, and it's extensions.
|
||||||
|
This can vary from developer notes to extensive explanations on certain
|
||||||
|
algorithms. \\
|
||||||
|
Developer notes include:
|
||||||
|
\begin{itemize}
|
||||||
|
\item Implementation Decisions
|
||||||
|
\item Bugs
|
||||||
|
\end{itemize}
|
||||||
|
|
||||||
|
|
||||||
|
\chapter{Core}
|
||||||
|
|
||||||
|
\section{TClient}
|
||||||
|
|
||||||
|
The TClient class bundles all the other Core classes.
|
||||||
|
It's main use is to make using the Mufasa Macro Library trivial, by bundling
|
||||||
|
the for Mufasa classes into one class, and provides the methods to make them
|
||||||
|
cooperate.
|
||||||
|
|
||||||
|
\section{TMWindow}
|
||||||
|
|
||||||
|
\subsection{Main features}
|
||||||
|
|
||||||
|
Retreiving information from the target Application/Window.
|
||||||
|
|
||||||
|
% All useful functions documented here.
|
||||||
|
\subsection{ReturnData}
|
||||||
|
|
||||||
|
\section{TMInput}
|
||||||
|
|
||||||
|
\section{TMFiles}
|
||||||
|
|
||||||
|
\section{TMBitmaps}
|
||||||
|
|
||||||
|
\section{TMDTM}
|
||||||
|
|
||||||
|
\section{TMOCR}
|
||||||
|
|
||||||
|
\chapter{Add on}
|
||||||
|
|
||||||
|
\section{Colour Picker}
|
||||||
|
|
||||||
|
\section{Window Selector}
|
||||||
|
|
||||||
|
\section{Pascal Script Integration}
|
||||||
|
|
||||||
|
\section{Plugins}
|
||||||
|
|
||||||
|
\end{document}
|
@ -3,7 +3,7 @@
|
|||||||
\usepackage{color}
|
\usepackage{color}
|
||||||
|
|
||||||
\begin{document}
|
\begin{document}
|
||||||
\title{Mufasa PS Handbook}
|
\title{Mufasa PascalScript Handbook}
|
||||||
\author{Merlijn Wajer \and Raymond van Veneti\"{e}}
|
\author{Merlijn Wajer \and Raymond van Veneti\"{e}}
|
||||||
|
|
||||||
\definecolor{typeGreen}{rgb}{0.0, 0.6, 0.0}
|
\definecolor{typeGreen}{rgb}{0.0, 0.6, 0.0}
|
||||||
@ -14,7 +14,10 @@
|
|||||||
|
|
||||||
\chapter{Foreword}
|
\chapter{Foreword}
|
||||||
|
|
||||||
HOI DIT IS DE MUFASA FUNCTIE LIJST!
|
This document provides a simple but helpful explanation on every function that
|
||||||
|
the Mufasa macro library exports to it's Interpreter, PS\footnote{Pascal
|
||||||
|
Script}. For a real in depth explanation, the Mufasa Handbook would be a better
|
||||||
|
place to look.
|
||||||
|
|
||||||
\chapter{Input}
|
\chapter{Input}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user