File: drHtmlBrowser.py

package info (click to toggle)
drpython 1%3A3.11.0-2
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 2,572 kB
  • ctags: 1,504
  • sloc: python: 16,099; sh: 319; makefile: 39
file content (70 lines) | stat: -rw-r--r-- 2,169 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# drHtmlBrowser.py
# Programmer: Eur Ing Christopher Thoday.
# Copyright: assigned to the DrPython project

import wx, os
import wx.html
"""This module provides a browser for displaying HTML files composed in
   the DrPython text editor.  Links are displayed within separate pages
   within the browser. The tab name for the page is the HTML title if given,
   else it is the file name."""

note = None
history = {}

def _AddPage(href):
    if href[0:5] != "http:":
        if not os.path.exists(href):
            href = os.path.normpath(os.path.join(dir, href))
            if not os.path.exists(href):
                wx.MessageBox("File does not exist: " + href, "DrPython HTML Browser")
                return
    if href in history:
        note.SetSelection(history[href])
        return
    np = note.GetPageCount()
    history[href] = np
    page = HtmlPage(note, -1)
    note.AddPage(page, "", True)
    page.LoadPage(href)
    title = page.GetOpenedPageTitle()
    (fname, ext) = os.path.splitext(title)
    if ext[0:4] == ".htm" or ext[0:5] == ".html":
        title = fname.title()
    note.SetPageText(np, title)
    
class HtmlPage(wx.html.HtmlWindow):
    def __init__(self, parent, id):
        wx.html.HtmlWindow.__init__(self, parent, id,
            style=wx.NO_FULL_REPAINT_ON_RESIZE)
        if "gtk2" in wx.PlatformInfo: self.SetStandardFonts()
            
    def OnLinkClicked(self, link):
        href = link.GetHref()
        #print href
        _AddPage(href)
    
class HtmlBrowser(wx.Dialog):
    def __init__(self,  parent, file, title):
        global note, dir
        dir = os.path.dirname(file)
        wx.Dialog.__init__(self, parent, -1, title, size=(500, 600), style=wx.DEFAULT_DIALOG_STYLE | wx.THICK_FRAME)
        note = wx.Notebook(self, -1)
        history.clear()
        _AddPage(file)
        note.SetSelection(0)
        #else nothing is displayed
        event = wx.SizeEvent()
        self.GetEventHandler().ProcessEvent(event)


def ShowHtmlFile(parent, file, title=""):
    if title == "":
        title = file
    d = HtmlBrowser(parent, file, title)
    d.ShowModal()
    d.Destroy()