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._richtext,
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_richtext, 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"""
30The :class:`RichTextCtrl` is a generic, ground-up implementation of a rich
31text control capable of showing multiple text styles and images.  This module
32contains the control and many supporting classes needed for using the features
33of the :class:`RichTextCtrl`.
34
35.. note:: Due to some internal dynamic initialization in wxWidgets, this
36          module should be imported **before** the :class:`wx.App` object is
37          created.
38"""
39
40from ._richtext import *
41
42%End
43
44//---------------------------------------------------------------------------
45
46%ModuleHeaderCode
47#include <wxPython/wxpy_api.h>
48%End
49
50%Import _core.sip
51%Import _xml.sip
52%Import _html.sip
53%Import _adv.sip
54
55%Include richtextbuffer.sip
56%Include richtextctrl.sip
57%Include richtexthtml.sip
58%Include richtextxml.sip
59%Include richtextprint.sip
60%Include richtextstyles.sip
61%Include richtextstyledlg.sip
62%Include richtextsymboldlg.sip
63%Include richtextformatdlg.sip
64
65
66//---------------------------------------------------------------------------
67
68%Extract(id=pycode_richtext, order=10)
69import wx
70
71%End
72
73
74//---------------------------------------------------------------------------
75
76
77%InitialisationCode
78        wxPyReinitializeModules();
79
80%End
81
82//---------------------------------------------------------------------------
83
84