]>
git.saurik.com Git - wxWidgets.git/blob - wxPython/samples/wxPIA_book/Chapter-16/html_window_loadpage.py
4 class MyHtmlFrame(wx
.Frame
):
5 def __init__(self
, parent
, title
):
6 wx
.Frame
.__init
__(self
, parent
, -1, title
, size
=(600,400))
7 html
= wx
.html
.HtmlWindow(self
)
8 if "gtk2" in wx
.PlatformInfo
:
9 html
.SetStandardFonts()
12 html
.LoadPage
, "http://wxwidgets.org/manuals/2.6.2/wx_wxbutton.html")
14 app
= wx
.PySimpleApp()
15 frm
= MyHtmlFrame(None, "Simple HTML Browser")