self.ParseInner(tag)
# create the object
- obj = apply(self.ctx.classObj,
- (self.GetParser().GetWindow(),),
- self.ctx.kwargs)
- obj.Show(true)
+ parent = self.GetParser().GetWindow()
+ if parent:
+ obj = apply(self.ctx.classObj,
+ (parent,),
+ self.ctx.kwargs)
+ obj.Show(true)
+
+ # add it to the HtmlWindow
+ self.GetParser().GetContainer().InsertCell(wxHtmlWidgetCell(obj, self.ctx.floatWidth))
+ self.ctx = None
- # add it to the HtmlWindow
- self.GetParser().GetContainer().InsertCell(wxHtmlWidgetCell(obj, self.ctx.floatWidth))
- self.ctx = None
return true
# convert to wxColour
elif value[0] == '#':
- #try:
+ try:
red = string.atoi('0x'+value[1:3], 16)
green = string.atoi('0x'+value[3:5], 16)
blue = string.atoi('0x'+value[5:], 16)
value = wxColor(red, green, blue)
- #except:
- # pass
+ except:
+ pass
self.ctx.kwargs[name] = value
return false