File: classwx_html_window.html

package info (click to toggle)
wxpython3.0 3.0.2.0%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 482,760 kB
  • ctags: 518,293
  • sloc: cpp: 2,127,226; python: 294,045; makefile: 51,942; ansic: 19,033; sh: 3,013; xml: 1,629; perl: 17
file content (1369 lines) | stat: -rw-r--r-- 120,387 bytes parent folder | download | duplicates (2)
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
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<title>wxWidgets: wxHtmlWindow Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
<link href="extra_stylesheet.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<div id="page_container">
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0" style="width: 100%;">
 <tbody>
 <tr>
  <td id="projectlogo">
    <a href="http://www.wxwidgets.org/" target="_new">
      <img alt="wxWidgets" src="logo.png"/>
    </a>
  </td>
  <td style="padding-left: 0.5em; text-align: right;">
   <span id="projectnumber">Version: 3.0.2</span>
  </td>
 </tr>
 </tbody>
</table>
</div>
<!-- Generated by Doxygen 1.8.2 -->
  <div id="navrow1" class="tabs">
    <ul class="tablist">
      <li><a href="index.html"><span>Main&#160;Page</span></a></li>
      <li><a href="pages.html"><span>Related&#160;Pages</span></a></li>
      <li><a href="modules.html"><span>Categories</span></a></li>
      <li class="current"><a href="annotated.html"><span>Classes</span></a></li>
      <li><a href="files.html"><span>Files</span></a></li>
    </ul>
  </div>
  <div id="navrow2" class="tabs2">
    <ul class="tablist">
      <li><a href="annotated.html"><span>Class&#160;List</span></a></li>
      <li><a href="classes.html"><span>Class&#160;Index</span></a></li>
      <li><a href="hierarchy.html"><span>Class&#160;Hierarchy</span></a></li>
      <li><a href="functions.html"><span>Class&#160;Members</span></a></li>
    </ul>
  </div>
</div><!-- top -->
<div class="header">
  <div class="summary">
<a href="#pub-methods">Public Member Functions</a> &#124;
<a href="#pub-static-methods">Static Public Member Functions</a> &#124;
<a href="#pro-methods">Protected Member Functions</a> &#124;
<a href="classwx_html_window-members.html">List of all members</a>  </div>
  <div class="headertitle">
<div class="title">wxHtmlWindow Class Reference<div class="ingroups"><a class="el" href="group__group__class__html.html">HTML</a></div></div>  </div>
</div><!--header-->
<div class="contents">

<p><code>#include &lt;wx/html/htmlwin.h&gt;</code></p>
<div id="dynsection-0" onclick="return toggleVisibility(this)" class="dynheader closed" style="cursor:pointer;">
  <img id="dynsection-0-trigger" src="closed.png" alt="+"/> Inheritance diagram for wxHtmlWindow:</div>
