1 /////////////////////////////////////////////////////////////////////////////
 
   3 // Purpose:     SWIG definitions of html classes
 
   7 // Created:     25-Nov-1998
 
   9 // Copyright:   (c) 2003 by Total Control Software
 
  10 // Licence:     wxWindows license
 
  11 /////////////////////////////////////////////////////////////////////////////
 
  14 "Classes for a simple HTML rendering window, HTML Help Window, etc."
 
  17 %module(package="wx", docstring=DOCSTRING) html
 
  20 #include "wx/wxPython/wxPython.h"
 
  21 #include "wx/wxPython/pyclasses.h"
 
  22 #include "wx/wxPython/pyistream.h"
 
  23 #include "wx/wxPython/printfw.h"
 
  25 #include <wx/html/htmlwin.h>
 
  26 #include <wx/html/htmprint.h>
 
  27 #include <wx/html/helpctrl.h>
 
  32 //---------------------------------------------------------------------------
 
  35 %pythoncode { wx = _core }
 
  36 %pythoncode { __docfilter__ = wx.__DocFilter(globals()) }
 
  38 %include _html_rename.i
 
  41 MAKE_CONST_WXSTRING_NOSWIG(EmptyString);
 
  42 MAKE_CONST_WXSTRING2(HtmlWindowNameStr,    wxT("htmlWindow"))
 
  43 MAKE_CONST_WXSTRING2(HtmlPrintoutTitleStr, wxT("Printout"))
 
  44 MAKE_CONST_WXSTRING2(HtmlPrintingTitleStr, wxT("Printing"))
 
  47 // TODO: Split this file into multiple %included files that coresponds to the
 
  48 // wx/html include files (more or less.)
 
  50 //---------------------------------------------------------------------------
 
  51 //---------------------------------------------------------------------------
 
  62     wxHTML_CLR_FOREGROUND,
 
  63     wxHTML_CLR_BACKGROUND,
 
  73     wxHTML_INDENT_HORIZONTAL,
 
  74     wxHTML_INDENT_VERTICAL,
 
  78     wxHTML_COND_ISIMAGEMAP,
 
 100 // enums for wxHtmlWindow::OnOpeningURL
 
 101 enum wxHtmlOpeningStatus
 
 117 //---------------------------------------------------------------------------
 
 119 class wxHtmlLinkInfo : public wxObject {
 
 121     wxHtmlLinkInfo(const wxString& href, const wxString& target = wxPyEmptyString);
 
 123     wxString GetTarget();
 
 124     wxMouseEvent* GetEvent();
 
 125     wxHtmlCell* GetHtmlCell();
 
 127     void SetEvent(const wxMouseEvent *e);
 
 128     void SetHtmlCell(const wxHtmlCell * e);
 
 131 //---------------------------------------------------------------------------
 
 133 class wxHtmlTag : public wxObject {
 
 135     // Never need to create a new tag from Python...
 
 136     //wxHtmlTag(const wxString& source, int pos, int end_pos, wxHtmlTagsCache* cache);
 
 139     bool HasParam(const wxString& par);
 
 140     wxString GetParam(const wxString& par, int with_commas = false);
 
 142     // Can't do this one as-is, but GetParam should be enough...
 
 143     //int ScanParam(const wxString& par, const char *format, void* param);
 
 145     wxString GetAllParams();
 
 152 //---------------------------------------------------------------------------
 
 154 class wxHtmlParser : public wxObject {
 
 156     // wxHtmlParser();  This is an abstract base class...
 
 158     void SetFS(wxFileSystem *fs);
 
 159     wxFileSystem* GetFS();
 
 160     wxObject* Parse(const wxString& source);
 
 161     void InitParser(const wxString& source);
 
 163     void DoParsing(int begin_pos, int end_pos);
 
 165     // wxObject* GetProduct();
 
 167     void AddTagHandler(wxHtmlTagHandler *handler);
 
 168     wxString* GetSource();
 
 169     void PushTagHandler(wxHtmlTagHandler* handler, wxString tags);
 
 170     void PopTagHandler();
 
 172     // virtual wxFSFile *OpenURL(wxHtmlURLType type, const wxString& url) const;
 
 174     // void AddText(const char* txt) = 0;
 
 175     // void AddTag(const wxHtmlTag& tag);
 
 179 //---------------------------------------------------------------------------
 
 181 class wxHtmlWinParser : public wxHtmlParser {
 
 183     wxHtmlWinParser(wxPyHtmlWindow *wnd = NULL);
 
 185     void SetDC(wxDC *dc);
 
 189     wxPyHtmlWindow* GetWindow();
 
 191     // Sets fonts to be used when displaying HTML page. (if size null then default sizes used).
 
 193         void SetFonts(wxString normal_face, wxString fixed_face, PyObject* sizes=NULL) {
 
 195             if (sizes) temp = int_LIST_helper(sizes);
 
 196             self->SetFonts(normal_face, fixed_face, temp);
 
 202     // Sets font sizes to be relative to the given size or the system
 
 203     // default size; use either specified or default font
 
 204     void SetStandardFonts(int size = -1,
 
 205                           const wxString& normal_face = wxPyEmptyString,
 
 206                           const wxString& fixed_face = wxPyEmptyString);
 
 209     wxHtmlContainerCell* GetContainer();
 
 210     wxHtmlContainerCell* OpenContainer();
 
 211     wxHtmlContainerCell *SetContainer(wxHtmlContainerCell *c);
 
 212     wxHtmlContainerCell* CloseContainer();
 
 215     void SetFontSize(int s);
 
 217     void SetFontBold(int x);
 
 219     void SetFontItalic(int x);
 
 220     int GetFontUnderlined();
 
 221     void SetFontUnderlined(int x);
 
 223     void SetFontFixed(int x);
 
 225     void SetAlign(int a);
 
 226     wxColour GetLinkColor();
 
 227     void SetLinkColor(const wxColour& clr);
 
 228     wxColour GetActualColor();
 
 229     void SetActualColor(const wxColour& clr);
 
 231         GetActualColour = GetActualColor
 
 232         SetActualColour = SetActualColor
 
 234     void SetLink(const wxString& link);
 
 235     wxFont* CreateCurrentFont();
 
 236     wxHtmlLinkInfo GetLink();
 
 241 //---------------------------------------------------------------------------
 
 244 class wxPyHtmlTagHandler : public wxHtmlTagHandler {
 
 245     DECLARE_DYNAMIC_CLASS(wxPyHtmlTagHandler);
 
 247     wxPyHtmlTagHandler() : wxHtmlTagHandler() {};
 
 249     wxHtmlParser* GetParser() { return m_Parser; }
 
 250     void ParseInner(const wxHtmlTag& tag) { wxHtmlTagHandler::ParseInner(tag); }
 
 252     DEC_PYCALLBACK_STRING__pure(GetSupportedTags);
 
 253     DEC_PYCALLBACK_BOOL_TAG_pure(HandleTag);
 
 258 IMPLEMENT_DYNAMIC_CLASS(wxPyHtmlTagHandler, wxHtmlTagHandler);
 
 260 IMP_PYCALLBACK_STRING__pure(wxPyHtmlTagHandler, wxHtmlTagHandler, GetSupportedTags);
 
 261 IMP_PYCALLBACK_BOOL_TAG_pure(wxPyHtmlTagHandler, wxHtmlTagHandler, HandleTag);
 
 265 %rename(HtmlTagHandler) wxPyHtmlTagHandler;
 
 266 class wxPyHtmlTagHandler : public wxObject {
 
 268     %pythonAppend wxPyHtmlTagHandler   "self._setCallbackInfo(self, HtmlTagHandler)"    
 
 269     wxPyHtmlTagHandler();
 
 271     void _setCallbackInfo(PyObject* self, PyObject* _class);
 
 273     void SetParser(wxHtmlParser *parser);
 
 274     wxHtmlParser* GetParser();
 
 275     void ParseInner(const wxHtmlTag& tag);
 
 279 //---------------------------------------------------------------------------
 
 282 class wxPyHtmlWinTagHandler : public wxHtmlWinTagHandler {
 
 283     DECLARE_DYNAMIC_CLASS(wxPyHtmlWinTagHandler);
 
 285     wxPyHtmlWinTagHandler() : wxHtmlWinTagHandler() {};
 
 287     wxHtmlWinParser* GetParser() { return m_WParser; }
 
 288     void ParseInner(const wxHtmlTag& tag)
 
 289         { wxHtmlWinTagHandler::ParseInner(tag); }
 
 291     DEC_PYCALLBACK_STRING__pure(GetSupportedTags);
 
 292     DEC_PYCALLBACK_BOOL_TAG_pure(HandleTag);
 
 297 IMPLEMENT_DYNAMIC_CLASS( wxPyHtmlWinTagHandler, wxHtmlWinTagHandler);
 
 299 IMP_PYCALLBACK_STRING__pure(wxPyHtmlWinTagHandler, wxHtmlWinTagHandler, GetSupportedTags);
 
 300 IMP_PYCALLBACK_BOOL_TAG_pure(wxPyHtmlWinTagHandler, wxHtmlWinTagHandler, HandleTag);
 
 304 %rename(HtmlWinTagHandler) wxPyHtmlWinTagHandler;
 
 305 class wxPyHtmlWinTagHandler : public wxPyHtmlTagHandler {
 
 307     %pythonAppend wxPyHtmlWinTagHandler    "self._setCallbackInfo(self, HtmlWinTagHandler)"
 
 308     wxPyHtmlWinTagHandler();
 
 310     void _setCallbackInfo(PyObject* self, PyObject* _class);
 
 312     void SetParser(wxHtmlParser *parser);
 
 313     wxHtmlWinParser* GetParser();
 
 314     void ParseInner(const wxHtmlTag& tag);
 
 318 //---------------------------------------------------------------------------
 
 322 class wxPyHtmlTagsModule : public wxHtmlTagsModule {
 
 324     wxPyHtmlTagsModule(PyObject* thc) : wxHtmlTagsModule() {
 
 325         m_tagHandlerClass = thc;
 
 326         Py_INCREF(m_tagHandlerClass);
 
 327         RegisterModule(this);
 
 328         wxHtmlWinParser::AddModule(this);
 
 332         wxPyBlock_t blocked = wxPyBeginBlockThreads();
 
 333         Py_DECREF(m_tagHandlerClass);
 
 334         m_tagHandlerClass = NULL;
 
 335         for (size_t x=0; x < m_objArray.GetCount(); x++) {
 
 336             PyObject* obj = (PyObject*)m_objArray.Item(x);
 
 339         wxPyEndBlockThreads(blocked);
 
 342     void FillHandlersTable(wxHtmlWinParser *parser) {
 
 343         // Wave our magic wand...  (if it works it's a miracle!  ;-)
 
 345         // First, make a new instance of the tag handler
 
 346         wxPyBlock_t blocked = wxPyBeginBlockThreads();
 
 347         PyObject* arg = PyTuple_New(0);
 
 348         PyObject* obj = PyObject_CallObject(m_tagHandlerClass, arg);
 
 351         // now figure out where it's C++ object is...
 
 352         wxPyHtmlWinTagHandler* thPtr;
 
 353         if (! wxPyConvertSwigPtr(obj, (void **)&thPtr, wxT("wxPyHtmlWinTagHandler"))) {
 
 354             wxPyEndBlockThreads(blocked);
 
 357         wxPyEndBlockThreads(blocked);
 
 360         parser->AddTagHandler(thPtr);
 
 367     PyObject*           m_tagHandlerClass;
 
 368     wxArrayPtrVoid      m_objArray;
 
 376     void wxHtmlWinParser_AddTagHandler(PyObject* tagHandlerClass) {
 
 377         // Dynamically create a new wxModule.  Refcounts tagHandlerClass
 
 378         // and adds itself to the wxModules list and to the wxHtmlWinParser.
 
 379         new wxPyHtmlTagsModule(tagHandlerClass);
 
 384 //---------------------------------------------------------------------------
 
 385 //---------------------------------------------------------------------------
 
 389 // wxHtmlSelection is data holder with information about text selection.
 
 390 // Selection is defined by two positions (beginning and end of the selection)
 
 391 // and two leaf(!) cells at these positions.
 
 392 class wxHtmlSelection
 
 398     void Set(const wxPoint& fromPos, const wxHtmlCell *fromCell,
 
 399              const wxPoint& toPos, const wxHtmlCell *toCell);
 
 400     %Rename(SetCells, void, Set(const wxHtmlCell *fromCell, const wxHtmlCell *toCell));
 
 402     const wxHtmlCell *GetFromCell() const;
 
 403     const wxHtmlCell *GetToCell() const;
 
 405     // these values are in absolute coordinates:
 
 406     const wxPoint& GetFromPos() const;
 
 407     const wxPoint& GetToPos() const;
 
 409     // these are From/ToCell's private data
 
 410     const wxPoint& GetFromPrivPos() const;
 
 411     const wxPoint& GetToPrivPos() const;
 
 412     void SetFromPrivPos(const wxPoint& pos);
 
 413     void SetToPrivPos(const wxPoint& pos);
 
 416     const bool IsEmpty() const;
 
 421 enum wxHtmlSelectionState
 
 423     wxHTML_SEL_OUT,     // currently rendered cell is outside the selection
 
 424     wxHTML_SEL_IN,      // ... is inside selection
 
 425     wxHTML_SEL_CHANGING // ... is the cell on which selection state changes
 
 430 // Selection state is passed to wxHtmlCell::Draw so that it can render itself
 
 431 // differently e.g. when inside text selection or outside it.
 
 432 class wxHtmlRenderingState
 
 435     wxHtmlRenderingState();
 
 436     ~wxHtmlRenderingState();
 
 438     void SetSelectionState(wxHtmlSelectionState s);
 
 439     wxHtmlSelectionState GetSelectionState() const;
 
 441     void SetFgColour(const wxColour& c);
 
 442     const wxColour& GetFgColour() const;
 
 443     void SetBgColour(const wxColour& c);
 
 444     const wxColour& GetBgColour() const;
 
 449 // HTML rendering customization. This class is used when rendering wxHtmlCells
 
 451 class wxHtmlRenderingStyle
 
 454     virtual wxColour GetSelectedTextColour(const wxColour& clr) = 0;
 
 455     virtual wxColour GetSelectedTextBgColour(const wxColour& clr) = 0;
 
 459 class wxDefaultHtmlRenderingStyle : public wxHtmlRenderingStyle
 
 462     virtual wxColour GetSelectedTextColour(const wxColour& clr);
 
 463     virtual wxColour GetSelectedTextBgColour(const wxColour& clr);
 
 468 // Information given to cells when drawing them. Contains rendering state,
 
 469 // selection information and rendering style object that can be used to
 
 470 // customize the output.
 
 471 class wxHtmlRenderingInfo
 
 474     wxHtmlRenderingInfo();
 
 475     ~wxHtmlRenderingInfo();
 
 477     void SetSelection(wxHtmlSelection *s);
 
 478     wxHtmlSelection *GetSelection() const;
 
 480     void SetStyle(wxHtmlRenderingStyle *style);
 
 481     wxHtmlRenderingStyle& GetStyle();
 
 483     wxHtmlRenderingState& GetState();
 
 486 //---------------------------------------------------------------------------
 
 492     wxHTML_FIND_EXACT             = 1,
 
 493     wxHTML_FIND_NEAREST_BEFORE    = 2,
 
 494     wxHTML_FIND_NEAREST_AFTER     = 4
 
 498 class wxHtmlCell : public wxObject {
 
 508     // Returns the maximum possible length of the cell.
 
 509     // Call Layout at least once before using GetMaxTotalWidth()
 
 510     int GetMaxTotalWidth() const;
 
 512     const wxString& GetId() const;
 
 513     void SetId(const wxString& id);
 
 514     wxHtmlLinkInfo* GetLink(int x = 0, int y = 0);
 
 515     wxHtmlCell* GetNext();
 
 516     wxHtmlContainerCell* GetParent();
 
 517     wxHtmlCell* GetFirstChild() const;
 
 519     // Returns cursor to be used when mouse is over the cell:
 
 520     wxCursor GetCursor() const;
 
 522     // Formatting cells are not visible on the screen, they only alter
 
 524     bool IsFormattingCell() const;
 
 527     void SetLink(const wxHtmlLinkInfo& link);
 
 528     void SetNext(wxHtmlCell *cell);
 
 529     void SetParent(wxHtmlContainerCell *p);
 
 530     void SetPos(int x, int y);
 
 532     void Draw(wxDC& dc, int x, int y, int view_y1, int view_y2,
 
 533               wxHtmlRenderingInfo& info);
 
 534     void DrawInvisible(wxDC& dc, int x, int y,
 
 535               wxHtmlRenderingInfo& info);
 
 536     const wxHtmlCell* Find(int condition, const void* param);
 
 538     bool AdjustPagebreak(int* INOUT);
 
 539     void SetCanLiveOnPagebreak(bool can);
 
 541     // Can the line be broken before this cell?
 
 542     bool IsLinebreakAllowed() const;
 
 544     // Returns True for simple == terminal cells, i.e. not composite ones.
 
 545     // This if for internal usage only and may disappear in future versions!
 
 546     bool IsTerminalCell() const;
 
 548     // Find a cell inside this cell positioned at the given coordinates
 
 549     // (relative to this's positions). Returns NULL if no such cell exists.
 
 550     // The flag can be used to specify whether to look for terminal or
 
 551     // nonterminal cells or both. In either case, returned cell is deepest
 
 552     // cell in cells tree that contains [x,y].
 
 553     wxHtmlCell *FindCellByPos(wxCoord x, wxCoord y,
 
 554                                   unsigned flags = wxHTML_FIND_EXACT) const;
 
 556     // Returns absolute position of the cell on HTML canvas
 
 557     wxPoint GetAbsPos() const;
 
 559     // Returns first (last) terminal cell inside this cell. It may return NULL,
 
 560     // but it is rare -- only if there are no terminals in the tree.
 
 561     wxHtmlCell *GetFirstTerminal() const ;
 
 562     wxHtmlCell *GetLastTerminal() const ;
 
 564     // Returns cell's depth, i.e. how far under the root cell it is
 
 565     // (if it is the root, depth is 0)
 
 566     unsigned GetDepth() const;
 
 568     // Returns True if the cell appears before 'cell' in natural order of
 
 569     // cells (= as they are read). If cell A is (grand)parent of cell B,
 
 570     // then both A.IsBefore(B) and B.IsBefore(A) always return True.
 
 571     bool IsBefore(wxHtmlCell *cell) const;
 
 573     // Converts the cell into text representation. If sel != NULL then
 
 574     // only part of the cell inside the selection is converted.
 
 575     wxString ConvertToText(wxHtmlSelection *sel) const;
 
 579 class  wxHtmlWordCell : public wxHtmlCell
 
 582     wxHtmlWordCell(const wxString& word, wxDC& dc);
 
 586 class wxHtmlContainerCell : public wxHtmlCell {
 
 588     wxHtmlContainerCell(wxHtmlContainerCell *parent);
 
 590     void InsertCell(wxHtmlCell *cell);
 
 591     void SetAlignHor(int al);
 
 593     void SetAlignVer(int al);
 
 595     void SetIndent(int i, int what, int units = wxHTML_UNITS_PIXELS);
 
 596     int GetIndent(int ind);
 
 597     int GetIndentUnits(int ind);
 
 598     void SetAlign(const wxHtmlTag& tag);
 
 599     void SetWidthFloat(int w, int units);
 
 600     %Rename(SetWidthFloatFromTag, void,  SetWidthFloat(const wxHtmlTag& tag));
 
 601     void SetMinHeight(int h, int align = wxHTML_ALIGN_TOP);
 
 602     void SetBackgroundColour(const wxColour& clr);
 
 603     wxColour GetBackgroundColour();
 
 604     void SetBorder(const wxColour& clr1, const wxColour& clr2);
 
 605     wxHtmlCell* GetFirstChild();
 
 606     %pragma(python) addtoclass = "GetFirstCell = GetFirstChild"
 
 611 class wxHtmlColourCell : public wxHtmlCell {
 
 613     wxHtmlColourCell(const wxColour& clr, int flags = wxHTML_CLR_FOREGROUND);
 
 618 class  wxHtmlFontCell : public wxHtmlCell
 
 621     wxHtmlFontCell(wxFont *font);
 
 625 class wxHtmlWidgetCell : public wxHtmlCell {
 
 627     wxHtmlWidgetCell(wxWindow* wnd, int w = 0);
 
 634 //---------------------------------------------------------------------------
 
 636 //---------------------------------------------------------------------------
 
 640 %{ // here's the C++ version
 
 641 class wxPyHtmlFilter : public wxHtmlFilter {
 
 642     DECLARE_ABSTRACT_CLASS(wxPyHtmlFilter);
 
 644     wxPyHtmlFilter() : wxHtmlFilter() {}
 
 646     // returns True if this filter is able to open&read given file
 
 647     virtual bool CanRead(const wxFSFile& file) const {
 
 650         wxPyBlock_t blocked = wxPyBeginBlockThreads();
 
 651         if ((found = wxPyCBH_findCallback(m_myInst, "CanRead"))) {
 
 652             PyObject* obj = wxPyMake_wxObject((wxFSFile*)&file,false);  // cast away const
 
 653             rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(O)", obj));
 
 656         wxPyEndBlockThreads(blocked);
 
 661     // Reads given file and returns HTML document.
 
 662     // Returns empty string if opening failed
 
 663     virtual wxString ReadFile(const wxFSFile& file) const {
 
 666         wxPyBlock_t blocked = wxPyBeginBlockThreads();
 
 667         if ((found = wxPyCBH_findCallback(m_myInst, "ReadFile"))) {
 
 668             PyObject* obj = wxPyMake_wxObject((wxFSFile*)&file,false);  // cast away const
 
 670             ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(O)", obj));
 
 673                 rval = Py2wxString(ro);
 
 677         wxPyEndBlockThreads(blocked);
 
 684 IMPLEMENT_ABSTRACT_CLASS(wxPyHtmlFilter, wxHtmlFilter);
 
 688 // And now the version seen by SWIG
 
 690 %rename(HtmlFilter) wxPyHtmlFilter;
 
 691 class wxPyHtmlFilter : public wxObject {
 
 693     %pythonAppend wxPyHtmlFilter   "self._setCallbackInfo(self, HtmlFilter)"
 
 696     void _setCallbackInfo(PyObject* self, PyObject* _class);
 
 700 // TODO: wxHtmlFilterHTML
 
 703 //---------------------------------------------------------------------------
 
 705 //---------------------------------------------------------------------------
 
 709 class wxPyHtmlWindow : public wxHtmlWindow {
 
 710     DECLARE_ABSTRACT_CLASS(wxPyHtmlWindow);
 
 712     wxPyHtmlWindow(wxWindow *parent, wxWindowID id = -1,
 
 713                    const wxPoint& pos = wxDefaultPosition,
 
 714                    const wxSize& size = wxDefaultSize,
 
 715                    long style = wxHW_DEFAULT_STYLE,
 
 716                    const wxString& name = wxPyHtmlWindowNameStr)
 
 717         : wxHtmlWindow(parent, id, pos, size, style, name)  {};
 
 718     wxPyHtmlWindow() : wxHtmlWindow() {};
 
 720     bool ScrollToAnchor(const wxString& anchor) {
 
 721         return wxHtmlWindow::ScrollToAnchor(anchor);
 
 724     bool HasAnchor(const wxString& anchor) {
 
 725         const wxHtmlCell *c = m_Cell->Find(wxHTML_COND_ISANCHOR, &anchor);
 
 729     void OnLinkClicked(const wxHtmlLinkInfo& link);
 
 730     void base_OnLinkClicked(const wxHtmlLinkInfo& link);
 
 732     wxHtmlOpeningStatus OnOpeningURL(wxHtmlURLType type,
 
 734                                       wxString *redirect) const;
 
 736     DEC_PYCALLBACK__STRING(OnSetTitle);
 
 737     DEC_PYCALLBACK__CELLINTINT(OnCellMouseHover);
 
 738     DEC_PYCALLBACK__CELLINTINTME(OnCellClicked);
 
 742 IMPLEMENT_ABSTRACT_CLASS( wxPyHtmlWindow, wxHtmlWindow );
 
 743 IMP_PYCALLBACK__STRING(wxPyHtmlWindow, wxHtmlWindow, OnSetTitle);
 
 744 IMP_PYCALLBACK__CELLINTINT(wxPyHtmlWindow, wxHtmlWindow, OnCellMouseHover);
 
 745 IMP_PYCALLBACK__CELLINTINTME(wxPyHtmlWindow, wxHtmlWindow, OnCellClicked);
 
 748 void wxPyHtmlWindow::OnLinkClicked(const wxHtmlLinkInfo& link) {
 
 750     wxPyBlock_t blocked = wxPyBeginBlockThreads();
 
 751     if ((found = wxPyCBH_findCallback(m_myInst, "OnLinkClicked"))) {
 
 752         PyObject* obj = wxPyConstructObject((void*)&link, wxT("wxHtmlLinkInfo"), 0);
 
 753         wxPyCBH_callCallback(m_myInst, Py_BuildValue("(O)", obj));
 
 756     wxPyEndBlockThreads(blocked);
 
 758         wxHtmlWindow::OnLinkClicked(link);
 
 760 void wxPyHtmlWindow::base_OnLinkClicked(const wxHtmlLinkInfo& link) {
 
 761     wxHtmlWindow::OnLinkClicked(link);
 
 765 wxHtmlOpeningStatus wxPyHtmlWindow::OnOpeningURL(wxHtmlURLType type,
 
 767                                                  wxString *redirect) const {
 
 769     wxHtmlOpeningStatus rval;
 
 770     wxPyBlock_t blocked = wxPyBeginBlockThreads();
 
 771     if ((found = wxPyCBH_findCallback(m_myInst, "OnOpeningURL"))) {
 
 773         PyObject* s = wx2PyString(url);
 
 774         ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(iO)", type, s));
 
 776         if (PyString_Check(ro)
 
 777 #if PYTHON_API_VERSION >= 1009
 
 778             || PyUnicode_Check(ro)
 
 781             *redirect = Py2wxString(ro);
 
 782             rval = wxHTML_REDIRECT;
 
 785             PyObject* num = PyNumber_Int(ro);
 
 786             rval = (wxHtmlOpeningStatus)PyInt_AsLong(num);
 
 791     wxPyEndBlockThreads(blocked);
 
 793         rval = wxHtmlWindow::OnOpeningURL(type, url, redirect);
 
 802 MustHaveApp(wxPyHtmlWindow);
 
 804 %rename(HtmlWindow) wxPyHtmlWindow;
 
 805 class wxPyHtmlWindow : public wxScrolledWindow {
 
 807     %pythonAppend wxPyHtmlWindow      "self._setCallbackInfo(self, HtmlWindow); self._setOORInfo(self)"
 
 808     %pythonAppend wxPyHtmlWindow()    ""
 
 809     %typemap(out) wxPyHtmlWindow*;    // turn off this typemap
 
 811     wxPyHtmlWindow(wxWindow *parent, int id = -1,
 
 812                  const wxPoint& pos = wxDefaultPosition,
 
 813                  const wxSize& size = wxDefaultSize,
 
 814                  int style=wxHW_DEFAULT_STYLE,
 
 815                  const wxString& name = wxPyHtmlWindowNameStr);
 
 816     %RenameCtor(PreHtmlWindow, wxPyHtmlWindow());
 
 818     // Turn it back on again
 
 819     %typemap(out) wxPyHtmlWindow* { $result = wxPyMake_wxObject($1, $owner); }
 
 821     bool Create(wxWindow *parent, int id = -1,
 
 822                 const wxPoint& pos = wxDefaultPosition,
 
 823                 const wxSize& size = wxDefaultSize,
 
 824                 int style=wxHW_SCROLLBAR_AUTO,
 
 825                 const wxString& name = wxPyHtmlWindowNameStr);
 
 828     void _setCallbackInfo(PyObject* self, PyObject* _class);
 
 831     // Set HTML page and display it. !! source is HTML document itself,
 
 832     // it is NOT address/filename of HTML document. If you want to
 
 833     // specify document location, use LoadPage() istead
 
 834     // Return value : False if an error occured, True otherwise
 
 835     bool SetPage(const wxString& source);
 
 837     // Load HTML page from given location. Location can be either
 
 838     // a) /usr/wxGTK2/docs/html/wx.htm
 
 839     // b) http://www.somewhere.uk/document.htm
 
 840     // c) ftp://ftp.somesite.cz/pub/something.htm
 
 841     // In case there is no prefix (http:,ftp:), the method
 
 842     // will try to find it itself (1. local file, then http or ftp)
 
 843     // After the page is loaded, the method calls SetPage() to display it.
 
 844     // Note : you can also use path relative to previously loaded page
 
 845     // Return value : same as SetPage
 
 846     bool LoadPage(const wxString& location);
 
 848     // Loads HTML page from file
 
 849     bool LoadFile(const wxString& filename);
 
 851     // Append to current page
 
 852     bool AppendToPage(const wxString& source);
 
 854      // Returns full location of opened page
 
 855     wxString GetOpenedPage();
 
 857     // Returns anchor within opened page
 
 858     wxString GetOpenedAnchor();
 
 860     // Returns <TITLE> of opened page or empty string otherwise
 
 861     wxString GetOpenedPageTitle();
 
 863     // Sets frame in which page title will  be displayed. Format is format of
 
 864     // frame title, e.g. "HtmlHelp : %s". It must contain exactly one %s
 
 865     void SetRelatedFrame(wxFrame* frame, const wxString& format);
 
 866     wxFrame* GetRelatedFrame();
 
 868     // After(!) calling SetRelatedFrame, this sets statusbar slot where messages
 
 869     // will be displayed. Default is -1 = no messages.
 
 870     void SetRelatedStatusBar(int bar);
 
 872     // Sets fonts to be used when displaying HTML page.
 
 874         void SetFonts(wxString normal_face, wxString fixed_face, PyObject* sizes=NULL) {
 
 876             if (sizes) temp = int_LIST_helper(sizes);
 
 877             self->SetFonts(normal_face, fixed_face, temp);
 
 883     // Sets font sizes to be relative to the given size or the system
 
 884     // default size; use either specified or default font
 
 885     void SetStandardFonts(int size = -1,
 
 886                           const wxString& normal_face = wxPyEmptyString,
 
 887                           const wxString& fixed_face = wxPyEmptyString);
 
 890         void, SetTitle(const wxString& title),
 
 893     // Sets space between text and window borders.
 
 894     void SetBorders(int b);
 
 896     // Sets the bitmap to use for background (currnetly it will be tiled,
 
 897     // when/if we have CSS support we could add other possibilities...)
 
 898     void SetBackgroundImage(const wxBitmap& bmpBg);
 
 900     // Saves custom settings into cfg config. it will use the path 'path'
 
 901     // if given, otherwise it will save info into currently selected path.
 
 902     // saved values : things set by SetFonts, SetBorders.
 
 903     void ReadCustomization(wxConfigBase *cfg, wxString path = wxPyEmptyString);
 
 904     void WriteCustomization(wxConfigBase *cfg, wxString path = wxPyEmptyString);
 
 906     // Goes to previous/next page (in browsing history)
 
 907     // Returns True if successful, False otherwise
 
 909     bool HistoryForward();
 
 910     bool HistoryCanBack();
 
 911     bool HistoryCanForward();
 
 916     // Returns pointer to conteiners/cells structure.
 
 917     wxHtmlContainerCell* GetInternalRepresentation();
 
 919     // Returns a pointer to the parser.
 
 920     wxHtmlWinParser* GetParser();
 
 922     bool ScrollToAnchor(const wxString& anchor);
 
 923     bool HasAnchor(const wxString& anchor);
 
 926     static void AddFilter(wxPyHtmlFilter *filter);
 
 928     // Helper functions to select parts of page:
 
 929     void SelectWord(const wxPoint& pos);
 
 930     void SelectLine(const wxPoint& pos);
 
 933     // Convert selection to text:
 
 934     wxString SelectionToText();
 
 936     // Converts current page to text:
 
 939     void base_OnLinkClicked(const wxHtmlLinkInfo& link);
 
 940     void base_OnSetTitle(const wxString& title);
 
 941     void base_OnCellMouseHover(wxHtmlCell *cell, wxCoord x, wxCoord y);
 
 942     void base_OnCellClicked(wxHtmlCell *cell,
 
 943                             wxCoord x, wxCoord y,
 
 944                             const wxMouseEvent& event);
 
 946     static wxVisualAttributes
 
 947     GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);
 
 953 //---------------------------------------------------------------------------
 
 954 //---------------------------------------------------------------------------
 
 958 MustHaveApp(wxHtmlDCRenderer);
 
 960 class wxHtmlDCRenderer : public wxObject {
 
 965     void SetDC(wxDC *dc, int maxwidth);
 
 966     void SetSize(int width, int height);
 
 967     void SetHtmlText(const wxString& html,
 
 968                      const wxString& basepath = wxPyEmptyString,
 
 970     // Sets fonts to be used when displaying HTML page. (if size null then default sizes used).
 
 972         void SetFonts(wxString normal_face, wxString fixed_face, PyObject* sizes=NULL) {
 
 974             if (sizes) temp = int_LIST_helper(sizes);
 
 975             self->SetFonts(normal_face, fixed_face, temp);
 
 981     // Sets font sizes to be relative to the given size or the system
 
 982     // default size; use either specified or default font
 
 983     void SetStandardFonts(int size = -1,
 
 984                           const wxString& normal_face = wxPyEmptyString,
 
 985                           const wxString& fixed_face = wxPyEmptyString);
 
 987     int Render(int x, int y, int from = 0, int dont_render = false, int maxHeight = INT_MAX,
 
 988                //int *known_pagebreaks = NULL, int number_of_pages = 0
 
 989                int* choices=NULL, int LCOUNT = 0
 
 991     int GetTotalHeight();
 
 992                 // returns total height of the html document
 
 993                 // (compare Render's return value with this)
 
1004 MustHaveApp(wxHtmlPrintout);
 
1006 class wxHtmlPrintout : public wxPyPrintout {
 
1008     wxHtmlPrintout(const wxString& title = wxPyHtmlPrintoutTitleStr);
 
1009     //~wxHtmlPrintout();   wxPrintPreview object takes ownership...
 
1011     void SetHtmlText(const wxString& html,
 
1012                      const wxString &basepath = wxPyEmptyString,
 
1014     void SetHtmlFile(const wxString &htmlfile);
 
1015     void SetHeader(const wxString& header, int pg = wxPAGE_ALL);
 
1016     void SetFooter(const wxString& footer, int pg = wxPAGE_ALL);
 
1018     // Sets fonts to be used when displaying HTML page. (if size null then default sizes used).
 
1020         void SetFonts(wxString normal_face, wxString fixed_face, PyObject* sizes=NULL) {
 
1022             if (sizes) temp = int_LIST_helper(sizes);
 
1023             self->SetFonts(normal_face, fixed_face, temp);
 
1029     // Sets font sizes to be relative to the given size or the system
 
1030     // default size; use either specified or default font
 
1031     void SetStandardFonts(int size = -1,
 
1032                           const wxString& normal_face = wxPyEmptyString,
 
1033                           const wxString& fixed_face = wxPyEmptyString);
 
1035     void SetMargins(float top = 25.2, float bottom = 25.2,
 
1036                     float left = 25.2, float right = 25.2,
 
1039     // Adds input filter
 
1040     static void AddFilter(wxHtmlFilter *filter);
 
1043     static void CleanUpStatics();
 
1048 MustHaveApp(wxHtmlEasyPrinting);
 
1050 class wxHtmlEasyPrinting : public wxObject {
 
1052     wxHtmlEasyPrinting(const wxString& name = wxPyHtmlPrintingTitleStr,
 
1053                        wxWindow *parentWindow = NULL);
 
1054     ~wxHtmlEasyPrinting();
 
1056     void PreviewFile(const wxString &htmlfile);
 
1057     void PreviewText(const wxString &htmltext, const wxString& basepath = wxPyEmptyString);
 
1058     void PrintFile(const wxString &htmlfile);
 
1059     void PrintText(const wxString &htmltext, const wxString& basepath = wxPyEmptyString);
 
1060 //    void PrinterSetup();
 
1062     void SetHeader(const wxString& header, int pg = wxPAGE_ALL);
 
1063     void SetFooter(const wxString& footer, int pg = wxPAGE_ALL);
 
1066         void SetFonts(wxString normal_face, wxString fixed_face, PyObject* sizes=NULL) {
 
1068             if (sizes) temp = int_LIST_helper(sizes);
 
1069             self->SetFonts(normal_face, fixed_face, temp);
 
1075     // Sets font sizes to be relative to the given size or the system
 
1076     // default size; use either specified or default font
 
1077     void SetStandardFonts(int size = -1,
 
1078                           const wxString& normal_face = wxPyEmptyString,
 
1079                           const wxString& fixed_face = wxPyEmptyString);
 
1081     wxPrintData *GetPrintData() {return m_PrintData;}
 
1082     wxPageSetupDialogData *GetPageSetupData() {return m_PageSetupData;}
 
1087 //---------------------------------------------------------------------------
 
1088 //---------------------------------------------------------------------------
 
1092 class wxHtmlBookRecord {
 
1094     wxHtmlBookRecord(const wxString& bookfile, const wxString& basepath,
 
1095                      const wxString& title, const wxString& start);
 
1097     wxString GetBookFile();
 
1098     wxString GetTitle();
 
1099     wxString GetStart();
 
1100     wxString GetBasePath();
 
1102     void SetContentsRange(int start, int end);
 
1103     int GetContentsStart();
 
1104     int GetContentsEnd();
 
1106     void SetTitle(const wxString& title);
 
1107     void SetBasePath(const wxString& path);
 
1108     void SetStart(const wxString& start);
 
1110     wxString GetFullPath(const wxString &page) const;
 
1113 //---------------------------------------------------------------------------
 
1115 struct wxHtmlContentsItem
 
1118         int GetLevel() { return self->m_Level; }
 
1119         int GetID() { return self->m_ID; }
 
1120         wxString GetName() { return self->m_Name; }
 
1121         wxString GetPage() { return self->m_Page; }
 
1122         wxHtmlBookRecord* GetBook() { return self->m_Book; }
 
1126 //---------------------------------------------------------------------------
 
1128 class wxHtmlSearchStatus
 
1131     //wxHtmlSearchStatus(wxHtmlHelpData* base, const wxString& keyword,
 
1132     //                   const wxString& book = wxPyEmptyString);
 
1137     const wxString& GetName();
 
1138     wxHtmlContentsItem* GetContentsItem();
 
1141 //---------------------------------------------------------------------------
 
1143 class wxHtmlHelpData {
 
1148     void SetTempDir(const wxString& path);
 
1149     bool AddBook(const wxString& book);
 
1150 //      bool AddBookParam(const wxString& title, const wxString& contfile,
 
1151 //                    const wxString& indexfile=wxPyEmptyString,
 
1152 //                    const wxString& deftopic=wxPyEmptyString,
 
1153 //                    const wxString& path=wxPyEmptyString);
 
1155     wxString FindPageByName(const wxString& page);
 
1156     wxString FindPageById(int id);
 
1158     // TODO: this one needs fixed...
 
1159     const wxHtmlBookRecArray& GetBookRecArray();
 
1161     wxHtmlContentsItem* GetContents();
 
1162     int GetContentsCnt();
 
1163     wxHtmlContentsItem* GetIndex();
 
1167 //---------------------------------------------------------------------------
 
1169 MustHaveApp(wxHtmlHelpFrame);
 
1171 class wxHtmlHelpFrame : public wxFrame {
 
1173     %pythonAppend wxHtmlHelpFrame    "self._setOORInfo(self)"
 
1175     wxHtmlHelpFrame(wxWindow* parent, int wxWindowID,
 
1176                     const wxString& title = wxPyEmptyString,
 
1177                     int style = wxHF_DEFAULTSTYLE, wxHtmlHelpData* data = NULL);
 
1179     wxHtmlHelpData* GetData();
 
1180     void SetTitleFormat(const wxString& format);
 
1181     void Display(const wxString& x);
 
1182     %Rename(DisplayID,  void,  Display(int id));
 
1183     void DisplayContents();
 
1184     void DisplayIndex();
 
1185     bool KeywordSearch(const wxString& keyword);
 
1186     void UseConfig(wxConfigBase *config, const wxString& rootpath = wxPyEmptyString);
 
1187     void ReadCustomization(wxConfigBase *cfg, wxString path = wxPyEmptyString);
 
1188     void WriteCustomization(wxConfigBase *cfg, wxString path = wxPyEmptyString);
 
1192 //---------------------------------------------------------------------------
 
1208 MustHaveApp(wxHtmlHelpController);
 
1210 class wxHtmlHelpController : public wxObject  // wxHelpControllerBase
 
1213 //    %pythonAppend wxHtmlHelpController "self._setOORInfo(self)"
 
1215     wxHtmlHelpController(int style = wxHF_DEFAULTSTYLE);
 
1216     ~wxHtmlHelpController();
 
1218     void SetTitleFormat(const wxString& format);
 
1219     void SetTempDir(const wxString& path);
 
1220     bool AddBook(const wxString& book, int show_wait_msg = false);
 
1221     void Display(const wxString& x);
 
1222     %Rename(DisplayID,  void,  Display(int id));
 
1223     void DisplayContents();
 
1224     void DisplayIndex();
 
1225     bool KeywordSearch(const wxString& keyword);
 
1226     void UseConfig(wxConfigBase *config, const wxString& rootpath = wxPyEmptyString);
 
1227     void ReadCustomization(wxConfigBase *cfg, wxString path = wxPyEmptyString);
 
1228     void WriteCustomization(wxConfigBase *cfg, wxString path = wxPyEmptyString);
 
1229     wxHtmlHelpFrame* GetFrame();
 
1235 //---------------------------------------------------------------------------
 
1237     wxPyPtrTypeMap_Add("wxHtmlTagHandler",    "wxPyHtmlTagHandler");
 
1238     wxPyPtrTypeMap_Add("wxHtmlWinTagHandler", "wxPyHtmlWinTagHandler");
 
1239     wxPyPtrTypeMap_Add("wxHtmlWindow",        "wxPyHtmlWindow");
 
1240     wxPyPtrTypeMap_Add("wxHtmlFilter",        "wxPyHtmlFilter");
 
1242 //---------------------------------------------------------------------------
 
1243 //---------------------------------------------------------------------------