1//---------------------------------------------------------------------------
2// This file is generated by wxPython's SIP generator.  Do not edit by hand.
3//
4// Copyright: (c) 2018 by Total Control Software
5// License:   wxWindows License
6
7%Module( name=wx._html,
8         keyword_arguments="All",
9         use_argument_names=True,
10         all_raise_py_exception=True,
11         language="C++")
12{
13    %AutoPyName(remove_leading="wx")
14};
15
16%Copying
17    Copyright: (c) 2018 by Total Control Software
18    License:   wxWindows License
19%End
20
21%DefaultDocstringFormat(name="deindented")
22
23%Extract(id=pycode_html, order=5)
24# This file is generated by wxPython's SIP generator.  Do not edit by hand.
25#
26# Copyright: (c) 2018 by Total Control Software
27# License:   wxWindows License
28
29"""
30This module contains a widget class and supporting classes for a generic HTML
31renderer.  It supports only a subset of the HTML standards, and no Javascript
32or CSS, but it is relatively lightweight and has no platform dependencies.  It
33is suitable for displaying simple HTML documents, such as the application's
34documentation or built-in help pages.
35
36.. note:: Due to some internal dynamic initialization in wxWidgets, this
37          module should be imported **before** the :class:`wx.App` object is
38          created.
39"""
40
41from ._html import *
42
43%End
44
45//---------------------------------------------------------------------------
46
47%ModuleHeaderCode
48#include <wxPython/wxpy_api.h>
49%End
50
51%Import _core.sip
52
53%Include htmldefs.sip
54%Include htmlcell.sip
55%Include htmlfilt.sip
56%Include htmltag.sip
57%Include htmlpars.sip
58%Include htmlwin.sip
59%Include htmlprint.sip
60%Include htmlwinpars.sip
61%Include helpdata.sip
62%Include helpfrm.sip
63%Include helpdlg.sip
64%Include helpwnd.sip
65%Include helpctrl.sip
66%Include htmllbox.sip
67
68%ModuleCode
69        #include <wx/html/htmlwin.h>
70        #include <wx/html/htmprint.h>
71        #include <wx/html/helpctrl.h>
72        #include <wx/html/helpwnd.h>
73        #include <wx/html/helpfrm.h>
74        #include <wx/html/helpdlg.h>
75
76%End
77
78//---------------------------------------------------------------------------
79
80%Extract(id=pycode_html, order=10)
81import wx
82
83%End
84
85
86//---------------------------------------------------------------------------
87
88
89%InitialisationCode
90        wxPyReinitializeModules();
91
92%End
93
94//---------------------------------------------------------------------------
95
96