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

# todo: styles

import wx.html
import waxyobject

class HTMLWindow(wx.html.HtmlWindow, waxyobject.WaxyObject):

    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)