1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
<?xml version="1.0" encoding="UTF-8" ?>
<class xmlns="http://xml.phpdox.net/src" full="UI\Draw\Text\Font\Descriptor" namespace="UI\Draw\Text\Font" name="Descriptor">
<constructor name="__construct" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Construct a new Font Descriptor"/>
<return type="void"/>
</docblock>
<parameter name="family" optional="false" byreference="false" type="string"/>
<parameter name="size" optional="false" byreference="false" type="object" class="float"/>
<parameter name="weight" optional="true" byreference="false" type="int"/>
<parameter name="italic" optional="true" byreference="false" type="int"/>
<parameter name="stretch" optional="true" byreference="false" type="int"/>
</constructor>
<method name="getFamily" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Get Font Family"/>
<return type="string"/>
</docblock>
</method>
<method name="getItalic" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Style Detection"/>
<return type="int"/>
</docblock>
</method>
<method name="getSize" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Size Detection"/>
<return type="float"/>
</docblock>
</method>
<method name="getStretch" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Style Detection"/>
<return type="int"/>
</docblock>
</method>
<method name="getWeight" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Weight Detection"/>
<return type="int"/>
</docblock>
</method>
</class>
|