mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2025-12-16 09:40:07 +01:00
85 lines
4.2 KiB
HTML
85 lines
4.2 KiB
HTML
{% extends "layout.html" %}
|
|
{% set title = 'API Documentation' %}
|
|
{% block body %}
|
|
<h1>wxPython Phoenix API Documentation</h1>
|
|
|
|
<p>
|
|
Welcome! This is the API documentation for wxPython Phoenix {{ release }},
|
|
last updated |TODAY| from git revision |VCSREV|.
|
|
</p>
|
|
|
|
<div class="admonition note">
|
|
<p class="first admonition-title">Note</p>
|
|
|
|
If you wish to help in the documentation effort, the main docstrings guidelines are outlined in
|
|
the <a href="DocstringsGuidelines.html">Docstring Guidelines</a> document.
|
|
</div>
|
|
|
|
<br>
|
|
|
|
|
|
<h2>API Modules</h2>
|
|
|
|
<table class="contentstable" align="center" style="margin-left: 25px">
|
|
<tr>
|
|
<td width="50%" valign="top">
|
|
<p class="biglink"><a class="biglink" href="{{ pathto("wx.1moduleindex") }}">wx Core</a><br/>
|
|
<span class="linkdescr">The classes which appear in the main wx namespace</span></p>
|
|
|
|
<p class="biglink"><a class="biglink" href="{{ pathto("wx.adv.1moduleindex") }}">wx.adv</a><br/>
|
|
<span class="linkdescr">Less commonly used or more advanced classes</span></p>
|
|
|
|
<p class="biglink"><a class="biglink" href="{{ pathto("wx.grid.1moduleindex") }}">wx.grid</a><br/>
|
|
<span class="linkdescr">Widget and supporting classes for displaying and editing tabular data</span></p>
|
|
|
|
<p class="biglink"><a class="biglink" href="{{ pathto("wx.dataview.1moduleindex") }}">wx.dataview</a><br/>
|
|
<span class="linkdescr">Classes for viewing tabular or hierarchical data</span></p>
|
|
|
|
<p class="biglink"><a class="biglink" href="{{ pathto("wx.richtext.1moduleindex") }}">wx.richtext</a><br/>
|
|
<span class="linkdescr">A generic, ground-up implementation of a text control capable of showing multiple text styles and images.</span></p>
|
|
|
|
<p class="biglink"><a class="biglink" href="{{ pathto("wx.ribbon.1moduleindex") }}">wx.ribbon</a><br/>
|
|
<span class="linkdescr">A tabbed generic, ground-up implementation of a text control capable of showing multiple text styles and images.</span></p>
|
|
|
|
<p class="biglink"><a class="biglink" href="{{ pathto("wx.html.1moduleindex") }}">wx.html</a><br/>
|
|
<span class="linkdescr">Widget and supporting classes for a generic html renderer</span></p>
|
|
|
|
<p class="biglink"><a class="biglink" href="{{ pathto("wx.html2.1moduleindex") }}">wx.html2</a><br/>
|
|
<span class="linkdescr">Widget and supporting classes for a native html renderer, with CSS and javascript support</span></p>
|
|
|
|
|
|
</td>
|
|
<td valign="top" width="50%" style="margin-left: 5px">
|
|
<p class="biglink"><a class="biglink" href="{{ pathto("wx.lib") }}">wx.lib</a><br/>
|
|
<span class="linkdescr">Our pure-Python library of widgets</span></p>
|
|
|
|
<p class="biglink"><a class="biglink" href="{{ pathto("wx.glcanvas.1moduleindex") }}">wx.glcanvas</a><br/>
|
|
<span class="linkdescr">Classes for embedding OpenGL views in a window</span></p>
|
|
|
|
<p class="biglink"><a class="biglink" href="{{ pathto("wx.stc.1moduleindex") }}">wx.stc</a><br/>
|
|
<span class="linkdescr">Classes for Styled Text Control, a.k.a Scintilla</span></p>
|
|
|
|
<p class="biglink"><a class="biglink" href="{{ pathto("wx.msw.1moduleindex") }}">wx.msw</a><br/>
|
|
<span class="linkdescr">A few classes available only on Windows</span></p>
|
|
|
|
<p class="biglink"><a class="biglink" href="{{ pathto("wx.media.1moduleindex") }}">wx.media</a><br/>
|
|
<span class="linkdescr">MediaCtrl and related classes</span></p>
|
|
|
|
<p class="biglink"><a class="biglink" href="{{ pathto("wx.xrc.1moduleindex") }}">wx.xrc</a><br/>
|
|
<span class="linkdescr">Classes for loading widgets and layout from XML</span></p>
|
|
|
|
<p class="biglink"><a class="biglink" href="{{ pathto("wx.xml.1moduleindex") }}">wx.xml</a><br/>
|
|
<span class="linkdescr">Some simple XML classes for use with XRC</span></p>
|
|
|
|
<p class="biglink"><a class="biglink" href="{{ pathto("wx.py") }}">wx.py</a><br/>
|
|
<span class="linkdescr">The py package, containing PyCrust and related modules</span></p>
|
|
|
|
<p class="biglink"><a class="biglink" href="{{ pathto("wx.tools") }}">wx.tools</a><br/>
|
|
<span class="linkdescr">Some useful tools and utilities for wxPython.</span></p>
|
|
|
|
</td></tr>
|
|
</table>
|
|
|
|
|
|
{% endblock %}
|