1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: SWIG definitions of html classes
7 // Created: 25-nov-1998
9 // Copyright: (c) 1998 by Total Control Software
10 // Licence: wxWindows license
11 /////////////////////////////////////////////////////////////////////////////
18 #include <wx/html/htmlwin.h>
19 #include <wx/html/htmprint.h>
21 #include <wx/fs_zip.h>
22 #include <wx/fs_inet.h>
23 #include <wx/wfstream.h>
24 #include <wx/filesys.h>
29 //---------------------------------------------------------------------------
32 %include my_typemaps.i
46 %pragma(python) code = "import wx"
49 //----------------------------------------------------------------------
52 // Put some wx default wxChar* values into wxStrings.
53 static const wxChar* wxHtmlWindowNameStr = wxT("htmlWindow");
54 DECLARE_DEF_STRING(HtmlWindowNameStr);
56 static const wxChar* wxHtmlPrintoutTitleStr = wxT("Printout");
57 DECLARE_DEF_STRING(HtmlPrintoutTitleStr);
59 static const wxChar* wxHtmlPrintingTitleStr = wxT("Printing");
60 DECLARE_DEF_STRING(HtmlPrintingTitleStr);
62 static const wxString wxPyEmptyString(wxT(""));
65 //---------------------------------------------------------------------------
74 wxHTML_CLR_FOREGROUND,
75 wxHTML_CLR_BACKGROUND,
85 wxHTML_INDENT_HORIZONTAL,
86 wxHTML_INDENT_VERTICAL,
90 wxHTML_COND_ISIMAGEMAP,
101 // enums for wxHtmlWindow::OnOpeningURL
102 enum wxHtmlOpeningStatus
116 //---------------------------------------------------------------------------
118 class wxHtmlLinkInfo : public wxObject {
120 wxHtmlLinkInfo(const wxString& href, const wxString& target = wxPyEmptyString);
122 wxString GetTarget();
123 wxMouseEvent* GetEvent();
124 wxHtmlCell* GetHtmlCell();
126 void SetEvent(const wxMouseEvent *e);
127 void SetHtmlCell(const wxHtmlCell * e);
130 //---------------------------------------------------------------------------
132 class wxHtmlTag : public wxObject {
134 // Never need to create a new tag from Python...
135 //wxHtmlTag(const wxString& source, int pos, int end_pos, wxHtmlTagsCache* cache);
138 bool HasParam(const wxString& par);
139 wxString GetParam(const wxString& par, int with_commas = FALSE);
141 // Can't do this one as-is, but GetParam should be enough...
142 //int ScanParam(const wxString& par, const char *format, void* param);
144 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(wxHtmlWindow *wnd = NULL);
185 void SetDC(wxDC *dc);
189 wxHtmlWindow* GetWindow();
190 //void SetFonts(wxString normal_face, wxString fixed_face, int *LIST);
192 void SetFonts(wxString normal_face, wxString fixed_face, PyObject* sizes) {
193 int* temp = int_LIST_helper(sizes);
195 self->SetFonts(normal_face, fixed_face, temp);
201 wxHtmlContainerCell* GetContainer();
202 wxHtmlContainerCell* OpenContainer();
203 wxHtmlContainerCell *SetContainer(wxHtmlContainerCell *c);
204 wxHtmlContainerCell* CloseContainer();
207 void SetFontSize(int s);
209 void SetFontBold(int x);
211 void SetFontItalic(int x);
212 int GetFontUnderlined();
213 void SetFontUnderlined(int x);
215 void SetFontFixed(int x);
217 void SetAlign(int a);
218 wxColour GetLinkColor();
219 void SetLinkColor(const wxColour& clr);
220 wxColour GetActualColor();
221 void SetActualColor(const wxColour& clr);
222 void SetLink(const wxString& link);
223 wxFont* CreateCurrentFont();
224 wxHtmlLinkInfo GetLink();
230 //---------------------------------------------------------------------------
233 class wxPyHtmlTagHandler : public wxHtmlTagHandler {
234 DECLARE_DYNAMIC_CLASS(wxPyHtmlTagHandler);
236 wxPyHtmlTagHandler() : wxHtmlTagHandler() {};
238 wxHtmlParser* GetParser() { return m_Parser; }
239 void ParseInner(const wxHtmlTag& tag) { wxHtmlTagHandler::ParseInner(tag); }
241 DEC_PYCALLBACK_STRING__pure(GetSupportedTags);
242 DEC_PYCALLBACK_BOOL_TAG_pure(HandleTag);
247 IMPLEMENT_DYNAMIC_CLASS(wxPyHtmlTagHandler, wxHtmlTagHandler);
249 IMP_PYCALLBACK_STRING__pure(wxPyHtmlTagHandler, wxHtmlTagHandler, GetSupportedTags);
250 IMP_PYCALLBACK_BOOL_TAG_pure(wxPyHtmlTagHandler, wxHtmlTagHandler, HandleTag);
254 %name(wxHtmlTagHandler) class wxPyHtmlTagHandler : public wxObject {
256 wxPyHtmlTagHandler();
258 void _setCallbackInfo(PyObject* self, PyObject* _class);
259 %pragma(python) addtomethod = "__init__:self._setCallbackInfo(self, wxHtmlTagHandler)"
261 void SetParser(wxHtmlParser *parser);
262 wxHtmlParser* GetParser();
263 void ParseInner(const wxHtmlTag& tag);
267 //---------------------------------------------------------------------------
270 class wxPyHtmlWinTagHandler : public wxHtmlWinTagHandler {
271 DECLARE_DYNAMIC_CLASS(wxPyHtmlWinTagHandler);
273 wxPyHtmlWinTagHandler() : wxHtmlWinTagHandler() {};
275 wxHtmlWinParser* GetParser() { return m_WParser; }
276 void ParseInner(const wxHtmlTag& tag)
277 { wxHtmlWinTagHandler::ParseInner(tag); }
279 DEC_PYCALLBACK_STRING__pure(GetSupportedTags);
280 DEC_PYCALLBACK_BOOL_TAG_pure(HandleTag);
285 IMPLEMENT_DYNAMIC_CLASS( wxPyHtmlWinTagHandler, wxHtmlWinTagHandler);
287 IMP_PYCALLBACK_STRING__pure(wxPyHtmlWinTagHandler, wxHtmlWinTagHandler, GetSupportedTags);
288 IMP_PYCALLBACK_BOOL_TAG_pure(wxPyHtmlWinTagHandler, wxHtmlWinTagHandler, HandleTag);
292 %name(wxHtmlWinTagHandler) class wxPyHtmlWinTagHandler : public wxPyHtmlTagHandler {
294 wxPyHtmlWinTagHandler();
296 void _setCallbackInfo(PyObject* self, PyObject* _class);
297 %pragma(python) addtomethod = "__init__:self._setCallbackInfo(self, wxHtmlWinTagHandler)"
299 void SetParser(wxHtmlParser *parser);
300 wxHtmlWinParser* GetParser();
301 void ParseInner(const wxHtmlTag& tag);
305 //---------------------------------------------------------------------------
309 class wxPyHtmlTagsModule : public wxHtmlTagsModule {
311 wxPyHtmlTagsModule(PyObject* thc) : wxHtmlTagsModule() {
312 m_tagHandlerClass = thc;
313 Py_INCREF(m_tagHandlerClass);
314 RegisterModule(this);
315 wxHtmlWinParser::AddModule(this);
319 wxPyBeginBlockThreads();
320 Py_DECREF(m_tagHandlerClass);
321 m_tagHandlerClass = NULL;
322 for (size_t x=0; x < m_objArray.GetCount(); x++) {
323 PyObject* obj = (PyObject*)m_objArray.Item(x);
326 wxPyEndBlockThreads();
329 void FillHandlersTable(wxHtmlWinParser *parser) {
330 // Wave our magic wand... (if it works it's a miracle! ;-)
332 // First, make a new instance of the tag handler
333 wxPyBeginBlockThreads();
334 PyObject* arg = Py_BuildValue("()");
335 PyObject* obj = PyInstance_New(m_tagHandlerClass, arg, NULL);
337 wxPyEndBlockThreads();
339 // now figure out where it's C++ object is...
340 wxPyHtmlWinTagHandler* thPtr;
341 if (SWIG_GetPtrObj(obj, (void **)&thPtr, "_wxPyHtmlWinTagHandler_p"))
345 parser->AddTagHandler(thPtr);
352 PyObject* m_tagHandlerClass;
353 wxArrayPtrVoid m_objArray;
361 void wxHtmlWinParser_AddTagHandler(PyObject* tagHandlerClass) {
362 // Dynamically create a new wxModule. Refcounts tagHandlerClass
363 // and adds itself to the wxModules list and to the wxHtmlWinParser.
364 new wxPyHtmlTagsModule(tagHandlerClass);
369 //---------------------------------------------------------------------------
370 //---------------------------------------------------------------------------
372 class wxHtmlCell : public wxObject {
381 wxHtmlLinkInfo* GetLink(int x = 0, int y = 0);
382 wxHtmlCell* GetNext();
383 wxHtmlContainerCell* GetParent();
384 void SetLink(const wxHtmlLinkInfo& link);
385 void SetNext(wxHtmlCell *cell);
386 void SetParent(wxHtmlContainerCell *p);
387 void SetPos(int x, int y);
389 void Draw(wxDC& dc, int x, int y, int view_y1, int view_y2);
390 void DrawInvisible(wxDC& dc, int x, int y);
391 const wxHtmlCell* Find(int condition, const void* param);
393 bool AdjustPagebreak(int * pagebreak);
394 void SetCanLiveOnPagebreak(bool can);
399 class wxHtmlWordCell : public wxHtmlCell
402 wxHtmlWordCell(const wxString& word, wxDC& dc);
406 class wxHtmlContainerCell : public wxHtmlCell {
408 wxHtmlContainerCell(wxHtmlContainerCell *parent);
410 void InsertCell(wxHtmlCell *cell);
411 void SetAlignHor(int al);
413 void SetAlignVer(int al);
415 void SetIndent(int i, int what, int units = wxHTML_UNITS_PIXELS);
416 int GetIndent(int ind);
417 int GetIndentUnits(int ind);
418 void SetAlign(const wxHtmlTag& tag);
419 void SetWidthFloat(int w, int units);
420 %name(SetWidthFloatFromTag)void SetWidthFloat(const wxHtmlTag& tag);
421 void SetMinHeight(int h, int align = wxHTML_ALIGN_TOP);
422 void SetBackgroundColour(const wxColour& clr);
423 wxColour GetBackgroundColour();
424 void SetBorder(const wxColour& clr1, const wxColour& clr2);
425 wxHtmlCell* GetFirstCell();
430 class wxHtmlColourCell : public wxHtmlCell {
432 wxHtmlColourCell(wxColour clr, int flags = wxHTML_CLR_FOREGROUND);
437 class wxHtmlFontCell : public wxHtmlCell
440 wxHtmlFontCell(wxFont *font);
444 class wxHtmlWidgetCell : public wxHtmlCell {
446 wxHtmlWidgetCell(wxWindow* wnd, int w = 0);
451 //---------------------------------------------------------------------------
453 //---------------------------------------------------------------------------
456 %{ // here's the C++ version
457 class wxPyHtmlFilter : public wxHtmlFilter {
458 DECLARE_ABSTRACT_CLASS(wxPyHtmlFilter);
460 wxPyHtmlFilter() : wxHtmlFilter() {}
462 // returns TRUE if this filter is able to open&read given file
463 virtual bool CanRead(const wxFSFile& file) const {
466 wxPyBeginBlockThreads();
467 if ((found = wxPyCBH_findCallback(m_myInst, "CanRead"))) {
468 PyObject* obj = wxPyMake_wxObject((wxFSFile*)&file); // cast away const
469 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(O)", obj));
472 wxPyEndBlockThreads();
477 // Reads given file and returns HTML document.
478 // Returns empty string if opening failed
479 virtual wxString ReadFile(const wxFSFile& file) const {
482 wxPyBeginBlockThreads();
483 if ((found = wxPyCBH_findCallback(m_myInst, "ReadFile"))) {
484 PyObject* obj = wxPyMake_wxObject((wxFSFile*)&file); // cast away const
486 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(O)", obj));
489 rval = Py2wxString(ro);
493 wxPyEndBlockThreads();
500 IMPLEMENT_ABSTRACT_CLASS(wxPyHtmlFilter, wxHtmlFilter);
504 // And now the version seen by SWIG
506 %name(wxHtmlFilter) class wxPyHtmlFilter : public wxObject {
510 void _setCallbackInfo(PyObject* self, PyObject* _class);
511 %pragma(python) addtomethod = "__init__:self._setCallbackInfo(self, wxHtmlFilter)"
515 // TODO: wxHtmlFilterHTML
518 //---------------------------------------------------------------------------
520 //---------------------------------------------------------------------------
523 class wxPyHtmlWindow : public wxHtmlWindow {
524 DECLARE_ABSTRACT_CLASS(wxPyHtmlWindow);
526 wxPyHtmlWindow(wxWindow *parent, wxWindowID id = -1,
527 const wxPoint& pos = wxDefaultPosition,
528 const wxSize& size = wxDefaultSize,
529 long style = wxHW_SCROLLBAR_AUTO,
530 const wxString& name = wxPyHtmlWindowNameStr)
531 : wxHtmlWindow(parent, id, pos, size, style, name) {};
532 wxPyHtmlWindow() : wxHtmlWindow() {};
534 bool ScrollToAnchor(const wxString& anchor) {
535 return wxHtmlWindow::ScrollToAnchor(anchor);
538 bool HasAnchor(const wxString& anchor) {
539 const wxHtmlCell *c = m_Cell->Find(wxHTML_COND_ISANCHOR, &anchor);
543 void OnLinkClicked(const wxHtmlLinkInfo& link);
544 void base_OnLinkClicked(const wxHtmlLinkInfo& link);
546 wxHtmlOpeningStatus OnOpeningURL(wxHtmlURLType type,
548 wxString *redirect) const;
550 DEC_PYCALLBACK__STRING(OnSetTitle);
551 DEC_PYCALLBACK__CELLINTINT(OnCellMouseHover);
552 DEC_PYCALLBACK__CELLINTINTME(OnCellClicked);
556 IMPLEMENT_ABSTRACT_CLASS( wxPyHtmlWindow, wxHtmlWindow );
557 IMP_PYCALLBACK__STRING(wxPyHtmlWindow, wxHtmlWindow, OnSetTitle);
558 IMP_PYCALLBACK__CELLINTINT(wxPyHtmlWindow, wxHtmlWindow, OnCellMouseHover);
559 IMP_PYCALLBACK__CELLINTINTME(wxPyHtmlWindow, wxHtmlWindow, OnCellClicked);
562 void wxPyHtmlWindow::OnLinkClicked(const wxHtmlLinkInfo& link) {
564 wxPyBeginBlockThreads();
565 if ((found = wxPyCBH_findCallback(m_myInst, "OnLinkClicked"))) {
566 PyObject* obj = wxPyConstructObject((void*)&link, wxT("wxHtmlLinkInfo"), 0);
567 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(O)", obj));
570 wxPyEndBlockThreads();
572 wxHtmlWindow::OnLinkClicked(link);
574 void wxPyHtmlWindow::base_OnLinkClicked(const wxHtmlLinkInfo& link) {
575 wxHtmlWindow::OnLinkClicked(link);
579 wxHtmlOpeningStatus wxPyHtmlWindow::OnOpeningURL(wxHtmlURLType type,
581 wxString *redirect) const {
583 wxHtmlOpeningStatus rval;
584 wxPyBeginBlockThreads();
585 if ((found = wxPyCBH_findCallback(m_myInst, "OnOpeningURL"))) {
587 PyObject* s = wx2PyString(url);
588 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(iO)", type, s));
590 if (PyString_Check(ro)
591 #if PYTHON_API_VERSION >= 1009
592 || PyUnicode_Check(ro)
595 *redirect = Py2wxString(ro);
596 rval = wxHTML_REDIRECT;
599 PyObject* num = PyNumber_Int(ro);
600 rval = (wxHtmlOpeningStatus)PyInt_AsLong(num);
605 wxPyEndBlockThreads();
607 rval = wxHtmlWindow::OnOpeningURL(type, url, redirect);
616 %name(wxHtmlWindow) class wxPyHtmlWindow : public wxScrolledWindow {
618 wxPyHtmlWindow(wxWindow *parent, int id = -1,
619 wxPoint& pos = wxDefaultPosition,
620 wxSize& size = wxDefaultSize,
621 int style=wxHW_SCROLLBAR_AUTO,
622 const wxString& name = wxPyHtmlWindowNameStr);
623 %name(wxPreHtmlWindow)wxPyHtmlWindow();
625 bool Create(wxWindow *parent, int id = -1,
626 wxPoint& pos = wxDefaultPosition,
627 wxSize& size = wxDefaultSize,
628 int style=wxHW_SCROLLBAR_AUTO,
629 const wxString& name = wxPyHtmlWindowNameStr);
632 void _setCallbackInfo(PyObject* self, PyObject* _class);
633 %pragma(python) addtomethod = "__init__:self._setCallbackInfo(self, wxHtmlWindow)"
634 %pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
635 %pragma(python) addtomethod = "wxPreHtmlWindow:val._setOORInfo(val)"
637 // Set HTML page and display it. !! source is HTML document itself,
638 // it is NOT address/filename of HTML document. If you want to
639 // specify document location, use LoadPage() istead
640 // Return value : FALSE if an error occured, TRUE otherwise
641 bool SetPage(const wxString& source);
643 // Load HTML page from given location. Location can be either
644 // a) /usr/wxGTK2/docs/html/wx.htm
645 // b) http://www.somewhere.uk/document.htm
646 // c) ftp://ftp.somesite.cz/pub/something.htm
647 // In case there is no prefix (http:,ftp:), the method
648 // will try to find it itself (1. local file, then http or ftp)
649 // After the page is loaded, the method calls SetPage() to display it.
650 // Note : you can also use path relative to previously loaded page
651 // Return value : same as SetPage
652 bool LoadPage(const wxString& location);
654 // Append to current page
655 bool AppendToPage(const wxString& source);
657 // Returns full location of opened page
658 wxString GetOpenedPage();
660 // Returns anchor within opened page
661 wxString GetOpenedAnchor();
663 // Returns <TITLE> of opened page or empty string otherwise
664 wxString GetOpenedPageTitle();
666 // Sets frame in which page title will be displayed. Format is format of
667 // frame title, e.g. "HtmlHelp : %s". It must contain exactly one %s
668 void SetRelatedFrame(wxFrame* frame, const wxString& format);
669 wxFrame* GetRelatedFrame();
671 // After(!) calling SetRelatedFrame, this sets statusbar slot where messages
672 // will be displayed. Default is -1 = no messages.
673 void SetRelatedStatusBar(int bar);
675 // Sets fonts to be used when displaying HTML page.
677 void SetFonts(wxString normal_face, wxString fixed_face, PyObject* sizes) {
678 int* temp = int_LIST_helper(sizes);
680 self->SetFonts(normal_face, fixed_face, temp);
686 void SetTitle(const wxString& title);
688 // Sets space between text and window borders.
689 void SetBorders(int b);
691 // Saves custom settings into cfg config. it will use the path 'path'
692 // if given, otherwise it will save info into currently selected path.
693 // saved values : things set by SetFonts, SetBorders.
694 void ReadCustomization(wxConfigBase *cfg, wxString path = wxPyEmptyString);
695 void WriteCustomization(wxConfigBase *cfg, wxString path = wxPyEmptyString);
697 // Goes to previous/next page (in browsing history)
698 // Returns TRUE if successful, FALSE otherwise
700 bool HistoryForward();
701 bool HistoryCanBack();
702 bool HistoryCanForward();
707 // Returns pointer to conteiners/cells structure.
708 wxHtmlContainerCell* GetInternalRepresentation();
710 // Returns a pointer to the parser.
711 wxHtmlWinParser* GetParser();
713 bool ScrollToAnchor(const wxString& anchor);
714 bool HasAnchor(const wxString& anchor);
717 static void AddFilter(wxPyHtmlFilter *filter);
720 void base_OnLinkClicked(const wxHtmlLinkInfo& link);
721 void base_OnSetTitle(const wxString& title);
722 void base_OnCellMouseHover(wxHtmlCell *cell, wxCoord x, wxCoord y);
723 void base_OnCellClicked(wxHtmlCell *cell,
724 wxCoord x, wxCoord y,
725 const wxMouseEvent& event);
730 //---------------------------------------------------------------------------
731 //---------------------------------------------------------------------------
734 class wxHtmlDCRenderer : public wxObject {
739 void SetDC(wxDC *dc, int maxwidth);
740 void SetSize(int width, int height);
741 void SetHtmlText(const wxString& html,
742 const wxString& basepath = wxPyEmptyString,
744 int Render(int x, int y, int from = 0, int dont_render = FALSE);
745 int GetTotalHeight();
746 // returns total height of the html document
747 // (compare Render's return value with this)
757 class wxHtmlPrintout : public wxPyPrintout {
759 wxHtmlPrintout(const wxString& title = wxPyHtmlPrintoutTitleStr);
760 //~wxHtmlPrintout(); wxPrintPreview object takes ownership...
762 void SetHtmlText(const wxString& html,
763 const wxString &basepath = wxPyEmptyString,
765 void SetHtmlFile(const wxString &htmlfile);
766 void SetHeader(const wxString& header, int pg = wxPAGE_ALL);
767 void SetFooter(const wxString& footer, int pg = wxPAGE_ALL);
768 void SetMargins(float top = 25.2, float bottom = 25.2,
769 float left = 25.2, float right = 25.2,
775 class wxHtmlEasyPrinting : public wxObject {
777 wxHtmlEasyPrinting(const wxString& name = wxPyHtmlPrintingTitleStr,
778 wxFrame *parent_frame = NULL);
779 ~wxHtmlEasyPrinting();
781 void PreviewFile(const wxString &htmlfile);
782 void PreviewText(const wxString &htmltext, const wxString& basepath = wxPyEmptyString);
783 void PrintFile(const wxString &htmlfile);
784 void PrintText(const wxString &htmltext, const wxString& basepath = wxPyEmptyString);
787 void SetHeader(const wxString& header, int pg = wxPAGE_ALL);
788 void SetFooter(const wxString& footer, int pg = wxPAGE_ALL);
790 wxPrintData *GetPrintData() {return m_PrintData;}
791 wxPageSetupDialogData *GetPageSetupData() {return m_PageSetupData;}
797 //---------------------------------------------------------------------------
798 //---------------------------------------------------------------------------
801 extern "C" SWIGEXPORT(void) inithtmlhelpc();
809 wxClassInfo::CleanUpClasses();
810 wxClassInfo::InitializeClasses();
812 wxPyPtrTypeMap_Add("wxHtmlTagHandler", "wxPyHtmlTagHandler");
813 wxPyPtrTypeMap_Add("wxHtmlWinTagHandler", "wxPyHtmlWinTagHandler");
814 wxPyPtrTypeMap_Add("wxHtmlWindow", "wxPyHtmlWindow");
815 wxPyPtrTypeMap_Add("wxHtmlFilter", "wxPyHtmlFilter");
818 //----------------------------------------------------------------------
819 // And this gets appended to the shadow class file.
820 //----------------------------------------------------------------------
822 %pragma(python) include="_htmlextras.py";
824 //---------------------------------------------------------------------------