<div id="dynsection-0-summary" class="dynsummary" style="display:block;">
</div>
<div id="dynsection-0-content" class="dyncontent" style="display:none;">
<div class="center"><img src="classwx_html_window__inherit__graph.png" border="0" usemap="#wx_html_window_inherit__map" alt="Inheritance graph"/></div>
<map name="wx_html_window_inherit__map" id="wx_html_window_inherit__map">
<area shape="rect" id="node2" href="classwx_scrolled.html" title="The wxScrolled class manages scrolling for its client area, transforming the coordinates according to..." alt="" coords="5,83,133,111"/><area shape="rect" id="node6" href="classwx_html_window_interface.html" title="Abstract interface to a HTML rendering window (such as wxHtmlWindow or wxHtmlListBox) that is passed ..." alt="" coords="157,83,317,111"/></map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
<div class="textblock"><p><a class="el" href="classwx_html_window.html" title="wxHtmlWindow is probably the only class you will directly use unless you want to do something special...">wxHtmlWindow</a> is probably the only class you will directly use unless you want to do something special (like adding new tag handlers or MIME filters). </p>
<p>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 <a class="el" href="classwx_html_window.html#ac6d0335b1bb749b498598fc5a3b32703" title="Sets the source of a page and displays it, for example:">SetPage()</a> with raw HTML, <a class="el" href="classwx_html_window.html#ab7086e665bb533a34dc11ab29465db09" title="Unlike SetPage() this function first loads the HTML page from location and then displays it...">LoadPage()</a> with a <a class="el" href="classwx_file_system.html" title="This class provides an interface for opening files on different file systems.">wxFileSystem</a> location or <a class="el" href="classwx_html_window.html#a1ffb71e2736cbe36740fd38bc3d100b2" title="Loads an HTML page from a file and displays it.">LoadFile()</a> with a filename.</p>
<dl class="section note"><dt>Note</dt><dd>If you want complete HTML/CSS support as well as a Javascript engine, see instead <a class="el" href="classwx_web_view.html" title="This control may be used to render web (HTML / CSS / javascript) documents.">wxWebView</a>.</dd>
<dd>
<a class="el" href="classwx_html_window.html" title="wxHtmlWindow is probably the only class you will directly use unless you want to do something special...">wxHtmlWindow</a> uses the <a class="el" href="classwx_image.html" title="This class encapsulates a platform-independent image.">wxImage</a> class for displaying images, as such you need to initialize the handlers for any image formats you use before loading a page. See <a class="el" href="group__group__funcmacro__appinitterm.html#ga27f6c78d5d13374a28022b7bd44c6823" title="Initializes all available image handlers.">wxInitAllImageHandlers</a> and <a class="el" href="classwx_image.html#ab39fb3747dfb8c2d444eff9fe41fa205" title="Register an image handler.">wxImage::AddHandler</a>.</dd></dl>
<h2>Styles</h2>
<p>This class supports the following styles:</p>
<div> </div><ul>
<li><span class="style">wxHW_SCROLLBAR_NEVER</span>:<div class="styleDesc"> Never display scrollbars, not even when the page is larger than the window. </div></li>
<li><span class="style">wxHW_SCROLLBAR_AUTO</span>:<div class="styleDesc"> Display scrollbars only if page's size exceeds window's size. </div></li>
<li><span class="style">wxHW_NO_SELECTION</span>:<div class="styleDesc"> Don't allow the user to select text. </div></li>
</ul>
<h2>Events emitted by this class</h2>
<p>The following event handler macros redirect the events to member function handlers '<b>func</b>' with prototypes like: </p>
<div class="eventHandler"><span>void&#160;handlerFuncName(<a class="el" href="classwx_html_cell_event.html" title="This event class is used for the events generated by wxHtmlWindow.">wxHtmlCellEvent</a>&amp;&#160;event)</span> or <span>void&#160;handlerFuncName( <a class="el" href="classwx_html_link_event.html" title="This event class is used for the events generated by wxHtmlWindow.">wxHtmlLinkEvent</a>&amp;&#160;event)</span></div><p>Event macros for events emitted by this class:</p>
<div> </div><ul>
<li><span class="event">EVT_HTML_CELL_CLICKED(id,  func)</span>:<div class="eventDesc"> A <a class="el" href="classwx_html_cell.html" title="Internal data structure.">wxHtmlCell</a> was clicked. </div></li>
<li><span class="event">EVT_HTML_CELL_HOVER(id,  func)</span>:<div class="eventDesc"> The mouse passed over a <a class="el" href="classwx_html_cell.html" title="Internal data structure.">wxHtmlCell</a>. </div></li>
<li><span class="event">EVT_HTML_LINK_CLICKED(id,  func)</span>:<div class="eventDesc"> A <a class="el" href="classwx_html_cell.html" title="Internal data structure.">wxHtmlCell</a> which contains an hyperlink was clicked. </div></li>
</ul>
<h2></h2>
<div><span class="lib">Library:</span>&#160;&#160;<span class="lib_text"><a class="el" href="page_libs.html#page_libs_wxhtml">wxHTML</a></span></div><div><span class="category">Category:</span>&#160;&#160;<span class="category_text"><a class="el" href="group__group__class__html.html">HTML</a></span></div><dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_html_link_event.html" title="This event class is used for the events generated by wxHtmlWindow.">wxHtmlLinkEvent</a>, <a class="el" href="classwx_html_cell_event.html" title="This event class is used for the events generated by wxHtmlWindow.">wxHtmlCellEvent</a> </dd></dl>
</div><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr class="memitem:abdabd01ec3b8d25a27ac59df685dce43"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_html_window.html#abdabd01ec3b8d25a27ac59df685dce43">wxHtmlWindow</a> ()</td></tr>
<tr class="memdesc:abdabd01ec3b8d25a27ac59df685dce43"><td class="mdescLeft">&#160;</td><td class="mdescRight">Default ctor.  <a href="#abdabd01ec3b8d25a27ac59df685dce43"></a><br/></td></tr>
<tr class="separator:abdabd01ec3b8d25a27ac59df685dce43"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad3f82c7cb1ea50be9807604a8ac71905"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_html_window.html#ad3f82c7cb1ea50be9807604a8ac71905">wxHtmlWindow</a> (<a class="el" href="classwx_window.html">wxWindow</a> *parent, <a class="el" href="windowid_8h.html#ae8091432cc2cb2485d45f2302fb51133">wxWindowID</a> id=<a class="el" href="defs_8h.html#ac66d0a09761e7d86b2ac0b2e0c6a8cbba1f375b01ea03a713bbb7e32a36a2589c">wxID_ANY</a>, const <a class="el" href="classwx_point.html">wxPoint</a> &amp;pos=<a class="el" href="gdicmn_8h.html#af5a90c753eaf3d3e3e5068a19ec3c1d0">wxDefaultPosition</a>, const <a class="el" href="classwx_size.html">wxSize</a> &amp;size=<a class="el" href="gdicmn_8h.html#a33a012cdb075e9f78c93f63bec2dc27b">wxDefaultSize</a>, long style=<a class="el" href="htmlwin_8h.html#ac34b9deb4e0066cc1eb08b88f2157a57">wxHW_DEFAULT_STYLE</a>, const <a class="el" href="classwx_string.html">wxString</a> &amp;name=&quot;htmlWindow&quot;)</td></tr>
<tr class="memdesc:ad3f82c7cb1ea50be9807604a8ac71905"><td class="mdescLeft">&#160;</td><td class="mdescRight">Constructor.  <a href="#ad3f82c7cb1ea50be9807604a8ac71905"></a><br/></td></tr>
<tr class="separator:ad3f82c7cb1ea50be9807604a8ac71905"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6c8cb22b488e8d59ece87fd169140718"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_html_window.html#a6c8cb22b488e8d59ece87fd169140718">AppendToPage</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;source)</td></tr>
<tr class="memdesc:a6c8cb22b488e8d59ece87fd169140718"><td class="mdescLeft">&#160;</td><td class="mdescRight">Appends HTML fragment to currently displayed text and refreshes the window.  <a href="#a6c8cb22b488e8d59ece87fd169140718"></a><br/></td></tr>
<tr class="separator:a6c8cb22b488e8d59ece87fd169140718"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac58ba50face285ddfd28a89f548f34c9"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_html_container_cell.html">wxHtmlContainerCell</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_html_window.html#ac58ba50face285ddfd28a89f548f34c9">GetInternalRepresentation</a> () const </td></tr>
<tr class="memdesc:ac58ba50face285ddfd28a89f548f34c9"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns pointer to the top-level container.  <a href="#ac58ba50face285ddfd28a89f548f34c9"></a><br/></td></tr>
<tr class="separator:ac58ba50face285ddfd28a89f548f34c9"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac4f09301ceab86ff1ccae9209d8ba0d6"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_string.html">wxString</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_html_window.html#ac4f09301ceab86ff1ccae9209d8ba0d6">GetOpenedAnchor</a> () const </td></tr>
<tr class="memdesc:ac4f09301ceab86ff1ccae9209d8ba0d6"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns anchor within currently opened page (see <a class="el" href="classwx_html_window.html#a2e4e27fbc971881cfd2b66f69e67b30f" title="Returns full location of the opened page.">wxHtmlWindow::GetOpenedPage</a>).  <a href="#ac4f09301ceab86ff1ccae9209d8ba0d6"></a><br/></td></tr>
<tr class="separator:ac4f09301ceab86ff1ccae9209d8ba0d6"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2e4e27fbc971881cfd2b66f69e67b30f"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_string.html">wxString</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_html_window.html#a2e4e27fbc971881cfd2b66f69e67b30f">GetOpenedPage</a> () const </td></tr>
<tr class="memdesc:a2e4e27fbc971881cfd2b66f69e67b30f"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns full location of the opened page.  <a href="#a2e4e27fbc971881cfd2b66f69e67b30f"></a><br/></td></tr>
<tr class="separator:a2e4e27fbc971881cfd2b66f69e67b30f"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a942a11d4cb16d3ab8de5b180dfc13f09"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_string.html">wxString</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_html_window.html#a942a11d4cb16d3ab8de5b180dfc13f09">GetOpenedPageTitle</a> () const </td></tr>
<tr class="memdesc:a942a11d4cb16d3ab8de5b180dfc13f09"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns title of the opened page or wxEmptyString if the current page does not contain &lt;TITLE&gt; tag.  <a href="#a942a11d4cb16d3ab8de5b180dfc13f09"></a><br/></td></tr>
<tr class="separator:a942a11d4cb16d3ab8de5b180dfc13f09"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6613b1d52e5ba1e8a667270306e4f0aa"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_frame.html">wxFrame</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_html_window.html#a6613b1d52e5ba1e8a667270306e4f0aa">GetRelatedFrame</a> () const </td></tr>
<tr class="memdesc:a6613b1d52e5ba1e8a667270306e4f0aa"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the related frame.  <a href="#a6613b1d52e5ba1e8a667270306e4f0aa"></a><br/></td></tr>
<tr class="separator:a6613b1d52e5ba1e8a667270306e4f0aa"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac445bd13cce6579d1d74348b6771bc21"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_html_window.html#ac445bd13cce6579d1d74348b6771bc21">HistoryBack</a> ()</td></tr>
<tr class="memdesc:ac445bd13cce6579d1d74348b6771bc21"><td class="mdescLeft">&#160;</td><td class="mdescRight">Moves back to the previous page.  <a href="#ac445bd13cce6579d1d74348b6771bc21"></a><br/></td></tr>
<tr class="separator:ac445bd13cce6579d1d74348b6771bc21"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a43b2e1f13a8ef56144a351fcf1765d33"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_html_window.html#a43b2e1f13a8ef56144a351fcf1765d33">HistoryCanBack</a> ()</td></tr>
<tr class="memdesc:a43b2e1f13a8ef56144a351fcf1765d33"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if it is possible to go back in the history i.e.  <a href="#a43b2e1f13a8ef56144a351fcf1765d33"></a><br/></td></tr>
<tr class="separator:a43b2e1f13a8ef56144a351fcf1765d33"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a99097f5c7cfd6198c1309fe2713a5210"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_html_window.html#a99097f5c7cfd6198c1309fe2713a5210">HistoryCanForward</a> ()</td></tr>
<tr class="memdesc:a99097f5c7cfd6198c1309fe2713a5210"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns <span class="literal">true</span> if it is possible to go forward in the history i.e.  <a href="#a99097f5c7cfd6198c1309fe2713a5210"></a><br/></td></tr>
<tr class="separator:a99097f5c7cfd6198c1309fe2713a5210"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0cf30ee8ee03ff0fa6ee42fb349bb851"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_html_window.html#a0cf30ee8ee03ff0fa6ee42fb349bb851">HistoryClear</a> ()</td></tr>
<tr class="memdesc:a0cf30ee8ee03ff0fa6ee42fb349bb851"><td class="mdescLeft">&#160;</td><td class="mdescRight">Clears history.  <a href="#a0cf30ee8ee03ff0fa6ee42fb349bb851"></a><br/></td></tr>
<tr class="separator:a0cf30ee8ee03ff0fa6ee42fb349bb851"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a385e056dba5b8f3d480f7053a9fb305f"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_html_window.html#a385e056dba5b8f3d480f7053a9fb305f">HistoryForward</a> ()</td></tr>
<tr class="memdesc:a385e056dba5b8f3d480f7053a9fb305f"><td class="mdescLeft">&#160;</td><td class="mdescRight">Moves to next page in history.  <a href="#a385e056dba5b8f3d480f7053a9fb305f"></a><br/></td></tr>
<tr class="separator:a385e056dba5b8f3d480f7053a9fb305f"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1ffb71e2736cbe36740fd38bc3d100b2"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_html_window.html#a1ffb71e2736cbe36740fd38bc3d100b2">LoadFile</a> (const <a class="el" href="classwx_file_name.html">wxFileName</a> &amp;filename)</td></tr>
<tr class="memdesc:a1ffb71e2736cbe36740fd38bc3d100b2"><td class="mdescLeft">&#160;</td><td class="mdescRight">Loads an HTML page from a file and displays it.  <a href="#a1ffb71e2736cbe36740fd38bc3d100b2"></a><br/></td></tr>
<tr class="separator:a1ffb71e2736cbe36740fd38bc3d100b2"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab7086e665bb533a34dc11ab29465db09"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_html_window.html#ab7086e665bb533a34dc11ab29465db09">LoadPage</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;location)</td></tr>
<tr class="memdesc:ab7086e665bb533a34dc11ab29465db09"><td class="mdescLeft">&#160;</td><td class="mdescRight">Unlike <a class="el" href="classwx_html_window.html#ac6d0335b1bb749b498598fc5a3b32703" title="Sets the source of a page and displays it, for example:">SetPage()</a> this function first loads the HTML page from <em>location</em> and then displays it.  <a href="#ab7086e665bb533a34dc11ab29465db09"></a><br/></td></tr>
<tr class="separator:ab7086e665bb533a34dc11ab29465db09"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a519281dbfbddc163b5e73fd6a10cf90a"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_html_window.html#a519281dbfbddc163b5e73fd6a10cf90a">OnLinkClicked</a> (const <a class="el" href="classwx_html_link_info.html">wxHtmlLinkInfo</a> &amp;link)</td></tr>
<tr class="memdesc:a519281dbfbddc163b5e73fd6a10cf90a"><td class="mdescLeft">&#160;</td><td class="mdescRight">Called when user clicks on hypertext link.  <a href="#a519281dbfbddc163b5e73fd6a10cf90a"></a><br/></td></tr>
<tr class="separator:a519281dbfbddc163b5e73fd6a10cf90a"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aaeca6abb2c4c5248d418ca19ee51206d"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="htmlwin_8h.html#ac1d732c434321dadebd82289497348db">wxHtmlOpeningStatus</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_html_window.html#aaeca6abb2c4c5248d418ca19ee51206d">OnOpeningURL</a> (<a class="el" href="htmlpars_8h.html#a6e895f8a11485532a3cb67ecec03d4fa">wxHtmlURLType</a> type, const <a class="el" href="classwx_string.html">wxString</a> &amp;url, <a class="el" href="classwx_string.html">wxString</a> *redirect) const </td></tr>
<tr class="memdesc:aaeca6abb2c4c5248d418ca19ee51206d"><td class="mdescLeft">&#160;</td><td class="mdescRight">Called when an URL is being opened (either when the user clicks on a link or an image is loaded).  <a href="#aaeca6abb2c4c5248d418ca19ee51206d"></a><br/></td></tr>
<tr class="separator:aaeca6abb2c4c5248d418ca19ee51206d"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab8e6c857c4ca602387f38dbfa99ffb35"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_html_window.html#ab8e6c857c4ca602387f38dbfa99ffb35">OnSetTitle</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;title)</td></tr>
<tr class="memdesc:ab8e6c857c4ca602387f38dbfa99ffb35"><td class="mdescLeft">&#160;</td><td class="mdescRight">Called on parsing &lt;TITLE&gt; tag.  <a href="#ab8e6c857c4ca602387f38dbfa99ffb35"></a><br/></td></tr>
<tr class="separator:ab8e6c857c4ca602387f38dbfa99ffb35"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a22f8b0b78251259c01ce5e8f17294fd4"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_html_window.html#a22f8b0b78251259c01ce5e8f17294fd4">ReadCustomization</a> (<a class="el" href="classwx_config_base.html">wxConfigBase</a> *cfg, <a class="el" href="classwx_string.html">wxString</a> path=<a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a>)</td></tr>
<tr class="memdesc:a22f8b0b78251259c01ce5e8f17294fd4"><td class="mdescLeft">&#160;</td><td class="mdescRight">This reads custom settings from wxConfig.  <a href="#a22f8b0b78251259c01ce5e8f17294fd4"></a><br/></td></tr>
<tr class="separator:a22f8b0b78251259c01ce5e8f17294fd4"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a54459a2d5c5cc71f2849c5aa1fbd5e68"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_html_window.html#a54459a2d5c5cc71f2849c5aa1fbd5e68">SelectAll</a> ()</td></tr>
<tr class="memdesc:a54459a2d5c5cc71f2849c5aa1fbd5e68"><td class="mdescLeft">&#160;</td><td class="mdescRight">Selects all text in the window.  <a href="#a54459a2d5c5cc71f2849c5aa1fbd5e68"></a><br/></td></tr>
<tr class="separator:a54459a2d5c5cc71f2849c5aa1fbd5e68"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a15acd01f247257d427856713831db699"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_html_window.html#a15acd01f247257d427856713831db699">SelectLine</a> (const <a class="el" href="classwx_point.html">wxPoint</a> &amp;pos)</td></tr>
<tr class="memdesc:a15acd01f247257d427856713831db699"><td class="mdescLeft">&#160;</td><td class="mdescRight">Selects the line of text that <em>pos</em> points at.  <a href="#a15acd01f247257d427856713831db699"></a><br/></td></tr>
<tr class="separator:a15acd01f247257d427856713831db699"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad3555a940e7916620e60b5f496982b52"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_html_window.html#ad3555a940e7916620e60b5f496982b52">SelectWord</a> (const <a class="el" href="classwx_point.html">wxPoint</a> &amp;pos)</td></tr>
<tr class="memdesc:ad3555a940e7916620e60b5f496982b52"><td class="mdescLeft">&#160;</td><td class="mdescRight">Selects the word at position <em>pos</em>.  <a href="#ad3555a940e7916620e60b5f496982b52"></a><br/></td></tr>
<tr class="separator:ad3555a940e7916620e60b5f496982b52"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a341d15c232a620c7c8ec4f72911c954b"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_string.html">wxString</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_html_window.html#a341d15c232a620c7c8ec4f72911c954b">SelectionToText</a> ()</td></tr>
<tr class="memdesc:a341d15c232a620c7c8ec4f72911c954b"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the current selection as plain text.  <a href="#a341d15c232a620c7c8ec4f72911c954b"></a><br/></td></tr>
<tr class="separator:a341d15c232a620c7c8ec4f72911c954b"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3e2350cbf8bc74ba8451ab3f953046dc"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_html_window.html#a3e2350cbf8bc74ba8451ab3f953046dc">SetBorders</a> (int b)</td></tr>
<tr class="memdesc:a3e2350cbf8bc74ba8451ab3f953046dc"><td class="mdescLeft">&#160;</td><td class="mdescRight">This function sets the space between border of window and HTML contents.  <a href="#a3e2350cbf8bc74ba8451ab3f953046dc"></a><br/></td></tr>
<tr class="separator:a3e2350cbf8bc74ba8451ab3f953046dc"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a31b77979403242da3ccd40bea9b29b87"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_html_window.html#a31b77979403242da3ccd40bea9b29b87">SetFonts</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;normal_face, const <a class="el" href="classwx_string.html">wxString</a> &amp;fixed_face, const int *sizes=NULL)</td></tr>
<tr class="memdesc:a31b77979403242da3ccd40bea9b29b87"><td class="mdescLeft">&#160;</td><td class="mdescRight">This function sets font sizes and faces.  <a href="#a31b77979403242da3ccd40bea9b29b87"></a><br/></td></tr>
<tr class="separator:a31b77979403242da3ccd40bea9b29b87"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a746ac926326153fdccf38a5d36b6288d"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_html_window.html#a746ac926326153fdccf38a5d36b6288d">SetStandardFonts</a> (int size=-1, const <a class="el" href="classwx_string.html">wxString</a> &amp;normal_face=<a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a>, const <a class="el" href="classwx_string.html">wxString</a> &amp;fixed_face=<a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a>)</td></tr>
<tr class="memdesc:a746ac926326153fdccf38a5d36b6288d"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets default font sizes and/or default font size.  <a href="#a746ac926326153fdccf38a5d36b6288d"></a><br/></td></tr>
<tr class="separator:a746ac926326153fdccf38a5d36b6288d"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac6d0335b1bb749b498598fc5a3b32703"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_html_window.html#ac6d0335b1bb749b498598fc5a3b32703">SetPage</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;source)</td></tr>
<tr class="memdesc:ac6d0335b1bb749b498598fc5a3b32703"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the source of a page and displays it, for example:  <a href="#ac6d0335b1bb749b498598fc5a3b32703"></a><br/></td></tr>
<tr class="separator:ac6d0335b1bb749b498598fc5a3b32703"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab524aecb99227497a569981a2f11f67f"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_html_window.html#ab524aecb99227497a569981a2f11f67f">SetRelatedFrame</a> (<a class="el" href="classwx_frame.html">wxFrame</a> *frame, const <a class="el" href="classwx_string.html">wxString</a> &amp;format)</td></tr>
<tr class="memdesc:ab524aecb99227497a569981a2f11f67f"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the frame in which page title will be displayed.  <a href="#ab524aecb99227497a569981a2f11f67f"></a><br/></td></tr>
<tr class="separator:ab524aecb99227497a569981a2f11f67f"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a81b658e84cbaf395eddd2d9c40b00c70"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_html_window.html#a81b658e84cbaf395eddd2d9c40b00c70">SetRelatedStatusBar</a> (int index)</td></tr>
<tr class="memdesc:a81b658e84cbaf395eddd2d9c40b00c70"><td class="mdescLeft">&#160;</td><td class="mdescRight"><b>After</b> calling <a class="el" href="classwx_html_window.html#ab524aecb99227497a569981a2f11f67f" title="Sets the frame in which page title will be displayed.">SetRelatedFrame()</a>, this sets statusbar slot where messages will be displayed.  <a href="#a81b658e84cbaf395eddd2d9c40b00c70"></a><br/></td></tr>
<tr class="separator:a81b658e84cbaf395eddd2d9c40b00c70"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a009c5938a5aa1858c48aa61c71864ff6"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_html_window.html#a009c5938a5aa1858c48aa61c71864ff6">SetRelatedStatusBar</a> (<a class="el" href="classwx_status_bar.html">wxStatusBar</a> *statusbar, int index=0)</td></tr>
<tr class="memdesc:a009c5938a5aa1858c48aa61c71864ff6"><td class="mdescLeft">&#160;</td><td class="mdescRight"><b>Sets</b> the associated statusbar where messages will be displayed.  <a href="#a009c5938a5aa1858c48aa61c71864ff6"></a><br/></td></tr>
<tr class="separator:a009c5938a5aa1858c48aa61c71864ff6"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aacc7ffe8844ca638008fff488b05314c"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_string.html">wxString</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_html_window.html#aacc7ffe8844ca638008fff488b05314c">ToText</a> ()</td></tr>
<tr class="memdesc:aacc7ffe8844ca638008fff488b05314c"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns content of currently displayed page as plain text.  <a href="#aacc7ffe8844ca638008fff488b05314c"></a><br/></td></tr>
<tr class="separator:aacc7ffe8844ca638008fff488b05314c"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a46bb9859128a69e2d943a248c7bd41bd"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_html_window.html#a46bb9859128a69e2d943a248c7bd41bd">WriteCustomization</a> (<a class="el" href="classwx_config_base.html">wxConfigBase</a> *cfg, <a class="el" href="classwx_string.html">wxString</a> path=<a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a>)</td></tr>
<tr class="memdesc:a46bb9859128a69e2d943a248c7bd41bd"><td class="mdescLeft">&#160;</td><td class="mdescRight">Saves custom settings into wxConfig.  <a href="#a46bb9859128a69e2d943a248c7bd41bd"></a><br/></td></tr>
<tr class="separator:a46bb9859128a69e2d943a248c7bd41bd"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pub_methods_classwx_scrolled"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classwx_scrolled')"><img src="closed.png" alt="-"/>&#160;Public Member Functions inherited from <a class="el" href="classwx_scrolled.html">wxScrolled&lt; T &gt;</a></td></tr>
<tr class="memitem:a01d0ecb5daa59ebb7a0806f16b7ac267 inherit pub_methods_classwx_scrolled"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_scrolled.html#a01d0ecb5daa59ebb7a0806f16b7ac267">wxScrolled</a> ()</td></tr>
<tr class="memdesc:a01d0ecb5daa59ebb7a0806f16b7ac267 inherit pub_methods_classwx_scrolled"><td class="mdescLeft">&#160;</td><td class="mdescRight">Default constructor.  <a href="#a01d0ecb5daa59ebb7a0806f16b7ac267"></a><br/></td></tr>
<tr class="separator:a01d0ecb5daa59ebb7a0806f16b7ac267 inherit pub_methods_classwx_scrolled"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae68b98d2386b81f413e08cd5410401fc inherit pub_methods_classwx_scrolled"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_scrolled.html#ae68b98d2386b81f413e08cd5410401fc">wxScrolled</a> (<a class="el" href="classwx_window.html">wxWindow</a> *parent, <a class="el" href="windowid_8h.html#ae8091432cc2cb2485d45f2302fb51133">wxWindowID</a> id=-1, const <a class="el" href="classwx_point.html">wxPoint</a> &amp;pos=<a class="el" href="gdicmn_8h.html#af5a90c753eaf3d3e3e5068a19ec3c1d0">wxDefaultPosition</a>, const <a class="el" href="classwx_size.html">wxSize</a> &amp;size=<a class="el" href="gdicmn_8h.html#a33a012cdb075e9f78c93f63bec2dc27b">wxDefaultSize</a>, long style=<a class="el" href="defs_8h.html#a138eed616dd15fd021e8cc838e26d589">wxHSCROLL</a>|<a class="el" href="defs_8h.html#a78a1371cbc8c3b8bb36f27b9d3c47ba9">wxVSCROLL</a>, const <a class="el" href="classwx_string.html">wxString</a> &amp;name=&quot;scrolledWindow&quot;)</td></tr>
<tr class="memdesc:ae68b98d2386b81f413e08cd5410401fc inherit pub_methods_classwx_scrolled"><td class="mdescLeft">&#160;</td><td class="mdescRight">Constructor.  <a href="#ae68b98d2386b81f413e08cd5410401fc"></a><br/></td></tr>
<tr class="separator:ae68b98d2386b81f413e08cd5410401fc inherit pub_methods_classwx_scrolled"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad57ab2754edf096046d87ecd67ad2a68 inherit pub_methods_classwx_scrolled"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_scrolled.html#ad57ab2754edf096046d87ecd67ad2a68">CalcScrolledPosition</a> (int x, int y, int *xx, int *yy) const </td></tr>
<tr class="memdesc:ad57ab2754edf096046d87ecd67ad2a68 inherit pub_methods_classwx_scrolled"><td class="mdescLeft">&#160;</td><td class="mdescRight">Translates the logical coordinates to the device ones.  <a href="#ad57ab2754edf096046d87ecd67ad2a68"></a><br/></td></tr>
<tr class="separator:ad57ab2754edf096046d87ecd67ad2a68 inherit pub_methods_classwx_scrolled"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9d7ff2c82db0509bf17163316c277645 inherit pub_methods_classwx_scrolled"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_point.html">wxPoint</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_scrolled.html#a9d7ff2c82db0509bf17163316c277645">CalcScrolledPosition</a> (const <a class="el" href="classwx_point.html">wxPoint</a> &amp;pt) const </td></tr>
<tr class="separator:a9d7ff2c82db0509bf17163316c277645 inherit pub_methods_classwx_scrolled"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac296b6676926ba2fe356c9a12d50579e inherit pub_methods_classwx_scrolled"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_scrolled.html#ac296b6676926ba2fe356c9a12d50579e">CalcUnscrolledPosition</a> (int x, int y, int *xx, int *yy) const </td></tr>
<tr class="memdesc:ac296b6676926ba2fe356c9a12d50579e inherit pub_methods_classwx_scrolled"><td class="mdescLeft">&#160;</td><td class="mdescRight">Translates the device coordinates to the logical ones.  <a href="#ac296b6676926ba2fe356c9a12d50579e"></a><br/></td></tr>
<tr class="separator:ac296b6676926ba2fe356c9a12d50579e inherit pub_methods_classwx_scrolled"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:acde2e660fdae1a334f3cc1ef5c466ef2 inherit pub_methods_classwx_scrolled"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_point.html">wxPoint</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_scrolled.html#acde2e660fdae1a334f3cc1ef5c466ef2">CalcUnscrolledPosition</a> (const <a class="el" href="classwx_point.html">wxPoint</a> &amp;pt) const </td></tr>
<tr class="separator:acde2e660fdae1a334f3cc1ef5c466ef2 inherit pub_methods_classwx_scrolled"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9f03bd3bcbb96c84f90c2482f58f075a inherit pub_methods_classwx_scrolled"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_scrolled.html#a9f03bd3bcbb96c84f90c2482f58f075a">Create</a> (<a class="el" href="classwx_window.html">wxWindow</a> *parent, <a class="el" href="windowid_8h.html#ae8091432cc2cb2485d45f2302fb51133">wxWindowID</a> id=-1, const <a class="el" href="classwx_point.html">wxPoint</a> &amp;pos=<a class="el" href="gdicmn_8h.html#af5a90c753eaf3d3e3e5068a19ec3c1d0">wxDefaultPosition</a>, const <a class="el" href="classwx_size.html">wxSize</a> &amp;size=<a class="el" href="gdicmn_8h.html#a33a012cdb075e9f78c93f63bec2dc27b">wxDefaultSize</a>, long style=<a class="el" href="defs_8h.html#a138eed616dd15fd021e8cc838e26d589">wxHSCROLL</a>|<a class="el" href="defs_8h.html#a78a1371cbc8c3b8bb36f27b9d3c47ba9">wxVSCROLL</a>, const <a class="el" href="classwx_string.html">wxString</a> &amp;name=&quot;scrolledWindow&quot;)</td></tr>
<tr class="memdesc:a9f03bd3bcbb96c84f90c2482f58f075a inherit pub_methods_classwx_scrolled"><td class="mdescLeft">&#160;</td><td class="mdescRight">Creates the window for two-step construction.  <a href="#a9f03bd3bcbb96c84f90c2482f58f075a"></a><br/></td></tr>
<tr class="separator:a9f03bd3bcbb96c84f90c2482f58f075a inherit pub_methods_classwx_scrolled"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a294b1585caef1c22f5ea1ac6a6787164 inherit pub_methods_classwx_scrolled"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_scrolled.html#a294b1585caef1c22f5ea1ac6a6787164">DisableKeyboardScrolling</a> ()</td></tr>
<tr class="memdesc:a294b1585caef1c22f5ea1ac6a6787164 inherit pub_methods_classwx_scrolled"><td class="mdescLeft">&#160;</td><td class="mdescRight">Disable use of keyboard keys for scrolling.  <a href="#a294b1585caef1c22f5ea1ac6a6787164"></a><br/></td></tr>
<tr class="separator:a294b1585caef1c22f5ea1ac6a6787164 inherit pub_methods_classwx_scrolled"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a96a2b41d3bcd07e28491de5f39f9c5cb inherit pub_methods_classwx_scrolled"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_scrolled.html#a96a2b41d3bcd07e28491de5f39f9c5cb">DoPrepareDC</a> (<a class="el" href="classwx_d_c.html">wxDC</a> &amp;dc)</td></tr>
<tr class="memdesc:a96a2b41d3bcd07e28491de5f39f9c5cb inherit pub_methods_classwx_scrolled"><td class="mdescLeft">&#160;</td><td class="mdescRight">Call this function to prepare the device context for drawing a scrolled image.  <a href="#a96a2b41d3bcd07e28491de5f39f9c5cb"></a><br/></td></tr>
<tr class="separator:a96a2b41d3bcd07e28491de5f39f9c5cb inherit pub_methods_classwx_scrolled"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac5a023517721a5ad5b891527b437dd61 inherit pub_methods_classwx_scrolled"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_scrolled.html#ac5a023517721a5ad5b891527b437dd61">EnableScrolling</a> (bool xScrolling, bool yScrolling)</td></tr>
<tr class="memdesc:ac5a023517721a5ad5b891527b437dd61 inherit pub_methods_classwx_scrolled"><td class="mdescLeft">&#160;</td><td class="mdescRight">Enable or disable use of <a class="el" href="classwx_window.html#ab7be4956ff22da37fff2b8aaa581045c" title="Physically scrolls the pixels in the window and move child windows accordingly.">wxWindow::ScrollWindow()</a> for scrolling.  <a href="#ac5a023517721a5ad5b891527b437dd61"></a><br/></td></tr>
<tr class="separator:ac5a023517721a5ad5b891527b437dd61 inherit pub_methods_classwx_scrolled"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8590337dc643a64437c56031cf5f2e71 inherit pub_methods_classwx_scrolled"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_scrolled.html#a8590337dc643a64437c56031cf5f2e71">ShowScrollbars</a> (<a class="el" href="scrolwin_8h.html#a4351a92a4d06bc722e0c604d6482a5a4">wxScrollbarVisibility</a> horz, <a class="el" href="scrolwin_8h.html#a4351a92a4d06bc722e0c604d6482a5a4">wxScrollbarVisibility</a> vert)</td></tr>
<tr class="memdesc:a8590337dc643a64437c56031cf5f2e71 inherit pub_methods_classwx_scrolled"><td class="mdescLeft">&#160;</td><td class="mdescRight">Set the scrollbar visibility.  <a href="#a8590337dc643a64437c56031cf5f2e71"></a><br/></td></tr>
<tr class="separator:a8590337dc643a64437c56031cf5f2e71 inherit pub_methods_classwx_scrolled"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a573b3bb11a2a90eae9c6b12bcca51dbf inherit pub_methods_classwx_scrolled"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_scrolled.html#a573b3bb11a2a90eae9c6b12bcca51dbf">GetScrollPixelsPerUnit</a> (int *xUnit, int *yUnit) const </td></tr>
<tr class="memdesc:a573b3bb11a2a90eae9c6b12bcca51dbf inherit pub_methods_classwx_scrolled"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the number of pixels per scroll unit (line), in each direction, as set by <a class="el" href="classwx_scrolled.html#af5d940f364bb5097f20fee4a8e1210bb" title="Sets up vertical and/or horizontal scrollbars.">SetScrollbars()</a>.  <a href="#a573b3bb11a2a90eae9c6b12bcca51dbf"></a><br/></td></tr>
<tr class="separator:a573b3bb11a2a90eae9c6b12bcca51dbf inherit pub_methods_classwx_scrolled"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae693691d39e53291067f559ac7600604 inherit pub_methods_classwx_scrolled"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_scrolled.html#ae693691d39e53291067f559ac7600604">GetViewStart</a> (int *x, int *y) const </td></tr>
<tr class="memdesc:ae693691d39e53291067f559ac7600604 inherit pub_methods_classwx_scrolled"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the position at which the visible portion of the window starts.  <a href="#ae693691d39e53291067f559ac7600604"></a><br/></td></tr>
<tr class="separator:ae693691d39e53291067f559ac7600604 inherit pub_methods_classwx_scrolled"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a99e97c6179262456462765127c55d775 inherit pub_methods_classwx_scrolled"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_point.html">wxPoint</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_scrolled.html#a99e97c6179262456462765127c55d775">GetViewStart</a> () const </td></tr>
<tr class="memdesc:a99e97c6179262456462765127c55d775 inherit pub_methods_classwx_scrolled"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is a simple overload of GetViewStart(int*,int*); see that function for more info.  <a href="#a99e97c6179262456462765127c55d775"></a><br/></td></tr>
<tr class="separator:a99e97c6179262456462765127c55d775 inherit pub_methods_classwx_scrolled"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aec388dc5ab515d1312b58963ef5647b1 inherit pub_methods_classwx_scrolled"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_scrolled.html#aec388dc5ab515d1312b58963ef5647b1">GetVirtualSize</a> (int *x, int *y) const </td></tr>
<tr class="memdesc:aec388dc5ab515d1312b58963ef5647b1 inherit pub_methods_classwx_scrolled"><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the size in device units of the scrollable window area (as opposed to the client size, which is the area of the window currently visible).  <a href="#aec388dc5ab515d1312b58963ef5647b1"></a><br/></td></tr>
<tr class="separator:aec388dc5ab515d1312b58963ef5647b1 inherit pub_methods_classwx_scrolled"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0758df4420ce6992f07287242c66fc4c inherit pub_methods_classwx_scrolled"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_scrolled.html#a0758df4420ce6992f07287242c66fc4c">IsRetained</a> () const </td></tr>
<tr class="memdesc:a0758df4420ce6992f07287242c66fc4c inherit pub_methods_classwx_scrolled"><td class="mdescLeft">&#160;</td><td class="mdescRight">Motif only: <span class="literal">true</span> if the window has a backing bitmap.  <a href="#a0758df4420ce6992f07287242c66fc4c"></a><br/></td></tr>
<tr class="separator:a0758df4420ce6992f07287242c66fc4c inherit pub_methods_classwx_scrolled"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a52284d06a6160fb42b0899aedce2c880 inherit pub_methods_classwx_scrolled"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_scrolled.html#a52284d06a6160fb42b0899aedce2c880">OnDraw</a> (<a class="el" href="classwx_d_c.html">wxDC</a> &amp;dc)</td></tr>
<tr class="memdesc:a52284d06a6160fb42b0899aedce2c880 inherit pub_methods_classwx_scrolled"><td class="mdescLeft">&#160;</td><td class="mdescRight">Called by the default paint event handler to allow the application to define painting behaviour without having to worry about calling <a class="el" href="classwx_scrolled.html#a96a2b41d3bcd07e28491de5f39f9c5cb" title="Call this function to prepare the device context for drawing a scrolled image.">DoPrepareDC()</a>.  <a href="#a52284d06a6160fb42b0899aedce2c880"></a><br/></td></tr>
<tr class="separator:a52284d06a6160fb42b0899aedce2c880 inherit pub_methods_classwx_scrolled"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab33dbfe88be5ede4b04de4dcec4830f0 inherit pub_methods_classwx_scrolled"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_scrolled.html#ab33dbfe88be5ede4b04de4dcec4830f0">PrepareDC</a> (<a class="el" href="classwx_d_c.html">wxDC</a> &amp;dc)</td></tr>
<tr class="memdesc:ab33dbfe88be5ede4b04de4dcec4830f0 inherit pub_methods_classwx_scrolled"><td class="mdescLeft">&#160;</td><td class="mdescRight">This function is for backwards compatibility only and simply calls <a class="el" href="classwx_scrolled.html#a96a2b41d3bcd07e28491de5f39f9c5cb" title="Call this function to prepare the device context for drawing a scrolled image.">DoPrepareDC()</a> now.  <a href="#ab33dbfe88be5ede4b04de4dcec4830f0"></a><br/></td></tr>
<tr class="separator:ab33dbfe88be5ede4b04de4dcec4830f0 inherit pub_methods_classwx_scrolled"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a601bcac37185a2d4a24164d065907f69 inherit pub_methods_classwx_scrolled"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_scrolled.html#a601bcac37185a2d4a24164d065907f69">Scroll</a> (int x, int y)</td></tr>
<tr class="memdesc:a601bcac37185a2d4a24164d065907f69 inherit pub_methods_classwx_scrolled"><td class="mdescLeft">&#160;</td><td class="mdescRight">Scrolls a window so the view start is at the given point.  <a href="#a601bcac37185a2d4a24164d065907f69"></a><br/></td></tr>
<tr class="separator:a601bcac37185a2d4a24164d065907f69 inherit pub_methods_classwx_scrolled"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:affb3c1be4945c27b589439a1d47fbbb8 inherit pub_methods_classwx_scrolled"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_scrolled.html#affb3c1be4945c27b589439a1d47fbbb8">Scroll</a> (const <a class="el" href="classwx_point.html">wxPoint</a> &amp;pt)</td></tr>
<tr class="memdesc:affb3c1be4945c27b589439a1d47fbbb8 inherit pub_methods_classwx_scrolled"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overload of <a class="el" href="classwx_scrolled.html#a601bcac37185a2d4a24164d065907f69" title="Scrolls a window so the view start is at the given point.">Scroll(int,int)</a>; see that function for more info.  <a href="#affb3c1be4945c27b589439a1d47fbbb8"></a><br/></td></tr>
<tr class="separator:affb3c1be4945c27b589439a1d47fbbb8 inherit pub_methods_classwx_scrolled"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a76286e2efa55d0ba85d37106a44a9401 inherit pub_methods_classwx_scrolled"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_scrolled.html#a76286e2efa55d0ba85d37106a44a9401">SetScrollRate</a> (int xstep, int ystep)</td></tr>
<tr class="memdesc:a76286e2efa55d0ba85d37106a44a9401 inherit pub_methods_classwx_scrolled"><td class="mdescLeft">&#160;</td><td class="mdescRight">Set the horizontal and vertical scrolling increment only.  <a href="#a76286e2efa55d0ba85d37106a44a9401"></a><br/></td></tr>
<tr class="separator:a76286e2efa55d0ba85d37106a44a9401 inherit pub_methods_classwx_scrolled"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af5d940f364bb5097f20fee4a8e1210bb inherit pub_methods_classwx_scrolled"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_scrolled.html#af5d940f364bb5097f20fee4a8e1210bb">SetScrollbars</a> (int pixelsPerUnitX, int pixelsPerUnitY, int noUnitsX, int noUnitsY, int xPos=0, int yPos=0, bool noRefresh=false)</td></tr>
<tr class="memdesc:af5d940f364bb5097f20fee4a8e1210bb inherit pub_methods_classwx_scrolled"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets up vertical and/or horizontal scrollbars.  <a href="#af5d940f364bb5097f20fee4a8e1210bb"></a><br/></td></tr>
<tr class="separator:af5d940f364bb5097f20fee4a8e1210bb inherit pub_methods_classwx_scrolled"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a117dc8edabb3e1250199eab089e4fa5b inherit pub_methods_classwx_scrolled"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_scrolled.html#a117dc8edabb3e1250199eab089e4fa5b">SetTargetWindow</a> (<a class="el" href="classwx_window.html">wxWindow</a> *window)</td></tr>
<tr class="memdesc:a117dc8edabb3e1250199eab089e4fa5b inherit pub_methods_classwx_scrolled"><td class="mdescLeft">&#160;</td><td class="mdescRight">Call this function to tell <a class="el" href="classwx_scrolled.html" title="The wxScrolled class manages scrolling for its client area, transforming the coordinates according to...">wxScrolled</a> to perform the actual scrolling on a different window (and not on itself).  <a href="#a117dc8edabb3e1250199eab089e4fa5b"></a><br/></td></tr>
<tr class="separator:a117dc8edabb3e1250199eab089e4fa5b inherit pub_methods_classwx_scrolled"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae9a4680f58855a58235134c32ed742ad inherit pub_methods_classwx_scrolled"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_window.html">wxWindow</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_scrolled.html#ae9a4680f58855a58235134c32ed742ad">GetTargetWindow</a> () const </td></tr>
<tr class="separator:ae9a4680f58855a58235134c32ed742ad inherit pub_methods_classwx_scrolled"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aee90a87e1b3f7f0f70a89e085c0d9928 inherit pub_methods_classwx_scrolled"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_scrolled.html#aee90a87e1b3f7f0f70a89e085c0d9928">SetTargetRect</a> (const <a class="el" href="classwx_rect.html">wxRect</a> &amp;rect)</td></tr>
<tr class="separator:aee90a87e1b3f7f0f70a89e085c0d9928 inherit pub_methods_classwx_scrolled"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a753b645a99d21a25ba7db29e78015741 inherit pub_methods_classwx_scrolled"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_rect.html">wxRect</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_scrolled.html#a753b645a99d21a25ba7db29e78015741">GetTargetRect</a> () const </td></tr>
<tr class="separator:a753b645a99d21a25ba7db29e78015741 inherit pub_methods_classwx_scrolled"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a194f815525111860f7345a5d6af687d7 inherit pub_methods_classwx_scrolled"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_scrolled.html#a194f815525111860f7345a5d6af687d7">GetScrollPageSize</a> (int orient) const </td></tr>
<tr class="separator:a194f815525111860f7345a5d6af687d7 inherit pub_methods_classwx_scrolled"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa160351f31a0080784a00023947a06f6 inherit pub_methods_classwx_scrolled"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_scrolled.html#aa160351f31a0080784a00023947a06f6">SetScrollPageSize</a> (int orient, int pageSize)</td></tr>
<tr class="separator:aa160351f31a0080784a00023947a06f6 inherit pub_methods_classwx_scrolled"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9619063556af240c66202e0526d49cb3 inherit pub_methods_classwx_scrolled"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_scrolled.html#a9619063556af240c66202e0526d49cb3">GetScrollLines</a> (int orient) const </td></tr>
<tr class="separator:a9619063556af240c66202e0526d49cb3 inherit pub_methods_classwx_scrolled"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5c8829d39d00ce53901a8b1a67d5d780 inherit pub_methods_classwx_scrolled"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_scrolled.html#a5c8829d39d00ce53901a8b1a67d5d780">SetScale</a> (double xs, double ys)</td></tr>
<tr class="separator:a5c8829d39d00ce53901a8b1a67d5d780 inherit pub_methods_classwx_scrolled"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a787b355ef546a900ba9eff9aab7d4036 inherit pub_methods_classwx_scrolled"><td class="memItemLeft" align="right" valign="top">double&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_scrolled.html#a787b355ef546a900ba9eff9aab7d4036">GetScaleX</a> () const </td></tr>
<tr class="separator:a787b355ef546a900ba9eff9aab7d4036 inherit pub_methods_classwx_scrolled"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa25601fb1795a6a38fe425b049366ae3 inherit pub_methods_classwx_scrolled"><td class="memItemLeft" align="right" valign="top">double&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_scrolled.html#aa25601fb1795a6a38fe425b049366ae3">GetScaleY</a> () const </td></tr>
<tr class="separator:aa25601fb1795a6a38fe425b049366ae3 inherit pub_methods_classwx_scrolled"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5b5e335677055e4107903f7d5dad042f inherit pub_methods_classwx_scrolled"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_scrolled.html#a5b5e335677055e4107903f7d5dad042f">AdjustScrollbars</a> ()</td></tr>
<tr class="separator:a5b5e335677055e4107903f7d5dad042f inherit pub_methods_classwx_scrolled"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a813ba4e0e51842fd08f0758b2690ef00 inherit pub_methods_classwx_scrolled"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_scrolled.html#a813ba4e0e51842fd08f0758b2690ef00">IsAutoScrolling</a> () const </td></tr>
<tr class="memdesc:a813ba4e0e51842fd08f0758b2690ef00 inherit pub_methods_classwx_scrolled"><td class="mdescLeft">&#160;</td><td class="mdescRight">Are we generating the autoscroll events?  <a href="#a813ba4e0e51842fd08f0758b2690ef00"></a><br/></td></tr>
<tr class="separator:a813ba4e0e51842fd08f0758b2690ef00 inherit pub_methods_classwx_scrolled"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a33c3daf5feb84c357357012e1b0e7a0a inherit pub_methods_classwx_scrolled"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_scrolled.html#a33c3daf5feb84c357357012e1b0e7a0a">StopAutoScrolling</a> ()</td></tr>
<tr class="memdesc:a33c3daf5feb84c357357012e1b0e7a0a inherit pub_methods_classwx_scrolled"><td class="mdescLeft">&#160;</td><td class="mdescRight">Stop generating the scroll events when mouse is held outside the window.  <a href="#a33c3daf5feb84c357357012e1b0e7a0a"></a><br/></td></tr>
<tr class="separator:a33c3daf5feb84c357357012e1b0e7a0a inherit pub_methods_classwx_scrolled"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a335f6800aeca04c9e32856ab4ab5ce99 inherit pub_methods_classwx_scrolled"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_scrolled.html#a335f6800aeca04c9e32856ab4ab5ce99">SendAutoScrollEvents</a> (<a class="el" href="classwx_scroll_win_event.html">wxScrollWinEvent</a> &amp;event) const </td></tr>
<tr class="memdesc:a335f6800aeca04c9e32856ab4ab5ce99 inherit pub_methods_classwx_scrolled"><td class="mdescLeft">&#160;</td><td class="mdescRight">This method can be overridden in a derived class to forbid sending the auto scroll events - note that unlike <a class="el" href="classwx_scrolled.html#a33c3daf5feb84c357357012e1b0e7a0a" title="Stop generating the scroll events when mouse is held outside the window.">StopAutoScrolling()</a> it doesn't stop the timer, so it will be called repeatedly and will typically return different values depending on the current mouse position.  <a href="#a335f6800aeca04c9e32856ab4ab5ce99"></a><br/></td></tr>
<tr class="separator:a335f6800aeca04c9e32856ab4ab5ce99 inherit pub_methods_classwx_scrolled"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pub_methods_classwx_html_window_interface"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classwx_html_window_interface')"><img src="closed.png" alt="-"/>&#160;Public Member Functions inherited from <a class="el" href="classwx_html_window_interface.html">wxHtmlWindowInterface</a></td></tr>
<tr class="memitem:ab788f844e826335587566046af381aae inherit pub_methods_classwx_html_window_interface"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_html_window_interface.html#ab788f844e826335587566046af381aae">wxHtmlWindowInterface</a> ()</td></tr>
<tr class="memdesc:ab788f844e826335587566046af381aae inherit pub_methods_classwx_html_window_interface"><td class="mdescLeft">&#160;</td><td class="mdescRight">Ctor.  <a href="#ab788f844e826335587566046af381aae"></a><br/></td></tr>
<tr class="separator:ab788f844e826335587566046af381aae inherit pub_methods_classwx_html_window_interface"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac560c9abd03c1ad5e296b606340f5a04 inherit pub_methods_classwx_html_window_interface"><td class="memItemLeft" align="right" valign="top">virtual&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_html_window_interface.html#ac560c9abd03c1ad5e296b606340f5a04">~wxHtmlWindowInterface</a> ()</td></tr>
<tr class="separator:ac560c9abd03c1ad5e296b606340f5a04 inherit pub_methods_classwx_html_window_interface"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8ce342fb0439b76675c6b58a7e13b677 inherit pub_methods_classwx_html_window_interface"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_html_window_interface.html#a8ce342fb0439b76675c6b58a7e13b677">SetHTMLWindowTitle</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;title)=0</td></tr>
<tr class="memdesc:a8ce342fb0439b76675c6b58a7e13b677 inherit pub_methods_classwx_html_window_interface"><td class="mdescLeft">&#160;</td><td class="mdescRight">Called by the parser to set window's title to given text.  <a href="#a8ce342fb0439b76675c6b58a7e13b677"></a><br/></td></tr>
<tr class="separator:a8ce342fb0439b76675c6b58a7e13b677 inherit pub_methods_classwx_html_window_interface"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8f9b772badc2d3a49a3df2538ec9f554 inherit pub_methods_classwx_html_window_interface"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_html_window_interface.html#a8f9b772badc2d3a49a3df2538ec9f554">OnHTMLLinkClicked</a> (const <a class="el" href="classwx_html_link_info.html">wxHtmlLinkInfo</a> &amp;link)=0</td></tr>
<tr class="memdesc:a8f9b772badc2d3a49a3df2538ec9f554 inherit pub_methods_classwx_html_window_interface"><td class="mdescLeft">&#160;</td><td class="mdescRight">Called when a link is clicked.  <a href="#a8f9b772badc2d3a49a3df2538ec9f554"></a><br/></td></tr>
<tr class="separator:a8f9b772badc2d3a49a3df2538ec9f554 inherit pub_methods_classwx_html_window_interface"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aeda08ee928e2072e6d679f3018298503 inherit pub_methods_classwx_html_window_interface"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="htmlwin_8h.html#ac1d732c434321dadebd82289497348db">wxHtmlOpeningStatus</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_html_window_interface.html#aeda08ee928e2072e6d679f3018298503">OnHTMLOpeningURL</a> (<a class="el" href="htmlpars_8h.html#a6e895f8a11485532a3cb67ecec03d4fa">wxHtmlURLType</a> type, const <a class="el" href="classwx_string.html">wxString</a> &amp;url, <a class="el" href="classwx_string.html">wxString</a> *redirect) const =0</td></tr>
<tr class="memdesc:aeda08ee928e2072e6d679f3018298503 inherit pub_methods_classwx_html_window_interface"><td class="mdescLeft">&#160;</td><td class="mdescRight">Called when the parser needs to open another URL (e.g.  <a href="#aeda08ee928e2072e6d679f3018298503"></a><br/></td></tr>
<tr class="separator:aeda08ee928e2072e6d679f3018298503 inherit pub_methods_classwx_html_window_interface"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a40f350d5a0d35561dc7b0e0ec8758c78 inherit pub_methods_classwx_html_window_interface"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classwx_point.html">wxPoint</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_html_window_interface.html#a40f350d5a0d35561dc7b0e0ec8758c78">HTMLCoordsToWindow</a> (<a class="el" href="classwx_html_cell.html">wxHtmlCell</a> *cell, const <a class="el" href="classwx_point.html">wxPoint</a> &amp;pos) const =0</td></tr>
<tr class="memdesc:a40f350d5a0d35561dc7b0e0ec8758c78 inherit pub_methods_classwx_html_window_interface"><td class="mdescLeft">&#160;</td><td class="mdescRight">Converts coordinates <em>pos</em> relative to given <em>cell</em> to physical coordinates in the window.  <a href="#a40f350d5a0d35561dc7b0e0ec8758c78"></a><br/></td></tr>
<tr class="separator:a40f350d5a0d35561dc7b0e0ec8758c78 inherit pub_methods_classwx_html_window_interface"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4e35b38fa3dea581feff39343b16e006 inherit pub_methods_classwx_html_window_interface"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classwx_window.html">wxWindow</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_html_window_interface.html#a4e35b38fa3dea581feff39343b16e006">GetHTMLWindow</a> ()=0</td></tr>
<tr class="memdesc:a4e35b38fa3dea581feff39343b16e006 inherit pub_methods_classwx_html_window_interface"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the window used for rendering (may be NULL).  <a href="#a4e35b38fa3dea581feff39343b16e006"></a><br/></td></tr>
<tr class="separator:a4e35b38fa3dea581feff39343b16e006 inherit pub_methods_classwx_html_window_interface"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af8a745de3d031db9771119ea8965ae98 inherit pub_methods_classwx_html_window_interface"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classwx_colour.html">wxColour</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_html_window_interface.html#af8a745de3d031db9771119ea8965ae98">GetHTMLBackgroundColour</a> () const =0</td></tr>
<tr class="memdesc:af8a745de3d031db9771119ea8965ae98 inherit pub_methods_classwx_html_window_interface"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns background colour to use by default.  <a href="#af8a745de3d031db9771119ea8965ae98"></a><br/></td></tr>
<tr class="separator:af8a745de3d031db9771119ea8965ae98 inherit pub_methods_classwx_html_window_interface"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac88a65e20b777047f01f64ca92f741ee inherit pub_methods_classwx_html_window_interface"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_html_window_interface.html#ac88a65e20b777047f01f64ca92f741ee">SetHTMLBackgroundColour</a> (const <a class="el" href="classwx_colour.html">wxColour</a> &amp;clr)=0</td></tr>
<tr class="memdesc:ac88a65e20b777047f01f64ca92f741ee inherit pub_methods_classwx_html_window_interface"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets window's background to colour <em>clr</em>.  <a href="#ac88a65e20b777047f01f64ca92f741ee"></a><br/></td></tr>
<tr class="separator:ac88a65e20b777047f01f64ca92f741ee inherit pub_methods_classwx_html_window_interface"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5747c4d798059d2976eb7594e8bb9745 inherit pub_methods_classwx_html_window_interface"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_html_window_interface.html#a5747c4d798059d2976eb7594e8bb9745">SetHTMLBackgroundImage</a> (const <a class="el" href="classwx_bitmap.html">wxBitmap</a> &amp;bmpBg)=0</td></tr>
<tr class="memdesc:a5747c4d798059d2976eb7594e8bb9745 inherit pub_methods_classwx_html_window_interface"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets window's background to given bitmap.  <a href="#a5747c4d798059d2976eb7594e8bb9745"></a><br/></td></tr>
<tr class="separator:a5747c4d798059d2976eb7594e8bb9745 inherit pub_methods_classwx_html_window_interface"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aeeb79b04e19931b44cec467237a160ce inherit pub_methods_classwx_html_window_interface"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_html_window_interface.html#aeeb79b04e19931b44cec467237a160ce">SetHTMLStatusText</a> (const <a class="el" href="classwx_string.html">wxString</a> &amp;text)=0</td></tr>
<tr class="memdesc:aeeb79b04e19931b44cec467237a160ce inherit pub_methods_classwx_html_window_interface"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets status bar text.  <a href="#aeeb79b04e19931b44cec467237a160ce"></a><br/></td></tr>
<tr class="separator:aeeb79b04e19931b44cec467237a160ce inherit pub_methods_classwx_html_window_interface"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8677ac7a10014785cd79aff2e4b51e8b inherit pub_methods_classwx_html_window_interface"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classwx_cursor.html">wxCursor</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_html_window_interface.html#a8677ac7a10014785cd79aff2e4b51e8b">GetHTMLCursor</a> (<a class="el" href="classwx_html_window_interface.html#abee7411cdffad251a5ac7b831aacef70">wxHtmlWindowInterface::HTMLCursor</a> type) const =0</td></tr>
<tr class="memdesc:a8677ac7a10014785cd79aff2e4b51e8b inherit pub_methods_classwx_html_window_interface"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns mouse cursor of given <em>type</em>.  <a href="#a8677ac7a10014785cd79aff2e4b51e8b"></a><br/></td></tr>
<tr class="separator:a8677ac7a10014785cd79aff2e4b51e8b inherit pub_methods_classwx_html_window_interface"><td class="memSeparator" colspan="2">&#160;</td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-static-methods"></a>
Static Public Member Functions</h2></td></tr>
<tr class="memitem:a7d4293c4d2f03fd8d6252c62573b0529"><td class="memItemLeft" align="right" valign="top">static void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_html_window.html#a7d4293c4d2f03fd8d6252c62573b0529">AddFilter</a> (<a class="el" href="classwx_html_filter.html">wxHtmlFilter</a> *filter)</td></tr>
<tr class="memdesc:a7d4293c4d2f03fd8d6252c62573b0529"><td class="mdescLeft">&#160;</td><td class="mdescRight">Adds <a class="el" href="overview_html.html#overview_html_filters">input filter</a> to the static list of available filters.  <a href="#a7d4293c4d2f03fd8d6252c62573b0529"></a><br/></td></tr>
<tr class="separator:a7d4293c4d2f03fd8d6252c62573b0529"><td class="memSeparator" colspan="2">&#160;</td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pro-methods"></a>
Protected Member Functions</h2></td></tr>
<tr class="memitem:a6eed2e288ecdbb1c2f96fa1cc467f6fa"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_html_window.html#a6eed2e288ecdbb1c2f96fa1cc467f6fa">OnCellClicked</a> (<a class="el" href="classwx_html_cell.html">wxHtmlCell</a> *cell, <a class="el" href="defs_8h.html#a11f6efc0e8d8d680f3ec8e82aa4f1770">wxCoord</a> x, <a class="el" href="defs_8h.html#a11f6efc0e8d8d680f3ec8e82aa4f1770">wxCoord</a> y, const <a class="el" href="classwx_mouse_event.html">wxMouseEvent</a> &amp;event)</td></tr>
<tr class="memdesc:a6eed2e288ecdbb1c2f96fa1cc467f6fa"><td class="mdescLeft">&#160;</td><td class="mdescRight">This method is called when a mouse button is clicked inside <a class="el" href="classwx_html_window.html" title="wxHtmlWindow is probably the only class you will directly use unless you want to do something special...">wxHtmlWindow</a>.  <a href="#a6eed2e288ecdbb1c2f96fa1cc467f6fa"></a><br/></td></tr>
<tr class="separator:a6eed2e288ecdbb1c2f96fa1cc467f6fa"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0d11dc952a4cb88bdf5a404adbdb3b93"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_html_window.html#a0d11dc952a4cb88bdf5a404adbdb3b93">OnCellMouseHover</a> (<a class="el" href="classwx_html_cell.html">wxHtmlCell</a> *cell, <a class="el" href="defs_8h.html#a11f6efc0e8d8d680f3ec8e82aa4f1770">wxCoord</a> x, <a class="el" href="defs_8h.html#a11f6efc0e8d8d680f3ec8e82aa4f1770">wxCoord</a> y)</td></tr>
<tr class="memdesc:a0d11dc952a4cb88bdf5a404adbdb3b93"><td class="mdescLeft">&#160;</td><td class="mdescRight">This method is called when a mouse moves over an HTML cell.  <a href="#a0d11dc952a4cb88bdf5a404adbdb3b93"></a><br/></td></tr>
<tr class="separator:a0d11dc952a4cb88bdf5a404adbdb3b93"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pro_methods_classwx_scrolled"><td colspan="2" onclick="javascript:toggleInherit('pro_methods_classwx_scrolled')"><img src="closed.png" alt="-"/>&#160;Protected Member Functions inherited from <a class="el" href="classwx_scrolled.html">wxScrolled&lt; T &gt;</a></td></tr>
<tr class="memitem:a81800886d1d5f094caeee683e707de12 inherit pro_methods_classwx_scrolled"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classwx_size.html">wxSize</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_scrolled.html#a81800886d1d5f094caeee683e707de12">GetSizeAvailableForScrollTarget</a> (const <a class="el" href="classwx_size.html">wxSize</a> &amp;size)</td></tr>
<tr class="memdesc:a81800886d1d5f094caeee683e707de12 inherit pro_methods_classwx_scrolled"><td class="mdescLeft">&#160;</td><td class="mdescRight">Function which must be overridden to implement the size available for the scroll target for the given size of the main window.  <a href="#a81800886d1d5f094caeee683e707de12"></a><br/></td></tr>
<tr class="separator:a81800886d1d5f094caeee683e707de12 inherit pro_methods_classwx_scrolled"><td class="memSeparator" colspan="2">&#160;</td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="inherited"></a>
Additional Inherited Members</h2></td></tr>
<tr class="inherit_header pub_types_classwx_html_window_interface"><td colspan="2" onclick="javascript:toggleInherit('pub_types_classwx_html_window_interface')"><img src="closed.png" alt="-"/>&#160;Public Types inherited from <a class="el" href="classwx_html_window_interface.html">wxHtmlWindowInterface</a></td></tr>
<tr class="memitem:abee7411cdffad251a5ac7b831aacef70 inherit pub_types_classwx_html_window_interface"><td class="memItemLeft" align="right" valign="top">enum &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_html_window_interface.html#abee7411cdffad251a5ac7b831aacef70">HTMLCursor</a> { <br/>
&#160;&#160;<a class="el" href="classwx_html_window_interface.html#abee7411cdffad251a5ac7b831aacef70a2e6f776e0650c0b81c3ef41b8ef76a0d">HTMLCursor_Default</a>, 
<br/>
&#160;&#160;<a class="el" href="classwx_html_window_interface.html#abee7411cdffad251a5ac7b831aacef70a8b6d0e568bbc790f288bf1be1fb0fef3">HTMLCursor_Link</a>, 
<br/>
&#160;&#160;<a class="el" href="classwx_html_window_interface.html#abee7411cdffad251a5ac7b831aacef70a67c98e64061369f85bae5cfa01708cc5">HTMLCursor_Text</a>
<br/>
 }</td></tr>
