]> git.saurik.com Git - wxWidgets.git/blame - wxPython/src/html.i
added obsolescence note
[wxWidgets.git] / wxPython / src / html.i
CommitLineData
4b123bb9
HH
1/////////////////////////////////////////////////////////////////////////////
2// Name: html.i
3// Purpose: SWIG definitions of html classes
4//
5// Author: Robin Dunn
6//
d14a1e28 7// Created: 25-Nov-1998
4b123bb9 8// RCS-ID: $Id$
d14a1e28 9// Copyright: (c) 2003 by Total Control Software
4b123bb9
HH
10// Licence: wxWindows license
11/////////////////////////////////////////////////////////////////////////////
12
13
14%module html
15
16%{
d14a1e28
RD
17#include "wx/wxPython/wxPython.h"
18#include "wx/wxPython/pyclasses.h"
19#include "wx/wxPython/pyistream.h"
20#include "wx/wxPython/printfw.h"
21
4b123bb9 22#include <wx/html/htmlwin.h>
dc2f8a65 23#include <wx/html/htmprint.h>
d14a1e28 24#include <wx/html/helpctrl.h>
4b123bb9 25
1e4a197e 26
d14a1e28 27 DECLARE_DEF_STRING(EmptyString);
137b5242
RD
28 static const wxChar* wxHtmlWindowNameStr = wxT("htmlWindow");
29 DECLARE_DEF_STRING(HtmlWindowNameStr);
137b5242
RD
30 static const wxChar* wxHtmlPrintoutTitleStr = wxT("Printout");
31 DECLARE_DEF_STRING(HtmlPrintoutTitleStr);
137b5242
RD
32 static const wxChar* wxHtmlPrintingTitleStr = wxT("Printing");
33 DECLARE_DEF_STRING(HtmlPrintingTitleStr);
d14a1e28 34
137b5242
RD
35%}
36
0f66a9f3 37//---------------------------------------------------------------------------
e166644c 38
d14a1e28
RD
39%import windows.i
40%pythoncode { wx = core }
41
42%include _html_rename.i
43
44
45// TODO: Split this file into multiple %included files that coresponds to the
46// wx/html include files (more or less.)
47
48//---------------------------------------------------------------------------
49//---------------------------------------------------------------------------
50%newgroup
51
52
e166644c 53enum {
9d8bd15f
RD
54 wxHTML_ALIGN_LEFT,
55 wxHTML_ALIGN_CENTER,
56 wxHTML_ALIGN_RIGHT,
57 wxHTML_ALIGN_BOTTOM,
58 wxHTML_ALIGN_TOP,
59
60 wxHTML_CLR_FOREGROUND,
61 wxHTML_CLR_BACKGROUND,
62
63 wxHTML_UNITS_PIXELS,
64 wxHTML_UNITS_PERCENT,
65
66 wxHTML_INDENT_LEFT,
67 wxHTML_INDENT_RIGHT,
68 wxHTML_INDENT_TOP,
69 wxHTML_INDENT_BOTTOM,
70
71 wxHTML_INDENT_HORIZONTAL,
72 wxHTML_INDENT_VERTICAL,
73 wxHTML_INDENT_ALL,
74
75 wxHTML_COND_ISANCHOR,
76 wxHTML_COND_ISIMAGEMAP,
77 wxHTML_COND_USER,
4eeb5705
RD
78
79
80 wxHTML_FONT_SIZE_1,
81 wxHTML_FONT_SIZE_2,
82 wxHTML_FONT_SIZE_3,
83 wxHTML_FONT_SIZE_4,
84 wxHTML_FONT_SIZE_5,
85 wxHTML_FONT_SIZE_6,
86 wxHTML_FONT_SIZE_7,
e166644c
RD
87};
88
89
c6c593e8
RD
90enum {
91 wxHW_SCROLLBAR_NEVER,
92 wxHW_SCROLLBAR_AUTO,
3ef86e32
RD
93 wxHW_NO_SELECTION,
94 wxHW_DEFAULT_STYLE,
c6c593e8
RD
95};
96
97
98// enums for wxHtmlWindow::OnOpeningURL
99enum wxHtmlOpeningStatus
100{
101 wxHTML_OPEN,
102 wxHTML_BLOCK,
103 wxHTML_REDIRECT
104};
105
106enum wxHtmlURLType
107{
108 wxHTML_URL_PAGE,
109 wxHTML_URL_IMAGE,
110 wxHTML_URL_OTHER
111};
112
d14a1e28
RD
113
114
9c00cfa3
RD
115//---------------------------------------------------------------------------
116
9416aa89 117class wxHtmlLinkInfo : public wxObject {
9c00cfa3 118public:
137b5242 119 wxHtmlLinkInfo(const wxString& href, const wxString& target = wxPyEmptyString);
9c00cfa3
RD
120 wxString GetHref();
121 wxString GetTarget();
c8bc03c3
RD
122 wxMouseEvent* GetEvent();
123 wxHtmlCell* GetHtmlCell();
7a446686
RD
124
125 void SetEvent(const wxMouseEvent *e);
126 void SetHtmlCell(const wxHtmlCell * e);
9c00cfa3
RD
127};
128
0f66a9f3
RD
129//---------------------------------------------------------------------------
130
9416aa89 131class wxHtmlTag : public wxObject {
0f66a9f3 132public:
e166644c 133 // Never need to create a new tag from Python...
0f66a9f3
RD
134 //wxHtmlTag(const wxString& source, int pos, int end_pos, wxHtmlTagsCache* cache);
135
136 wxString GetName();
137 bool HasParam(const wxString& par);
dd9f7fea 138 wxString GetParam(const wxString& par, int with_commas = False);
0f66a9f3
RD
139
140 // Can't do this one as-is, but GetParam should be enough...
141 //int ScanParam(const wxString& par, const char *format, void* param);
142
143 wxString GetAllParams();
0f66a9f3
RD
144 bool HasEnding();
145 int GetBeginPos();
146 int GetEndPos1();
147 int GetEndPos2();
148};
149
0f66a9f3
RD
150//---------------------------------------------------------------------------
151
9416aa89 152class wxHtmlParser : public wxObject {
0f66a9f3
RD
153public:
154 // wxHtmlParser(); This is an abstract base class...
155
156 void SetFS(wxFileSystem *fs);
157 wxFileSystem* GetFS();
158 wxObject* Parse(const wxString& source);
159 void InitParser(const wxString& source);
160 void DoneParser();
161 void DoParsing(int begin_pos, int end_pos);
1e4a197e 162 void StopParsing();
0f66a9f3 163 // wxObject* GetProduct();
1e4a197e 164
0f66a9f3
RD
165 void AddTagHandler(wxHtmlTagHandler *handler);
166 wxString* GetSource();
dc2f8a65
RD
167 void PushTagHandler(wxHtmlTagHandler* handler, wxString tags);
168 void PopTagHandler();
0f66a9f3 169
c6c593e8 170 // virtual wxFSFile *OpenURL(wxHtmlURLType type, const wxString& url) const;
0f66a9f3
RD
171
172 // void AddText(const char* txt) = 0;
173 // void AddTag(const wxHtmlTag& tag);
174};
175
176
177//---------------------------------------------------------------------------
178
179class wxHtmlWinParser : public wxHtmlParser {
180public:
1fded56b 181 wxHtmlWinParser(wxPyHtmlWindow *wnd = NULL);
0f66a9f3
RD
182
183 void SetDC(wxDC *dc);
184 wxDC* GetDC();
185 int GetCharHeight();
186 int GetCharWidth();
1fded56b 187 wxPyHtmlWindow* GetWindow();
d14a1e28 188
1fded56b 189 // Sets fonts to be used when displaying HTML page. (if size null then default sizes used).
d14a1e28 190 %extend {
9cbf6f6e
RD
191 void SetFonts(wxString normal_face, wxString fixed_face, PyObject* sizes=NULL) {
192 int* temp = NULL;
193 if (sizes) temp = int_LIST_helper(sizes);
194 self->SetFonts(normal_face, fixed_face, temp);
195 if (temp)
f6bcfd97 196 delete [] temp;
f6bcfd97
BP
197 }
198 }
0f66a9f3
RD
199
200 wxHtmlContainerCell* GetContainer();
201 wxHtmlContainerCell* OpenContainer();
dc2f8a65 202 wxHtmlContainerCell *SetContainer(wxHtmlContainerCell *c);
0f66a9f3 203 wxHtmlContainerCell* CloseContainer();
dc2f8a65 204
0f66a9f3
RD
205 int GetFontSize();
206 void SetFontSize(int s);
207 int GetFontBold();
208 void SetFontBold(int x);
209 int GetFontItalic();
210 void SetFontItalic(int x);
211 int GetFontUnderlined();
212 void SetFontUnderlined(int x);
213 int GetFontFixed();
214 void SetFontFixed(int x);
215 int GetAlign();
216 void SetAlign(int a);
c5943253 217 wxColour GetLinkColor();
0f66a9f3 218 void SetLinkColor(const wxColour& clr);
c5943253 219 wxColour GetActualColor();
0f66a9f3 220 void SetActualColor(const wxColour& clr);
0f66a9f3
RD
221 void SetLink(const wxString& link);
222 wxFont* CreateCurrentFont();
9c00cfa3
RD
223 wxHtmlLinkInfo GetLink();
224
0f66a9f3
RD
225};
226
227
0f66a9f3
RD
228//---------------------------------------------------------------------------
229
230%{
231class wxPyHtmlTagHandler : public wxHtmlTagHandler {
9416aa89 232 DECLARE_DYNAMIC_CLASS(wxPyHtmlTagHandler);
0f66a9f3
RD
233public:
234 wxPyHtmlTagHandler() : wxHtmlTagHandler() {};
235
236 wxHtmlParser* GetParser() { return m_Parser; }
237 void ParseInner(const wxHtmlTag& tag) { wxHtmlTagHandler::ParseInner(tag); }
238
239 DEC_PYCALLBACK_STRING__pure(GetSupportedTags);
240 DEC_PYCALLBACK_BOOL_TAG_pure(HandleTag);
241
242 PYPRIVATE;
243};
244
9416aa89
RD
245IMPLEMENT_DYNAMIC_CLASS(wxPyHtmlTagHandler, wxHtmlTagHandler);
246
0f66a9f3
RD
247IMP_PYCALLBACK_STRING__pure(wxPyHtmlTagHandler, wxHtmlTagHandler, GetSupportedTags);
248IMP_PYCALLBACK_BOOL_TAG_pure(wxPyHtmlTagHandler, wxHtmlTagHandler, HandleTag);
0f66a9f3
RD
249%}
250
251
d14a1e28 252%name(HtmlTagHandler) class wxPyHtmlTagHandler : public wxObject {
0f66a9f3 253public:
d14a1e28 254 %addtofunc wxPyHtmlTagHandler "self._setCallbackInfo(self, HtmlTagHandler)"
0f66a9f3
RD
255 wxPyHtmlTagHandler();
256
0122b7e3 257 void _setCallbackInfo(PyObject* self, PyObject* _class);
0f66a9f3
RD
258
259 void SetParser(wxHtmlParser *parser);
260 wxHtmlParser* GetParser();
261 void ParseInner(const wxHtmlTag& tag);
262};
263
264
265//---------------------------------------------------------------------------
266
267%{
268class wxPyHtmlWinTagHandler : public wxHtmlWinTagHandler {
9416aa89 269 DECLARE_DYNAMIC_CLASS(wxPyHtmlWinTagHandler);
0f66a9f3
RD
270public:
271 wxPyHtmlWinTagHandler() : wxHtmlWinTagHandler() {};
272
273 wxHtmlWinParser* GetParser() { return m_WParser; }
274 void ParseInner(const wxHtmlTag& tag)
275 { wxHtmlWinTagHandler::ParseInner(tag); }
276
277 DEC_PYCALLBACK_STRING__pure(GetSupportedTags);
278 DEC_PYCALLBACK_BOOL_TAG_pure(HandleTag);
279
280 PYPRIVATE;
281};
282
9416aa89
RD
283IMPLEMENT_DYNAMIC_CLASS( wxPyHtmlWinTagHandler, wxHtmlWinTagHandler);
284
0f66a9f3
RD
285IMP_PYCALLBACK_STRING__pure(wxPyHtmlWinTagHandler, wxHtmlWinTagHandler, GetSupportedTags);
286IMP_PYCALLBACK_BOOL_TAG_pure(wxPyHtmlWinTagHandler, wxHtmlWinTagHandler, HandleTag);
0f66a9f3
RD
287%}
288
289
d14a1e28 290%name(HtmlWinTagHandler) class wxPyHtmlWinTagHandler : public wxPyHtmlTagHandler {
0f66a9f3 291public:
d14a1e28 292 %addtofunc wxPyHtmlWinTagHandler "self._setCallbackInfo(self, HtmlWinTagHandler)"
0f66a9f3
RD
293 wxPyHtmlWinTagHandler();
294
0122b7e3 295 void _setCallbackInfo(PyObject* self, PyObject* _class);
0f66a9f3
RD
296
297 void SetParser(wxHtmlParser *parser);
298 wxHtmlWinParser* GetParser();
299 void ParseInner(const wxHtmlTag& tag);
300};
301
302
303//---------------------------------------------------------------------------
304
305%{
306
307class wxPyHtmlTagsModule : public wxHtmlTagsModule {
308public:
309 wxPyHtmlTagsModule(PyObject* thc) : wxHtmlTagsModule() {
310 m_tagHandlerClass = thc;
311 Py_INCREF(m_tagHandlerClass);
312 RegisterModule(this);
313 wxHtmlWinParser::AddModule(this);
314 }
315
316 void OnExit() {
4268f798 317 wxPyBeginBlockThreads();
0f66a9f3
RD
318 Py_DECREF(m_tagHandlerClass);
319 m_tagHandlerClass = NULL;
dc2f8a65 320 for (size_t x=0; x < m_objArray.GetCount(); x++) {
0f66a9f3
RD
321 PyObject* obj = (PyObject*)m_objArray.Item(x);
322 Py_DECREF(obj);
323 }
4268f798 324 wxPyEndBlockThreads();
0f66a9f3
RD
325 };
326
327 void FillHandlersTable(wxHtmlWinParser *parser) {
328 // Wave our magic wand... (if it works it's a miracle! ;-)
329
330 // First, make a new instance of the tag handler
4268f798 331 wxPyBeginBlockThreads();
fb757066
RD
332 PyObject* arg = PyTuple_New(0);
333 PyObject* obj = PyObject_CallObject(m_tagHandlerClass, arg);
0f66a9f3 334 Py_DECREF(arg);
fb757066 335
0f66a9f3
RD
336 // now figure out where it's C++ object is...
337 wxPyHtmlWinTagHandler* thPtr;
fb757066
RD
338 if (! wxPyConvertSwigPtr(obj, (void **)&thPtr, wxT("wxPyHtmlWinTagHandler"))) {
339 wxPyEndBlockThreads();
0f66a9f3 340 return;
fb757066
RD
341 }
342 wxPyEndBlockThreads();
0f66a9f3
RD
343
344 // add it,
345 parser->AddTagHandler(thPtr);
346
347 // and track it.
348 m_objArray.Add(obj);
349 }
350
351private:
352 PyObject* m_tagHandlerClass;
353 wxArrayPtrVoid m_objArray;
354
355};
356%}
357
358
359
360%inline %{
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);
365 }
366%}
367
dc2f8a65 368
e166644c
RD
369//---------------------------------------------------------------------------
370//---------------------------------------------------------------------------
d14a1e28 371%newgroup
e166644c 372
dd116e73
RD
373
374// wxHtmlSelection is data holder with information about text selection.
375// Selection is defined by two positions (beginning and end of the selection)
376// and two leaf(!) cells at these positions.
377class wxHtmlSelection
378{
379public:
380 wxHtmlSelection();
381 ~wxHtmlSelection();
382
383 void Set(const wxPoint& fromPos, const wxHtmlCell *fromCell,
384 const wxPoint& toPos, const wxHtmlCell *toCell);
385 %name(SetCells)void Set(const wxHtmlCell *fromCell, const wxHtmlCell *toCell);
386
387 const wxHtmlCell *GetFromCell() const;
388 const wxHtmlCell *GetToCell() const;
389
390 // these values are in absolute coordinates:
391 const wxPoint& GetFromPos() const;
392 const wxPoint& GetToPos() const;
393
394 // these are From/ToCell's private data
395 const wxPoint& GetFromPrivPos() const;
396 const wxPoint& GetToPrivPos() const;
397 void SetFromPrivPos(const wxPoint& pos);
398 void SetToPrivPos(const wxPoint& pos);
399 void ClearPrivPos();
400
401 const bool IsEmpty() const;
402
403};
404
405
406enum wxHtmlSelectionState
407{
408 wxHTML_SEL_OUT, // currently rendered cell is outside the selection
409 wxHTML_SEL_IN, // ... is inside selection
410 wxHTML_SEL_CHANGING // ... is the cell on which selection state changes
411};
412
d14a1e28
RD
413
414
dd116e73
RD
415// Selection state is passed to wxHtmlCell::Draw so that it can render itself
416// differently e.g. when inside text selection or outside it.
417class wxHtmlRenderingState
418{
419public:
420 wxHtmlRenderingState();
421 ~wxHtmlRenderingState();
422
423 void SetSelectionState(wxHtmlSelectionState s);
424 wxHtmlSelectionState GetSelectionState() const;
425
426 void SetFgColour(const wxColour& c);
427 const wxColour& GetFgColour() const;
428 void SetBgColour(const wxColour& c);
429 const wxColour& GetBgColour() const;
430};
431
432
d14a1e28 433
dd116e73
RD
434// HTML rendering customization. This class is used when rendering wxHtmlCells
435// as a callback:
436class wxHtmlRenderingStyle
437{
438public:
439 virtual wxColour GetSelectedTextColour(const wxColour& clr) = 0;
440 virtual wxColour GetSelectedTextBgColour(const wxColour& clr) = 0;
441};
442
443// Standard style:
444class wxDefaultHtmlRenderingStyle : public wxHtmlRenderingStyle
445{
446public:
447 virtual wxColour GetSelectedTextColour(const wxColour& clr);
448 virtual wxColour GetSelectedTextBgColour(const wxColour& clr);
449};
450
451
452
453// Information given to cells when drawing them. Contains rendering state,
454// selection information and rendering style object that can be used to
455// customize the output.
456class wxHtmlRenderingInfo
457{
458public:
459 wxHtmlRenderingInfo();
460 ~wxHtmlRenderingInfo();
461
462 void SetSelection(wxHtmlSelection *s);
463 wxHtmlSelection *GetSelection() const;
464
465 void SetStyle(wxHtmlRenderingStyle *style);
466 wxHtmlRenderingStyle& GetStyle();
467
468 wxHtmlRenderingState& GetState();
469};
470
471//---------------------------------------------------------------------------
d14a1e28 472%newgroup
dd116e73 473
3ef86e32
RD
474
475enum
476{
477 wxHTML_FIND_EXACT = 1,
478 wxHTML_FIND_NEAREST_BEFORE = 2,
479 wxHTML_FIND_NEAREST_AFTER = 4
480};
481
482
9416aa89 483class wxHtmlCell : public wxObject {
e166644c
RD
484public:
485 wxHtmlCell();
486
e166644c
RD
487 int GetPosX();
488 int GetPosY();
489 int GetWidth();
490 int GetHeight();
491 int GetDescent();
9c00cfa3 492 wxHtmlLinkInfo* GetLink(int x = 0, int y = 0);
e166644c 493 wxHtmlCell* GetNext();
9c00cfa3 494 wxHtmlContainerCell* GetParent();
3ef86e32
RD
495 wxHtmlCell* GetFirstChild() const;
496
497 // Returns cursor to be used when mouse is over the cell:
498 wxCursor GetCursor() const;
499
500 // Formatting cells are not visible on the screen, they only alter
501 // renderer's state.
502 bool IsFormattingCell() const;
503
504
9c00cfa3 505 void SetLink(const wxHtmlLinkInfo& link);
e166644c 506 void SetNext(wxHtmlCell *cell);
9c00cfa3
RD
507 void SetParent(wxHtmlContainerCell *p);
508 void SetPos(int x, int y);
e166644c 509 void Layout(int w);
dd116e73
RD
510 void Draw(wxDC& dc, int x, int y, int view_y1, int view_y2,
511 wxHtmlRenderingInfo& info);
512 void DrawInvisible(wxDC& dc, int x, int y,
513 wxHtmlRenderingInfo& info);
e166644c 514 const wxHtmlCell* Find(int condition, const void* param);
dc2f8a65 515
1fded56b 516 bool AdjustPagebreak(int* INOUT);
dc2f8a65 517 void SetCanLiveOnPagebreak(bool can);
9c00cfa3 518
3ef86e32
RD
519 // Can the line be broken before this cell?
520 bool IsLinebreakAllowed() const;
521
dd9f7fea 522 // Returns True for simple == terminal cells, i.e. not composite ones.
3ef86e32
RD
523 // This if for internal usage only and may disappear in future versions!
524 bool IsTerminalCell() const;
525
526 // Find a cell inside this cell positioned at the given coordinates
527 // (relative to this's positions). Returns NULL if no such cell exists.
528 // The flag can be used to specify whether to look for terminal or
529 // nonterminal cells or both. In either case, returned cell is deepest
530 // cell in cells tree that contains [x,y].
531 wxHtmlCell *FindCellByPos(wxCoord x, wxCoord y,
532 unsigned flags = wxHTML_FIND_EXACT) const;
533
534 // Returns absolute position of the cell on HTML canvas
535 wxPoint GetAbsPos() const;
536
537 // Returns first (last) terminal cell inside this cell. It may return NULL,
538 // but it is rare -- only if there are no terminals in the tree.
539 wxHtmlCell *GetFirstTerminal() const ;
540 wxHtmlCell *GetLastTerminal() const ;
541
542 // Returns cell's depth, i.e. how far under the root cell it is
543 // (if it is the root, depth is 0)
544 unsigned GetDepth() const;
545
dd9f7fea 546 // Returns True if the cell appears before 'cell' in natural order of
3ef86e32 547 // cells (= as they are read). If cell A is (grand)parent of cell B,
dd9f7fea 548 // then both A.IsBefore(B) and B.IsBefore(A) always return True.
3ef86e32
RD
549 bool IsBefore(wxHtmlCell *cell) const;
550
551 // Converts the cell into text representation. If sel != NULL then
552 // only part of the cell inside the selection is converted.
553 wxString ConvertToText(wxHtmlSelection *sel) const;
e166644c
RD
554};
555
556
9416aa89
RD
557class wxHtmlWordCell : public wxHtmlCell
558{
559public:
560 wxHtmlWordCell(const wxString& word, wxDC& dc);
561};
562
563
e166644c
RD
564class wxHtmlContainerCell : public wxHtmlCell {
565public:
566 wxHtmlContainerCell(wxHtmlContainerCell *parent);
567
568 void InsertCell(wxHtmlCell *cell);
569 void SetAlignHor(int al);
570 int GetAlignHor();
571 void SetAlignVer(int al);
572 int GetAlignVer();
9d8bd15f 573 void SetIndent(int i, int what, int units = wxHTML_UNITS_PIXELS);
e166644c
RD
574 int GetIndent(int ind);
575 int GetIndentUnits(int ind);
576 void SetAlign(const wxHtmlTag& tag);
577 void SetWidthFloat(int w, int units);
578 %name(SetWidthFloatFromTag)void SetWidthFloat(const wxHtmlTag& tag);
9d8bd15f 579 void SetMinHeight(int h, int align = wxHTML_ALIGN_TOP);
e166644c 580 void SetBackgroundColour(const wxColour& clr);
1e4a197e 581 wxColour GetBackgroundColour();
e166644c 582 void SetBorder(const wxColour& clr1, const wxColour& clr2);
dd116e73
RD
583 wxHtmlCell* GetFirstChild();
584 %pragma(python) addtoclass = "GetFirstCell = GetFirstChild"
e166644c
RD
585};
586
587
588
9c00cfa3
RD
589class wxHtmlColourCell : public wxHtmlCell {
590public:
591 wxHtmlColourCell(wxColour clr, int flags = wxHTML_CLR_FOREGROUND);
592
593};
594
595
9416aa89
RD
596class wxHtmlFontCell : public wxHtmlCell
597{
598public:
599 wxHtmlFontCell(wxFont *font);
600};
601
e166644c
RD
602
603class wxHtmlWidgetCell : public wxHtmlCell {
604public:
605 wxHtmlWidgetCell(wxWindow* wnd, int w = 0);
606
607};
608
0f66a9f3 609
d14a1e28
RD
610
611
0f66a9f3 612//---------------------------------------------------------------------------
1e4a197e
RD
613// wxHtmlFilter
614//---------------------------------------------------------------------------
d14a1e28 615%newgroup
1e4a197e
RD
616
617
618%{ // here's the C++ version
619class wxPyHtmlFilter : public wxHtmlFilter {
620 DECLARE_ABSTRACT_CLASS(wxPyHtmlFilter);
621public:
622 wxPyHtmlFilter() : wxHtmlFilter() {}
623
dd9f7fea 624 // returns True if this filter is able to open&read given file
1e4a197e 625 virtual bool CanRead(const wxFSFile& file) const {
dd9f7fea 626 bool rval = False;
1e4a197e
RD
627 bool found;
628 wxPyBeginBlockThreads();
629 if ((found = wxPyCBH_findCallback(m_myInst, "CanRead"))) {
630 PyObject* obj = wxPyMake_wxObject((wxFSFile*)&file); // cast away const
631 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(O)", obj));
632 Py_DECREF(obj);
633 }
634 wxPyEndBlockThreads();
635 return rval;
636 }
637
638
639 // Reads given file and returns HTML document.
640 // Returns empty string if opening failed
641 virtual wxString ReadFile(const wxFSFile& file) const {
642 wxString rval;
643 bool found;
644 wxPyBeginBlockThreads();
645 if ((found = wxPyCBH_findCallback(m_myInst, "ReadFile"))) {
646 PyObject* obj = wxPyMake_wxObject((wxFSFile*)&file); // cast away const
647 PyObject* ro;
648 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(O)", obj));
649 Py_DECREF(obj);
650 if (ro) {
651 rval = Py2wxString(ro);
652 Py_DECREF(ro);
653 }
654 }
655 wxPyEndBlockThreads();
656 return rval;
657 }
658
659 PYPRIVATE;
660};
661
662IMPLEMENT_ABSTRACT_CLASS(wxPyHtmlFilter, wxHtmlFilter);
663%}
664
665
666// And now the version seen by SWIG
667
d14a1e28 668%name(HtmlFilter) class wxPyHtmlFilter : public wxObject {
1e4a197e 669public:
d14a1e28 670 %addtofunc wxPyHtmlFilter "self._setCallbackInfo(self, HtmlFilter)"
1e4a197e
RD
671 wxPyHtmlFilter();
672
673 void _setCallbackInfo(PyObject* self, PyObject* _class);
1e4a197e
RD
674};
675
676
677// TODO: wxHtmlFilterHTML
678
679
0f66a9f3 680//---------------------------------------------------------------------------
1e4a197e 681// wxHtmlWindow
4b123bb9 682//---------------------------------------------------------------------------
d14a1e28 683%newgroup
4b123bb9 684
0f66a9f3
RD
685%{
686class wxPyHtmlWindow : public wxHtmlWindow {
cdf14688 687 DECLARE_ABSTRACT_CLASS(wxPyHtmlWindow);
0f66a9f3
RD
688public:
689 wxPyHtmlWindow(wxWindow *parent, wxWindowID id = -1,
690 const wxPoint& pos = wxDefaultPosition,
691 const wxSize& size = wxDefaultSize,
3ef86e32 692 long style = wxHW_DEFAULT_STYLE,
1e4a197e 693 const wxString& name = wxPyHtmlWindowNameStr)
0f66a9f3 694 : wxHtmlWindow(parent, id, pos, size, style, name) {};
7b7ac0ab 695 wxPyHtmlWindow() : wxHtmlWindow() {};
0f66a9f3 696
e5d41db0
RD
697 bool ScrollToAnchor(const wxString& anchor) {
698 return wxHtmlWindow::ScrollToAnchor(anchor);
699 }
700
701 bool HasAnchor(const wxString& anchor) {
702 const wxHtmlCell *c = m_Cell->Find(wxHTML_COND_ISANCHOR, &anchor);
703 return c!=NULL;
704 }
705
c8bc03c3
RD
706 void OnLinkClicked(const wxHtmlLinkInfo& link);
707 void base_OnLinkClicked(const wxHtmlLinkInfo& link);
9c00cfa3 708
e5d41db0 709 wxHtmlOpeningStatus OnOpeningURL(wxHtmlURLType type,
c6c593e8
RD
710 const wxString& url,
711 wxString *redirect) const;
712
9c00cfa3 713 DEC_PYCALLBACK__STRING(OnSetTitle);
0122b7e3
RD
714 DEC_PYCALLBACK__CELLINTINT(OnCellMouseHover);
715 DEC_PYCALLBACK__CELLINTINTME(OnCellClicked);
0f66a9f3
RD
716 PYPRIVATE;
717};
718
cdf14688 719IMPLEMENT_ABSTRACT_CLASS( wxPyHtmlWindow, wxHtmlWindow );
9c00cfa3 720IMP_PYCALLBACK__STRING(wxPyHtmlWindow, wxHtmlWindow, OnSetTitle);
0122b7e3
RD
721IMP_PYCALLBACK__CELLINTINT(wxPyHtmlWindow, wxHtmlWindow, OnCellMouseHover);
722IMP_PYCALLBACK__CELLINTINTME(wxPyHtmlWindow, wxHtmlWindow, OnCellClicked);
723
0f66a9f3 724
9416aa89 725void wxPyHtmlWindow::OnLinkClicked(const wxHtmlLinkInfo& link) {
19a97bd6 726 bool found;
4268f798 727 wxPyBeginBlockThreads();
0122b7e3 728 if ((found = wxPyCBH_findCallback(m_myInst, "OnLinkClicked"))) {
1e4a197e 729 PyObject* obj = wxPyConstructObject((void*)&link, wxT("wxHtmlLinkInfo"), 0);
1e7ecb7b 730 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(O)", obj));
de20db99 731 Py_DECREF(obj);
9c00cfa3 732 }
4268f798 733 wxPyEndBlockThreads();
19a97bd6 734 if (! found)
9c00cfa3 735 wxHtmlWindow::OnLinkClicked(link);
9c00cfa3 736}
c8bc03c3 737void wxPyHtmlWindow::base_OnLinkClicked(const wxHtmlLinkInfo& link) {
9c00cfa3
RD
738 wxHtmlWindow::OnLinkClicked(link);
739}
0122b7e3 740
c6c593e8
RD
741
742wxHtmlOpeningStatus wxPyHtmlWindow::OnOpeningURL(wxHtmlURLType type,
743 const wxString& url,
744 wxString *redirect) const {
745 bool found;
746 wxHtmlOpeningStatus rval;
747 wxPyBeginBlockThreads();
748 if ((found = wxPyCBH_findCallback(m_myInst, "OnOpeningURL"))) {
749 PyObject* ro;
a66212dc
RD
750 PyObject* s = wx2PyString(url);
751 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(iO)", type, s));
752 Py_DECREF(s);
c6c593e8
RD
753 if (PyString_Check(ro)
754#if PYTHON_API_VERSION >= 1009
755 || PyUnicode_Check(ro)
756#endif
757 ) {
a541c325 758 *redirect = Py2wxString(ro);
c6c593e8
RD
759 rval = wxHTML_REDIRECT;
760 }
761 else {
762 PyObject* num = PyNumber_Int(ro);
763 rval = (wxHtmlOpeningStatus)PyInt_AsLong(num);
764 Py_DECREF(num);
765 }
766 Py_DECREF(ro);
767 }
768 wxPyEndBlockThreads();
769 if (! found)
770 rval = wxHtmlWindow::OnOpeningURL(type, url, redirect);
771 return rval;
772}
773
774
0f66a9f3
RD
775%}
776
777
95837b4d 778
d14a1e28 779%name(HtmlWindow) class wxPyHtmlWindow : public wxScrolledWindow {
0f66a9f3 780public:
d14a1e28
RD
781 %addtofunc wxPyHtmlWindow "self._setCallbackInfo(self, HtmlWindow); self._setOORInfo(self)"
782 %addtofunc wxPyHtmlWindow() ""
783
0f66a9f3 784 wxPyHtmlWindow(wxWindow *parent, int id = -1,
d14a1e28
RD
785 const wxPoint& pos = wxDefaultPosition,
786 const wxSize& size = wxDefaultSize,
3ef86e32 787 int style=wxHW_DEFAULT_STYLE,
137b5242 788 const wxString& name = wxPyHtmlWindowNameStr);
d14a1e28 789 %name(PreHtmlWindow)wxPyHtmlWindow();
7b7ac0ab
RD
790
791 bool Create(wxWindow *parent, int id = -1,
d14a1e28
RD
792 const wxPoint& pos = wxDefaultPosition,
793 const wxSize& size = wxDefaultSize,
fc51b8c3 794 int style=wxHW_SCROLLBAR_AUTO,
137b5242 795 const wxString& name = wxPyHtmlWindowNameStr);
7b7ac0ab 796
0f66a9f3 797
0122b7e3 798 void _setCallbackInfo(PyObject* self, PyObject* _class);
0f66a9f3 799
d14a1e28 800
1e4a197e
RD
801 // Set HTML page and display it. !! source is HTML document itself,
802 // it is NOT address/filename of HTML document. If you want to
803 // specify document location, use LoadPage() istead
dd9f7fea 804 // Return value : False if an error occured, True otherwise
7a446686 805 bool SetPage(const wxString& source);
1e4a197e
RD
806
807 // Load HTML page from given location. Location can be either
808 // a) /usr/wxGTK2/docs/html/wx.htm
809 // b) http://www.somewhere.uk/document.htm
810 // c) ftp://ftp.somesite.cz/pub/something.htm
811 // In case there is no prefix (http:,ftp:), the method
812 // will try to find it itself (1. local file, then http or ftp)
813 // After the page is loaded, the method calls SetPage() to display it.
814 // Note : you can also use path relative to previously loaded page
815 // Return value : same as SetPage
7a446686 816 bool LoadPage(const wxString& location);
1e4a197e 817
9cbf6f6e 818 // Loads HTML page from file
1fded56b 819 bool LoadFile(const wxString& filename);
9cbf6f6e 820
1e4a197e 821 // Append to current page
de112a55 822 bool AppendToPage(const wxString& source);
1e4a197e
RD
823
824 // Returns full location of opened page
0f66a9f3 825 wxString GetOpenedPage();
1e4a197e
RD
826
827 // Returns anchor within opened page
7a446686 828 wxString GetOpenedAnchor();
1e4a197e
RD
829
830 // Returns <TITLE> of opened page or empty string otherwise
7a446686
RD
831 wxString GetOpenedPageTitle();
832
1e4a197e
RD
833 // Sets frame in which page title will be displayed. Format is format of
834 // frame title, e.g. "HtmlHelp : %s". It must contain exactly one %s
137b5242 835 void SetRelatedFrame(wxFrame* frame, const wxString& format);
0f66a9f3 836 wxFrame* GetRelatedFrame();
1e4a197e
RD
837
838 // After(!) calling SetRelatedFrame, this sets statusbar slot where messages
839 // will be displayed. Default is -1 = no messages.
0f66a9f3 840 void SetRelatedStatusBar(int bar);
f6bcfd97 841
1e4a197e 842 // Sets fonts to be used when displaying HTML page.
d14a1e28 843 %extend {
9cbf6f6e
RD
844 void SetFonts(wxString normal_face, wxString fixed_face, PyObject* sizes=NULL) {
845 int* temp = NULL;
846 if (sizes) temp = int_LIST_helper(sizes);
847 self->SetFonts(normal_face, fixed_face, temp);
848 if (temp)
f6bcfd97 849 delete [] temp;
f6bcfd97
BP
850 }
851 }
852
7a446686 853 void SetTitle(const wxString& title);
1e4a197e
RD
854
855 // Sets space between text and window borders.
0f66a9f3 856 void SetBorders(int b);
1e4a197e
RD
857
858 // Saves custom settings into cfg config. it will use the path 'path'
859 // if given, otherwise it will save info into currently selected path.
860 // saved values : things set by SetFonts, SetBorders.
137b5242
RD
861 void ReadCustomization(wxConfigBase *cfg, wxString path = wxPyEmptyString);
862 void WriteCustomization(wxConfigBase *cfg, wxString path = wxPyEmptyString);
1e4a197e
RD
863
864 // Goes to previous/next page (in browsing history)
dd9f7fea 865 // Returns True if successful, False otherwise
0f66a9f3
RD
866 bool HistoryBack();
867 bool HistoryForward();
7a446686
RD
868 bool HistoryCanBack();
869 bool HistoryCanForward();
1e4a197e
RD
870
871 // Resets History
0f66a9f3 872 void HistoryClear();
1e4a197e
RD
873
874 // Returns pointer to conteiners/cells structure.
a65c6e14 875 wxHtmlContainerCell* GetInternalRepresentation();
1e4a197e
RD
876
877 // Returns a pointer to the parser.
e166644c
RD
878 wxHtmlWinParser* GetParser();
879
e5d41db0
RD
880 bool ScrollToAnchor(const wxString& anchor);
881 bool HasAnchor(const wxString& anchor);
882
1e4a197e
RD
883 //Adds input filter
884 static void AddFilter(wxPyHtmlFilter *filter);
885
886
c8bc03c3 887 void base_OnLinkClicked(const wxHtmlLinkInfo& link);
137b5242 888 void base_OnSetTitle(const wxString& title);
0122b7e3
RD
889 void base_OnCellMouseHover(wxHtmlCell *cell, wxCoord x, wxCoord y);
890 void base_OnCellClicked(wxHtmlCell *cell,
891 wxCoord x, wxCoord y,
892 const wxMouseEvent& event);
4b123bb9
HH
893};
894
5ca24bf4 895
5ca24bf4 896
d14a1e28 897
dc2f8a65
RD
898//---------------------------------------------------------------------------
899//---------------------------------------------------------------------------
d14a1e28 900%newgroup
dc2f8a65
RD
901
902
9416aa89 903class wxHtmlDCRenderer : public wxObject {
dc2f8a65
RD
904public:
905 wxHtmlDCRenderer();
906 ~wxHtmlDCRenderer();
907
908 void SetDC(wxDC *dc, int maxwidth);
909 void SetSize(int width, int height);
910 void SetHtmlText(const wxString& html,
137b5242 911 const wxString& basepath = wxPyEmptyString,
dd9f7fea 912 bool isdir = True);
1fded56b 913 // Sets fonts to be used when displaying HTML page. (if size null then default sizes used).
d14a1e28 914 %extend {
9cbf6f6e
RD
915 void SetFonts(wxString normal_face, wxString fixed_face, PyObject* sizes=NULL) {
916 int* temp = NULL;
917 if (sizes) temp = int_LIST_helper(sizes);
918 self->SetFonts(normal_face, fixed_face, temp);
919 if (temp)
920 delete [] temp;
921 }
922 }
dd9f7fea 923 int Render(int x, int y, int from = 0, int dont_render = False, int to = INT_MAX,
3ef86e32
RD
924 //int *known_pagebreaks = NULL, int number_of_pages = 0
925 int* choices=NULL, int LCOUNT = 0
926 );
dc2f8a65
RD
927 int GetTotalHeight();
928 // returns total height of the html document
929 // (compare Render's return value with this)
930};
931
d14a1e28 932
dc2f8a65
RD
933enum {
934 wxPAGE_ODD,
935 wxPAGE_EVEN,
936 wxPAGE_ALL
937};
938
939
940class wxHtmlPrintout : public wxPyPrintout {
941public:
137b5242 942 wxHtmlPrintout(const wxString& title = wxPyHtmlPrintoutTitleStr);
f3d9dc1d 943 //~wxHtmlPrintout(); wxPrintPreview object takes ownership...
dc2f8a65
RD
944
945 void SetHtmlText(const wxString& html,
137b5242 946 const wxString &basepath = wxPyEmptyString,
dd9f7fea 947 bool isdir = True);
dc2f8a65
RD
948 void SetHtmlFile(const wxString &htmlfile);
949 void SetHeader(const wxString& header, int pg = wxPAGE_ALL);
950 void SetFooter(const wxString& footer, int pg = wxPAGE_ALL);
d14a1e28 951
1fded56b 952 // Sets fonts to be used when displaying HTML page. (if size null then default sizes used).
d14a1e28 953 %extend {
9cbf6f6e
RD
954 void SetFonts(wxString normal_face, wxString fixed_face, PyObject* sizes=NULL) {
955 int* temp = NULL;
956 if (sizes) temp = int_LIST_helper(sizes);
957 self->SetFonts(normal_face, fixed_face, temp);
958 if (temp)
959 delete [] temp;
960 }
961 }
dc2f8a65
RD
962 void SetMargins(float top = 25.2, float bottom = 25.2,
963 float left = 25.2, float right = 25.2,
964 float spaces = 5);
3ef86e32
RD
965
966 // Adds input filter
967 static void AddFilter(wxHtmlFilter *filter);
968
969 // Cleanup
970 static void CleanUpStatics();
dc2f8a65
RD
971};
972
973
974
9416aa89 975class wxHtmlEasyPrinting : public wxObject {
dc2f8a65 976public:
137b5242 977 wxHtmlEasyPrinting(const wxString& name = wxPyHtmlPrintingTitleStr,
3ef86e32 978 wxWindow *parentWindow = NULL);
dc2f8a65
RD
979 ~wxHtmlEasyPrinting();
980
981 void PreviewFile(const wxString &htmlfile);
137b5242 982 void PreviewText(const wxString &htmltext, const wxString& basepath = wxPyEmptyString);
dc2f8a65 983 void PrintFile(const wxString &htmlfile);
137b5242 984 void PrintText(const wxString &htmltext, const wxString& basepath = wxPyEmptyString);
dc2f8a65
RD
985 void PrinterSetup();
986 void PageSetup();
987 void SetHeader(const wxString& header, int pg = wxPAGE_ALL);
988 void SetFooter(const wxString& footer, int pg = wxPAGE_ALL);
989
d14a1e28 990 %extend {
9cbf6f6e
RD
991 void SetFonts(wxString normal_face, wxString fixed_face, PyObject* sizes=NULL) {
992 int* temp = NULL;
993 if (sizes) temp = int_LIST_helper(sizes);
994 self->SetFonts(normal_face, fixed_face, temp);
995 if (temp)
996 delete [] temp;
997 }
998 }
999
dc2f8a65
RD
1000 wxPrintData *GetPrintData() {return m_PrintData;}
1001 wxPageSetupDialogData *GetPageSetupData() {return m_PageSetupData;}
1002
1003};
1004
1005
0f66a9f3
RD
1006//---------------------------------------------------------------------------
1007//---------------------------------------------------------------------------
d14a1e28 1008%newgroup
5ca24bf4 1009
4b123bb9 1010
d14a1e28
RD
1011class wxHtmlBookRecord {
1012public:
1013 wxHtmlBookRecord(const wxString& bookfile, const wxString& basepath,
1014 const wxString& title, const wxString& start);
4b123bb9 1015
d14a1e28
RD
1016 wxString GetBookFile();
1017 wxString GetTitle();
1018 wxString GetStart();
1019 wxString GetBasePath();
1020
1021 void SetContentsRange(int start, int end);
1022 int GetContentsStart();
1023 int GetContentsEnd();
4b123bb9 1024
d14a1e28
RD
1025 void SetTitle(const wxString& title);
1026 void SetBasePath(const wxString& path);
1027 void SetStart(const wxString& start);
1028
1029 wxString GetFullPath(const wxString &page) const;
1030};
1031
1032//---------------------------------------------------------------------------
0f66a9f3 1033
d14a1e28
RD
1034struct wxHtmlContentsItem
1035{
1036 %extend {
1037 int GetLevel() { return self->m_Level; }
1038 int GetID() { return self->m_ID; }
1039 wxString GetName() { return self->m_Name; }
1040 wxString GetPage() { return self->m_Page; }
1041 wxHtmlBookRecord* GetBook() { return self->m_Book; }
1042 }
1043};
1044
1045//---------------------------------------------------------------------------
1046
1047class wxHtmlSearchStatus
1048{
1049public:
1050 //wxHtmlSearchStatus(wxHtmlHelpData* base, const wxString& keyword,
1051 // const wxString& book = wxPyEmptyString);
1052 bool Search();
1053 bool IsActive();
1054 int GetCurIndex();
1055 int GetMaxIndex();
1056 const wxString& GetName();
1057 wxHtmlContentsItem* GetContentsItem();
1058};
1059
1060//---------------------------------------------------------------------------
1061
1062class wxHtmlHelpData {
1063public:
1064 wxHtmlHelpData();
1065 ~wxHtmlHelpData();
1066
1067 void SetTempDir(const wxString& path);
1068 bool AddBook(const wxString& book);
1069// bool AddBookParam(const wxString& title, const wxString& contfile,
1070// const wxString& indexfile=wxPyEmptyString,
1071// const wxString& deftopic=wxPyEmptyString,
1072// const wxString& path=wxPyEmptyString);
1073
1074 wxString FindPageByName(const wxString& page);
1075 wxString FindPageById(int id);
1076
1077 // TODO: this one needs fixed...
1078 const wxHtmlBookRecArray& GetBookRecArray();
1079
1080 wxHtmlContentsItem* GetContents();
1081 int GetContentsCnt();
1082 wxHtmlContentsItem* GetIndex();
1083 int GetIndexCnt();
1084};
1085
1086//---------------------------------------------------------------------------
1087
1088class wxHtmlHelpFrame : public wxFrame {
1089public:
1090 %addtofunc wxHtmlHelpFrame "self._setOORInfo(self)"
1091
1092 wxHtmlHelpFrame(wxWindow* parent, int wxWindowID,
1093 const wxString& title = wxPyEmptyString,
1094 int style = wxHF_DEFAULTSTYLE, wxHtmlHelpData* data = NULL);
1095
1096 wxHtmlHelpData* GetData();
1097 void SetTitleFormat(const wxString& format);
1098 void Display(const wxString& x);
1099 %name(DisplayID) void Display(int id);
1100 void DisplayContents();
1101 void DisplayIndex();
1102 bool KeywordSearch(const wxString& keyword);
1103 void UseConfig(wxConfigBase *config, const wxString& rootpath = wxPyEmptyString);
1104 void ReadCustomization(wxConfigBase *cfg, wxString path = wxPyEmptyString);
1105 void WriteCustomization(wxConfigBase *cfg, wxString path = wxPyEmptyString);
1106};
1107
1108
1109//---------------------------------------------------------------------------
1110
1111
1112enum {
1113 wxHF_TOOLBAR,
1114 wxHF_FLATTOOLBAR,
1115 wxHF_CONTENTS,
1116 wxHF_INDEX,
1117 wxHF_SEARCH,
1118 wxHF_BOOKMARKS,
1119 wxHF_OPENFILES,
1120 wxHF_PRINT,
1121 wxHF_DEFAULTSTYLE,
1122};
1123
1124
1125class wxHtmlHelpController : public wxEvtHandler {
1126public:
1127 %addtofunc wxHtmlHelpController "self._setOORInfo(self)"
1128
1129 wxHtmlHelpController(int style = wxHF_DEFAULTSTYLE);
1130 ~wxHtmlHelpController();
1131
1132 void SetTitleFormat(const wxString& format);
1133 void SetTempDir(const wxString& path);
dd9f7fea 1134 bool AddBook(const wxString& book, int show_wait_msg = False);
d14a1e28
RD
1135 void Display(const wxString& x);
1136 %name(DisplayID) void Display(int id);
1137 void DisplayContents();
1138 void DisplayIndex();
1139 bool KeywordSearch(const wxString& keyword);
1140 void UseConfig(wxConfigBase *config, const wxString& rootpath = wxPyEmptyString);
1141 void ReadCustomization(wxConfigBase *cfg, wxString path = wxPyEmptyString);
1142 void WriteCustomization(wxConfigBase *cfg, wxString path = wxPyEmptyString);
1143 wxHtmlHelpFrame* GetFrame();
1144};
1145
1146
1147
1148
1149//---------------------------------------------------------------------------
1150%init %{
1151 wxPyPtrTypeMap_Add("wxHtmlTagHandler", "wxPyHtmlTagHandler");
9416aa89 1152 wxPyPtrTypeMap_Add("wxHtmlWinTagHandler", "wxPyHtmlWinTagHandler");
d14a1e28
RD
1153 wxPyPtrTypeMap_Add("wxHtmlWindow", "wxPyHtmlWindow");
1154 wxPyPtrTypeMap_Add("wxHtmlFilter", "wxPyHtmlFilter");
4b123bb9 1155%}
d14a1e28
RD
1156//---------------------------------------------------------------------------
1157//---------------------------------------------------------------------------
4b123bb9 1158
e166644c 1159
e166644c 1160