]> git.saurik.com Git - wxWidgets.git/blobdiff - utils/wxPython/demo/wxHtmlWindow.py
suppres some warnings, suppress assert failure for fonts
[wxWidgets.git] / utils / wxPython / demo / wxHtmlWindow.py
index 808403f93eb814e6cdcbceab9c92a5743afda197..15d437e4b9a7127b6ba6e5879f7198e6ae377b55 100644 (file)
@@ -14,11 +14,17 @@ class MyHtmlWindow(wxHtmlWindow):
         wxHtmlWindow.__init__(self, parent, id)
         self.log = log
 
-    def OnLinkClicked(self, link):
-        self.log.WriteText('OnLinkClicked: %s\n' % link)
+
+    def OnLinkClicked(self, linkinfo):
+        self.log.WriteText('OnLinkClicked: %s\n' % linkinfo.GetHref())
 
         # Virtuals in the base class have been renamed with base_ on the font.
-        self.base_OnLinkClicked(link)
+        self.base_OnLinkClicked(linkinfo)
+
+
+    def OnSetTitle(self, title):
+        self.log.WriteText('OnSetTitle: %s\n' % title)
+        self.base_OnSetTitle(title)
 
 
 
@@ -27,12 +33,17 @@ class TestHtmlPanel(wxPanel):
         wxPanel.__init__(self, parent, -1)
         self.log = log
         self.frame = frame
+        self.cwd = os.path.split(sys.argv[0])[0]
+        if not self.cwd:
+            self.cwd = os.getcwd()
 
 
         self.html = MyHtmlWindow(self, -1, log)
         self.html.SetRelatedFrame(frame, "wxPython: (A Demonstration) -- %s")
         self.html.SetRelatedStatusBar(0)
 
+        self.printer = wxHtmlEasyPrinting()
+
         self.box = wxBoxSizer(wxVERTICAL)
         self.box.Add(self.html, 1, wxGROW)
 
@@ -57,6 +68,10 @@ class TestHtmlPanel(wxPanel):
         EVT_BUTTON(self, 1205, self.OnForward)
         subbox.Add(btn, 1, wxGROW | wxALL, 2)
 
+        btn = wxButton(self, 1207, "Print")
+        EVT_BUTTON(self, 1207, self.OnPrint)
+        subbox.Add(btn, 1, wxGROW | wxALL, 2)
+
         btn = wxButton(self, 1206, "View Source")
         EVT_BUTTON(self, 1206, self.OnViewSource)
         subbox.Add(btn, 1, wxGROW | wxALL, 2)
@@ -74,7 +89,7 @@ class TestHtmlPanel(wxPanel):
 
 
     def OnShowDefault(self, event):
-        name = os.path.join(os.path.split(sys.argv[0])[0], 'data/test.htm')
+        name = os.path.join(self.cwd, 'data/test.htm')
         self.html.LoadPage(name)
 
 
@@ -87,10 +102,10 @@ class TestHtmlPanel(wxPanel):
 
 
     def OnWithWidgets(self, event):
-        os.chdir(os.path.split(sys.argv[0])[0])
-        name = os.path.join(os.path.split(sys.argv[0])[0], 'data/widgetTest.htm')
+        os.chdir(self.cwd)
+        name = os.path.join(self.cwd, 'data/widgetTest.htm')
         self.html.LoadPage(name)
-        #self.html.SetPage(_widgetTest)
+
 
     def OnOk(self, event):
         self.log.WriteText("It works!\n")
@@ -113,6 +128,9 @@ class TestHtmlPanel(wxPanel):
         dlg.Destroy()
 
 
+    def OnPrint(self, event):
+        self.printer.PrintFile(self.html.GetOpenedPage())
+
 #----------------------------------------------------------------------
 
 def runTest(frame, nb, log):
@@ -137,22 +155,6 @@ It is not intended to be a high-end HTML browser.  If you're looking for somethi
 
 
 
-_widgetTest = '''\
-<html><body>
-The widgets on this page were created dynamically on the fly by a custom
-wxTagHandler found in wxPython.lib.wxpTag.
-
-<hr>
-<center>
-<wxp class="wxButton" width="50%">
-    <param name="label" value="It works!">
-    <param name="id"    value="wxID_OK">
-</wxp>
-</center>
-<hr>
-after
-</body></html>
-'''