mirror of
https://github.com/moparisthebest/Simba
synced 2024-11-21 08:45:06 -05:00
Makefile for FPDoc + more documentation
This commit is contained in:
parent
853b5227d0
commit
966f69e8f9
16
LazDoc/Makefile
Normal file
16
LazDoc/Makefile
Normal file
@ -0,0 +1,16 @@
|
||||
|
||||
.PHONY: default clean
|
||||
|
||||
docunits := os_linux dtm mufasatypes
|
||||
coreunits := os_linux dtm mufasatypes
|
||||
|
||||
default:
|
||||
|
||||
fpdoc --package=Simba \
|
||||
`echo $(docunits) | sed -r 's/\w+/--descr=&.xml/g'` \
|
||||
`echo $(coreunits) | sed -r 's/\w+/--input=..\/Units\/MMLCore\/&.pas/g'` \
|
||||
--output=simbafpcdoc/
|
||||
|
||||
|
||||
clean:
|
||||
rm -rf simbafpcdoc
|
13
LazDoc/dtm.xml
Normal file
13
LazDoc/dtm.xml
Normal file
@ -0,0 +1,13 @@
|
||||
<?xml version="1.0"?>
|
||||
<fpdoc-descriptions>
|
||||
<package name="Simba">
|
||||
<module name="dtm">
|
||||
<element name="TMDTM">
|
||||
<short>DTM Class</short>
|
||||
</element>
|
||||
<element name="TMDTM.Valid">
|
||||
<short>Returns true if the DTM is valid.</short>
|
||||
</element>
|
||||
</module>
|
||||
</package>
|
||||
</fpdoc-descriptions>
|
40
LazDoc/mufasatypes.xml
Normal file
40
LazDoc/mufasatypes.xml
Normal file
@ -0,0 +1,40 @@
|
||||
<?xml version="1.0"?>
|
||||
<fpdoc-descriptions>
|
||||
<package name="Simba">
|
||||
<module name="MufasaTypes">
|
||||
<element name="TRetData">
|
||||
<short>Structure containing pixel data pointer and information about the pointer</short>
|
||||
</element>
|
||||
<element name="DS">
|
||||
<short>The directory seperator constant</short>
|
||||
</element>
|
||||
<element name="TMousePress">
|
||||
<short>Mouse press enum</short>
|
||||
</element>
|
||||
<element name="TMousePress.mouse_Down">
|
||||
<short>Mouse down</short>
|
||||
</element>
|
||||
<element name="TMousePress.mouse_Up">
|
||||
<short>Mouse up</short>
|
||||
</element>
|
||||
<element name="TTargetWindowMode">
|
||||
<short>Target Window Mode</short>
|
||||
</element>
|
||||
<element name="TTargetWindowMode.w_BMP">
|
||||
<short>Bitmap Window Mode</short>
|
||||
</element>
|
||||
<element name="TTargetWindowMode.w_Window">
|
||||
<short>MS Windows Window Mode</short>
|
||||
</element>
|
||||
<element name="TTargetWindowMode.w_HDC">
|
||||
<short>HDC Window Mode</short>
|
||||
</element>
|
||||
<element name="TTargetWindowMode.w_ArrayPtr">
|
||||
<short>Raw Data Window Mode</short>
|
||||
</element>
|
||||
<element name="TTargetWindowMode.w_XWindow">
|
||||
<short>X11 Window Mode</short>
|
||||
</element>
|
||||
</module>
|
||||
</package>
|
||||
</fpdoc-descriptions>
|
@ -81,6 +81,36 @@
|
||||
<element name="TWindow.GetNativeWindow">
|
||||
<short>Returns the stored TWindow</short>
|
||||
</element>
|
||||
<element name="TWindow.display">
|
||||
<short>X11 display connection</short>
|
||||
</element>
|
||||
<element name="TWindow.window">
|
||||
<short>Currently selected TWindow</short>
|
||||
</element>
|
||||
<element name="TWindow.buffer">
|
||||
<short>XImage buffer</short>
|
||||
</element>
|
||||
<element name="TWindow.dirty">
|
||||
<short>Used to determine wether we still have an image loaded or not.</short>
|
||||
</element>
|
||||
<element name="TWindow.keyinput">
|
||||
<short>keyinput class from Lazarus</short>
|
||||
</element>
|
||||
<element name="TWindow.oldXHandler">
|
||||
<short>The old X error handler</short>
|
||||
</element>
|
||||
<element name="TIOManager.display">
|
||||
<short>X Display Connection</short>
|
||||
</element>
|
||||
<element name="TIOManager.desktop">
|
||||
<short>Desktop TWindow</short>
|
||||
</element>
|
||||
<element name="ErrorCS">
|
||||
<short>Critical Section used to handle X errors in a pretty way.</short>
|
||||
</element>
|
||||
<element name="xerror">
|
||||
<short>xerror contains the last known X error that hasn't been handled.</short>
|
||||
</element>
|
||||
</module>
|
||||
</package>
|
||||
</fpdoc-descriptions>
|
||||
|
6
LazDoc/simbasettings.xml
Normal file
6
LazDoc/simbasettings.xml
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0"?>
|
||||
<fpdoc-descriptions>
|
||||
<package name="Simba">
|
||||
<module name="Simbasettings"/>
|
||||
</package>
|
||||
</fpdoc-descriptions>
|
Loading…
Reference in New Issue
Block a user