wxhtmlwindow

Is it possible to specify an image in a wxHtmlWindow that is contained within the executable?

I would like my executable to be self-contained. However, the wxHtmlWindow uses an image and it would be nice if the image could be stored inside the executable. Can this be done, and if so how? ...

Is it possible to override the HTTP functions in wxHtmlWindow?

I would like wxHtmlWindow to use libcurl instead of the internal wxHTTP class. Is there an easy way to do this? If not, can I at least change the useragent wxHtmlWindow sends when it accesses pages? ...

HtmlWindow doesn't display page in wxpython notebook layout

I have a project set up as a notebook layout using wxpython. I am trying to create a help panel. The HtmlWindow object doesn't display the html page on the panel. No errors are displayed and a call to HtmlWindow.GetOpenedPage() returns the page name. import wx import wx.html as html class HelpPanel(wx.Panel): def __init__(self, ...

wxPython - wxHtmlWindow, can the scrollbar be kept at the veyr bottom at all times?

I am working on a chatroom client and am using an HTML window to process things like images and html tags and formatting. I am having trouble finding out how to make the scrollbar stay at the bottom as messages are added to the window (every message sends the bar to the top) would anyone know how I would go about doing this? ...

wxPython - HtmlWindow freezes when loading images

I am writing a chatroom client in wxPython in which there are 3 wx.HtmlWindows for each chatroom on a notebook page: one for the messages, one for the title of the room, and one for the topic of the room (two similar things) The program works fine, loads images when images are in the message's code, etc. But when it suddenly has to load...