<tr class="memdesc:abee7411cdffad251a5ac7b831aacef70"><td class="mdescLeft">&#160;</td><td class="mdescRight">Type of mouse cursor.  <a href="classwx_html_window_interface.html#abee7411cdffad251a5ac7b831aacef70">More...</a><br/></td></tr>
<tr class="separator:abee7411cdffad251a5ac7b831aacef70 inherit pub_types_classwx_html_window_interface"><td class="memSeparator" colspan="2">&#160;</td></tr>
</table>
<h2 class="groupheader">Constructor &amp; Destructor Documentation</h2>
<a class="anchor" id="abdabd01ec3b8d25a27ac59df685dce43"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">wxHtmlWindow::wxHtmlWindow </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Default ctor. </p>

</div>
</div>
<a class="anchor" id="ad3f82c7cb1ea50be9807604a8ac71905"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">wxHtmlWindow::wxHtmlWindow </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classwx_window.html">wxWindow</a> *&#160;</td>
          <td class="paramname"><em>parent</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="windowid_8h.html#ae8091432cc2cb2485d45f2302fb51133">wxWindowID</a>&#160;</td>
          <td class="paramname"><em>id</em> = <code><a class="el" href="defs_8h.html#ac66d0a09761e7d86b2ac0b2e0c6a8cbba1f375b01ea03a713bbb7e32a36a2589c">wxID_ANY</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_point.html">wxPoint</a> &amp;&#160;</td>
          <td class="paramname"><em>pos</em> = <code><a class="el" href="gdicmn_8h.html#af5a90c753eaf3d3e3e5068a19ec3c1d0">wxDefaultPosition</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_size.html">wxSize</a> &amp;&#160;</td>
          <td class="paramname"><em>size</em> = <code><a class="el" href="gdicmn_8h.html#a33a012cdb075e9f78c93f63bec2dc27b">wxDefaultSize</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">long&#160;</td>
          <td class="paramname"><em>style</em> = <code><a class="el" href="htmlwin_8h.html#ac34b9deb4e0066cc1eb08b88f2157a57">wxHW_DEFAULT_STYLE</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>name</em> = <code>&quot;htmlWindow&quot;</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Constructor. </p>
