1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112
|
.. wxPython Phoenix documentation
This file was generated by Phoenix's sphinx generator and associated
tools, do not edit by hand.
Copyright: (c) 2011-2018 by Total Control Software
License: wxWindows License
.. include:: headings.inc
.. _wx.html.HtmlWindow:
==========================================================================================================================================
|phoenix_title| **wx.html.HtmlWindow**
==========================================================================================================================================
:ref:`wx.html.HtmlWindow` is probably the only class you will directly use unless you want to do something special (like adding new tag handlers or MIME filters).
The purpose of this class is to display rich content pages (either local file or downloaded via ``HTTP`` protocol) in a window based on a subset of the HTML standard. The width of the window is constant - given in the constructor - and virtual height is changed dynamically depending on page size. Once the window is created you can set its content by calling :meth:`~wx.html.HtmlWindow.SetPage` with raw HTML, :meth:`~wx.html.HtmlWindow.LoadPage` with a :ref:`wx.FileSystem` location or :meth:`~wx.html.HtmlWindow.LoadFile` with a filename.
.. _HtmlWindow-styles:
|styles| Window Styles
================================
This class supports the following styles:
- ``wx.html.HW_SCROLLBAR_NEVER``: Never display scrollbars, not even when the page is larger than the window.
- ``wx.html.HW_SCROLLBAR_AUTO``: Display scrollbars only if page's size exceeds window's size.
- ``wx.html.HW_NO_SELECTION``: Don't allow the user to select text.
.. _HtmlWindow-events:
|events| Events Emitted by this Class
=====================================
Handlers bound for the following event types will receive one of the :ref:`wx.html.HtmlCellEvent`:ref:`wx.html.HtmlLinkEvent` parameters.
- EVT_HTML_CELL_CLICKED: A :ref:`wx.html.HtmlCell` was clicked.
- EVT_HTML_CELL_HOVER: The mouse passed over a :ref:`wx.html.HtmlCell`.
- EVT_HTML_LINK_CLICKED: A :ref:`wx.html.HtmlCell` which contains an hyperlink was clicked.
.. note::
If you want complete HTML/CSS support as well as a Javascript engine, see instead :ref:`wx.html2.WebView`.
.. note::
:ref:`wx.html.HtmlWindow` uses the :ref:`wx.Image` class for displaying images, as such you need to initialize the handlers for any image formats you use before loading a page. See :ref:`wx.InitAllImageHandlers` and :meth:`wx.Image.AddHandler` .
.. seealso:: :ref:`wx.html.HtmlLinkEvent`, :ref:`wx.html.HtmlCellEvent`
|
|class_hierarchy| Class Hierarchy
=================================
.. raw:: html
<div id="toggleBlock" onclick="return toggleVisibility(this)" class="closed" style="cursor:pointer;">
<img id="toggleBlock-trigger" src="_static/images/closed.png"/>
Inheritance diagram for class <strong>HtmlWindow</strong>:
</div>
<div id="toggleBlock-summary" style="display:block;"></div>
<div id="toggleBlock-content" style="display:none;">
<p class="graphviz">
<center><img src="_static/images/inheritance/wx.html.HtmlWindow_inheritance.png" alt="Inheritance diagram of HtmlWindow" usemap="#dummy" class="inheritance"/></center>
</div>
<script type="text/javascript">toggleVisibilityOnLoad(document.getElementById('toggleBlock'))</script>
<map id="dummy" name="dummy"> <area shape="rect" id="node1" href="wx.html.HtmlWindowInterface.html" title="wx.html.HtmlWindowInterface" alt="" coords="5,101,213,131"/> <area shape="rect" id="node4" href="wx.html.HtmlWindow.html" title="wx.html.HtmlWindow" alt="" coords="135,179,288,208"/> <area shape="rect" id="node2" href="Scrolled< wxPanel >.html" title="Scrolled< wxPanel >" alt="" coords="238,101,391,131"/> </map>
</p>
|
|method_summary| Methods Summary
================================
================================================================================ ================================================================================
:meth:`~wx.html.HtmlWindow.__init__` Default constructor.
:meth:`~wx.html.HtmlWindow.AddFilter` Adds :ref:`input filter <input filter>` to the static list of available filters.
:meth:`~wx.html.HtmlWindow.AppendToPage` Appends HTML fragment to currently displayed text and refreshes the window.
:meth:`~wx.html.HtmlWindow.GetInternalRepresentation` Returns pointer to the top-level container.
:meth:`~wx.html.HtmlWindow.GetOpenedAnchor` Returns anchor within currently opened page (see :meth:`wx.html.HtmlWindow.GetOpenedPage` ).
:meth:`~wx.html.HtmlWindow.GetOpenedPage` Returns full location of the opened page.
:meth:`~wx.html.HtmlWindow.GetOpenedPageTitle` Returns title of the opened page or EmptyString if the current page does not contain <``TITLE``> tag.
:meth:`~wx.html.HtmlWindow.GetParser` Returns a pointer to the current parser.
:meth:`~wx.html.HtmlWindow.GetRelatedFrame` Returns the related frame.
:meth:`~wx.html.HtmlWindow.HistoryBack` Moves back to the previous page.
:meth:`~wx.html.HtmlWindow.HistoryCanBack` Returns ``True`` if it is possible to go back in the history i.e.
:meth:`~wx.html.HtmlWindow.HistoryCanForward` Returns ``True`` if it is possible to go forward in the history i.e.
:meth:`~wx.html.HtmlWindow.HistoryClear` Clears history.
:meth:`~wx.html.HtmlWindow.HistoryForward` Moves to next page in history.
:meth:`~wx.html.HtmlWindow.LoadFile` Loads an HTML page from a file and displays it.
:meth:`~wx.html.HtmlWindow.LoadPage` Unlike :meth:`~HtmlWindow.SetPage` this function first loads the HTML page from `location` and then displays it.
:meth:`~wx.html.HtmlWindow.OnCellClicked` This method is called when a mouse button is clicked inside :ref:`wx.html.HtmlWindow`.
:meth:`~wx.html.HtmlWindow.OnCellMouseHover` This method is called when a mouse moves over an HTML cell.
:meth:`~wx.html.HtmlWindow.OnLinkClicked` Called when user clicks on hypertext link.
:meth:`~wx.html.HtmlWindow.OnOpeningURL` Called when an URL is being opened (either when the user clicks on a link or an image is loaded).
:meth:`~wx.html.HtmlWindow.OnSetTitle` Called on parsing <``TITLE``> tag.
:meth:`~wx.html.HtmlWindow.ReadCustomization` This reads custom settings from Config.
:meth:`~wx.html.HtmlWindow.SelectAll` Selects all text in the window.
:meth:`~wx.html.HtmlWindow.SelectLine` Selects the line of text that `pos` points at.
:meth:`~wx.html.HtmlWindow.SelectWord` Selects the word at position `pos`.
:meth:`~wx.html.HtmlWindow.SelectionToText` Returns the current selection as plain text.
:meth:`~wx.html.HtmlWindow.SetBorders` This function sets the space between border of window and HTML contents.
:meth:`~wx.html.HtmlWindow.SetFonts` This function sets font sizes and faces.
:meth:`~wx.html.HtmlWindow.SetPage` Sets the source of a page and displays it, for example
:meth:`~wx.html.HtmlWindow.SetRelatedFrame` Sets the frame in which page title will be displayed.
:meth:`~wx.html.HtmlWindow.SetRelatedStatusBar` **After** calling :meth:`~HtmlWindow.SetRelatedFrame` , this sets statusbar slot where messages will be displayed.
:meth:`~wx.html.HtmlWindow.SetStandardFonts` Sets default font sizes and/or default font size.
:meth:`~wx.html.HtmlWindow.ToText` Returns content of currently displayed page as plain text.
:meth:`~wx.html.HtmlWindow.WriteCustomization` Saves custom settings into Config.
================================================================================ ================================================================================
|
|property_summary| Properties Summary
=====================================
================================================================================ ================================================================================
:attr:`~wx.html.HtmlWindow.InternalRepresentation` See :meth:`~wx.html.HtmlWindow.GetInternalRepresentation`
:attr:`~wx.html.HtmlWindow.OpenedAnchor` See :meth:`~wx.html.HtmlWindow.GetOpenedAnchor`
:attr:`~wx.html.HtmlWindow.OpenedPage` See :meth:`~wx.html.HtmlWindow.GetOpenedPage`
:attr:`~wx.html.HtmlWindow.OpenedPageTitle` See :meth:`~wx.html.HtmlWindow.GetOpenedPageTitle`
:attr:`~wx.html.HtmlWindow.Parser` See :meth:`~wx.html.HtmlWindow.GetParser`
:attr:`~wx.html.HtmlWindow.RelatedFrame` See :meth:`~wx.html.HtmlWindow.GetRelatedFrame` and :meth:`~wx.html.HtmlWindow.SetRelatedFrame`
================================================================================ ================================================================================
|
|api| Class API
===============
.. class:: wx.html.HtmlWindow(ScrolledWindow, HtmlWindowInterface)
**Possible constructors**::
HtmlWindow()
HtmlWindow(parent, id=ID_ANY, pos=DefaultPosition, size=DefaultSize,
style=HW_DEFAULT_STYLE, name="htmlWindow")
HtmlWindow is probably the only class you will directly use unless
you want to do something special (like adding new tag handlers or MIME
filters).
.. method:: __init__(self, *args, **kw)
|overload| Overloaded Implementations:
**~~~**
**__init__** `(self)`
Default constructor.
**~~~**
**__init__** `(self, parent, id=ID_ANY, pos=DefaultPosition, size=DefaultSize, style=HW_DEFAULT_STYLE, name="htmlWindow")`
Constructor.
The parameters are the same as :meth:`Scrolled.__init__` constructor.
:param `parent`:
:type `parent`: wx.Window
:param `id`:
:type `id`: wx.WindowID
:param `pos`:
:type `pos`: wx.Point
:param `size`:
:type `size`: wx.Size
:param `style`:
:type `style`: long
:param `name`:
:type `name`: string
**~~~**
.. staticmethod:: AddFilter(filter)
Adds :ref:`input filter <input filter>` to the static list of available filters.
These filters are present by default:
- ``text/html`` MIME type
- ``image/*`` MIME types
- Plain Text filter (this filter is used if no other filter matches)
:param `filter`:
:type `filter`: wx.html.HtmlFilter
.. method:: AppendToPage(self, source)
Appends HTML fragment to currently displayed text and refreshes the window.
:param `source`: HTML code fragment
:type `source`: string
:rtype: `bool`
:returns:
``False`` if an error occurred, ``True`` otherwise.
.. method:: GetInternalRepresentation(self)
Returns pointer to the top-level container.
:rtype: :ref:`wx.html.HtmlContainerCell`
.. seealso:: :ref:`Cells and Containers <cells and containers>`, :ref:`Printing Framework Overview <printing framework overview>`
.. method:: GetOpenedAnchor(self)
Returns anchor within currently opened page (see :meth:`wx.html.HtmlWindow.GetOpenedPage` ).
If no page is opened or if the displayed page wasn't produced by call to :meth:`LoadPage` , empty string is returned.
:rtype: `string`
.. method:: GetOpenedPage(self)
Returns full location of the opened page.
If no page is opened or if the displayed page wasn't produced by call to :meth:`LoadPage` , empty string is returned.
:rtype: `string`
.. method:: GetOpenedPageTitle(self)
Returns title of the opened page or EmptyString if the current page does not contain <``TITLE``> tag.
:rtype: `string`
.. method:: GetParser(self)
Returns a pointer to the current parser.
:rtype: :ref:`wx.html.HtmlWinParser`
.. method:: GetRelatedFrame(self)
Returns the related frame.
:rtype: :ref:`Frame`
.. method:: HistoryBack(self)
Moves back to the previous page.
Only pages displayed using :meth:`LoadPage` are stored in history list.
:rtype: `bool`
.. method:: HistoryCanBack(self)
Returns ``True`` if it is possible to go back in the history i.e.
:meth:`HistoryBack` won't fail.
:rtype: `bool`
.. method:: HistoryCanForward(self)
Returns ``True`` if it is possible to go forward in the history i.e.
:meth:`HistoryForward` won't fail.
:rtype: `bool`
.. method:: HistoryClear(self)
Clears history.
.. method:: HistoryForward(self)
Moves to next page in history.
Only pages displayed using :meth:`LoadPage` are stored in history list.
:rtype: `bool`
.. method:: LoadFile(self, filename)
Loads an HTML page from a file and displays it.
:param `filename`:
:type `filename`: string
:rtype: `bool`
:returns:
``False`` if an error occurred, ``True`` otherwise
.. seealso:: :meth:`LoadPage`
.. method:: LoadPage(self, location)
Unlike :meth:`SetPage` this function first loads the HTML page from `location` and then displays it.
:param `location`: The address of the document. See the :ref:`FileSystem Overview <filesystem overview>` for details on the address format and :ref:`wx.FileSystem` for a description of how the file is opened.
:type `location`: string
:rtype: `bool`
:returns:
``False`` if an error occurred, ``True`` otherwise
.. seealso:: :meth:`LoadFile`
.. method:: OnCellClicked(self, cell, x, y, event)
This method is called when a mouse button is clicked inside :ref:`wx.html.HtmlWindow`.
The default behaviour is to emit a :ref:`wx.html.HtmlCellEvent` and, if the event was not processed or skipped, call :meth:`OnLinkClicked` if the cell contains an hypertext link.
Overloading this method is deprecated; intercept the event instead.
:param `cell`: The cell inside which the mouse was clicked, always a simple (i.e. non-container) cell
:type `cell`: wx.html.HtmlCell
:param `x`: The logical x coordinate of the click point
:type `x`: int
:param `y`: The logical y coordinate of the click point
:type `y`: int
:param `event`: The mouse event containing other information about the click
:type `event`: wx.MouseEvent
:rtype: `bool`
:returns:
``True`` if a link was clicked, ``False`` otherwise.
.. method:: OnCellMouseHover(self, cell, x, y)
This method is called when a mouse moves over an HTML cell.
Default behaviour is to emit a :ref:`wx.html.HtmlCellEvent`.
Overloading this method is deprecated; intercept the event instead.
:param `cell`: The cell inside which the mouse is currently, always a simple (i.e. non-container) cell
:type `cell`: wx.html.HtmlCell
:param `x`: The logical x coordinate of the click point
:type `x`: int
:param `y`: The logical y coordinate of the click point
:type `y`: int
.. method:: OnLinkClicked(self, link)
Called when user clicks on hypertext link.
Default behaviour is to emit a :ref:`wx.html.HtmlLinkEvent` and, if the event was not processed or skipped, call :meth:`LoadPage` and do nothing else.
Overloading this method is deprecated; intercept the event instead.
Also see :ref:`wx.html.HtmlLinkInfo`.
:param `link`:
:type `link`: wx.html.HtmlLinkInfo
.. method:: OnOpeningURL(self, type, url, redirect)
Called when an URL is being opened (either when the user clicks on a link or an image is loaded).
The URL will be opened only if :meth:`OnOpeningURL` returns ``HTML_OPEN`` . This method is called by :meth:`wx.html.HtmlParser.OpenURL` .
You can override :meth:`OnOpeningURL` to selectively block some URLs (e.g. for security reasons) or to redirect them elsewhere. Default behaviour is to always return ``HTML_OPEN`` .
:param `type`: Indicates type of the resource. Is one of
- ``wx.html.HTML_URL_PAGE``: Opening a HTML page.
- ``wx.html.HTML_URL_IMAGE``: Opening an image.
- ``wx.html.HTML_URL_OTHER``: Opening a resource that doesn't fall into any other category.
:type `type`: wx.html.HtmlURLType
:param `url`: URL being opened.
:type `url`: string
:param `redirect`: Pointer to :ref:`String` variable that must be filled with an URL if :meth:`OnOpeningURL` returns ``HTML_REDIRECT`` .
:type `redirect`: string
:rtype: :ref:`wx.html.HtmlOpeningStatus`
- ``wx.html.HTML_OPEN``: Open the URL.
- ``wx.html.HTML_BLOCK``: Deny access to the URL, :meth:`wx.html.HtmlParser.OpenURL` will return ``None``.
- ``wx.html.HTML_REDIRECT``: Don't open url, redirect to another URL. :meth:`OnOpeningURL` must fill redirect with the new URL. :meth:`OnOpeningURL` will be called again on returned URL.
.. method:: OnSetTitle(self, title)
Called on parsing <``TITLE``> tag.
:param `title`:
:type `title`: string
.. method:: ReadCustomization(self, cfg, path=EmptyString)
This reads custom settings from Config.
It uses the path 'path' if given, otherwise it saves info into currently selected path. The values are stored in sub-path :ref:`wx.html.HtmlWindow`. Read values: all things set by :meth:`SetFonts` , :meth:`SetBorders` .
:param `cfg`: Config from which you want to read the configuration.
:type `cfg`: wx.ConfigBase
:param `path`: Optional path in config tree. If not given current path is used.
:type `path`: string
.. method:: SelectAll(self)
Selects all text in the window.
.. seealso:: :meth:`SelectLine` , :meth:`SelectWord`
.. method:: SelectLine(self, pos)
Selects the line of text that `pos` points at.
Note that `pos` is relative to the top of displayed page, not to window's origin, use :meth:`wx.Scrolled.CalcUnscrolledPosition` to convert physical coordinate.
:param `pos`:
:type `pos`: wx.Point
.. seealso:: :meth:`SelectAll` , :meth:`SelectWord`
.. method:: SelectWord(self, pos)
Selects the word at position `pos`.
Note that `pos` is relative to the top of displayed page, not to window's origin, use :meth:`wx.Scrolled.CalcUnscrolledPosition` to convert physical coordinate.
:param `pos`:
:type `pos`: wx.Point
.. seealso:: :meth:`SelectAll` , :meth:`SelectLine`
.. method:: SelectionToText(self)
Returns the current selection as plain text.
Returns an empty string if no text is currently selected.
:rtype: `string`
.. method:: SetBorders(self, b)
This function sets the space between border of window and HTML contents.
See image:
.. figure:: _static/images/overviews/htmlwin_border.png
:align: center
|
:param `b`: indentation from borders in pixels
:type `b`: int
.. method:: SetFonts(self, normal_face, fixed_face, sizes)
This function sets font sizes and faces.
See :meth:`wx.html.HtmlDCRenderer.SetFonts` for detailed description.
:param `normal_face`:
:type `normal_face`: string
:param `fixed_face`:
:type `fixed_face`: string
:param `sizes`:
:type `sizes`: list of integers
.. seealso:: SetSize()
.. method:: SetPage(self, source)
Sets the source of a page and displays it, for example:
::
htmlwin.SetPage("<html><body>Hello, world!</body></html>")
If you want to load a document from some location use :meth:`LoadPage` instead.
:param `source`: The HTML to be displayed.
:type `source`: string
:rtype: `bool`
:returns:
``False`` if an error occurred, ``True`` otherwise.
.. method:: SetRelatedFrame(self, frame, format)
Sets the frame in which page title will be displayed.
`format` is the format of the frame title, e.g. "HtmlHelp : %s". It must contain exactly one s. This s is substituted with HTML page title.
:param `frame`:
:type `frame`: wx.Frame
:param `format`:
:type `format`: string
.. method:: SetRelatedStatusBar(self, *args, **kw)
|overload| Overloaded Implementations:
**~~~**
**SetRelatedStatusBar** `(self, index)`
**After** calling :meth:`SetRelatedFrame` , this sets statusbar slot where messages will be displayed.
(Default is -1 = no messages.)
:param `index`: Statusbar slot number (0..n)
:type `index`: int
**~~~**
**SetRelatedStatusBar** `(self, statusbar, index=0)`
**Sets** the associated statusbar where messages will be displayed.
Call this instead of :meth:`SetRelatedFrame` if you want statusbar updates only, no changing of the frame title.
:param `statusbar`: Statusbar pointer
:type `statusbar`: wx.StatusBar
:param `index`: Statusbar slot number (0..n)
:type `index`: int
.. versionadded:: 2.9.0
**~~~**
.. method:: SetStandardFonts(self, size=-1, normal_face=EmptyString, fixed_face=EmptyString)
Sets default font sizes and/or default font size.
See :meth:`wx.html.HtmlDCRenderer.SetStandardFonts` for detailed description.
:param `size`:
:type `size`: int
:param `normal_face`:
:type `normal_face`: string
:param `fixed_face`:
:type `fixed_face`: string
.. seealso:: :meth:`SetFonts`
.. method:: ToText(self)
Returns content of currently displayed page as plain text.
:rtype: `string`
.. method:: WriteCustomization(self, cfg, path=EmptyString)
Saves custom settings into Config.
It uses the path 'path' if given, otherwise it saves info into currently selected path. Regardless of whether the path is given or not, the function creates sub-path :ref:`wx.html.HtmlWindow`.
Saved values: all things set by :meth:`SetFonts` , :meth:`SetBorders` .
:param `cfg`: Config to which you want to save the configuration.
:type `cfg`: wx.ConfigBase
:param `path`: Optional path in config tree. If not given, the current path is used.
:type `path`: string
.. attribute:: InternalRepresentation
See :meth:`~wx.html.HtmlWindow.GetInternalRepresentation`
.. attribute:: OpenedAnchor
See :meth:`~wx.html.HtmlWindow.GetOpenedAnchor`
.. attribute:: OpenedPage
See :meth:`~wx.html.HtmlWindow.GetOpenedPage`
.. attribute:: OpenedPageTitle
See :meth:`~wx.html.HtmlWindow.GetOpenedPageTitle`
.. attribute:: Parser
See :meth:`~wx.html.HtmlWindow.GetParser`
.. attribute:: RelatedFrame
See :meth:`~wx.html.HtmlWindow.GetRelatedFrame` and :meth:`~wx.html.HtmlWindow.SetRelatedFrame`
|