Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/pynxc/waxy/htmlwindow.py~
blob: 57a649def5b9ac3234c3b498d735bd7d8959d5e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# htmlwindow.py

# todo: styles

import wx.html
import waxobject

class HTMLWindow(wx.html.HtmlWindow, waxobject.WaxObject):

    def __init__(self, parent, fullrepaint=1):
        style = 0
        if not fullrepaint:
            style |= wx.NO_FULL_REPAINT_ON_RESIZE
        wx.html.HtmlWindow.__init__(self, parent, wx.NewId(), style=style)