<p>The parameters are the same as <a class="el" href="classwx_scrolled.html#a01d0ecb5daa59ebb7a0806f16b7ac267" title="Default constructor.">wxScrolled::wxScrolled()</a> constructor. </p>

</div>
</div>
<h2 class="groupheader">Member Function Documentation</h2>
<a class="anchor" id="a7d4293c4d2f03fd8d6252c62573b0529"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">static void wxHtmlWindow::AddFilter </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classwx_html_filter.html">wxHtmlFilter</a> *&#160;</td>
          <td class="paramname"><em>filter</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Adds <a class="el" href="overview_html.html#overview_html_filters">input filter</a> to the static list of available filters. </p>
<p>These filters are present by default:</p>
<ul>
<li><code>text/html</code> MIME type</li>
<li><code>image/*</code> MIME types</li>
<li>Plain Text filter (this filter is used if no other filter matches) </li>
</ul>

</div>
</div>
<a class="anchor" id="a6c8cb22b488e8d59ece87fd169140718"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool wxHtmlWindow::AppendToPage </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>source</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Appends HTML fragment to currently displayed text and refreshes the window. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">source</td><td>HTML code fragment</td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd><span class="literal">false</span> if an error occurred, <span class="literal">true</span> otherwise. </dd></dl>

</div>
</div>
<a class="anchor" id="ac58ba50face285ddfd28a89f548f34c9"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_html_container_cell.html">wxHtmlContainerCell</a>* wxHtmlWindow::GetInternalRepresentation </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns pointer to the top-level container. </p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="overview_html.html#overview_html_cells">Cells and Containers</a>, <a class="el" href="overview_printing.html">Printing Framework Overview</a> </dd></dl>

</div>
</div>
<a class="anchor" id="ac4f09301ceab86ff1ccae9209d8ba0d6"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_string.html">wxString</a> wxHtmlWindow::GetOpenedAnchor </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns anchor within currently opened page (see <a class="el" href="classwx_html_window.html#a2e4e27fbc971881cfd2b66f69e67b30f" title="Returns full location of the opened page.">wxHtmlWindow::GetOpenedPage</a>). </p>
<p>If no page is opened or if the displayed page wasn't produced by call to <a class="el" href="classwx_html_window.html#ab7086e665bb533a34dc11ab29465db09" title="Unlike SetPage() this function first loads the HTML page from location and then displays it...">LoadPage()</a>, empty string is returned. </p>

</div>
</div>
<a class="anchor" id="a2e4e27fbc971881cfd2b66f69e67b30f"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_string.html">wxString</a> wxHtmlWindow::GetOpenedPage </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns full location of the opened page. </p>
<p>If no page is opened or if the displayed page wasn't produced by call to <a class="el" href="classwx_html_window.html#ab7086e665bb533a34dc11ab29465db09" title="Unlike SetPage() this function first loads the HTML page from location and then displays it...">LoadPage()</a>, empty string is returned. </p>

</div>
</div>
<a class="anchor" id="a942a11d4cb16d3ab8de5b180dfc13f09"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_string.html">wxString</a> wxHtmlWindow::GetOpenedPageTitle </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns title of the opened page or wxEmptyString if the current page does not contain &lt;TITLE&gt; tag. </p>

</div>
</div>
<a class="anchor" id="a6613b1d52e5ba1e8a667270306e4f0aa"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_frame.html">wxFrame</a>* wxHtmlWindow::GetRelatedFrame </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns the related frame. </p>

</div>
</div>
<a class="anchor" id="ac445bd13cce6579d1d74348b6771bc21"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool wxHtmlWindow::HistoryBack </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Moves back to the previous page. </p>
<p>Only pages displayed using <a class="el" href="classwx_html_window.html#ab7086e665bb533a34dc11ab29465db09" title="Unlike SetPage() this function first loads the HTML page from location and then displays it...">LoadPage()</a> are stored in history list. </p>

</div>
</div>
<a class="anchor" id="a43b2e1f13a8ef56144a351fcf1765d33"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool wxHtmlWindow::HistoryCanBack </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns <span class="literal">true</span> if it is possible to go back in the history i.e. </p>
<p><a class="el" href="classwx_html_window.html#ac445bd13cce6579d1d74348b6771bc21" title="Moves back to the previous page.">HistoryBack()</a> won't fail. </p>

</div>
</div>
<a class="anchor" id="a99097f5c7cfd6198c1309fe2713a5210"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool wxHtmlWindow::HistoryCanForward </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns <span class="literal">true</span> if it is possible to go forward in the history i.e. </p>
<p><a class="el" href="classwx_html_window.html#a385e056dba5b8f3d480f7053a9fb305f" title="Moves to next page in history.">HistoryForward()</a> won't fail. </p>

</div>
</div>
<a class="anchor" id="a0cf30ee8ee03ff0fa6ee42fb349bb851"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void wxHtmlWindow::HistoryClear </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Clears history. </p>

</div>
</div>
<a class="anchor" id="a385e056dba5b8f3d480f7053a9fb305f"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool wxHtmlWindow::HistoryForward </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Moves to next page in history. </p>
<p>Only pages displayed using <a class="el" href="classwx_html_window.html#ab7086e665bb533a34dc11ab29465db09" title="Unlike SetPage() this function first loads the HTML page from location and then displays it...">LoadPage()</a> are stored in history list. </p>

</div>
</div>
<a class="anchor" id="a1ffb71e2736cbe36740fd38bc3d100b2"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool wxHtmlWindow::LoadFile </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_file_name.html">wxFileName</a> &amp;&#160;</td>
          <td class="paramname"><em>filename</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Loads an HTML page from a file and displays it. </p>
<dl class="section return"><dt>Returns</dt><dd><span class="literal">false</span> if an error occurred, <span class="literal">true</span> otherwise</dd></dl>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_html_window.html#ab7086e665bb533a34dc11ab29465db09" title="Unlike SetPage() this function first loads the HTML page from location and then displays it...">LoadPage()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="ab7086e665bb533a34dc11ab29465db09"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">virtual bool wxHtmlWindow::LoadPage </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>location</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">virtual</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Unlike <a class="el" href="classwx_html_window.html#ac6d0335b1bb749b498598fc5a3b32703" title="Sets the source of a page and displays it, for example:">SetPage()</a> this function first loads the HTML page from <em>location</em> and then displays it. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">location</td><td>The address of the document. See the <a class="el" href="overview_fs.html">wxFileSystem Overview</a> for details on the address format and <a class="el" href="classwx_file_system.html" title="This class provides an interface for opening files on different file systems.">wxFileSystem</a> for a description of how the file is opened.</td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd><span class="literal">false</span> if an error occurred, <span class="literal">true</span> otherwise</dd></dl>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_html_window.html#a1ffb71e2736cbe36740fd38bc3d100b2" title="Loads an HTML page from a file and displays it.">LoadFile()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="a6eed2e288ecdbb1c2f96fa1cc467f6fa"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">virtual bool wxHtmlWindow::OnCellClicked </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classwx_html_cell.html">wxHtmlCell</a> *&#160;</td>
          <td class="paramname"><em>cell</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="defs_8h.html#a11f6efc0e8d8d680f3ec8e82aa4f1770">wxCoord</a>&#160;</td>
          <td class="paramname"><em>x</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="defs_8h.html#a11f6efc0e8d8d680f3ec8e82aa4f1770">wxCoord</a>&#160;</td>
          <td class="paramname"><em>y</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_mouse_event.html">wxMouseEvent</a> &amp;&#160;</td>
          <td class="paramname"><em>event</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>This method is called when a mouse button is clicked inside <a class="el" href="classwx_html_window.html" title="wxHtmlWindow is probably the only class you will directly use unless you want to do something special...">wxHtmlWindow</a>. </p>
<p>The default behaviour is to emit a <a class="el" href="classwx_html_cell_event.html" title="This event class is used for the events generated by wxHtmlWindow.">wxHtmlCellEvent</a> and, if the event was not processed or skipped, call <a class="el" href="classwx_html_window.html#a519281dbfbddc163b5e73fd6a10cf90a" title="Called when user clicks on hypertext link.">OnLinkClicked()</a> if the cell contains an hypertext link.</p>
<p>Overloading this method is deprecated; intercept the event instead.</p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">cell</td><td>The cell inside which the mouse was clicked, always a simple (i.e. non-container) cell </td></tr>
    <tr><td class="paramname">x</td><td>The logical x coordinate of the click point </td></tr>
    <tr><td class="paramname">y</td><td>The logical y coordinate of the click point </td></tr>
    <tr><td class="paramname">event</td><td>The mouse event containing other information about the click</td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd><span class="literal">true</span> if a link was clicked, <span class="literal">false</span> otherwise. </dd></dl>

</div>
</div>
<a class="anchor" id="a0d11dc952a4cb88bdf5a404adbdb3b93"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">virtual void wxHtmlWindow::OnCellMouseHover </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classwx_html_cell.html">wxHtmlCell</a> *&#160;</td>
          <td class="paramname"><em>cell</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="defs_8h.html#a11f6efc0e8d8d680f3ec8e82aa4f1770">wxCoord</a>&#160;</td>
          <td class="paramname"><em>x</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="defs_8h.html#a11f6efc0e8d8d680f3ec8e82aa4f1770">wxCoord</a>&#160;</td>
          <td class="paramname"><em>y</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>This method is called when a mouse moves over an HTML cell. </p>
<p>Default behaviour is to emit a <a class="el" href="classwx_html_cell_event.html" title="This event class is used for the events generated by wxHtmlWindow.">wxHtmlCellEvent</a>.</p>
<p>Overloading this method is deprecated; intercept the event instead.</p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">cell</td><td>The cell inside which the mouse is currently, always a simple (i.e. non-container) cell </td></tr>
    <tr><td class="paramname">x</td><td>The logical x coordinate of the click point </td></tr>
    <tr><td class="paramname">y</td><td>The logical y coordinate of the click point </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a519281dbfbddc163b5e73fd6a10cf90a"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">virtual void wxHtmlWindow::OnLinkClicked </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_html_link_info.html">wxHtmlLinkInfo</a> &amp;&#160;</td>
          <td class="paramname"><em>link</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">virtual</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Called when user clicks on hypertext link. </p>
<p>Default behaviour is to emit a <a class="el" href="classwx_html_link_event.html" title="This event class is used for the events generated by wxHtmlWindow.">wxHtmlLinkEvent</a> and, if the event was not processed or skipped, call <a class="el" href="classwx_html_window.html#ab7086e665bb533a34dc11ab29465db09" title="Unlike SetPage() this function first loads the HTML page from location and then displays it...">LoadPage()</a> and do nothing else.</p>
<p>Overloading this method is deprecated; intercept the event instead.</p>
<p>Also see <a class="el" href="classwx_html_link_info.html" title="This class stores all necessary information about hypertext links (as represented by &lt;A&gt; tag in HTML ...">wxHtmlLinkInfo</a>. </p>

</div>
</div>
<a class="anchor" id="aaeca6abb2c4c5248d418ca19ee51206d"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">virtual <a class="el" href="htmlwin_8h.html#ac1d732c434321dadebd82289497348db">wxHtmlOpeningStatus</a> wxHtmlWindow::OnOpeningURL </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="htmlpars_8h.html#a6e895f8a11485532a3cb67ecec03d4fa">wxHtmlURLType</a>&#160;</td>
          <td class="paramname"><em>type</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>url</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classwx_string.html">wxString</a> *&#160;</td>
          <td class="paramname"><em>redirect</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td> const</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">virtual</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Called when an URL is being opened (either when the user clicks on a link or an image is loaded). </p>
<p>The URL will be opened only if <a class="el" href="classwx_html_window.html#aaeca6abb2c4c5248d418ca19ee51206d" title="Called when an URL is being opened (either when the user clicks on a link or an image is loaded)...">OnOpeningURL()</a> returns <code>wxHTML_OPEN</code>. This method is called by <a class="el" href="classwx_html_parser.html#aaecb050ca8be6e6d980f28774aa35bef" title="Opens given URL and returns wxFSFile object that can be used to read data from it.">wxHtmlParser::OpenURL</a>.</p>
<p>You can override <a class="el" href="classwx_html_window.html#aaeca6abb2c4c5248d418ca19ee51206d" title="Called when an URL is being opened (either when the user clicks on a link or an image is loaded)...">OnOpeningURL()</a> to selectively block some URLs (e.g. for security reasons) or to redirect them elsewhere. Default behaviour is to always return <code>wxHTML_OPEN</code>.</p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">type</td><td>Indicates type of the resource. Is one of<ul>
<li>wxHTML_URL_PAGE: Opening a HTML page.</li>
<li>wxHTML_URL_IMAGE: Opening an image.</li>
<li>wxHTML_URL_OTHER: Opening a resource that doesn't fall into any other category. </li>
</ul>
</td></tr>
    <tr><td class="paramname">url</td><td>URL being opened. </td></tr>
    <tr><td class="paramname">redirect</td><td>Pointer to <a class="el" href="classwx_string.html" title="String class for passing textual data to or receiving it from wxWidgets.">wxString</a> variable that must be filled with an URL if <a class="el" href="classwx_html_window.html#aaeca6abb2c4c5248d418ca19ee51206d" title="Called when an URL is being opened (either when the user clicks on a link or an image is loaded)...">OnOpeningURL()</a> returns <code>wxHTML_REDIRECT</code>.</td></tr>
  </table>
  </dd>
</dl>
<p>The return value is:</p>
<ul>
<li>wxHTML_OPEN: Open the URL.</li>
<li>wxHTML_BLOCK: Deny access to the URL, <a class="el" href="classwx_html_parser.html#aaecb050ca8be6e6d980f28774aa35bef" title="Opens given URL and returns wxFSFile object that can be used to read data from it.">wxHtmlParser::OpenURL</a> will return <span class="literal">NULL</span>.</li>
<li>wxHTML_REDIRECT: Don't open url, redirect to another URL. <a class="el" href="classwx_html_window.html#aaeca6abb2c4c5248d418ca19ee51206d" title="Called when an URL is being opened (either when the user clicks on a link or an image is loaded)...">OnOpeningURL()</a> must fill *redirect with the new URL. <a class="el" href="classwx_html_window.html#aaeca6abb2c4c5248d418ca19ee51206d" title="Called when an URL is being opened (either when the user clicks on a link or an image is loaded)...">OnOpeningURL()</a> will be called again on returned URL. </li>
</ul>

</div>
</div>
<a class="anchor" id="ab8e6c857c4ca602387f38dbfa99ffb35"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">virtual void wxHtmlWindow::OnSetTitle </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>title</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">virtual</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Called on parsing &lt;TITLE&gt; tag. </p>

</div>
</div>
<a class="anchor" id="a22f8b0b78251259c01ce5e8f17294fd4"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">virtual void wxHtmlWindow::ReadCustomization </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classwx_config_base.html">wxConfigBase</a> *&#160;</td>
          <td class="paramname"><em>cfg</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classwx_string.html">wxString</a>&#160;</td>
          <td class="paramname"><em>path</em> = <code><a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a></code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">virtual</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>This reads custom settings from wxConfig. </p>
<p>It uses the path 'path' if given, otherwise it saves info into currently selected path. The values are stored in sub-path <code><a class="el" href="classwx_html_window.html" title="wxHtmlWindow is probably the only class you will directly use unless you want to do something special...">wxHtmlWindow</a></code>. Read values: all things set by <a class="el" href="classwx_html_window.html#a31b77979403242da3ccd40bea9b29b87" title="This function sets font sizes and faces.">SetFonts()</a>, <a class="el" href="classwx_html_window.html#a3e2350cbf8bc74ba8451ab3f953046dc" title="This function sets the space between border of window and HTML contents.">SetBorders()</a>.</p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">cfg</td><td>wxConfig from which you want to read the configuration. </td></tr>
    <tr><td class="paramname">path</td><td>Optional path in config tree. If not given current path is used. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a54459a2d5c5cc71f2849c5aa1fbd5e68"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void wxHtmlWindow::SelectAll </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Selects all text in the window. </p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_html_window.html#a15acd01f247257d427856713831db699" title="Selects the line of text that pos points at.">SelectLine()</a>, <a class="el" href="classwx_html_window.html#ad3555a940e7916620e60b5f496982b52" title="Selects the word at position pos.">SelectWord()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="a341d15c232a620c7c8ec4f72911c954b"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_string.html">wxString</a> wxHtmlWindow::SelectionToText </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns the current selection as plain text. </p>
<p>Returns an empty string if no text is currently selected. </p>

</div>
</div>
<a class="anchor" id="a15acd01f247257d427856713831db699"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void wxHtmlWindow::SelectLine </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_point.html">wxPoint</a> &amp;&#160;</td>
          <td class="paramname"><em>pos</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Selects the line of text that <em>pos</em> points at. </p>
<p>Note that <em>pos</em> is relative to the top of displayed page, not to window's origin, use <a class="el" href="classwx_scrolled.html#ac296b6676926ba2fe356c9a12d50579e" title="Translates the device coordinates to the logical ones.">wxScrolled::CalcUnscrolledPosition()</a> to convert physical coordinate.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_html_window.html#a54459a2d5c5cc71f2849c5aa1fbd5e68" title="Selects all text in the window.">SelectAll()</a>, <a class="el" href="classwx_html_window.html#ad3555a940e7916620e60b5f496982b52" title="Selects the word at position pos.">SelectWord()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="ad3555a940e7916620e60b5f496982b52"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void wxHtmlWindow::SelectWord </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_point.html">wxPoint</a> &amp;&#160;</td>
          <td class="paramname"><em>pos</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Selects the word at position <em>pos</em>. </p>
<p>Note that <em>pos</em> is relative to the top of displayed page, not to window's origin, use <a class="el" href="classwx_scrolled.html#ac296b6676926ba2fe356c9a12d50579e" title="Translates the device coordinates to the logical ones.">wxScrolled::CalcUnscrolledPosition()</a> to convert physical coordinate.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_html_window.html#a54459a2d5c5cc71f2849c5aa1fbd5e68" title="Selects all text in the window.">SelectAll()</a>, <a class="el" href="classwx_html_window.html#a15acd01f247257d427856713831db699" title="Selects the line of text that pos points at.">SelectLine()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="a3e2350cbf8bc74ba8451ab3f953046dc"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void wxHtmlWindow::SetBorders </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>b</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>This function sets the space between border of window and HTML contents. </p>
<p>See image: </p>
<div class="image">
<img src="htmlwin_border.png" alt="htmlwin_border.png"/>
</div>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">b</td><td>indentation from borders in pixels </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a31b77979403242da3ccd40bea9b29b87"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void wxHtmlWindow::SetFonts </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>normal_face</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>fixed_face</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const int *&#160;</td>
          <td class="paramname"><em>sizes</em> = <code>NULL</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>This function sets font sizes and faces. </p>
<p>See <a class="el" href="classwx_html_d_c_renderer.html#a70cfd1cd9f25f91afe40694466b70f7a" title="This function sets font sizes and faces.">wxHtmlDCRenderer::SetFonts</a> for detailed description.</p>
<dl class="section see"><dt>See Also</dt><dd>SetSize() </dd></dl>

</div>
</div>
<a class="anchor" id="ac6d0335b1bb749b498598fc5a3b32703"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">virtual bool wxHtmlWindow::SetPage </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>source</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">virtual</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Sets the source of a page and displays it, for example: </p>
<div class="fragment"><div class="line">htmlwin -&gt; <a class="code" href="classwx_html_window.html#ac6d0335b1bb749b498598fc5a3b32703" title="Sets the source of a page and displays it, for example:">SetPage</a>(<span class="stringliteral">&quot;&lt;html&gt;&lt;body&gt;Hello, world!&lt;/body&gt;&lt;/html&gt;&quot;</span>);</div>
</div><!-- fragment --><p>If you want to load a document from some location use <a class="el" href="classwx_html_window.html#ab7086e665bb533a34dc11ab29465db09" title="Unlike SetPage() this function first loads the HTML page from location and then displays it...">LoadPage()</a> instead.</p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">source</td><td>The HTML to be displayed.</td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd><span class="literal">false</span> if an error occurred, <span class="literal">true</span> otherwise. </dd></dl>

</div>
</div>
<a class="anchor" id="ab524aecb99227497a569981a2f11f67f"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void wxHtmlWindow::SetRelatedFrame </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classwx_frame.html">wxFrame</a> *&#160;</td>
          <td class="paramname"><em>frame</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>format</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Sets the frame in which page title will be displayed. </p>
<p><em>format</em> 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. </p>

</div>
</div>
<a class="anchor" id="a81b658e84cbaf395eddd2d9c40b00c70"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void wxHtmlWindow::SetRelatedStatusBar </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>index</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p><b>After</b> calling <a class="el" href="classwx_html_window.html#ab524aecb99227497a569981a2f11f67f" title="Sets the frame in which page title will be displayed.">SetRelatedFrame()</a>, this sets statusbar slot where messages will be displayed. </p>
<p>(Default is -1 = no messages.)</p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">index</td><td>Statusbar slot number (0..n) </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a009c5938a5aa1858c48aa61c71864ff6"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void wxHtmlWindow::SetRelatedStatusBar </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classwx_status_bar.html">wxStatusBar</a> *&#160;</td>
          <td class="paramname"><em>statusbar</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>index</em> = <code>0</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p><b>Sets</b> the associated statusbar where messages will be displayed. </p>
<p>Call this instead of <a class="el" href="classwx_html_window.html#ab524aecb99227497a569981a2f11f67f" title="Sets the frame in which page title will be displayed.">SetRelatedFrame()</a> if you want statusbar updates only, no changing of the frame title.</p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">statusbar</td><td>Statusbar pointer </td></tr>
    <tr><td class="paramname">index</td><td>Statusbar slot number (0..n)</td></tr>
  </table>
  </dd>
</dl>
<dl class="section since"><dt>Since</dt><dd>2.9.0 </dd></dl>

</div>
</div>
<a class="anchor" id="a746ac926326153fdccf38a5d36b6288d"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void wxHtmlWindow::SetStandardFonts </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>size</em> = <code>-1</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>normal_face</em> = <code><a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> &amp;&#160;</td>
          <td class="paramname"><em>fixed_face</em> = <code><a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a></code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Sets default font sizes and/or default font size. </p>
<p>See <a class="el" href="classwx_html_d_c_renderer.html#a277ee219b82244b3eecef42f4e67f14c" title="Sets font sizes to be relative to the given size or the system default size; use either specified or ...">wxHtmlDCRenderer::SetStandardFonts</a> for detailed description. </p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_html_window.html#a31b77979403242da3ccd40bea9b29b87" title="This function sets font sizes and faces.">SetFonts()</a> </dd></dl>

</div>
</div>
<a class="anchor" id="aacc7ffe8844ca638008fff488b05314c"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classwx_string.html">wxString</a> wxHtmlWindow::ToText </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns content of currently displayed page as plain text. </p>

</div>
</div>
<a class="anchor" id="a46bb9859128a69e2d943a248c7bd41bd"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">virtual void wxHtmlWindow::WriteCustomization </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classwx_config_base.html">wxConfigBase</a> *&#160;</td>
          <td class="paramname"><em>cfg</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classwx_string.html">wxString</a>&#160;</td>
          <td class="paramname"><em>path</em> = <code><a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a></code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">virtual</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Saves custom settings into wxConfig. </p>
<p>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 <code><a class="el" href="classwx_html_window.html" title="wxHtmlWindow is probably the only class you will directly use unless you want to do something special...">wxHtmlWindow</a></code>.</p>
<p>Saved values: all things set by <a class="el" href="classwx_html_window.html#a31b77979403242da3ccd40bea9b29b87" title="This function sets font sizes and faces.">SetFonts()</a>, <a class="el" href="classwx_html_window.html#a3e2350cbf8bc74ba8451ab3f953046dc" title="This function sets the space between border of window and HTML contents.">SetBorders()</a>.</p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">cfg</td><td>wxConfig to which you want to save the configuration. </td></tr>
    <tr><td class="paramname">path</td><td>Optional path in config tree. If not given, the current path is used. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
</div><!-- contents -->

<address class="footer">
	<small>
		Generated on Thu Nov 27 2014 13:46:49 for wxWidgets by <a href="http://www.doxygen.org/index.html" target="_new">Doxygen</a> 1.8.2
	</small>
</address>
<script src="wxwidgets.js" type="text/javascript"></script>
</div><!-- #page_container -->
</body>
</html>