updated docs

pull/12/head
Davis King 10 years ago
parent 76230b9971
commit 88fe0bd3fe

@ -1228,6 +1228,9 @@
<td><a href="dlib/gui_widgets/widgets_abstract.h.html#open_file_box"><img src="guipics/open_file_box.png"/></a></td>
<td><a href="dlib/gui_widgets/widgets_abstract.h.html#save_file_box"><img src="guipics/save_file_box.png"/></a></td>
</tr>
<tr>
<td colspan='3'><a href="dlib/gui_widgets/widgets_abstract.h.html#perspective_window"><img src="guipics/perspective_window.png"/></a></td>
</tr>
</table>
</description>
@ -1235,6 +1238,7 @@
<examples>
<example>gui_api_ex.cpp.html</example>
<example>image_ex.cpp.html</example>
<example>3d_point_cloud_ex.cpp.html</example>
<example>surf_ex.cpp.html</example>
<example>bayes_net_gui_ex.cpp.html</example>
</examples>

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

@ -302,6 +302,10 @@
<name>Matrix_Expressions</name>
<link>matrix_expressions_ex.cpp.html</link>
</item>
<item>
<name>3D_Point_Cloud</name>
<link>3d_point_cloud_ex.cpp.html</link>
</item>
<item>
<name>Image</name>
<link>image_ex.cpp.html</link>

@ -923,9 +923,16 @@ function BigToggle(node)
</xsl:if>
</xsl:template>
<xsl:template match="td">
<td align="center">
<xsl:apply-templates/>
</td>
<xsl:if test="@colspan">
<td align="center" colspan="{@colspan}">
<xsl:apply-templates/>
</td>
</xsl:if>
<xsl:if test="not(@colspan)">
<td align="center">
<xsl:apply-templates/>
</td>
</xsl:if>
</xsl:template>
<xsl:template match="tr">
<tr>

Loading…
Cancel
Save