]> git.saurik.com Git - wxWidgets.git/blame - wxPython/samples/wxPIA_book/Chapter-16/html_window.py
added missing button state
[wxWidgets.git] / wxPython / samples / wxPIA_book / Chapter-16 / html_window.py
CommitLineData
be05b434
RD
1import wx
2import wx.html
3
4class MyHtmlFrame(wx.Frame):
5 def __init__(self, parent, title):
6 wx.Frame.__init__(self, parent, -1, title)
7 html = wx.html.HtmlWindow(self)
8 if "gtk2" in wx.PlatformInfo:
9 html.SetStandardFonts()
10
11 html.SetPage(
12 "Here is some <b>formatted</b> <i><u>text</u></i> "
13 "loaded from a <font color=\"red\">string</font>.")
14
15
16app = wx.PySimpleApp()
17frm = MyHtmlFrame(None, "Simple HTML")
18frm.Show()
19app.MainLoop()