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
|
<!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: Class Hierarchy</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 Page</span></a></li>
<li><a href="pages.html"><span>Related 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 List</span></a></li>
<li><a href="classes.html"><span>Class Index</span></a></li>
<li class="current"><a href="hierarchy.html"><span>Class Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class Members</span></a></li>
</ul>
</div>
</div><!-- top -->
<div class="header">
<div class="headertitle">
<div class="title">Class Hierarchy</div> </div>
</div><!--header-->
<div class="contents">
<div class="textblock">This inheritance list is sorted roughly, but not completely, alphabetically:</div><div class="directory">
<div class="levels">[detail level <span onclick="javascript:toggleLevel(1);">1</span><span onclick="javascript:toggleLevel(2);">2</span><span onclick="javascript:toggleLevel(3);">3</span><span onclick="javascript:toggleLevel(4);">4</span><span onclick="javascript:toggleLevel(5);">5</span><span onclick="javascript:toggleLevel(6);">6</span><span onclick="javascript:toggleLevel(7);">7</span><span onclick="javascript:toggleLevel(8);">8</span>]</div><table class="directory">
<tr id="row_0_" class="even"><td class="entry"><img id="arr_0_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('0_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><b>basic_string</b></td><td class="desc"></td></tr>
<tr id="row_0_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_u_string.html" target="_self">wxUString</a></td><td class="desc">WxUString is a class representing a Unicode character string where each character is stored using a 32-bit value</td></tr>
<tr id="row_1_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_message_dialog_1_1_button_label.html" target="_self">wxMessageDialog::ButtonLabel</a></td><td class="desc">Helper class allowing to use either stock id or string labels</td></tr>
<tr id="row_2_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_window_1_1_children_repositioning_guard.html" target="_self">wxWindow::ChildrenRepositioningGuard</a></td><td class="desc">Helper for ensuring <a class="el" href="classwx_window.html#a1203fbd238d781253b44e0e459532301" title="Fix child window positions after setting all of them at once.">EndRepositioningChildren()</a> is called correctly</td></tr>
<tr id="row_3_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_image_1_1_h_s_v_value.html" target="_self">wxImage::HSVValue</a></td><td class="desc">A simple class which stores hue, saturation and value as doubles in the range 0.0-1.0</td></tr>
<tr id="row_4_" class="even"><td class="entry"><img id="arr_4_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('4_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><b>istream</b></td><td class="desc"></td></tr>
<tr id="row_4_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_std_input_stream.html" target="_self">wxStdInputStream</a></td><td class="desc">WxStdInputStream is a std::istream derived stream which reads from a <a class="el" href="classwx_input_stream.html" title="wxInputStream is an abstract base class which may not be used directly.">wxInputStream</a></td></tr>
<tr id="row_5_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_pixel_data_1_1_iterator.html" target="_self">wxPixelData< Image, PixelFormat >::Iterator</a></td><td class="desc">The iterator of class <a class="el" href="classwx_pixel_data.html" title="A class template with ready to use implementations for getting direct and efficient access to wxBitma...">wxPixelData</a></td></tr>
<tr id="row_6_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_file_type_1_1_message_parameters.html" target="_self">wxFileType::MessageParameters</a></td><td class="desc">Class representing message parameters</td></tr>
<tr id="row_7_"><td class="entry"><img id="arr_7_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('7_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><b>ostream</b></td><td class="desc"></td></tr>
<tr id="row_7_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_std_output_stream.html" target="_self">wxStdOutputStream</a></td><td class="desc">WxStdOutputStream is a std::ostream derived stream which writes to a <a class="el" href="classwx_output_stream.html" title="wxOutputStream is an abstract base class which may not be used directly.">wxOutputStream</a></td></tr>
<tr id="row_8_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_image_1_1_r_g_b_value.html" target="_self">wxImage::RGBValue</a></td><td class="desc">A simple class which stores red, green and blue values as 8 bit unsigned integers in the range of 0-255</td></tr>
<tr id="row_9_"><td class="entry"><img id="arr_9_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('9_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><b>streambuf</b></td><td class="desc"></td></tr>
<tr id="row_9_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_std_input_stream_buffer.html" target="_self">wxStdInputStreamBuffer</a></td><td class="desc">WxStdInputStreamBuffer is a std::streambuf derived stream buffer which reads from a <a class="el" href="classwx_input_stream.html" title="wxInputStream is an abstract base class which may not be used directly.">wxInputStream</a></td></tr>
<tr id="row_9_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_std_output_stream_buffer.html" target="_self">wxStdOutputStreamBuffer</a></td><td class="desc">WxStdOutputStreamBuffer is a std::streambuf derived stream buffer which writes to a <a class="el" href="classwx_output_stream.html" title="wxOutputStream is an abstract base class which may not be used directly.">wxOutputStream</a></td></tr>
<tr id="row_10_" class="even"><td class="entry"><img id="arr_10_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('10_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><b>T</b></td><td class="desc"></td></tr>
<tr id="row_10_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_10_0_" src="ftv2plastnode.png" alt="\" width="16" height="22" onclick="toggleFolder('10_0_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_scrolled.html" target="_self">wxScrolled< T ></a></td><td class="desc">The <a class="el" href="classwx_scrolled.html" title="The wxScrolled class manages scrolling for its client area, transforming the coordinates according to...">wxScrolled</a> class manages scrolling for its client area, transforming the coordinates according to the scrollbar positions, and setting the scroll positions, thumb sizes and ranges according to the area in view</td></tr>
<tr id="row_10_0_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_grid.html" target="_self">wxGrid</a></td><td class="desc">WxGrid and its related classes are used for displaying and editing tabular data</td></tr>
<tr id="row_10_0_1_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_html_window.html" target="_self">wxHtmlWindow</a></td><td class="desc">WxHtmlWindow is probably the only class you will directly use unless you want to do something special (like adding new tag handlers or MIME filters)</td></tr>
<tr id="row_10_0_2_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_preview_canvas.html" target="_self">wxPreviewCanvas</a></td><td class="desc">A preview canvas is the default canvas used by the print preview system to display the preview</td></tr>
<tr id="row_11_"><td class="entry"><img id="arr_11_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('11_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><b>template wxPixelDataIn< PixelFormat ></b></td><td class="desc"></td></tr>
<tr id="row_11_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_pixel_data.html" target="_self">wxPixelData< Image, PixelFormat ></a></td><td class="desc">A class template with ready to use implementations for getting direct and efficient access to <a class="el" href="classwx_bitmap.html" title="This class encapsulates the concept of a platform-dependent bitmap, either monochrome or colour or co...">wxBitmap</a>'s internal data and <a class="el" href="classwx_image.html" title="This class encapsulates a platform-independent image.">wxImage</a>'s internal data through a standard interface</td></tr>
<tr id="row_12_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_date_time_1_1_time_zone.html" target="_self">wxDateTime::TimeZone</a></td><td class="desc">Class representing a time zone</td></tr>
<tr id="row_13_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structwx_date_time_1_1_tm.html" target="_self">wxDateTime::Tm</a></td><td class="desc">Contains broken down date-time representation</td></tr>
<tr id="row_14_" class="even"><td class="entry"><img id="arr_14_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('14_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><b>W</b></td><td class="desc"></td></tr>
<tr id="row_14_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_custom_background_window.html" target="_self">wxCustomBackgroundWindow< W ></a></td><td class="desc">A helper class making it possible to use custom background for any window</td></tr>
<tr id="row_14_1_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_navigation_enabled.html" target="_self">wxNavigationEnabled< W ></a></td><td class="desc">A helper class implementing TAB navigation among the window children</td></tr>
<tr id="row_15_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_about_dialog_info.html" target="_self">wxAboutDialogInfo</a></td><td class="desc">WxAboutDialogInfo contains information shown in the standard <em>About</em> dialog displayed by the <a class="el" href="group__group__funcmacro__dialog.html#ga6d8198c95b97786f206abfde010a4d8f" title="This function shows the standard about dialog containing the information specified in info...">wxAboutBox()</a> function</td></tr>
<tr id="row_16_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_accelerator_entry.html" target="_self">wxAcceleratorEntry</a></td><td class="desc">An object used by an application wishing to create an accelerator table (see <a class="el" href="classwx_accelerator_table.html" title="An accelerator table allows the application to specify a table of keyboard shortcuts for menu or butt...">wxAcceleratorTable</a>)</td></tr>
<tr id="row_17_"><td class="entry"><img id="arr_17_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('17_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_affine_matrix2_d_base.html" target="_self">wxAffineMatrix2DBase</a></td><td class="desc">A 2x3 matrix representing an affine 2D transformation</td></tr>
<tr id="row_17_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_affine_matrix2_d.html" target="_self">wxAffineMatrix2D</a></td><td class="desc">A 3x2 matrix representing an affine 2D transformation</td></tr>
<tr id="row_18_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_any.html" target="_self">wxAny</a></td><td class="desc">Container for any type</td></tr>
<tr id="row_19_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="unionwx_any_value_buffer.html" target="_self">wxAnyValueBuffer</a></td><td class="desc">Type for buffer within <a class="el" href="classwx_any.html" title="The wxAny class represents a container for any type.">wxAny</a> for holding data</td></tr>
<tr id="row_20_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_any_value_type.html" target="_self">wxAnyValueType</a></td><td class="desc">WxAnyValueType is base class for value type functionality for C++ data types used with <a class="el" href="classwx_any.html" title="The wxAny class represents a container for any type.">wxAny</a></td></tr>
<tr id="row_21_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_app_traits.html" target="_self">wxAppTraits</a></td><td class="desc">Defines various configurable aspects of a <a class="el" href="classwx_app.html" title="The wxApp class represents the application itself when wxUSE_GUI=1.">wxApp</a></td></tr>
<tr id="row_22_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_archive_iterator.html" target="_self">wxArchiveIterator</a></td><td class="desc">An input iterator template class that can be used to transfer an archive's catalogue to a container</td></tr>
<tr id="row_23_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_archive_notifier.html" target="_self">wxArchiveNotifier</a></td><td class="desc">If you need to know when a <a class="el" href="classwx_archive_input_stream.html" title="This is an abstract base class which serves as a common interface to archive input streams such as wx...">wxArchiveInputStream</a> updates a <a class="el" href="classwx_archive_entry.html" title="This is an abstract base class which serves as a common interface to archive entry classes such as wx...">wxArchiveEntry</a> object, you can create a notifier by deriving from this abstract base class, overriding <a class="el" href="classwx_archive_notifier.html#aabc8d85fc2f85b38a761e3b4ccf74f5a" title="This method must be overridden in your derived class.">wxArchiveNotifier::OnEntryUpdated</a></td></tr>
<tr id="row_24_" class="even"><td class="entry"><img id="arr_24_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('24_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><b>wxArray</b></td><td class="desc"></td></tr>
<tr id="row_24_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_24_0_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('24_0_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_array_string.html" target="_self">wxArrayString</a></td><td class="desc">WxArrayString is an efficient container for storing <a class="el" href="classwx_string.html" title="String class for passing textual data to or receiving it from wxWidgets.">wxString</a> objects</td></tr>
<tr id="row_24_0_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_path_list.html" target="_self">wxPathList</a></td><td class="desc">The path list is a convenient way of storing a number of directories, and when presented with a filename without a directory, searching for an existing file in those directories</td></tr>
<tr id="row_24_1_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_sorted_array_string.html" target="_self">wxSortedArrayString</a></td><td class="desc">WxSortedArrayString is an efficient container for storing <a class="el" href="classwx_string.html" title="String class for passing textual data to or receiving it from wxWidgets.">wxString</a> objects which always keeps the string in alphabetical order</td></tr>
<tr id="row_25_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_array_3_01_t_01_4.html" target="_self">wxArray< T ></a></td><td class="desc">This section describes the so called <em>"dynamic arrays"</em> </td></tr>
<tr id="row_26_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_aui_dock_art.html" target="_self">wxAuiDockArt</a></td><td class="desc">WxAuiDockArt is part of the wxAUI class framework</td></tr>
<tr id="row_27_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_aui_pane_info.html" target="_self">wxAuiPaneInfo</a></td><td class="desc">WxAuiPaneInfo is part of the wxAUI class framework</td></tr>
<tr id="row_28_" class="even"><td class="entry"><img id="arr_28_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('28_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_aui_tab_art.html" target="_self">wxAuiTabArt</a></td><td class="desc">Tab art provider defines all the drawing functions used by <a class="el" href="classwx_aui_notebook.html" title="wxAuiNotebook is part of the wxAUI class framework, which represents a notebook control, managing multiple windows with associated tabs.">wxAuiNotebook</a></td></tr>
<tr id="row_28_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_aui_default_tab_art.html" target="_self">wxAuiDefaultTabArt</a></td><td class="desc">Default art provider for <a class="el" href="classwx_aui_notebook.html" title="wxAuiNotebook is part of the wxAUI class framework, which represents a notebook control, managing multiple windows with associated tabs.">wxAuiNotebook</a></td></tr>
<tr id="row_28_1_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_aui_simple_tab_art.html" target="_self">wxAuiSimpleTabArt</a></td><td class="desc">Another standard tab art provider for <a class="el" href="classwx_aui_notebook.html" title="wxAuiNotebook is part of the wxAUI class framework, which represents a notebook control, managing multiple windows with associated tabs.">wxAuiNotebook</a></td></tr>
<tr id="row_29_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_aui_tab_container.html" target="_self">wxAuiTabContainer</a></td><td class="desc">WxAuiTabContainer is a class which contains information about each tab</td></tr>
<tr id="row_30_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_aui_tab_container_button.html" target="_self">wxAuiTabContainerButton</a></td><td class="desc">A simple class which holds information about <a class="el" href="classwx_aui_notebook.html" title="wxAuiNotebook is part of the wxAUI class framework, which represents a notebook control, managing multiple windows with associated tabs.">wxAuiNotebook</a> tab buttons and their state</td></tr>
<tr id="row_31_"><td class="entry"><img id="arr_31_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('31_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_aui_tool_bar_art.html" target="_self">wxAuiToolBarArt</a></td><td class="desc">WxAuiToolBarArt is part of the wxAUI class framework</td></tr>
<tr id="row_31_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_aui_default_tool_bar_art.html" target="_self">wxAuiDefaultToolBarArt</a></td><td class="desc">WxAuiDefaultToolBarArt is part of the wxAUI class framework</td></tr>
<tr id="row_32_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_aui_tool_bar_item.html" target="_self">wxAuiToolBarItem</a></td><td class="desc">WxAuiToolBarItem is part of the wxAUI class framework, representing a toolbar element</td></tr>
<tr id="row_33_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_brush_list.html" target="_self">wxBrushList</a></td><td class="desc">A brush list is a list containing all brushes which have been created</td></tr>
<tr id="row_34_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_busy_cursor.html" target="_self">wxBusyCursor</a></td><td class="desc">This class makes it easy to tell your user that the program is temporarily busy</td></tr>
<tr id="row_35_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_busy_info.html" target="_self">wxBusyInfo</a></td><td class="desc">This class makes it easy to tell your user that the program is temporarily busy</td></tr>
<tr id="row_36_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_calendar_date_attr.html" target="_self">wxCalendarDateAttr</a></td><td class="desc">WxCalendarDateAttr is a custom attributes for a calendar date</td></tr>
<tr id="row_37_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_caret.html" target="_self">wxCaret</a></td><td class="desc">A caret is a blinking cursor showing the position where the typed text will appear</td></tr>
<tr id="row_38_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_class_info.html" target="_self">wxClassInfo</a></td><td class="desc">This class stores meta-information about classes</td></tr>
<tr id="row_39_"><td class="entry"><img id="arr_39_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('39_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_client_data.html" target="_self">wxClientData</a></td><td class="desc">All classes deriving from <a class="el" href="classwx_evt_handler.html" title="A class that can handle events from the windowing system.">wxEvtHandler</a> (such as all controls and <a class="el" href="classwx_app.html" title="The wxApp class represents the application itself when wxUSE_GUI=1.">wxApp</a>) can hold arbitrary data which is here referred to as "client data"</td></tr>
<tr id="row_39_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_string_client_data.html" target="_self">wxStringClientData</a></td><td class="desc">Predefined client data class for holding a string</td></tr>
<tr id="row_39_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_tree_item_data.html" target="_self">wxTreeItemData</a></td><td class="desc">WxTreeItemData is some (arbitrary) user class associated with some item</td></tr>
<tr id="row_40_" class="even"><td class="entry"><img id="arr_40_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('40_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_client_data_container.html" target="_self">wxClientDataContainer</a></td><td class="desc">This class is a mixin that provides storage and management of "client data"</td></tr>
<tr id="row_40_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_grid_cell_attr.html" target="_self">wxGridCellAttr</a></td><td class="desc">This class can be used to alter the cells' appearance in the grid by changing their attributes from the defaults</td></tr>
<tr id="row_40_1_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_grid_cell_attr_provider.html" target="_self">wxGridCellAttrProvider</a></td><td class="desc">Class providing attributes to be used for the grid cells</td></tr>
<tr id="row_40_2_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_40_2_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('40_2_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_grid_cell_editor.html" target="_self">wxGridCellEditor</a></td><td class="desc">This class is responsible for providing and manipulating the in-place edit controls for the grid</td></tr>
<tr id="row_40_2_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_grid_cell_bool_editor.html" target="_self">wxGridCellBoolEditor</a></td><td class="desc">Grid cell editor for boolean data</td></tr>
<tr id="row_40_2_1_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_40_2_1_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('40_2_1_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_grid_cell_choice_editor.html" target="_self">wxGridCellChoiceEditor</a></td><td class="desc">Grid cell editor for string data providing the user a choice from a list of strings</td></tr>
<tr id="row_40_2_1_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_grid_cell_enum_editor.html" target="_self">wxGridCellEnumEditor</a></td><td class="desc">Grid cell editor which displays an enum number as a textual equivalent (eg</td></tr>
<tr id="row_40_2_2_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_40_2_2_" src="ftv2plastnode.png" alt="\" width="16" height="22" onclick="toggleFolder('40_2_2_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_grid_cell_text_editor.html" target="_self">wxGridCellTextEditor</a></td><td class="desc">Grid cell editor for string/text data</td></tr>
<tr id="row_40_2_2_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_grid_cell_auto_wrap_string_editor.html" target="_self">wxGridCellAutoWrapStringEditor</a></td><td class="desc">Grid cell editor for wrappable string/text data</td></tr>
<tr id="row_40_2_2_1_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_grid_cell_float_editor.html" target="_self">wxGridCellFloatEditor</a></td><td class="desc">The editor for floating point numbers data</td></tr>
<tr id="row_40_2_2_2_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_grid_cell_number_editor.html" target="_self">wxGridCellNumberEditor</a></td><td class="desc">Grid cell editor for numeric integer data</td></tr>
<tr id="row_40_3_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_40_3_" src="ftv2plastnode.png" alt="\" width="16" height="22" onclick="toggleFolder('40_3_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_grid_cell_renderer.html" target="_self">wxGridCellRenderer</a></td><td class="desc">This class is responsible for actually drawing the cell in the grid</td></tr>
<tr id="row_40_3_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_grid_cell_bool_renderer.html" target="_self">wxGridCellBoolRenderer</a></td><td class="desc">This class may be used to format boolean data in a cell</td></tr>
<tr id="row_40_3_1_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img id="arr_40_3_1_" src="ftv2plastnode.png" alt="\" width="16" height="22" onclick="toggleFolder('40_3_1_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_grid_cell_string_renderer.html" target="_self">wxGridCellStringRenderer</a></td><td class="desc">This class may be used to format string data in a cell; it is the default for string cells</td></tr>
<tr id="row_40_3_1_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_grid_cell_auto_wrap_string_renderer.html" target="_self">wxGridCellAutoWrapStringRenderer</a></td><td class="desc">This class may be used to format string data in a cell</td></tr>
<tr id="row_40_3_1_1_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_grid_cell_date_time_renderer.html" target="_self">wxGridCellDateTimeRenderer</a></td><td class="desc">This class may be used to format a date/time data in a cell</td></tr>
<tr id="row_40_3_1_2_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_grid_cell_enum_renderer.html" target="_self">wxGridCellEnumRenderer</a></td><td class="desc">This class may be used to render in a cell a number as a textual equivalent</td></tr>
<tr id="row_40_3_1_3_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_grid_cell_float_renderer.html" target="_self">wxGridCellFloatRenderer</a></td><td class="desc">This class may be used to format floating point data in a cell</td></tr>
<tr id="row_40_3_1_4_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_grid_cell_number_renderer.html" target="_self">wxGridCellNumberRenderer</a></td><td class="desc">This class may be used to format integer data in a cell</td></tr>
<tr id="row_41_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structwx_cmd_line_entry_desc.html" target="_self">wxCmdLineEntryDesc</a></td><td class="desc">The structure <a class="el" href="structwx_cmd_line_entry_desc.html" title="The structure wxCmdLineEntryDesc is used to describe a command line switch, option or parameter...">wxCmdLineEntryDesc</a> is used to describe a command line switch, option or parameter</td></tr>
<tr id="row_42_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_cmd_line_parser.html" target="_self">wxCmdLineParser</a></td><td class="desc">WxCmdLineParser is a class for parsing the command line</td></tr>
<tr id="row_43_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_colour_database.html" target="_self">wxColourDatabase</a></td><td class="desc">WxWidgets maintains a database of standard RGB colours for a predefined set of named colours</td></tr>
<tr id="row_44_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structwx_combo_ctrl_features.html" target="_self">wxComboCtrlFeatures</a></td><td class="desc">Features enabled for <a class="el" href="classwx_combo_ctrl.html" title="A combo control is a generic combobox that allows totally custom popup.">wxComboCtrl</a></td></tr>
<tr id="row_45_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_combo_popup.html" target="_self">wxComboPopup</a></td><td class="desc">In order to use a custom popup with <a class="el" href="classwx_combo_ctrl.html" title="A combo control is a generic combobox that allows totally custom popup.">wxComboCtrl</a>, an interface class must be derived from <a class="el" href="classwx_combo_popup.html" title="In order to use a custom popup with wxComboCtrl, an interface class must be derived from wxComboPopup...">wxComboPopup</a></td></tr>
<tr id="row_46_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_condition.html" target="_self">wxCondition</a></td><td class="desc">WxCondition variables correspond to pthread conditions or to Win32 event objects</td></tr>
<tr id="row_47_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_config_path_changer.html" target="_self">wxConfigPathChanger</a></td><td class="desc">A handy little class which changes the current path in a wxConfig object and restores it in dtor</td></tr>
<tr id="row_48_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_critical_section.html" target="_self">wxCriticalSection</a></td><td class="desc">A critical section object is used for exactly the same purpose as a <a class="el" href="classwx_mutex.html" title="A mutex object is a synchronization object whose state is set to signaled when it is not owned by any...">wxMutex</a></td></tr>
<tr id="row_49_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_critical_section_locker.html" target="_self">wxCriticalSectionLocker</a></td><td class="desc">This is a small helper class to be used with <a class="el" href="classwx_critical_section.html" title="A critical section object is used for exactly the same purpose as a wxMutex.">wxCriticalSection</a> objects</td></tr>
<tr id="row_50_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_data_format.html" target="_self">wxDataFormat</a></td><td class="desc">A <a class="el" href="classwx_data_format.html" title="A wxDataFormat is an encapsulation of a platform-specific format handle which is used by the system f...">wxDataFormat</a> is an encapsulation of a platform-specific format handle which is used by the system for the clipboard and drag and drop operations</td></tr>
<tr id="row_51_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_data_input_stream.html" target="_self">wxDataInputStream</a></td><td class="desc">This class provides functions that read binary data types in a portable way</td></tr>
<tr id="row_52_" class="even"><td class="entry"><img id="arr_52_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('52_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_data_object.html" target="_self">wxDataObject</a></td><td class="desc">A <a class="el" href="classwx_data_object.html" title="A wxDataObject represents data that can be copied to or from the clipboard, or dragged and dropped...">wxDataObject</a> represents data that can be copied to or from the clipboard, or dragged and dropped</td></tr>
<tr id="row_52_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_data_object_composite.html" target="_self">wxDataObjectComposite</a></td><td class="desc">WxDataObjectComposite is the simplest <a class="el" href="classwx_data_object.html" title="A wxDataObject represents data that can be copied to or from the clipboard, or dragged and dropped...">wxDataObject</a> derivation which may be used to support multiple formats</td></tr>
<tr id="row_52_1_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_52_1_" src="ftv2plastnode.png" alt="\" width="16" height="22" onclick="toggleFolder('52_1_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_data_object_simple.html" target="_self">wxDataObjectSimple</a></td><td class="desc">This is the simplest possible implementation of the <a class="el" href="classwx_data_object.html" title="A wxDataObject represents data that can be copied to or from the clipboard, or dragged and dropped...">wxDataObject</a> class</td></tr>
<tr id="row_52_1_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_bitmap_data_object.html" target="_self">wxBitmapDataObject</a></td><td class="desc">WxBitmapDataObject is a specialization of <a class="el" href="classwx_data_object.html" title="A wxDataObject represents data that can be copied to or from the clipboard, or dragged and dropped...">wxDataObject</a> for bitmap data</td></tr>
<tr id="row_52_1_1_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_custom_data_object.html" target="_self">wxCustomDataObject</a></td><td class="desc">WxCustomDataObject is a specialization of <a class="el" href="classwx_data_object_simple.html" title="This is the simplest possible implementation of the wxDataObject class.">wxDataObjectSimple</a> for some application-specific data in arbitrary (either custom or one of the standard ones)</td></tr>
<tr id="row_52_1_2_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_file_data_object.html" target="_self">wxFileDataObject</a></td><td class="desc">WxFileDataObject is a specialization of <a class="el" href="classwx_data_object.html" title="A wxDataObject represents data that can be copied to or from the clipboard, or dragged and dropped...">wxDataObject</a> for file names</td></tr>
<tr id="row_52_1_3_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_h_t_m_l_data_object.html" target="_self">wxHTMLDataObject</a></td><td class="desc">WxHTMLDataObject is used for working with HTML-formatted text</td></tr>
<tr id="row_52_1_4_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_rich_text_buffer_data_object.html" target="_self">wxRichTextBufferDataObject</a></td><td class="desc">Implements a rich text data object for clipboard transfer</td></tr>
<tr id="row_52_1_5_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img id="arr_52_1_5_" src="ftv2plastnode.png" alt="\" width="16" height="22" onclick="toggleFolder('52_1_5_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_text_data_object.html" target="_self">wxTextDataObject</a></td><td class="desc">WxTextDataObject is a specialization of <a class="el" href="classwx_data_object_simple.html" title="This is the simplest possible implementation of the wxDataObject class.">wxDataObjectSimple</a> for text data</td></tr>
<tr id="row_52_1_5_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_u_r_l_data_object.html" target="_self">wxURLDataObject</a></td><td class="desc">WxURLDataObject is a <a class="el" href="classwx_data_object.html" title="A wxDataObject represents data that can be copied to or from the clipboard, or dragged and dropped...">wxDataObject</a> containing an URL and can be used e.g</td></tr>
<tr id="row_53_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_data_output_stream.html" target="_self">wxDataOutputStream</a></td><td class="desc">This class provides functions that write binary data types in a portable way</td></tr>
<tr id="row_54_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_data_view_item.html" target="_self">wxDataViewItem</a></td><td class="desc">WxDataViewItem is a small opaque class that represents an item in a <a class="el" href="classwx_data_view_ctrl.html" title="wxDataViewCtrl is a control to display data either in a tree like fashion or in a tabular form or bot...">wxDataViewCtrl</a> in a persistent way, i.e</td></tr>
<tr id="row_55_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_data_view_item_attr.html" target="_self">wxDataViewItemAttr</a></td><td class="desc">This class is used to indicate to a <a class="el" href="classwx_data_view_ctrl.html" title="wxDataViewCtrl is a control to display data either in a tree like fashion or in a tabular form or bot...">wxDataViewCtrl</a> that a certain item (see <a class="el" href="classwx_data_view_item.html" title="wxDataViewItem is a small opaque class that represents an item in a wxDataViewCtrl in a persistent wa...">wxDataViewItem</a>) has extra font attributes for its renderer</td></tr>
<tr id="row_56_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_data_view_model_notifier.html" target="_self">wxDataViewModelNotifier</a></td><td class="desc">A <a class="el" href="classwx_data_view_model_notifier.html" title="A wxDataViewModelNotifier instance is owned by a wxDataViewModel and mirrors its notification interfa...">wxDataViewModelNotifier</a> instance is owned by a <a class="el" href="classwx_data_view_model.html" title="wxDataViewModel is the base class for all data model to be displayed by a wxDataViewCtrl.">wxDataViewModel</a> and mirrors its notification interface</td></tr>
<tr id="row_57_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_date_span.html" target="_self">wxDateSpan</a></td><td class="desc">This class is a "logical time span" and is useful for implementing program logic for such things as "add one month to the date" which, in general, doesn't mean to add 60*60*24*31 seconds to it, but to take the same date the next month (to understand that this is indeed different consider adding one month to Feb, 15 – we want to get Mar, 15, of course)</td></tr>
<tr id="row_58_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_date_time.html" target="_self">wxDateTime</a></td><td class="desc">WxDateTime class represents an absolute moment in time</td></tr>
<tr id="row_59_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_date_time_holiday_authority.html" target="_self">wxDateTimeHolidayAuthority</a></td><td class="desc"></td></tr>
<tr id="row_60_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_date_time_work_days.html" target="_self">wxDateTimeWorkDays</a></td><td class="desc"></td></tr>
<tr id="row_61_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_d_c_brush_changer.html" target="_self">wxDCBrushChanger</a></td><td class="desc">WxDCBrushChanger is a small helper class for setting a brush on a <a class="el" href="classwx_d_c.html" title="A wxDC is a "device context" onto which graphics and text can be drawn.">wxDC</a> and unsetting it automatically in the destructor, restoring the previous one</td></tr>
<tr id="row_62_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_d_c_clipper.html" target="_self">wxDCClipper</a></td><td class="desc">WxDCClipper is a helper class for setting a clipping region on a <a class="el" href="classwx_d_c.html" title="A wxDC is a "device context" onto which graphics and text can be drawn.">wxDC</a> during its lifetime</td></tr>
<tr id="row_63_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_d_c_font_changer.html" target="_self">wxDCFontChanger</a></td><td class="desc">WxDCFontChanger is a small helper class for setting a font on a <a class="el" href="classwx_d_c.html" title="A wxDC is a "device context" onto which graphics and text can be drawn.">wxDC</a> and unsetting it automatically in the destructor, restoring the previous one</td></tr>
<tr id="row_64_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_d_c_overlay.html" target="_self">wxDCOverlay</a></td><td class="desc">Connects an overlay with a drawing DC</td></tr>
<tr id="row_65_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_d_c_pen_changer.html" target="_self">wxDCPenChanger</a></td><td class="desc">WxDCPenChanger is a small helper class for setting a pen on a <a class="el" href="classwx_d_c.html" title="A wxDC is a "device context" onto which graphics and text can be drawn.">wxDC</a> and unsetting it automatically in the destructor, restoring the previous one</td></tr>
<tr id="row_66_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_d_c_text_colour_changer.html" target="_self">wxDCTextColourChanger</a></td><td class="desc">WxDCTextColourChanger is a small helper class for setting a foreground text colour on a <a class="el" href="classwx_d_c.html" title="A wxDC is a "device context" onto which graphics and text can be drawn.">wxDC</a> and unsetting it automatically in the destructor, restoring the previous one</td></tr>
<tr id="row_67_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_d_d_e_server.html" target="_self">wxDDEServer</a></td><td class="desc">A <a class="el" href="classwx_d_d_e_server.html" title="A wxDDEServer object represents the server part of a client-server DDE (Dynamic Data Exchange) conver...">wxDDEServer</a> object represents the server part of a client-server DDE (Dynamic Data Exchange) conversation</td></tr>
<tr id="row_68_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_debug_context.html" target="_self">wxDebugContext</a></td><td class="desc">A class for performing various debugging and memory tracing operations</td></tr>
<tr id="row_69_"><td class="entry"><img id="arr_69_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('69_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_debug_report.html" target="_self">wxDebugReport</a></td><td class="desc">WxDebugReport is used to generate a debug report, containing information about the program current state</td></tr>
<tr id="row_69_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_69_0_" src="ftv2plastnode.png" alt="\" width="16" height="22" onclick="toggleFolder('69_0_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_debug_report_compress.html" target="_self">wxDebugReportCompress</a></td><td class="desc">WxDebugReportCompress is a <a class="el" href="classwx_debug_report.html" title="wxDebugReport is used to generate a debug report, containing information about the program current st...">wxDebugReport</a> which compresses all the files in this debug report into a single ZIP file in its <a class="el" href="classwx_debug_report.html#a3ec35bb65b88aac386a399b27ef940a5" title="Processes this report: the base class simply notifies the user that the report has been generated...">wxDebugReport::Process()</a> function</td></tr>
<tr id="row_69_0_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_debug_report_upload.html" target="_self">wxDebugReportUpload</a></td><td class="desc">This class is used to upload a compressed file using HTTP POST request</td></tr>
<tr id="row_70_" class="even"><td class="entry"><img id="arr_70_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('70_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_debug_report_preview.html" target="_self">wxDebugReportPreview</a></td><td class="desc">This class presents the debug report to the user and allows him to veto report entirely or remove some parts of it</td></tr>
<tr id="row_70_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_debug_report_preview_std.html" target="_self">wxDebugReportPreviewStd</a></td><td class="desc">WxDebugReportPreviewStd is a standard debug report preview window</td></tr>
<tr id="row_71_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_dialog_layout_adapter.html" target="_self">wxDialogLayoutAdapter</a></td><td class="desc">This abstract class is the base for classes that help wxWidgets perform run-time layout adaptation of dialogs</td></tr>
<tr id="row_72_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_dial_up_manager.html" target="_self">wxDialUpManager</a></td><td class="desc">This class encapsulates functions dealing with verifying the connection status of the workstation (connected to the Internet via a direct connection, connected through a modem or not connected at all) and to establish this connection if possible/required (i.e</td></tr>
<tr id="row_73_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_dir.html" target="_self">wxDir</a></td><td class="desc">WxDir is a portable equivalent of Unix open/read/closedir functions which allow enumerating of the files in a directory</td></tr>
<tr id="row_74_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_dir_traverser.html" target="_self">wxDirTraverser</a></td><td class="desc">WxDirTraverser is an abstract interface which must be implemented by objects passed to <a class="el" href="classwx_dir.html#a7621f55a0dff2a394e6da1a61e427df1" title="Enumerate all files and directories under the given directory.">wxDir::Traverse()</a> function</td></tr>
<tr id="row_75_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_display.html" target="_self">wxDisplay</a></td><td class="desc">Determines the sizes and locations of displays connected to the system</td></tr>
<tr id="row_76_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_drop_source.html" target="_self">wxDropSource</a></td><td class="desc">This class represents a source for a drag and drop operation</td></tr>
<tr id="row_77_"><td class="entry"><img id="arr_77_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('77_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_drop_target.html" target="_self">wxDropTarget</a></td><td class="desc">This class represents a target for a drag and drop operation</td></tr>
<tr id="row_77_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_file_drop_target.html" target="_self">wxFileDropTarget</a></td><td class="desc">This is a drop target which accepts files (dragged from File Manager or Explorer)</td></tr>
<tr id="row_77_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_text_drop_target.html" target="_self">wxTextDropTarget</a></td><td class="desc">A predefined drop target for dealing with text data</td></tr>
<tr id="row_78_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_dynamic_library.html" target="_self">wxDynamicLibrary</a></td><td class="desc">WxDynamicLibrary is a class representing dynamically loadable library (Windows DLL, shared library under Unix etc)</td></tr>
<tr id="row_79_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_dynamic_library_details.html" target="_self">wxDynamicLibraryDetails</a></td><td class="desc">This class is used for the objects returned by the <a class="el" href="classwx_dynamic_library.html#a89df5540b1dc3aa3886122d8fc8e1e84" title="This static method returns a wxArray containing the details of all modules loaded into the address sp...">wxDynamicLibrary::ListLoaded()</a> method and contains the information about a single module loaded into the address space of the current process</td></tr>
<tr id="row_80_" class="even"><td class="entry"><img id="arr_80_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('80_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_event_filter.html" target="_self">wxEventFilter</a></td><td class="desc">A global event filter for pre-processing all the events generated in the program</td></tr>
<tr id="row_80_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_80_0_" src="ftv2plastnode.png" alt="\" width="16" height="22" onclick="toggleFolder('80_0_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_app_console.html" target="_self">wxAppConsole</a></td><td class="desc">This class is essential for writing console-only or hybrid apps without having to define <code>wxUSE_GUI=0</code> </td></tr>
<tr id="row_80_0_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_app.html" target="_self">wxApp</a></td><td class="desc">Application itself when <code>wxUSE_GUI=1</code> </td></tr>
<tr id="row_81_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_event_loop_activator.html" target="_self">wxEventLoopActivator</a></td><td class="desc">Makes an event loop temporarily active</td></tr>
<tr id="row_82_" class="even"><td class="entry"><img id="arr_82_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('82_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_event_loop_base.html" target="_self">wxEventLoopBase</a></td><td class="desc">Base class for all event loop implementations</td></tr>
<tr id="row_82_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_g_u_i_event_loop.html" target="_self">wxGUIEventLoop</a></td><td class="desc">A generic implementation of the GUI event loop</td></tr>
<tr id="row_83_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structwx_execute_env.html" target="_self">wxExecuteEnv</a></td><td class="desc">This structure can optionally be passed to <a class="el" href="group__group__funcmacro__procctrl.html#gaa276e9e676e26bafeec3141b73399b33" title="Executes another program in Unix or Windows.">wxExecute()</a> to specify additional options to use for the child process</td></tr>
<tr id="row_84_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_f_file.html" target="_self">wxFFile</a></td><td class="desc">WxFFile implements buffered file I/O</td></tr>
<tr id="row_85_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_file.html" target="_self">wxFile</a></td><td class="desc">A <a class="el" href="classwx_file.html" title="A wxFile performs raw file I/O.">wxFile</a> performs raw file I/O</td></tr>
<tr id="row_86_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_file_name.html" target="_self">wxFileName</a></td><td class="desc">WxFileName encapsulates a file name</td></tr>
<tr id="row_87_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_file_type.html" target="_self">wxFileType</a></td><td class="desc">This class holds information about a given <em>file</em> type</td></tr>
<tr id="row_88_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_file_type_info.html" target="_self">wxFileTypeInfo</a></td><td class="desc">Container of information about <a class="el" href="classwx_file_type.html" title="This class holds information about a given file type.">wxFileType</a></td></tr>
<tr id="row_89_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_font_enumerator.html" target="_self">wxFontEnumerator</a></td><td class="desc">WxFontEnumerator enumerates either all available fonts on the system or only the ones with given attributes - either only fixed-width (suited for use in programs such as terminal emulators and the like) or the fonts available in the given encoding)</td></tr>
<tr id="row_90_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_font_info.html" target="_self">wxFontInfo</a></td><td class="desc">This class is a helper used for <a class="el" href="classwx_font.html" title="A font is an object which determines the appearance of text.">wxFont</a> creation using named parameter idiom: it allows to specify various <a class="el" href="classwx_font.html" title="A font is an object which determines the appearance of text.">wxFont</a> attributes using the chained calls to its clearly named methods instead of passing them in the fixed order to <a class="el" href="classwx_font.html" title="A font is an object which determines the appearance of text.">wxFont</a> constructors</td></tr>
<tr id="row_91_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_font_list.html" target="_self">wxFontList</a></td><td class="desc">A font list is a list containing all fonts which have been created</td></tr>
<tr id="row_92_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_font_mapper.html" target="_self">wxFontMapper</a></td><td class="desc">WxFontMapper manages user-definable correspondence between logical font names and the fonts present on the machine</td></tr>
<tr id="row_93_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structwx_font_metrics.html" target="_self">wxFontMetrics</a></td><td class="desc">Simple collection of various font metrics</td></tr>
<tr id="row_94_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_f_s_volume.html" target="_self">wxFSVolume</a></td><td class="desc">WxFSVolume represents a volume (also known as 'drive') in a file system under wxMSW</td></tr>
<tr id="row_95_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_g_b_position.html" target="_self">wxGBPosition</a></td><td class="desc">This class represents the position of an item in a virtual grid of rows and columns managed by a <a class="el" href="classwx_grid_bag_sizer.html" title="A wxSizer that can lay out items in a virtual grid like a wxFlexGridSizer but in this case explicit p...">wxGridBagSizer</a></td></tr>
<tr id="row_96_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_g_b_span.html" target="_self">wxGBSpan</a></td><td class="desc">This class is used to hold the row and column spanning attributes of items in a <a class="el" href="classwx_grid_bag_sizer.html" title="A wxSizer that can lay out items in a virtual grid like a wxFlexGridSizer but in this case explicit p...">wxGridBagSizer</a></td></tr>
<tr id="row_97_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_generic_about_dialog.html" target="_self">wxGenericAboutDialog</a></td><td class="desc">This class defines a customizable <em>About</em> dialog</td></tr>
<tr id="row_98_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_graphics_gradient_stop.html" target="_self">wxGraphicsGradientStop</a></td><td class="desc">Represents a single gradient stop in a collection of gradient stops as represented by <a class="el" href="classwx_graphics_gradient_stops.html" title="Represents a collection of wxGraphicGradientStop values for use with CreateLinearGradientBrush and Cr...">wxGraphicsGradientStops</a></td></tr>
<tr id="row_99_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_graphics_gradient_stops.html" target="_self">wxGraphicsGradientStops</a></td><td class="desc">Represents a collection of wxGraphicGradientStop values for use with CreateLinearGradientBrush and CreateRadialGradientBrush</td></tr>
<tr id="row_100_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_grid_cell_coords.html" target="_self">wxGridCellCoords</a></td><td class="desc">Represents coordinates of a grid cell</td></tr>
<tr id="row_101_"><td class="entry"><img id="arr_101_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('101_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_grid_corner_header_renderer.html" target="_self">wxGridCornerHeaderRenderer</a></td><td class="desc">Base class for corner window renderer</td></tr>
<tr id="row_101_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_grid_corner_header_renderer_default.html" target="_self">wxGridCornerHeaderRendererDefault</a></td><td class="desc">Default corner window renderer</td></tr>
<tr id="row_101_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_101_1_" src="ftv2plastnode.png" alt="\" width="16" height="22" onclick="toggleFolder('101_1_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_grid_header_labels_renderer.html" target="_self">wxGridHeaderLabelsRenderer</a></td><td class="desc">Common base class for row and column headers renderers</td></tr>
<tr id="row_101_1_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img id="arr_101_1_0_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('101_1_0_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_grid_column_header_renderer.html" target="_self">wxGridColumnHeaderRenderer</a></td><td class="desc">Base class for column headers renderer</td></tr>
<tr id="row_101_1_0_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_grid_column_header_renderer_default.html" target="_self">wxGridColumnHeaderRendererDefault</a></td><td class="desc">Default column header renderer</td></tr>
<tr id="row_101_1_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img id="arr_101_1_1_" src="ftv2plastnode.png" alt="\" width="16" height="22" onclick="toggleFolder('101_1_1_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_grid_row_header_renderer.html" target="_self">wxGridRowHeaderRenderer</a></td><td class="desc">Base class for row headers renderer</td></tr>
<tr id="row_101_1_1_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_grid_row_header_renderer_default.html" target="_self">wxGridRowHeaderRendererDefault</a></td><td class="desc">Default row header renderer</td></tr>
<tr id="row_102_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structwx_grid_sizes_info.html" target="_self">wxGridSizesInfo</a></td><td class="desc">WxGridSizesInfo stores information about sizes of all <a class="el" href="classwx_grid.html" title="wxGrid and its related classes are used for displaying and editing tabular data.">wxGrid</a> rows or columns</td></tr>
<tr id="row_103_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_grid_table_message.html" target="_self">wxGridTableMessage</a></td><td class="desc">A simple class used to pass messages from the table to the grid</td></tr>
<tr id="row_104_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_grid_update_locker.html" target="_self">wxGridUpdateLocker</a></td><td class="desc">This small class can be used to prevent <a class="el" href="classwx_grid.html" title="wxGrid and its related classes are used for displaying and editing tabular data.">wxGrid</a> from redrawing during its lifetime by calling <a class="el" href="classwx_grid.html#ae51929a4e2843e246abe01d79c5a9183" title="Increments the grid's batch count.">wxGrid::BeginBatch()</a> in its constructor and <a class="el" href="classwx_grid.html#a2f1a59dabc5875761c81b588604451ff" title="Decrements the grid's batch count.">wxGrid::EndBatch()</a> in its destructor</td></tr>
<tr id="row_105_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_hash_map.html" target="_self">wxHashMap</a></td><td class="desc">This is a simple, type-safe, and reasonably efficient hash map class, whose interface is a subset of the interface of STL containers</td></tr>
<tr id="row_106_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_hash_set.html" target="_self">wxHashSet</a></td><td class="desc">This is a simple, type-safe, and reasonably efficient hash set class, whose interface is a subset of the interface of STL containers</td></tr>
<tr id="row_107_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structwx_header_button_params.html" target="_self">wxHeaderButtonParams</a></td><td class="desc">This <code>struct</code> can optionally be used with <a class="el" href="classwx_renderer_native.html#a65c10b87b311b5278890026b26c525b1" title="Draw the header control button (used, for example, by wxListCtrl).">wxRendererNative::DrawHeaderButton()</a> to specify custom values used to draw the text or bitmap label</td></tr>
<tr id="row_108_" class="even"><td class="entry"><img id="arr_108_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('108_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_header_column.html" target="_self">wxHeaderColumn</a></td><td class="desc">Represents a column header in controls displaying tabular data such as <a class="el" href="classwx_data_view_ctrl.html" title="wxDataViewCtrl is a control to display data either in a tree like fashion or in a tabular form or bot...">wxDataViewCtrl</a> or <a class="el" href="classwx_grid.html" title="wxGrid and its related classes are used for displaying and editing tabular data.">wxGrid</a></td></tr>
<tr id="row_108_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_108_0_" src="ftv2plastnode.png" alt="\" width="16" height="22" onclick="toggleFolder('108_0_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_settable_header_column.html" target="_self">wxSettableHeaderColumn</a></td><td class="desc">Adds methods to set the column attributes to <a class="el" href="classwx_header_column.html" title="Represents a column header in controls displaying tabular data such as wxDataViewCtrl or wxGrid...">wxHeaderColumn</a></td></tr>
<tr id="row_108_0_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_data_view_column.html" target="_self">wxDataViewColumn</a></td><td class="desc">This class represents a column in a <a class="el" href="classwx_data_view_ctrl.html" title="wxDataViewCtrl is a control to display data either in a tree like fashion or in a tabular form or bot...">wxDataViewCtrl</a></td></tr>
<tr id="row_108_0_1_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_header_column_simple.html" target="_self">wxHeaderColumnSimple</a></td><td class="desc">Simple container for the information about the column</td></tr>
<tr id="row_109_"><td class="entry"><img id="arr_109_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('109_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_help_provider.html" target="_self">wxHelpProvider</a></td><td class="desc">WxHelpProvider is an abstract class used by a program implementing context-sensitive help to show the help text for the given window</td></tr>
<tr id="row_109_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_109_0_" src="ftv2plastnode.png" alt="\" width="16" height="22" onclick="toggleFolder('109_0_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_simple_help_provider.html" target="_self">wxSimpleHelpProvider</a></td><td class="desc">WxSimpleHelpProvider is an implementation of <a class="el" href="classwx_help_provider.html" title="wxHelpProvider is an abstract class used by a program implementing context-sensitive help to show the...">wxHelpProvider</a> which supports only plain text help strings, and shows the string associated with the control (if any) in a tooltip</td></tr>
<tr id="row_109_0_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_help_controller_help_provider.html" target="_self">wxHelpControllerHelpProvider</a></td><td class="desc">WxHelpControllerHelpProvider is an implementation of <a class="el" href="classwx_help_provider.html" title="wxHelpProvider is an abstract class used by a program implementing context-sensitive help to show the...">wxHelpProvider</a> which supports both context identifiers and plain text help strings</td></tr>
<tr id="row_110_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_html_book_record.html" target="_self">wxHtmlBookRecord</a></td><td class="desc">Helper class for <a class="el" href="classwx_html_help_data.html" title="This class is used by wxHtmlHelpController and wxHtmlHelpFrame to access HTML help items...">wxHtmlHelpData</a></td></tr>
<tr id="row_111_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structwx_html_help_data_item.html" target="_self">wxHtmlHelpDataItem</a></td><td class="desc">Helper class for <a class="el" href="classwx_html_help_data.html" title="This class is used by wxHtmlHelpController and wxHtmlHelpFrame to access HTML help items...">wxHtmlHelpData</a></td></tr>
<tr id="row_112_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_html_modal_help.html" target="_self">wxHtmlModalHelp</a></td><td class="desc">This class uses <a class="el" href="classwx_html_help_controller.html" title="This help controller provides an easy way of displaying HTML help in your application (see HTML Sampl...">wxHtmlHelpController</a> to display help in a modal dialog</td></tr>
<tr id="row_113_"><td class="entry"><img id="arr_113_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('113_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_html_parser.html" target="_self">wxHtmlParser</a></td><td class="desc">Classes derived from this handle the <b>generic</b> parsing of HTML documents: it scans the document and divide it into blocks of tags (where one block consists of beginning and ending tag and of text between these two tags)</td></tr>
<tr id="row_113_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_html_win_parser.html" target="_self">wxHtmlWinParser</a></td><td class="desc">This class is derived from <a class="el" href="classwx_html_parser.html" title="Classes derived from this handle the generic parsing of HTML documents: it scans the document and div...">wxHtmlParser</a> and its main goal is to parse HTML input so that it can be displayed in <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></td></tr>
<tr id="row_114_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_html_rendering_info.html" target="_self">wxHtmlRenderingInfo</a></td><td class="desc">This class contains information given to cells when drawing them</td></tr>
<tr id="row_115_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_html_rendering_state.html" target="_self">wxHtmlRenderingState</a></td><td class="desc">Selection state is passed to <a class="el" href="classwx_html_cell.html#abebd247b545b1885e2a6406a1fc20d0a" title="Renders the cell.">wxHtmlCell::Draw</a> so that it can render itself differently e.g</td></tr>
<tr id="row_116_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_html_rendering_style.html" target="_self">wxHtmlRenderingStyle</a></td><td class="desc">WxHtmlSelection is data holder with information about text selection</td></tr>
<tr id="row_117_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_html_selection.html" target="_self">wxHtmlSelection</a></td><td class="desc"></td></tr>
<tr id="row_118_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_html_tag.html" target="_self">wxHtmlTag</a></td><td class="desc">This class represents a single HTML tag</td></tr>
<tr id="row_119_"><td class="entry"><img id="arr_119_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('119_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_html_window_interface.html" target="_self">wxHtmlWindowInterface</a></td><td class="desc">Abstract interface to a HTML rendering window (such as <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> or <a class="el" href="classwx_html_list_box.html" title="wxHtmlListBox is an implementation of wxVListBox which shows HTML content in the listbox rows...">wxHtmlListBox</a>) that is passed to <a class="el" href="classwx_html_win_parser.html" title="This class is derived from wxHtmlParser and its main goal is to parse HTML input so that it can be di...">wxHtmlWinParser</a></td></tr>
<tr id="row_119_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_html_window.html" target="_self">wxHtmlWindow</a></td><td class="desc">WxHtmlWindow is probably the only class you will directly use unless you want to do something special (like adding new tag handlers or MIME filters)</td></tr>
<tr id="row_120_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_icon_location.html" target="_self">wxIconLocation</a></td><td class="desc">WxIconLocation is a tiny class describing the location of an (external, i.e</td></tr>
<tr id="row_121_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_id_manager.html" target="_self">wxIdManager</a></td><td class="desc">WxIdManager is responsible for allocating and releasing window IDs</td></tr>
<tr id="row_122_" class="even"><td class="entry"><img id="arr_122_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('122_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><b>wxImageHistogramBase</b></td><td class="desc"></td></tr>
<tr id="row_122_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_image_histogram.html" target="_self">wxImageHistogram</a></td><td class="desc"></td></tr>
<tr id="row_123_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_initializer.html" target="_self">wxInitializer</a></td><td class="desc">Create an object of this class on the stack to initialize/cleanup the library automatically</td></tr>
<tr id="row_124_" class="even"><td class="entry"><img id="arr_124_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('124_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_item_container_immutable.html" target="_self">wxItemContainerImmutable</a></td><td class="desc">WxItemContainer defines an interface which is implemented by all controls which have string subitems each of which may be selected</td></tr>
<tr id="row_124_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_124_0_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('124_0_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_item_container.html" target="_self">wxItemContainer</a></td><td class="desc">This class is an abstract base class for some wxWidgets controls which contain several items such as <a class="el" href="classwx_list_box.html" title="A listbox is used to select one or more of a list of strings.">wxListBox</a>, <a class="el" href="classwx_check_list_box.html" title="A wxCheckListBox is like a wxListBox, but allows items to be checked or unchecked.">wxCheckListBox</a>, <a class="el" href="classwx_combo_box.html" title="A combobox is like a combination of an edit control and a listbox.">wxComboBox</a> or <a class="el" href="classwx_choice.html" title="A choice item is used to select one of a list of strings.">wxChoice</a></td></tr>
<tr id="row_124_0_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_124_0_0_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('124_0_0_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_choice.html" target="_self">wxChoice</a></td><td class="desc">A choice item is used to select one of a list of strings</td></tr>
<tr id="row_124_0_0_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_dir_filter_list_ctrl.html" target="_self">wxDirFilterListCtrl</a></td><td class="desc"></td></tr>
<tr id="row_124_0_1_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_124_0_1_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('124_0_1_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_combo_box.html" target="_self">wxComboBox</a></td><td class="desc">A combobox is like a combination of an edit control and a listbox</td></tr>
<tr id="row_124_0_1_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_bitmap_combo_box.html" target="_self">wxBitmapComboBox</a></td><td class="desc">A combobox that displays bitmap in front of the list items</td></tr>
<tr id="row_124_0_2_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_control_with_items.html" target="_self">wxControlWithItems</a></td><td class="desc">This is convenience class that derives from both <a class="el" href="classwx_control.html" title="This is the base class for a control or "widget".">wxControl</a> and <a class="el" href="classwx_item_container.html" title="This class is an abstract base class for some wxWidgets controls which contain several items such as ...">wxItemContainer</a></td></tr>
<tr id="row_124_0_3_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_124_0_3_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('124_0_3_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_list_box.html" target="_self">wxListBox</a></td><td class="desc">A listbox is used to select one or more of a list of strings</td></tr>
<tr id="row_124_0_3_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_124_0_3_0_" src="ftv2plastnode.png" alt="\" width="16" height="22" onclick="toggleFolder('124_0_3_0_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_check_list_box.html" target="_self">wxCheckListBox</a></td><td class="desc">A <a class="el" href="classwx_check_list_box.html" title="A wxCheckListBox is like a wxListBox, but allows items to be checked or unchecked.">wxCheckListBox</a> is like a <a class="el" href="classwx_list_box.html" title="A listbox is used to select one or more of a list of strings.">wxListBox</a>, but allows items to be checked or unchecked</td></tr>
<tr id="row_124_0_3_0_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_rearrange_list.html" target="_self">wxRearrangeList</a></td><td class="desc">A listbox-like control allowing the user to rearrange the items and to enable or disable them</td></tr>
<tr id="row_124_0_4_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_owner_drawn_combo_box.html" target="_self">wxOwnerDrawnComboBox</a></td><td class="desc">WxOwnerDrawnComboBox is a combobox with owner-drawn list items</td></tr>
<tr id="row_124_0_5_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_simple_html_list_box.html" target="_self">wxSimpleHtmlListBox</a></td><td class="desc">WxSimpleHtmlListBox is an implementation of <a class="el" href="classwx_html_list_box.html" title="wxHtmlListBox is an implementation of wxVListBox which shows HTML content in the listbox rows...">wxHtmlListBox</a> which shows HTML content in the listbox rows</td></tr>
<tr id="row_124_1_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_radio_box.html" target="_self">wxRadioBox</a></td><td class="desc">A radio box item is used to select one of number of mutually exclusive choices</td></tr>
<tr id="row_125_"><td class="entry"><img id="arr_125_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('125_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_keyboard_state.html" target="_self">wxKeyboardState</a></td><td class="desc">Provides methods for testing the state of the keyboard modifier keys</td></tr>
<tr id="row_125_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_key_event.html" target="_self">wxKeyEvent</a></td><td class="desc">This event class contains information about key press and release events</td></tr>
<tr id="row_125_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_125_1_" src="ftv2plastnode.png" alt="\" width="16" height="22" onclick="toggleFolder('125_1_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_mouse_state.html" target="_self">wxMouseState</a></td><td class="desc">Represents the mouse state</td></tr>
<tr id="row_125_1_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_mouse_event.html" target="_self">wxMouseEvent</a></td><td class="desc">This event class contains information about the events generated by the mouse: they include mouse buttons press and release events and mouse move events</td></tr>
<tr id="row_126_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structwx_language_info.html" target="_self">wxLanguageInfo</a></td><td class="desc">Encapsulates a <a class="el" href="language_8h.html#a7d1c74ce43b2fb7acf7a6fa438c0ee86" title="The languages supported by wxLocale.">wxLanguage</a> identifier together with OS-specific information related to that language</td></tr>
<tr id="row_127_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structwx_linux_distribution_info.html" target="_self">wxLinuxDistributionInfo</a></td><td class="desc">A structure containing information about a Linux distribution as returned by the <code>lsb_release</code> utility</td></tr>
<tr id="row_128_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_list_3_01_t_01_4.html" target="_self">wxList< T ></a></td><td class="desc">The <a class="el" href="classwx_list_3_01_t_01_4.html" title="The wxList<T> class provides linked list functionality.">wxList<T></a> class provides linked list functionality</td></tr>
<tr id="row_129_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_list_item_attr.html" target="_self">wxListItemAttr</a></td><td class="desc">Represents the attributes (color, font, ...) of a <a class="el" href="classwx_list_ctrl.html" title="A list control presents lists in a number of formats: list view, report view, icon view and small ico...">wxListCtrl</a>'s <a class="el" href="classwx_list_item.html" title="This class stores information about a wxListCtrl item or column.">wxListItem</a></td></tr>
<tr id="row_130_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_locale.html" target="_self">wxLocale</a></td><td class="desc">WxLocale class encapsulates all language-dependent settings and is a generalization of the C locale concept</td></tr>
<tr id="row_131_"><td class="entry"><img id="arr_131_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('131_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_log.html" target="_self">wxLog</a></td><td class="desc">WxLog class defines the interface for the <em>log targets</em> used by wxWidgets logging functions as explained in the <a class="el" href="overview_log.html">Logging Overview</a></td></tr>
<tr id="row_131_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_log_buffer.html" target="_self">wxLogBuffer</a></td><td class="desc">WxLogBuffer is a very simple implementation of log sink which simply collects all the logged messages in a string (except the debug messages which are output in the usual way immediately as we're presumably not interested in collecting them for later)</td></tr>
<tr id="row_131_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_131_1_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('131_1_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_log_chain.html" target="_self">wxLogChain</a></td><td class="desc">This simple class allows you to chain log sinks, that is to install a new sink but keep passing log messages to the old one instead of replacing it completely as <a class="el" href="classwx_log.html#ac7ea85f71c8d3ecd4247f412be410505" title="Sets the specified log target as the active one.">wxLog::SetActiveTarget</a> does</td></tr>
<tr id="row_131_1_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_131_1_0_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('131_1_0_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_log_interposer.html" target="_self">wxLogInterposer</a></td><td class="desc">A special version of <a class="el" href="classwx_log_chain.html" title="This simple class allows you to chain log sinks, that is to install a new sink but keep passing log m...">wxLogChain</a> which uses itself as the new log target</td></tr>
<tr id="row_131_1_0_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_log_window.html" target="_self">wxLogWindow</a></td><td class="desc">This class represents a background log window: to be precise, it collects all log messages in the log frame which it manages but also passes them on to the log target which was active at the moment of its creation</td></tr>
<tr id="row_131_1_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_log_interposer_temp.html" target="_self">wxLogInterposerTemp</a></td><td class="desc">A special version of <a class="el" href="classwx_log_chain.html" title="This simple class allows you to chain log sinks, that is to install a new sink but keep passing log m...">wxLogChain</a> which uses itself as the new log target</td></tr>
<tr id="row_131_2_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_log_gui.html" target="_self">wxLogGui</a></td><td class="desc">This is the default log target for the GUI wxWidgets applications</td></tr>
<tr id="row_131_3_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_log_stderr.html" target="_self">wxLogStderr</a></td><td class="desc">This class can be used to redirect the log messages to a C file stream (not to be confused with C++ streams)</td></tr>
<tr id="row_131_4_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_log_stream.html" target="_self">wxLogStream</a></td><td class="desc">This class can be used to redirect the log messages to a C++ stream</td></tr>
<tr id="row_131_5_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_log_text_ctrl.html" target="_self">wxLogTextCtrl</a></td><td class="desc">Using these target all the log messages can be redirected to a text control</td></tr>
<tr id="row_132_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_log_formatter.html" target="_self">wxLogFormatter</a></td><td class="desc">WxLogFormatter class is used to format the log messages</td></tr>
<tr id="row_133_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_log_null.html" target="_self">wxLogNull</a></td><td class="desc">This class allows you to temporarily suspend logging</td></tr>
<tr id="row_134_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_log_record_info.html" target="_self">wxLogRecordInfo</a></td><td class="desc">Information about a log record (unit of the log output)</td></tr>
<tr id="row_135_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_long_long.html" target="_self">wxLongLong</a></td><td class="desc">This class represents a signed 64 bit long number</td></tr>
<tr id="row_136_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structwx_matrix2_d.html" target="_self">wxMatrix2D</a></td><td class="desc">A simple container for 2x2 matrix</td></tr>
<tr id="row_137_"><td class="entry"><img id="arr_137_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('137_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_m_b_conv.html" target="_self">wxMBConv</a></td><td class="desc">This class is the base class of a hierarchy of classes capable of converting text strings between multibyte (SBCS or DBCS) encodings and Unicode</td></tr>
<tr id="row_137_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_conv_auto.html" target="_self">wxConvAuto</a></td><td class="desc">This class implements a Unicode to/from multibyte converter capable of automatically recognizing the encoding of the multibyte text on input</td></tr>
<tr id="row_137_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_c_s_conv.html" target="_self">wxCSConv</a></td><td class="desc">This class converts between any character set supported by the system and Unicode</td></tr>
<tr id="row_137_2_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_m_b_conv_u_t_f16.html" target="_self">wxMBConvUTF16</a></td><td class="desc">This class is used to convert between multibyte encodings and UTF-16 Unicode encoding (also known as UCS-2)</td></tr>
<tr id="row_137_3_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_m_b_conv_u_t_f32.html" target="_self">wxMBConvUTF32</a></td><td class="desc">This class is used to convert between multibyte encodings and UTF-32 Unicode encoding (also known as UCS-4)</td></tr>
<tr id="row_137_4_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_m_b_conv_u_t_f7.html" target="_self">wxMBConvUTF7</a></td><td class="desc">This class converts between the UTF-7 encoding and Unicode</td></tr>
<tr id="row_137_5_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_m_b_conv_u_t_f8.html" target="_self">wxMBConvUTF8</a></td><td class="desc">This class converts between the UTF-8 encoding and Unicode</td></tr>
<tr id="row_138_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_memory_buffer.html" target="_self">wxMemoryBuffer</a></td><td class="desc">A <b><a class="el" href="classwx_memory_buffer.html" title="A wxMemoryBuffer is a useful data structure for storing arbitrary sized blocks of memory...">wxMemoryBuffer</a></b> is a useful data structure for storing arbitrary sized blocks of memory</td></tr>
<tr id="row_139_"><td class="entry"><img id="arr_139_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('139_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_message_output.html" target="_self">wxMessageOutput</a></td><td class="desc">Simple class allowing to write strings to various output channels</td></tr>
<tr id="row_139_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_message_output_message_box.html" target="_self">wxMessageOutputMessageBox</a></td><td class="desc">Output messages by showing them in a message box</td></tr>
<tr id="row_139_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_139_1_" src="ftv2plastnode.png" alt="\" width="16" height="22" onclick="toggleFolder('139_1_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_message_output_stderr.html" target="_self">wxMessageOutputStderr</a></td><td class="desc">Output messages to stderr or another STDIO file stream</td></tr>
<tr id="row_139_1_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_message_output_best.html" target="_self">wxMessageOutputBest</a></td><td class="desc">Output messages in the best possible way</td></tr>
<tr id="row_139_1_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_message_output_debug.html" target="_self">wxMessageOutputDebug</a></td><td class="desc">Output messages to the system debug output channel</td></tr>
<tr id="row_140_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_message_queue_3_01_t_01_4.html" target="_self">wxMessageQueue< T ></a></td><td class="desc">WxMessageQueue allows passing messages between threads</td></tr>
<tr id="row_141_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_mime_types_manager.html" target="_self">wxMimeTypesManager</a></td><td class="desc">This class allows the application to retrieve information about all known MIME types from a system-specific location and the filename extensions to the MIME types and vice versa</td></tr>
<tr id="row_142_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_modal_dialog_hook.html" target="_self">wxModalDialogHook</a></td><td class="desc">Allows to intercept all modal dialog calls</td></tr>
<tr id="row_143_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_msg_catalog.html" target="_self">wxMsgCatalog</a></td><td class="desc">Represents a loaded translations message catalog</td></tr>
<tr id="row_144_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_mutex.html" target="_self">wxMutex</a></td><td class="desc">A mutex object is a synchronization object whose state is set to signaled when it is not owned by any thread, and nonsignaled when it is owned</td></tr>
<tr id="row_145_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_mutex_locker.html" target="_self">wxMutexLocker</a></td><td class="desc">This is a small helper class to be used with <a class="el" href="classwx_mutex.html" title="A mutex object is a synchronization object whose state is set to signaled when it is not owned by any...">wxMutex</a> objects</td></tr>
<tr id="row_146_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_native_font_info.html" target="_self">wxNativeFontInfo</a></td><td class="desc">WxNativeFontInfo is platform-specific font representation: this class should be considered as an opaque font description only used by the native functions, the user code can only get the objects of this type from somewhere and pass it somewhere else (possibly save them somewhere using <a class="el" href="classwx_native_font_info.html#af500d02d485369dca5ca63679885153d">ToString()</a> and restore them using <a class="el" href="classwx_native_font_info.html#ab3004b4a00752735ca499f7ad861a21c">FromString()</a>)</td></tr>
<tr id="row_147_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_node_3_01_t_01_4.html" target="_self">wxNode< T ></a></td><td class="desc">WxNode<T> is the node structure used in linked lists (see wxList) and derived classes</td></tr>
<tr id="row_148_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_number_formatter.html" target="_self">wxNumberFormatter</a></td><td class="desc">Helper class for formatting and parsing numbers with thousands separators</td></tr>
<tr id="row_149_"><td class="entry"><img id="arr_149_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('149_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_object.html" target="_self">wxObject</a></td><td class="desc">This is the root class of many of the wxWidgets classes</td></tr>
<tr id="row_149_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_accelerator_table.html" target="_self">wxAcceleratorTable</a></td><td class="desc">An accelerator table allows the application to specify a table of keyboard shortcuts for menu or button commands</td></tr>
<tr id="row_149_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_accessible.html" target="_self">wxAccessible</a></td><td class="desc">Allows wxWidgets applications, and wxWidgets itself, to return extended information about user interface elements to client applications such as screen readers</td></tr>
<tr id="row_149_2_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_animation.html" target="_self">wxAnimation</a></td><td class="desc">This class encapsulates the concept of a platform-dependent animation</td></tr>
<tr id="row_149_3_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_149_3_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('149_3_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_archive_class_factory.html" target="_self">wxArchiveClassFactory</a></td><td class="desc">Allows the creation of streams to handle archive formats such as zip and tar</td></tr>
<tr id="row_149_3_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_tar_class_factory.html" target="_self">wxTarClassFactory</a></td><td class="desc">Class factory for the tar archive format</td></tr>
<tr id="row_149_3_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_zip_class_factory.html" target="_self">wxZipClassFactory</a></td><td class="desc">Class factory for the zip archive format</td></tr>
<tr id="row_149_4_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_149_4_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('149_4_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_archive_entry.html" target="_self">wxArchiveEntry</a></td><td class="desc">This is an abstract base class which serves as a common interface to archive entry classes such as <a class="el" href="classwx_zip_entry.html" title="Holds the meta-data for an entry in a zip.">wxZipEntry</a></td></tr>
<tr id="row_149_4_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_tar_entry.html" target="_self">wxTarEntry</a></td><td class="desc">Holds the meta-data for an entry in a tar</td></tr>
<tr id="row_149_4_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_zip_entry.html" target="_self">wxZipEntry</a></td><td class="desc">Holds the meta-data for an entry in a zip</td></tr>
<tr id="row_149_5_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_art_provider.html" target="_self">wxArtProvider</a></td><td class="desc">WxArtProvider class is used to customize the look of wxWidgets application</td></tr>
<tr id="row_149_6_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_automation_object.html" target="_self">wxAutomationObject</a></td><td class="desc">The <b><a class="el" href="classwx_automation_object.html" title="The wxAutomationObject class represents an OLE automation object containing a single data member...">wxAutomationObject</a></b> class represents an OLE automation object containing a single data member, an IDispatch pointer</td></tr>
<tr id="row_149_7_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_bitmap_handler.html" target="_self">wxBitmapHandler</a></td><td class="desc">This is the base class for implementing bitmap file loading/saving, and bitmap creation from data</td></tr>
<tr id="row_149_8_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_client.html" target="_self">wxClient</a></td><td class="desc">A <a class="el" href="classwx_client.html" title="A wxClient object represents the client part of a client-server DDE-like (Dynamic Data Exchange) conv...">wxClient</a> object represents the client part of a client-server DDE-like (Dynamic Data Exchange) conversation</td></tr>
<tr id="row_149_9_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_clipboard.html" target="_self">wxClipboard</a></td><td class="desc">A class for manipulating the clipboard</td></tr>
<tr id="row_149_10_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_colour.html" target="_self">wxColour</a></td><td class="desc">A colour is an object representing a combination of Red, Green, and Blue (RGB) intensity values, and is used to determine drawing colours</td></tr>
<tr id="row_149_11_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_colour_data.html" target="_self">wxColourData</a></td><td class="desc">This class holds a variety of information related to colour dialogs</td></tr>
<tr id="row_149_12_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_149_12_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('149_12_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_command.html" target="_self">wxCommand</a></td><td class="desc">WxCommand is a base class for modelling an application command, which is an action usually performed by selecting a menu item, pressing a toolbar button or any other means provided by the application to change the data or view</td></tr>
<tr id="row_149_12_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_rich_text_command.html" target="_self">wxRichTextCommand</a></td><td class="desc">Implements a command on the undo/redo stack</td></tr>
<tr id="row_149_13_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_command_processor.html" target="_self">wxCommandProcessor</a></td><td class="desc">WxCommandProcessor is a class that maintains a history of wxCommands, with undo/redo functionality built-in</td></tr>
<tr id="row_149_14_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_149_14_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('149_14_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_config_base.html" target="_self">wxConfigBase</a></td><td class="desc">WxConfigBase defines the basic interface of all config classes</td></tr>
<tr id="row_149_14_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_file_config.html" target="_self">wxFileConfig</a></td><td class="desc">WxFileConfig implements <a class="el" href="classwx_config_base.html" title="wxConfigBase defines the basic interface of all config classes.">wxConfigBase</a> interface for storing and retrieving configuration information using plain text files</td></tr>
<tr id="row_149_14_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_reg_config.html" target="_self">wxRegConfig</a></td><td class="desc">WxRegConfig implements the <a class="el" href="classwx_config_base.html" title="wxConfigBase defines the basic interface of all config classes.">wxConfigBase</a> interface for storing and retrieving configuration information using Windows registry</td></tr>
<tr id="row_149_15_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_connection.html" target="_self">wxConnection</a></td><td class="desc">A <a class="el" href="classwx_connection.html" title="A wxConnection object represents the connection between a client and a server.">wxConnection</a> object represents the connection between a client and a server</td></tr>
<tr id="row_149_16_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_149_16_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('149_16_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_connection_base.html" target="_self">wxConnectionBase</a></td><td class="desc"></td></tr>
<tr id="row_149_16_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_d_d_e_connection.html" target="_self">wxDDEConnection</a></td><td class="desc">A <a class="el" href="classwx_d_d_e_connection.html" title="A wxDDEConnection object represents the connection between a client and a server.">wxDDEConnection</a> object represents the connection between a client and a server</td></tr>
<tr id="row_149_17_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_context_help.html" target="_self">wxContextHelp</a></td><td class="desc">This class changes the cursor to a query and puts the application into a 'context-sensitive help mode'</td></tr>
<tr id="row_149_18_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_data_view_icon_text.html" target="_self">wxDataViewIconText</a></td><td class="desc">WxDataViewIconText is used by <a class="el" href="classwx_data_view_icon_text_renderer.html" title="The wxDataViewIconTextRenderer class is used to display text with a small icon next to it as it is ty...">wxDataViewIconTextRenderer</a> for data transfer</td></tr>
<tr id="row_149_19_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_149_19_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('149_19_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_data_view_renderer.html" target="_self">wxDataViewRenderer</a></td><td class="desc">This class is used by <a class="el" href="classwx_data_view_ctrl.html" title="wxDataViewCtrl is a control to display data either in a tree like fashion or in a tabular form or bot...">wxDataViewCtrl</a> to render the individual cells</td></tr>
<tr id="row_149_19_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_data_view_bitmap_renderer.html" target="_self">wxDataViewBitmapRenderer</a></td><td class="desc">This class is used by <a class="el" href="classwx_data_view_ctrl.html" title="wxDataViewCtrl is a control to display data either in a tree like fashion or in a tabular form or bot...">wxDataViewCtrl</a> to render bitmap controls</td></tr>
<tr id="row_149_19_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_149_19_1_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('149_19_1_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_data_view_choice_renderer.html" target="_self">wxDataViewChoiceRenderer</a></td><td class="desc">A <a class="el" href="classwx_data_view_ctrl.html" title="wxDataViewCtrl is a control to display data either in a tree like fashion or in a tabular form or bot...">wxDataViewCtrl</a> renderer using <a class="el" href="classwx_choice.html" title="A choice item is used to select one of a list of strings.">wxChoice</a> control and values of strings in it</td></tr>
<tr id="row_149_19_1_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_data_view_choice_by_index_renderer.html" target="_self">wxDataViewChoiceByIndexRenderer</a></td><td class="desc">A <a class="el" href="classwx_data_view_ctrl.html" title="wxDataViewCtrl is a control to display data either in a tree like fashion or in a tabular form or bot...">wxDataViewCtrl</a> renderer using <a class="el" href="classwx_choice.html" title="A choice item is used to select one of a list of strings.">wxChoice</a> control and indexes into it</td></tr>
<tr id="row_149_19_2_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_149_19_2_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('149_19_2_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_data_view_custom_renderer.html" target="_self">wxDataViewCustomRenderer</a></td><td class="desc">You need to derive a new class from <a class="el" href="classwx_data_view_custom_renderer.html" title="You need to derive a new class from wxDataViewCustomRenderer in order to write a new renderer...">wxDataViewCustomRenderer</a> in order to write a new renderer</td></tr>
<tr id="row_149_19_2_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_data_view_spin_renderer.html" target="_self">wxDataViewSpinRenderer</a></td><td class="desc">This is a specialized renderer for rendering integer values</td></tr>
<tr id="row_149_19_3_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_data_view_date_renderer.html" target="_self">wxDataViewDateRenderer</a></td><td class="desc">This class is used by <a class="el" href="classwx_data_view_ctrl.html" title="wxDataViewCtrl is a control to display data either in a tree like fashion or in a tabular form or bot...">wxDataViewCtrl</a> to render calendar controls</td></tr>
<tr id="row_149_19_4_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_data_view_icon_text_renderer.html" target="_self">wxDataViewIconTextRenderer</a></td><td class="desc">Used to display text with a small icon next to it as it is typically done in a file manager</td></tr>
<tr id="row_149_19_5_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_data_view_progress_renderer.html" target="_self">wxDataViewProgressRenderer</a></td><td class="desc">This class is used by <a class="el" href="classwx_data_view_ctrl.html" title="wxDataViewCtrl is a control to display data either in a tree like fashion or in a tabular form or bot...">wxDataViewCtrl</a> to render progress bars</td></tr>
<tr id="row_149_19_6_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_data_view_text_renderer.html" target="_self">wxDataViewTextRenderer</a></td><td class="desc">WxDataViewTextRenderer is used for rendering text</td></tr>
<tr id="row_149_19_7_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_data_view_toggle_renderer.html" target="_self">wxDataViewToggleRenderer</a></td><td class="desc">This class is used by <a class="el" href="classwx_data_view_ctrl.html" title="wxDataViewCtrl is a control to display data either in a tree like fashion or in a tabular form or bot...">wxDataViewCtrl</a> to render toggle controls</td></tr>
<tr id="row_149_20_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_149_20_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('149_20_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_d_c.html" target="_self">wxDC</a></td><td class="desc">A <a class="el" href="classwx_d_c.html" title="A wxDC is a "device context" onto which graphics and text can be drawn.">wxDC</a> is a <em>"device context"</em> onto which graphics and text can be drawn</td></tr>
<tr id="row_149_20_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_g_c_d_c.html" target="_self">wxGCDC</a></td><td class="desc">WxGCDC is a device context that draws on a <a class="el" href="classwx_graphics_context.html" title="A wxGraphicsContext instance is the object that is drawn upon.">wxGraphicsContext</a></td></tr>
<tr id="row_149_20_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_149_20_1_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('149_20_1_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_memory_d_c.html" target="_self">wxMemoryDC</a></td><td class="desc">A memory device context provides a means to draw graphics onto a bitmap</td></tr>
<tr id="row_149_20_1_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_149_20_1_0_" src="ftv2plastnode.png" alt="\" width="16" height="22" onclick="toggleFolder('149_20_1_0_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_buffered_d_c.html" target="_self">wxBufferedDC</a></td><td class="desc">This class provides a simple way to avoid flicker: when drawing on it, everything is in fact first drawn on an in-memory buffer (a <a class="el" href="classwx_bitmap.html" title="This class encapsulates the concept of a platform-dependent bitmap, either monochrome or colour or co...">wxBitmap</a>) and then copied to the screen, using the associated <a class="el" href="classwx_d_c.html" title="A wxDC is a "device context" onto which graphics and text can be drawn.">wxDC</a>, only once, when this object is destroyed</td></tr>
<tr id="row_149_20_1_0_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img id="arr_149_20_1_0_0_" src="ftv2plastnode.png" alt="\" width="16" height="22" onclick="toggleFolder('149_20_1_0_0_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_buffered_paint_d_c.html" target="_self">wxBufferedPaintDC</a></td><td class="desc">This is a subclass of <a class="el" href="classwx_buffered_d_c.html" title="This class provides a simple way to avoid flicker: when drawing on it, everything is in fact first dr...">wxBufferedDC</a> which can be used inside of an <code>EVT_PAINT()</code> event handler to achieve double-buffered drawing</td></tr>
<tr id="row_149_20_1_0_0_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_auto_buffered_paint_d_c.html" target="_self">wxAutoBufferedPaintDC</a></td><td class="desc">This <a class="el" href="classwx_d_c.html" title="A wxDC is a "device context" onto which graphics and text can be drawn.">wxDC</a> derivative can be used inside of an <code>EVT_PAINT()</code> event handler to achieve double-buffered drawing</td></tr>
<tr id="row_149_20_2_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_metafile_d_c.html" target="_self">wxMetafileDC</a></td><td class="desc">This is a type of device context that allows a metafile object to be created (Windows only), and has most of the characteristics of a normal <b><a class="el" href="classwx_d_c.html" title="A wxDC is a "device context" onto which graphics and text can be drawn.">wxDC</a></b> </td></tr>
<tr id="row_149_20_3_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_mirror_d_c.html" target="_self">wxMirrorDC</a></td><td class="desc">WxMirrorDC is a simple wrapper class which is always associated with a real <a class="el" href="classwx_d_c.html" title="A wxDC is a "device context" onto which graphics and text can be drawn.">wxDC</a> object and either forwards all of its operations to it without changes (no mirroring takes place) or exchanges <em>x</em> and <em>y</em> coordinates which makes it possible to reuse the same code to draw a figure and its mirror – i.e</td></tr>
<tr id="row_149_20_4_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_post_script_d_c.html" target="_self">wxPostScriptDC</a></td><td class="desc">This defines the wxWidgets Encapsulated PostScript device context, which can write PostScript files on any platform</td></tr>
<tr id="row_149_20_5_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_printer_d_c.html" target="_self">wxPrinterDC</a></td><td class="desc">A printer device context is specific to MSW and Mac, and allows access to any printer with a Windows or Macintosh driver</td></tr>
<tr id="row_149_20_6_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_screen_d_c.html" target="_self">wxScreenDC</a></td><td class="desc">A <a class="el" href="classwx_screen_d_c.html" title="A wxScreenDC can be used to paint on the screen.">wxScreenDC</a> can be used to paint on the screen</td></tr>
<tr id="row_149_20_7_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_s_v_g_file_d_c.html" target="_self">wxSVGFileDC</a></td><td class="desc">A <a class="el" href="classwx_s_v_g_file_d_c.html" title="A wxSVGFileDC is a device context onto which graphics and text can be drawn, and the output produced ...">wxSVGFileDC</a> is a device context onto which graphics and text can be drawn, and the output produced as a vector file, in SVG format</td></tr>
<tr id="row_149_20_8_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_149_20_8_" src="ftv2plastnode.png" alt="\" width="16" height="22" onclick="toggleFolder('149_20_8_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_window_d_c.html" target="_self">wxWindowDC</a></td><td class="desc">A <a class="el" href="classwx_window_d_c.html" title="A wxWindowDC must be constructed if an application wishes to paint on the whole area of a window (cli...">wxWindowDC</a> must be constructed if an application wishes to paint on the whole area of a window (client and decorations)</td></tr>
<tr id="row_149_20_8_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img id="arr_149_20_8_0_" src="ftv2plastnode.png" alt="\" width="16" height="22" onclick="toggleFolder('149_20_8_0_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_client_d_c.html" target="_self">wxClientDC</a></td><td class="desc">A <a class="el" href="classwx_client_d_c.html" title="A wxClientDC must be constructed if an application wishes to paint on the client area of a window fro...">wxClientDC</a> must be constructed if an application wishes to paint on the client area of a window from outside an EVT_PAINT() handler</td></tr>
<tr id="row_149_20_8_0_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_paint_d_c.html" target="_self">wxPaintDC</a></td><td class="desc">A <a class="el" href="classwx_paint_d_c.html" title="A wxPaintDC must be constructed if an application wishes to paint on the client area of a window from...">wxPaintDC</a> must be constructed if an application wishes to paint on the client area of a window from within an EVT_PAINT() event handler</td></tr>
<tr id="row_149_21_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_d_d_e_client.html" target="_self">wxDDEClient</a></td><td class="desc">A <a class="el" href="classwx_d_d_e_client.html" title="A wxDDEClient object represents the client part of a client-server DDE (Dynamic Data Exchange) conver...">wxDDEClient</a> object represents the client part of a client-server DDE (Dynamic Data Exchange) conversation</td></tr>
<tr id="row_149_22_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_doc_template.html" target="_self">wxDocTemplate</a></td><td class="desc">Used to model the relationship between a document class and a view class</td></tr>
<tr id="row_149_23_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_drag_image.html" target="_self">wxDragImage</a></td><td class="desc">This class is used when you wish to drag an object on the screen, and a simple cursor is not enough</td></tr>
<tr id="row_149_24_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_encoding_converter.html" target="_self">wxEncodingConverter</a></td><td class="desc">This class is capable of converting strings between two 8-bit encodings/charsets</td></tr>
<tr id="row_149_25_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_149_25_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('149_25_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_event.html" target="_self">wxEvent</a></td><td class="desc">An event is a structure holding information about an event passed to a callback or member function</td></tr>
<tr id="row_149_25_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_activate_event.html" target="_self">wxActivateEvent</a></td><td class="desc">An activate event is sent when a window or application is being activated or deactivated</td></tr>
<tr id="row_149_25_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_aui_manager_event.html" target="_self">wxAuiManagerEvent</a></td><td class="desc">Event used to indicate various actions taken with <a class="el" href="classwx_aui_manager.html" title="wxAuiManager is the central class of the wxAUI class framework.">wxAuiManager</a></td></tr>
<tr id="row_149_25_2_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_calculate_layout_event.html" target="_self">wxCalculateLayoutEvent</a></td><td class="desc">This event is sent by <a class="el" href="classwx_layout_algorithm.html" title="wxLayoutAlgorithm implements layout of subwindows in MDI or SDI frames.">wxLayoutAlgorithm</a> to calculate the amount of the remaining client area that the window should occupy</td></tr>
<tr id="row_149_25_3_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_close_event.html" target="_self">wxCloseEvent</a></td><td class="desc">This event class contains information about window and session close events</td></tr>
<tr id="row_149_25_4_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_149_25_4_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('149_25_4_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_command_event.html" target="_self">wxCommandEvent</a></td><td class="desc">This event class contains information about command events, which originate from a variety of simple controls</td></tr>
<tr id="row_149_25_4_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_active_x_event.html" target="_self">wxActiveXEvent</a></td><td class="desc">An event class for handling ActiveX events passed from <a class="el" href="classwx_active_x_container.html" title="wxActiveXContainer is a host for an ActiveX control on Windows (and as such is a platform-specific cl...">wxActiveXContainer</a></td></tr>
<tr id="row_149_25_4_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_child_focus_event.html" target="_self">wxChildFocusEvent</a></td><td class="desc">A child focus event is sent to a (parent-)window when one of its child windows gains focus, so that the window could restore the focus back to its corresponding child if it loses it now and regains later</td></tr>
<tr id="row_149_25_4_2_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_clipboard_text_event.html" target="_self">wxClipboardTextEvent</a></td><td class="desc">This class represents the events generated by a control (typically a <a class="el" href="classwx_text_ctrl.html" title="A text control allows text to be displayed and edited.">wxTextCtrl</a> but other windows can generate these events as well) when its content gets copied or cut to, or pasted from the clipboard</td></tr>
<tr id="row_149_25_4_3_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_collapsible_pane_event.html" target="_self">wxCollapsiblePaneEvent</a></td><td class="desc">This event class is used for the events generated by <a class="el" href="classwx_collapsible_pane.html" title="A collapsible pane is a container with an embedded button-like control which can be used by the user ...">wxCollapsiblePane</a></td></tr>
<tr id="row_149_25_4_4_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_colour_picker_event.html" target="_self">wxColourPickerEvent</a></td><td class="desc">This event class is used for the events generated by <a class="el" href="classwx_colour_picker_ctrl.html" title="This control allows the user to select a colour.">wxColourPickerCtrl</a></td></tr>
<tr id="row_149_25_4_5_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_context_menu_event.html" target="_self">wxContextMenuEvent</a></td><td class="desc">This class is used for context menu events, sent to give the application a chance to show a context (popup) menu for a <a class="el" href="classwx_window.html" title="wxWindow is the base class for all windows and represents any visible object on screen.">wxWindow</a></td></tr>
<tr id="row_149_25_4_6_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_149_25_4_6_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('149_25_4_6_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_date_event.html" target="_self">wxDateEvent</a></td><td class="desc">This event class holds information about a date change and is used together with <a class="el" href="classwx_date_picker_ctrl.html" title="This control allows the user to select a date.">wxDatePickerCtrl</a></td></tr>
<tr id="row_149_25_4_6_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_calendar_event.html" target="_self">wxCalendarEvent</a></td><td class="desc">Used together with <a class="el" href="classwx_calendar_ctrl.html" title="The calendar control allows the user to pick a date.">wxCalendarCtrl</a></td></tr>
<tr id="row_149_25_4_7_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_file_ctrl_event.html" target="_self">wxFileCtrlEvent</a></td><td class="desc">A file control event holds information about events associated with <a class="el" href="classwx_file_ctrl.html" title="This control allows the user to select a file.">wxFileCtrl</a> objects</td></tr>
<tr id="row_149_25_4_8_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_file_dir_picker_event.html" target="_self">wxFileDirPickerEvent</a></td><td class="desc">This event class is used for the events generated by <a class="el" href="classwx_file_picker_ctrl.html" title="This control allows the user to select a file.">wxFilePickerCtrl</a> and by <a class="el" href="classwx_dir_picker_ctrl.html" title="This control allows the user to select a directory.">wxDirPickerCtrl</a></td></tr>
<tr id="row_149_25_4_9_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_find_dialog_event.html" target="_self">wxFindDialogEvent</a></td><td class="desc">WxFindReplaceDialog events</td></tr>
<tr id="row_149_25_4_10_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_font_picker_event.html" target="_self">wxFontPickerEvent</a></td><td class="desc">This event class is used for the events generated by <a class="el" href="classwx_font_picker_ctrl.html" title="This control allows the user to select a font.">wxFontPickerCtrl</a></td></tr>
<tr id="row_149_25_4_11_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_grid_editor_created_event.html" target="_self">wxGridEditorCreatedEvent</a></td><td class="desc"></td></tr>
<tr id="row_149_25_4_12_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_help_event.html" target="_self">wxHelpEvent</a></td><td class="desc">A help event is sent when the user has requested context-sensitive help</td></tr>
<tr id="row_149_25_4_13_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_html_cell_event.html" target="_self">wxHtmlCellEvent</a></td><td class="desc">This event class is used for the events generated by <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></td></tr>
<tr id="row_149_25_4_14_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_html_link_event.html" target="_self">wxHtmlLinkEvent</a></td><td class="desc">This event class is used for the events generated by <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></td></tr>
<tr id="row_149_25_4_15_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_hyperlink_event.html" target="_self">wxHyperlinkEvent</a></td><td class="desc">This event class is used for the events generated by <a class="el" href="classwx_hyperlink_ctrl.html" title="This class shows a static text element which links to an URL.">wxHyperlinkCtrl</a></td></tr>
<tr id="row_149_25_4_16_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_149_25_4_16_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('149_25_4_16_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_notify_event.html" target="_self">wxNotifyEvent</a></td><td class="desc">This class is not used by the event handlers by itself, but is a base class for other event classes (such as <a class="el" href="classwx_book_ctrl_event.html" title="This class represents the events generated by book controls (wxNotebook, wxListbook, wxChoicebook, wxTreebook, wxAuiNotebook).">wxBookCtrlEvent</a>)</td></tr>
<tr id="row_149_25_4_16_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_aui_tool_bar_event.html" target="_self">wxAuiToolBarEvent</a></td><td class="desc">WxAuiToolBarEvent is used for the events generated by <a class="el" href="classwx_aui_tool_bar.html">wxAuiToolBar</a></td></tr>
<tr id="row_149_25_4_16_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_149_25_4_16_1_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('149_25_4_16_1_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_book_ctrl_event.html" target="_self">wxBookCtrlEvent</a></td><td class="desc">This class represents the events generated by book controls (<a class="el" href="classwx_notebook.html" title="This class represents a notebook control, which manages multiple windows with associated tabs...">wxNotebook</a>, <a class="el" href="classwx_listbook.html" title="wxListbook is a class similar to wxNotebook but which uses a wxListCtrl to show the labels instead of...">wxListbook</a>, <a class="el" href="classwx_choicebook.html" title="wxChoicebook is a class similar to wxNotebook, but uses a wxChoice control to show the labels instead...">wxChoicebook</a>, <a class="el" href="classwx_treebook.html" title="This class is an extension of the wxNotebook class that allows a tree structured set of pages to be s...">wxTreebook</a>, <a class="el" href="classwx_aui_notebook.html" title="wxAuiNotebook is part of the wxAUI class framework, which represents a notebook control, managing multiple windows with associated tabs.">wxAuiNotebook</a>)</td></tr>
<tr id="row_149_25_4_16_1_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_aui_notebook_event.html" target="_self">wxAuiNotebookEvent</a></td><td class="desc">This class is used by the events generated by <a class="el" href="classwx_aui_notebook.html" title="wxAuiNotebook is part of the wxAUI class framework, which represents a notebook control, managing multiple windows with associated tabs.">wxAuiNotebook</a></td></tr>
<tr id="row_149_25_4_16_2_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_data_view_event.html" target="_self">wxDataViewEvent</a></td><td class="desc">This is the event class for the <a class="el" href="classwx_data_view_ctrl.html" title="wxDataViewCtrl is a control to display data either in a tree like fashion or in a tabular form or bot...">wxDataViewCtrl</a> notifications</td></tr>
<tr id="row_149_25_4_16_3_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_grid_event.html" target="_self">wxGridEvent</a></td><td class="desc">This event class contains information about various grid events</td></tr>
<tr id="row_149_25_4_16_4_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_grid_range_select_event.html" target="_self">wxGridRangeSelectEvent</a></td><td class="desc"></td></tr>
<tr id="row_149_25_4_16_5_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_grid_size_event.html" target="_self">wxGridSizeEvent</a></td><td class="desc">This event class contains information about a row/column resize event</td></tr>
<tr id="row_149_25_4_16_6_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_header_ctrl_event.html" target="_self">wxHeaderCtrlEvent</a></td><td class="desc">Event class representing the events generated by <a class="el" href="classwx_header_ctrl.html" title="wxHeaderCtrl is the control containing the column headings which is usually used for display of tabul...">wxHeaderCtrl</a></td></tr>
<tr id="row_149_25_4_16_7_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_list_event.html" target="_self">wxListEvent</a></td><td class="desc">A list event holds information about events associated with <a class="el" href="classwx_list_ctrl.html" title="A list control presents lists in a number of formats: list view, report view, icon view and small ico...">wxListCtrl</a> objects</td></tr>
<tr id="row_149_25_4_16_8_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_media_event.html" target="_self">wxMediaEvent</a></td><td class="desc">Event <a class="el" href="classwx_media_ctrl.html" title="wxMediaCtrl is a class for displaying types of media, such as videos, audio files, natively through native codecs.">wxMediaCtrl</a> uses</td></tr>
<tr id="row_149_25_4_16_9_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_ribbon_bar_event.html" target="_self">wxRibbonBarEvent</a></td><td class="desc">Event used to indicate various actions relating to a <a class="el" href="classwx_ribbon_bar.html" title="Top-level control in a ribbon user interface.">wxRibbonBar</a></td></tr>
<tr id="row_149_25_4_16_10_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_rich_text_event.html" target="_self">wxRichTextEvent</a></td><td class="desc">This is the event class for <a class="el" href="classwx_rich_text_ctrl.html" title="wxRichTextCtrl provides a generic, ground-up implementation of a text control capable of showing mult...">wxRichTextCtrl</a> notifications</td></tr>
<tr id="row_149_25_4_16_11_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_spin_double_event.html" target="_self">wxSpinDoubleEvent</a></td><td class="desc">This event class is used for the events generated by <a class="el" href="classwx_spin_ctrl_double.html" title="wxSpinCtrlDouble combines wxTextCtrl and wxSpinButton in one control and displays a real number...">wxSpinCtrlDouble</a></td></tr>
<tr id="row_149_25_4_16_12_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_spin_event.html" target="_self">wxSpinEvent</a></td><td class="desc">This event class is used for the events generated by <a class="el" href="classwx_spin_button.html" title="A wxSpinButton has two small up and down (or left and right) arrow buttons.">wxSpinButton</a> and <a class="el" href="classwx_spin_ctrl.html" title="wxSpinCtrl combines wxTextCtrl and wxSpinButton in one control.">wxSpinCtrl</a></td></tr>
<tr id="row_149_25_4_16_13_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_splitter_event.html" target="_self">wxSplitterEvent</a></td><td class="desc">This class represents the events generated by a splitter control</td></tr>
<tr id="row_149_25_4_16_14_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_tree_event.html" target="_self">wxTreeEvent</a></td><td class="desc">A tree event holds information about events associated with <a class="el" href="classwx_tree_ctrl.html" title="A tree control presents information as a hierarchy, with items that may be expanded to show further i...">wxTreeCtrl</a> objects</td></tr>
<tr id="row_149_25_4_16_15_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_tree_list_event.html" target="_self">wxTreeListEvent</a></td><td class="desc">Event generated by <a class="el" href="classwx_tree_list_ctrl.html" title="A control combining wxTreeCtrl and wxListCtrl features.">wxTreeListCtrl</a></td></tr>
<tr id="row_149_25_4_16_16_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_web_view_event.html" target="_self">wxWebViewEvent</a></td><td class="desc">A navigation event holds information about events associated with <a class="el" href="classwx_web_view.html" title="This control may be used to render web (HTML / CSS / javascript) documents.">wxWebView</a> objects</td></tr>
<tr id="row_149_25_4_16_17_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_wizard_event.html" target="_self">wxWizardEvent</a></td><td class="desc">WxWizardEvent class represents an event generated by the <a class="el" href="classwx_wizard.html" title="wxWizard is the central class for implementing 'wizard-like' dialogs.">wxWizard</a>: this event is first sent to the page itself and, if not processed there, goes up the window hierarchy as usual</td></tr>
<tr id="row_149_25_4_17_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_property_grid_event.html" target="_self">wxPropertyGridEvent</a></td><td class="desc">A property grid event holds information about events associated with <a class="el" href="classwx_property_grid.html" title="wxPropertyGrid is a specialized grid for editing properties - in other words name = value pairs...">wxPropertyGrid</a> objects</td></tr>
<tr id="row_149_25_4_18_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_ribbon_button_bar_event.html" target="_self">wxRibbonButtonBarEvent</a></td><td class="desc">Event used to indicate various actions relating to a button on a <a class="el" href="classwx_ribbon_button_bar.html" title="A ribbon button bar is similar to a traditional toolbar.">wxRibbonButtonBar</a></td></tr>
<tr id="row_149_25_4_19_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_ribbon_gallery_event.html" target="_self">wxRibbonGalleryEvent</a></td><td class="desc"></td></tr>
<tr id="row_149_25_4_20_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_ribbon_panel_event.html" target="_self">wxRibbonPanelEvent</a></td><td class="desc">Event used to indicate various actions relating to a <a class="el" href="classwx_ribbon_panel.html" title="Serves as a container for a group of (ribbon) controls.">wxRibbonPanel</a></td></tr>
<tr id="row_149_25_4_21_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_sash_event.html" target="_self">wxSashEvent</a></td><td class="desc">A sash event is sent when the sash of a <a class="el" href="classwx_sash_window.html" title="wxSashWindow allows any of its edges to have a sash which can be dragged to resize the window...">wxSashWindow</a> has been dragged by the user</td></tr>
<tr id="row_149_25_4_22_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_scroll_event.html" target="_self">wxScrollEvent</a></td><td class="desc">A scroll event holds information about events sent from stand-alone scrollbars (see <a class="el" href="classwx_scroll_bar.html" title="A wxScrollBar is a control that represents a horizontal or vertical scrollbar.">wxScrollBar</a>) and sliders (see <a class="el" href="classwx_slider.html" title="A slider is a control with a handle which can be pulled back and forth to change the value...">wxSlider</a>)</td></tr>
<tr id="row_149_25_4_23_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_styled_text_event.html" target="_self">wxStyledTextEvent</a></td><td class="desc">The type of events sent from <a class="el" href="classwx_styled_text_ctrl.html" title="A wxWidgets implementation of the Scintilla source code editing component.">wxStyledTextCtrl</a></td></tr>
<tr id="row_149_25_4_24_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_text_url_event.html" target="_self">wxTextUrlEvent</a></td><td class="desc"></td></tr>
<tr id="row_149_25_4_25_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_update_u_i_event.html" target="_self">wxUpdateUIEvent</a></td><td class="desc">This class is used for pseudo-events which are called by wxWidgets to give an application the chance to update various user interface elements</td></tr>
<tr id="row_149_25_4_26_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_web_kit_before_load_event.html" target="_self">wxWebKitBeforeLoadEvent</a></td><td class="desc"></td></tr>
<tr id="row_149_25_4_27_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_web_kit_new_window_event.html" target="_self">wxWebKitNewWindowEvent</a></td><td class="desc"></td></tr>
<tr id="row_149_25_4_28_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_web_kit_state_changed_event.html" target="_self">wxWebKitStateChangedEvent</a></td><td class="desc"></td></tr>
<tr id="row_149_25_4_29_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_window_create_event.html" target="_self">wxWindowCreateEvent</a></td><td class="desc">This event is sent just after the actual window associated with a <a class="el" href="classwx_window.html" title="wxWindow is the base class for all windows and represents any visible object on screen.">wxWindow</a> object has been created</td></tr>
<tr id="row_149_25_4_30_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_window_destroy_event.html" target="_self">wxWindowDestroyEvent</a></td><td class="desc">This event is sent as early as possible during the window destruction process</td></tr>
<tr id="row_149_25_4_31_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_window_modal_dialog_event.html" target="_self">wxWindowModalDialogEvent</a></td><td class="desc">Event sent by <a class="el" href="classwx_dialog.html#a5c61636f657c0ae9503c4dfa534e073e" title="Shows a dialog modal to the parent top level window only.">wxDialog::ShowWindowModal()</a> when the dialog closes</td></tr>
<tr id="row_149_25_5_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_dial_up_event.html" target="_self">wxDialUpEvent</a></td><td class="desc">This is the event class for the dialup events sent by <a class="el" href="classwx_dial_up_manager.html" title="This class encapsulates functions dealing with verifying the connection status of the workstation (co...">wxDialUpManager</a></td></tr>
<tr id="row_149_25_6_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_display_changed_event.html" target="_self">wxDisplayChangedEvent</a></td><td class="desc"></td></tr>
<tr id="row_149_25_7_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_drop_files_event.html" target="_self">wxDropFilesEvent</a></td><td class="desc">This class is used for drop files events, that is, when files have been dropped onto the window</td></tr>
<tr id="row_149_25_8_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_erase_event.html" target="_self">wxEraseEvent</a></td><td class="desc">An erase event is sent when a window's background needs to be repainted</td></tr>
<tr id="row_149_25_9_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_file_system_watcher_event.html" target="_self">wxFileSystemWatcherEvent</a></td><td class="desc">A class of events sent when a file system event occurs</td></tr>
<tr id="row_149_25_10_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_focus_event.html" target="_self">wxFocusEvent</a></td><td class="desc">A focus event is sent when a window's focus changes</td></tr>
<tr id="row_149_25_11_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_iconize_event.html" target="_self">wxIconizeEvent</a></td><td class="desc">An event being sent when the frame is iconized (minimized) or restored</td></tr>
<tr id="row_149_25_12_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_idle_event.html" target="_self">wxIdleEvent</a></td><td class="desc">This class is used for idle events, which are generated when the system becomes idle</td></tr>
<tr id="row_149_25_13_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_init_dialog_event.html" target="_self">wxInitDialogEvent</a></td><td class="desc">A <a class="el" href="classwx_init_dialog_event.html" title="A wxInitDialogEvent is sent as a dialog or panel is being initialised.">wxInitDialogEvent</a> is sent as a dialog or panel is being initialised</td></tr>
<tr id="row_149_25_14_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_joystick_event.html" target="_self">wxJoystickEvent</a></td><td class="desc">This event class contains information about joystick events, particularly events received by windows</td></tr>
<tr id="row_149_25_15_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_key_event.html" target="_self">wxKeyEvent</a></td><td class="desc">This event class contains information about key press and release events</td></tr>
<tr id="row_149_25_16_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_maximize_event.html" target="_self">wxMaximizeEvent</a></td><td class="desc">An event being sent when a top level window is maximized</td></tr>
<tr id="row_149_25_17_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_menu_event.html" target="_self">wxMenuEvent</a></td><td class="desc">This class is used for a variety of menu-related events</td></tr>
<tr id="row_149_25_18_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_mouse_capture_changed_event.html" target="_self">wxMouseCaptureChangedEvent</a></td><td class="desc">An mouse capture changed event is sent to a window that loses its mouse capture</td></tr>
<tr id="row_149_25_19_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_mouse_capture_lost_event.html" target="_self">wxMouseCaptureLostEvent</a></td><td class="desc">A mouse capture lost event is sent to a window that had obtained mouse capture, which was subsequently lost due to an "external" event (for example, when a dialog box is shown or if another application captures the mouse)</td></tr>
<tr id="row_149_25_20_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_mouse_event.html" target="_self">wxMouseEvent</a></td><td class="desc">This event class contains information about the events generated by the mouse: they include mouse buttons press and release events and mouse move events</td></tr>
<tr id="row_149_25_21_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_move_event.html" target="_self">wxMoveEvent</a></td><td class="desc">A move event holds information about <a class="el" href="classwx_top_level_window.html" title="wxTopLevelWindow is a common base class for wxDialog and wxFrame.">wxTopLevelWindow</a> move change events</td></tr>
<tr id="row_149_25_22_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_navigation_key_event.html" target="_self">wxNavigationKeyEvent</a></td><td class="desc">This event class contains information about navigation events, generated by navigation keys such as tab and page down</td></tr>
<tr id="row_149_25_23_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_paint_event.html" target="_self">wxPaintEvent</a></td><td class="desc">A paint event is sent when a window's contents needs to be repainted</td></tr>
<tr id="row_149_25_24_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_palette_changed_event.html" target="_self">wxPaletteChangedEvent</a></td><td class="desc"></td></tr>
<tr id="row_149_25_25_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_power_event.html" target="_self">wxPowerEvent</a></td><td class="desc">The power events are generated when the system power state changes, e.g</td></tr>
<tr id="row_149_25_26_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_process_event.html" target="_self">wxProcessEvent</a></td><td class="desc">A process event is sent to the <a class="el" href="classwx_evt_handler.html" title="A class that can handle events from the windowing system.">wxEvtHandler</a> specified to <a class="el" href="classwx_process.html" title="The objects of this class are used in conjunction with the wxExecute() function.">wxProcess</a> when a process is terminated</td></tr>
<tr id="row_149_25_27_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_query_layout_info_event.html" target="_self">wxQueryLayoutInfoEvent</a></td><td class="desc">This event is sent when <a class="el" href="classwx_layout_algorithm.html" title="wxLayoutAlgorithm implements layout of subwindows in MDI or SDI frames.">wxLayoutAlgorithm</a> wishes to get the size, orientation and alignment of a window</td></tr>
<tr id="row_149_25_28_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_query_new_palette_event.html" target="_self">wxQueryNewPaletteEvent</a></td><td class="desc"></td></tr>
<tr id="row_149_25_29_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_scroll_win_event.html" target="_self">wxScrollWinEvent</a></td><td class="desc">A scroll event holds information about events sent from scrolling windows</td></tr>
<tr id="row_149_25_30_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_set_cursor_event.html" target="_self">wxSetCursorEvent</a></td><td class="desc">A <a class="el" href="classwx_set_cursor_event.html" title="A wxSetCursorEvent is generated from wxWindow when the mouse cursor is about to be set as a result of...">wxSetCursorEvent</a> is generated from <a class="el" href="classwx_window.html" title="wxWindow is the base class for all windows and represents any visible object on screen.">wxWindow</a> when the mouse cursor is about to be set as a result of mouse motion</td></tr>
<tr id="row_149_25_31_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_show_event.html" target="_self">wxShowEvent</a></td><td class="desc">An event being sent when the window is shown or hidden</td></tr>
<tr id="row_149_25_32_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_size_event.html" target="_self">wxSizeEvent</a></td><td class="desc">A size event holds information about size change events of <a class="el" href="classwx_window.html" title="wxWindow is the base class for all windows and represents any visible object on screen.">wxWindow</a></td></tr>
<tr id="row_149_25_33_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_socket_event.html" target="_self">wxSocketEvent</a></td><td class="desc">This event class contains information about socket events</td></tr>
<tr id="row_149_25_34_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_sys_colour_changed_event.html" target="_self">wxSysColourChangedEvent</a></td><td class="desc">This class is used for system colour change events, which are generated when the user changes the colour settings using the control panel</td></tr>
<tr id="row_149_25_35_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_task_bar_icon_event.html" target="_self">wxTaskBarIconEvent</a></td><td class="desc">The event class used by <a class="el" href="classwx_task_bar_icon.html" title="This class represents a taskbar icon.">wxTaskBarIcon</a></td></tr>
<tr id="row_149_25_36_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_thread_event.html" target="_self">wxThreadEvent</a></td><td class="desc">This class adds some simple functionality to <a class="el" href="classwx_event.html" title="An event is a structure holding information about an event passed to a callback or member function...">wxEvent</a> to facilitate inter-thread communication</td></tr>
<tr id="row_149_25_37_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_timer_event.html" target="_self">wxTimerEvent</a></td><td class="desc">WxTimerEvent object is passed to the event handler of timer events (see <a class="el" href="classwx_timer.html#aa3966b37329a4fad69ad384733eab27e" title="Associates the timer with the given owner object.">wxTimer::SetOwner</a>)</td></tr>
<tr id="row_149_26_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_149_26_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('149_26_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_evt_handler.html" target="_self">wxEvtHandler</a></td><td class="desc">A class that can handle events from the windowing system</td></tr>
<tr id="row_149_26_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_app_console.html" target="_self">wxAppConsole</a></td><td class="desc">This class is essential for writing console-only or hybrid apps without having to define <code>wxUSE_GUI=0</code> </td></tr>
<tr id="row_149_26_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_aui_manager.html" target="_self">wxAuiManager</a></td><td class="desc">WxAuiManager is the central class of the wxAUI class framework</td></tr>
<tr id="row_149_26_2_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_doc_manager.html" target="_self">wxDocManager</a></td><td class="desc">Part of the document/view framework supported by wxWidgets, and cooperates with the <a class="el" href="classwx_view.html" title="The view class can be used to model the viewing and editing component of an application's file-based ...">wxView</a>, <a class="el" href="classwx_document.html" title="The document class can be used to model an application's file-based data.">wxDocument</a> and <a class="el" href="classwx_doc_template.html" title="The wxDocTemplate class is used to model the relationship between a document class and a view class...">wxDocTemplate</a> classes</td></tr>
<tr id="row_149_26_3_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_document.html" target="_self">wxDocument</a></td><td class="desc">The document class can be used to model an application's file-based data</td></tr>
<tr id="row_149_26_4_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_event_blocker.html" target="_self">wxEventBlocker</a></td><td class="desc">This class is a special event handler which allows to discard any event (or a set of event types) directed to a specific window</td></tr>
<tr id="row_149_26_5_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_file_system_watcher.html" target="_self">wxFileSystemWatcher</a></td><td class="desc">Allows to receive notifications of file system changes</td></tr>
<tr id="row_149_26_6_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_menu.html" target="_self">wxMenu</a></td><td class="desc">A menu is a popup (or pull down) list of items, one of which may be selected before the menu goes away (clicking elsewhere dismisses the menu)</td></tr>
<tr id="row_149_26_7_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_mouse_events_manager.html" target="_self">wxMouseEventsManager</a></td><td class="desc">Helper for handling mouse input events in windows containing multiple items</td></tr>
<tr id="row_149_26_8_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_notification_message.html" target="_self">wxNotificationMessage</a></td><td class="desc">This class allows to show the user a message non intrusively</td></tr>
<tr id="row_149_26_9_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_process.html" target="_self">wxProcess</a></td><td class="desc">The objects of this class are used in conjunction with the <a class="el" href="group__group__funcmacro__procctrl.html#gaa276e9e676e26bafeec3141b73399b33" title="Executes another program in Unix or Windows.">wxExecute()</a> function</td></tr>
<tr id="row_149_26_10_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_property_grid_page.html" target="_self">wxPropertyGridPage</a></td><td class="desc">Holder of property grid page information</td></tr>
<tr id="row_149_26_11_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_task_bar_icon.html" target="_self">wxTaskBarIcon</a></td><td class="desc">This class represents a taskbar icon</td></tr>
<tr id="row_149_26_12_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_timer.html" target="_self">wxTimer</a></td><td class="desc">Allows you to execute code at specified intervals</td></tr>
<tr id="row_149_26_13_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_149_26_13_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('149_26_13_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_validator.html" target="_self">wxValidator</a></td><td class="desc">WxValidator is the base class for a family of validator classes that mediate between a class of control, and application data</td></tr>
<tr id="row_149_26_13_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_generic_validator.html" target="_self">wxGenericValidator</a></td><td class="desc">WxGenericValidator performs data transfer (but not validation or filtering) for many type of controls</td></tr>
<tr id="row_149_26_13_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_149_26_13_1_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('149_26_13_1_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_num_validator.html" target="_self">wxNumValidator< T ></a></td><td class="desc">WxNumValidator is the common base class for numeric validator classes</td></tr>
<tr id="row_149_26_13_1_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_floating_point_validator.html" target="_self">wxFloatingPointValidator< T ></a></td><td class="desc">Validator for text entries used for floating point numbers entry</td></tr>
<tr id="row_149_26_13_1_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_integer_validator.html" target="_self">wxIntegerValidator< T ></a></td><td class="desc">Validator for text entries used for integer entry</td></tr>
<tr id="row_149_26_13_2_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_text_validator.html" target="_self">wxTextValidator</a></td><td class="desc">WxTextValidator validates text controls, providing a variety of filtering behaviours</td></tr>
<tr id="row_149_26_14_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_view.html" target="_self">wxView</a></td><td class="desc">The view class can be used to model the viewing and editing component of an application's file-based data</td></tr>
<tr id="row_149_26_15_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_149_26_15_" src="ftv2plastnode.png" alt="\" width="16" height="22" onclick="toggleFolder('149_26_15_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_window.html" target="_self">wxWindow</a></td><td class="desc">WxWindow is the base class for all windows and represents any visible object on screen</td></tr>
<tr id="row_149_26_15_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_banner_window.html" target="_self">wxBannerWindow</a></td><td class="desc">A simple banner window showing either a bitmap or text</td></tr>
<tr id="row_149_26_15_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img id="arr_149_26_15_1_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('149_26_15_1_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_control.html" target="_self">wxControl</a></td><td class="desc">This is the base class for a control or "widget"</td></tr>
<tr id="row_149_26_15_1_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_active_x_container.html" target="_self">wxActiveXContainer</a></td><td class="desc">WxActiveXContainer is a host for an ActiveX control on Windows (and as such is a platform-specific class)</td></tr>
<tr id="row_149_26_15_1_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_animation_ctrl.html" target="_self">wxAnimationCtrl</a></td><td class="desc">This is a static control which displays an animation</td></tr>
<tr id="row_149_26_15_1_2_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_149_26_15_1_2_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('149_26_15_1_2_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_any_button.html" target="_self">wxAnyButton</a></td><td class="desc">A class for common button functionality used as the base for the various button classes</td></tr>
<tr id="row_149_26_15_1_2_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_149_26_15_1_2_0_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('149_26_15_1_2_0_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_button.html" target="_self">wxButton</a></td><td class="desc">A button is a control that contains a text string, and is one of the most common elements of a GUI</td></tr>
<tr id="row_149_26_15_1_2_0_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_149_26_15_1_2_0_0_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('149_26_15_1_2_0_0_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_bitmap_button.html" target="_self">wxBitmapButton</a></td><td class="desc">A bitmap button is a control that contains a bitmap</td></tr>
<tr id="row_149_26_15_1_2_0_0_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_context_help_button.html" target="_self">wxContextHelpButton</a></td><td class="desc">Instances of this class may be used to add a question mark button that when pressed, puts the application into context-help mode</td></tr>
<tr id="row_149_26_15_1_2_0_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_command_link_button.html" target="_self">wxCommandLinkButton</a></td><td class="desc">Objects of this class are similar in appearance to the normal wxButtons but are similar to the links in a web page in functionality</td></tr>
<tr id="row_149_26_15_1_2_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_149_26_15_1_2_1_" src="ftv2plastnode.png" alt="\" width="16" height="22" onclick="toggleFolder('149_26_15_1_2_1_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_toggle_button.html" target="_self">wxToggleButton</a></td><td class="desc">WxToggleButton is a button that stays pressed when clicked by the user</td></tr>
<tr id="row_149_26_15_1_2_1_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_bitmap_toggle_button.html" target="_self">wxBitmapToggleButton</a></td><td class="desc">WxBitmapToggleButton is a <a class="el" href="classwx_toggle_button.html" title="wxToggleButton is a button that stays pressed when clicked by the user.">wxToggleButton</a> that contains a bitmap instead of text</td></tr>
<tr id="row_149_26_15_1_3_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_aui_tool_bar.html" target="_self">wxAuiToolBar</a></td><td class="desc">WxAuiToolBar is a dockable toolbar, part of the wxAUI class framework</td></tr>
<tr id="row_149_26_15_1_4_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_149_26_15_1_4_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('149_26_15_1_4_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_book_ctrl_base.html" target="_self">wxBookCtrlBase</a></td><td class="desc">A book control is a convenient way of displaying multiple pages of information, displayed one page at a time</td></tr>
<tr id="row_149_26_15_1_4_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_aui_notebook.html" target="_self">wxAuiNotebook</a></td><td class="desc">WxAuiNotebook is part of the wxAUI class framework, which represents a notebook control, managing multiple windows with associated tabs</td></tr>
<tr id="row_149_26_15_1_4_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_choicebook.html" target="_self">wxChoicebook</a></td><td class="desc">WxChoicebook is a class similar to <a class="el" href="classwx_notebook.html" title="This class represents a notebook control, which manages multiple windows with associated tabs...">wxNotebook</a>, but uses a <a class="el" href="classwx_choice.html" title="A choice item is used to select one of a list of strings.">wxChoice</a> control to show the labels instead of the tabs</td></tr>
<tr id="row_149_26_15_1_4_2_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_listbook.html" target="_self">wxListbook</a></td><td class="desc">WxListbook is a class similar to <a class="el" href="classwx_notebook.html" title="This class represents a notebook control, which manages multiple windows with associated tabs...">wxNotebook</a> but which uses a <a class="el" href="classwx_list_ctrl.html" title="A list control presents lists in a number of formats: list view, report view, icon view and small ico...">wxListCtrl</a> to show the labels instead of the tabs</td></tr>
<tr id="row_149_26_15_1_4_3_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_notebook.html" target="_self">wxNotebook</a></td><td class="desc">This class represents a notebook control, which manages multiple windows with associated tabs</td></tr>
<tr id="row_149_26_15_1_4_4_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_simplebook.html" target="_self">wxSimplebook</a></td><td class="desc">WxSimplebook is a control showing exactly one of its several pages</td></tr>
<tr id="row_149_26_15_1_4_5_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_toolbook.html" target="_self">wxToolbook</a></td><td class="desc">WxToolbook is a class similar to <a class="el" href="classwx_notebook.html" title="This class represents a notebook control, which manages multiple windows with associated tabs...">wxNotebook</a> but which uses a <a class="el" href="classwx_tool_bar.html" title="A toolbar is a bar of buttons and/or other controls usually placed below the menu bar in a wxFrame...">wxToolBar</a> to show the labels instead of the tabs</td></tr>
<tr id="row_149_26_15_1_4_6_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_treebook.html" target="_self">wxTreebook</a></td><td class="desc">This class is an extension of the <a class="el" href="classwx_notebook.html" title="This class represents a notebook control, which manages multiple windows with associated tabs...">wxNotebook</a> class that allows a tree structured set of pages to be shown in a control</td></tr>
<tr id="row_149_26_15_1_5_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_calendar_ctrl.html" target="_self">wxCalendarCtrl</a></td><td class="desc">The calendar control allows the user to pick a date</td></tr>
<tr id="row_149_26_15_1_6_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_check_box.html" target="_self">wxCheckBox</a></td><td class="desc">A checkbox is a labelled box which by default is either on (checkmark is visible) or off (no checkmark)</td></tr>
<tr id="row_149_26_15_1_7_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_choice.html" target="_self">wxChoice</a></td><td class="desc">A choice item is used to select one of a list of strings</td></tr>
<tr id="row_149_26_15_1_8_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_collapsible_pane.html" target="_self">wxCollapsiblePane</a></td><td class="desc">A collapsible pane is a container with an embedded button-like control which can be used by the user to collapse or expand the pane's contents</td></tr>
<tr id="row_149_26_15_1_9_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_combo_box.html" target="_self">wxComboBox</a></td><td class="desc">A combobox is like a combination of an edit control and a listbox</td></tr>
<tr id="row_149_26_15_1_10_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_149_26_15_1_10_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('149_26_15_1_10_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_combo_ctrl.html" target="_self">wxComboCtrl</a></td><td class="desc">A combo control is a generic combobox that allows totally custom popup</td></tr>
<tr id="row_149_26_15_1_10_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_owner_drawn_combo_box.html" target="_self">wxOwnerDrawnComboBox</a></td><td class="desc">WxOwnerDrawnComboBox is a combobox with owner-drawn list items</td></tr>
<tr id="row_149_26_15_1_10_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_rich_text_style_combo_ctrl.html" target="_self">wxRichTextStyleComboCtrl</a></td><td class="desc">This is a combo control that can display the styles in a <a class="el" href="classwx_rich_text_style_sheet.html" title="A style sheet contains named paragraph and character styles that make it easy for a user to apply com...">wxRichTextStyleSheet</a>, and apply the selection to an associated <a class="el" href="classwx_rich_text_ctrl.html" title="wxRichTextCtrl provides a generic, ground-up implementation of a text control capable of showing mult...">wxRichTextCtrl</a></td></tr>
<tr id="row_149_26_15_1_11_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_control_with_items.html" target="_self">wxControlWithItems</a></td><td class="desc">This is convenience class that derives from both <a class="el" href="classwx_control.html" title="This is the base class for a control or "widget".">wxControl</a> and <a class="el" href="classwx_item_container.html" title="This class is an abstract base class for some wxWidgets controls which contain several items such as ...">wxItemContainer</a></td></tr>
<tr id="row_149_26_15_1_12_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_149_26_15_1_12_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('149_26_15_1_12_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_data_view_ctrl.html" target="_self">wxDataViewCtrl</a></td><td class="desc">WxDataViewCtrl is a control to display data either in a tree like fashion or in a tabular form or both</td></tr>
<tr id="row_149_26_15_1_12_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_data_view_list_ctrl.html" target="_self">wxDataViewListCtrl</a></td><td class="desc">This class is a <a class="el" href="classwx_data_view_ctrl.html" title="wxDataViewCtrl is a control to display data either in a tree like fashion or in a tabular form or bot...">wxDataViewCtrl</a> which internally uses a <a class="el" href="classwx_data_view_list_store.html" title="wxDataViewListStore is a specialised wxDataViewModel for storing a simple table of data...">wxDataViewListStore</a> and forwards most of its API to that class</td></tr>
<tr id="row_149_26_15_1_12_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_data_view_tree_ctrl.html" target="_self">wxDataViewTreeCtrl</a></td><td class="desc">This class is a <a class="el" href="classwx_data_view_ctrl.html" title="wxDataViewCtrl is a control to display data either in a tree like fashion or in a tabular form or bot...">wxDataViewCtrl</a> which internally uses a <a class="el" href="classwx_data_view_tree_store.html" title="wxDataViewTreeStore is a specialised wxDataViewModel for storing simple trees very much like wxTreeCt...">wxDataViewTreeStore</a> and forwards most of its API to that class</td></tr>
<tr id="row_149_26_15_1_13_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_date_picker_ctrl.html" target="_self">wxDatePickerCtrl</a></td><td class="desc">This control allows the user to select a date</td></tr>
<tr id="row_149_26_15_1_14_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_file_ctrl.html" target="_self">wxFileCtrl</a></td><td class="desc">This control allows the user to select a file</td></tr>
<tr id="row_149_26_15_1_15_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_gauge.html" target="_self">wxGauge</a></td><td class="desc">A gauge is a horizontal or vertical bar which shows a quantity (often time)</td></tr>
<tr id="row_149_26_15_1_16_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_generic_dir_ctrl.html" target="_self">wxGenericDirCtrl</a></td><td class="desc">This control can be used to place a directory listing (with optional files) on an arbitrary window</td></tr>
<tr id="row_149_26_15_1_17_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_149_26_15_1_17_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('149_26_15_1_17_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_header_ctrl.html" target="_self">wxHeaderCtrl</a></td><td class="desc">WxHeaderCtrl is the control containing the column headings which is usually used for display of tabular data</td></tr>
<tr id="row_149_26_15_1_17_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_header_ctrl_simple.html" target="_self">wxHeaderCtrlSimple</a></td><td class="desc">WxHeaderCtrlSimple is a concrete header control which can be used directly, without inheriting from it as you need to do when using <a class="el" href="classwx_header_ctrl.html" title="wxHeaderCtrl is the control containing the column headings which is usually used for display of tabul...">wxHeaderCtrl</a> itself</td></tr>
<tr id="row_149_26_15_1_18_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_hyperlink_ctrl.html" target="_self">wxHyperlinkCtrl</a></td><td class="desc">This class shows a static text element which links to an URL</td></tr>
<tr id="row_149_26_15_1_19_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_info_bar.html" target="_self">wxInfoBar</a></td><td class="desc">An info bar is a transient window shown at top or bottom of its parent window to display non-critical information to the user</td></tr>
<tr id="row_149_26_15_1_20_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_list_box.html" target="_self">wxListBox</a></td><td class="desc">A listbox is used to select one or more of a list of strings</td></tr>
<tr id="row_149_26_15_1_21_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_149_26_15_1_21_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('149_26_15_1_21_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_list_ctrl.html" target="_self">wxListCtrl</a></td><td class="desc">A list control presents lists in a number of formats: list view, report view, icon view and small icon view</td></tr>
<tr id="row_149_26_15_1_21_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_list_view.html" target="_self">wxListView</a></td><td class="desc">This class currently simply presents a simpler to use interface for the <a class="el" href="classwx_list_ctrl.html" title="A list control presents lists in a number of formats: list view, report view, icon view and small ico...">wxListCtrl</a> – it can be thought of as a <em>façade</em> for that complicated class</td></tr>
<tr id="row_149_26_15_1_22_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_media_ctrl.html" target="_self">wxMediaCtrl</a></td><td class="desc">WxMediaCtrl is a class for displaying types of media, such as videos, audio files, natively through native codecs</td></tr>
<tr id="row_149_26_15_1_23_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_149_26_15_1_23_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('149_26_15_1_23_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_picker_base.html" target="_self">wxPickerBase</a></td><td class="desc">Base abstract class for all pickers which support an auxiliary text control</td></tr>
<tr id="row_149_26_15_1_23_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_colour_picker_ctrl.html" target="_self">wxColourPickerCtrl</a></td><td class="desc">This control allows the user to select a colour</td></tr>
<tr id="row_149_26_15_1_23_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_dir_picker_ctrl.html" target="_self">wxDirPickerCtrl</a></td><td class="desc">This control allows the user to select a directory</td></tr>
<tr id="row_149_26_15_1_23_2_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_file_picker_ctrl.html" target="_self">wxFilePickerCtrl</a></td><td class="desc">This control allows the user to select a file</td></tr>
<tr id="row_149_26_15_1_23_3_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_font_picker_ctrl.html" target="_self">wxFontPickerCtrl</a></td><td class="desc">This control allows the user to select a font</td></tr>
<tr id="row_149_26_15_1_24_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_property_grid.html" target="_self">wxPropertyGrid</a></td><td class="desc">WxPropertyGrid is a specialized grid for editing properties - in other words name = value pairs</td></tr>
<tr id="row_149_26_15_1_25_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_radio_box.html" target="_self">wxRadioBox</a></td><td class="desc">A radio box item is used to select one of number of mutually exclusive choices</td></tr>
<tr id="row_149_26_15_1_26_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_radio_button.html" target="_self">wxRadioButton</a></td><td class="desc">A radio button item is a button which usually denotes one of several mutually exclusive options</td></tr>
<tr id="row_149_26_15_1_27_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_149_26_15_1_27_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('149_26_15_1_27_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_ribbon_control.html" target="_self">wxRibbonControl</a></td><td class="desc">WxRibbonControl serves as a base class for all controls which share the ribbon characteristics of having a ribbon art provider, and (optionally) non-continuous resizing</td></tr>
<tr id="row_149_26_15_1_27_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_ribbon_bar.html" target="_self">wxRibbonBar</a></td><td class="desc">Top-level control in a ribbon user interface</td></tr>
<tr id="row_149_26_15_1_27_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_ribbon_button_bar.html" target="_self">wxRibbonButtonBar</a></td><td class="desc">A ribbon button bar is similar to a traditional toolbar</td></tr>
<tr id="row_149_26_15_1_27_2_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_ribbon_gallery.html" target="_self">wxRibbonGallery</a></td><td class="desc">A ribbon gallery is like a <a class="el" href="classwx_list_box.html" title="A listbox is used to select one or more of a list of strings.">wxListBox</a>, but for bitmaps rather than strings</td></tr>
<tr id="row_149_26_15_1_27_3_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_ribbon_page.html" target="_self">wxRibbonPage</a></td><td class="desc">Container for related ribbon panels, and a tab within a ribbon bar</td></tr>
<tr id="row_149_26_15_1_27_4_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_ribbon_panel.html" target="_self">wxRibbonPanel</a></td><td class="desc">Serves as a container for a group of (ribbon) controls</td></tr>
<tr id="row_149_26_15_1_27_5_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_ribbon_tool_bar.html" target="_self">wxRibbonToolBar</a></td><td class="desc">A ribbon tool bar is similar to a traditional toolbar which has no labels</td></tr>
<tr id="row_149_26_15_1_28_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_rich_text_ctrl.html" target="_self">wxRichTextCtrl</a></td><td class="desc">WxRichTextCtrl provides a generic, ground-up implementation of a text control capable of showing multiple styles and images</td></tr>
<tr id="row_149_26_15_1_29_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_rich_text_style_list_ctrl.html" target="_self">wxRichTextStyleListCtrl</a></td><td class="desc">This class incorporates a <a class="el" href="classwx_rich_text_style_list_box.html" title="This is a listbox that can display the styles in a wxRichTextStyleSheet, and apply the selection to a...">wxRichTextStyleListBox</a> and a choice control that allows the user to select the category of style to view</td></tr>
<tr id="row_149_26_15_1_30_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_scroll_bar.html" target="_self">wxScrollBar</a></td><td class="desc">A <a class="el" href="classwx_scroll_bar.html" title="A wxScrollBar is a control that represents a horizontal or vertical scrollbar.">wxScrollBar</a> is a control that represents a horizontal or vertical scrollbar</td></tr>
<tr id="row_149_26_15_1_31_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_slider.html" target="_self">wxSlider</a></td><td class="desc">A slider is a control with a handle which can be pulled back and forth to change the value</td></tr>
<tr id="row_149_26_15_1_32_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_spin_button.html" target="_self">wxSpinButton</a></td><td class="desc">A <a class="el" href="classwx_spin_button.html" title="A wxSpinButton has two small up and down (or left and right) arrow buttons.">wxSpinButton</a> has two small up and down (or left and right) arrow buttons</td></tr>
<tr id="row_149_26_15_1_33_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_spin_ctrl.html" target="_self">wxSpinCtrl</a></td><td class="desc">WxSpinCtrl combines <a class="el" href="classwx_text_ctrl.html" title="A text control allows text to be displayed and edited.">wxTextCtrl</a> and <a class="el" href="classwx_spin_button.html" title="A wxSpinButton has two small up and down (or left and right) arrow buttons.">wxSpinButton</a> in one control</td></tr>
<tr id="row_149_26_15_1_34_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_spin_ctrl_double.html" target="_self">wxSpinCtrlDouble</a></td><td class="desc">WxSpinCtrlDouble combines <a class="el" href="classwx_text_ctrl.html" title="A text control allows text to be displayed and edited.">wxTextCtrl</a> and <a class="el" href="classwx_spin_button.html" title="A wxSpinButton has two small up and down (or left and right) arrow buttons.">wxSpinButton</a> in one control and displays a real number</td></tr>
<tr id="row_149_26_15_1_35_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_static_bitmap.html" target="_self">wxStaticBitmap</a></td><td class="desc">A static bitmap control displays a bitmap</td></tr>
<tr id="row_149_26_15_1_36_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_static_box.html" target="_self">wxStaticBox</a></td><td class="desc">A static box is a rectangle drawn around other windows to denote a logical grouping of items</td></tr>
<tr id="row_149_26_15_1_37_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_static_line.html" target="_self">wxStaticLine</a></td><td class="desc">A static line is just a line which may be used in a dialog to separate the groups of controls</td></tr>
<tr id="row_149_26_15_1_38_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_static_text.html" target="_self">wxStaticText</a></td><td class="desc">A static text control displays one or more lines of read-only text</td></tr>
<tr id="row_149_26_15_1_39_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_status_bar.html" target="_self">wxStatusBar</a></td><td class="desc">A status bar is a narrow window that can be placed along the bottom of a frame to give small amounts of status information</td></tr>
<tr id="row_149_26_15_1_40_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_styled_text_ctrl.html" target="_self">wxStyledTextCtrl</a></td><td class="desc">A wxWidgets implementation of the Scintilla source code editing component</td></tr>
<tr id="row_149_26_15_1_41_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_149_26_15_1_41_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('149_26_15_1_41_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_text_ctrl.html" target="_self">wxTextCtrl</a></td><td class="desc">A text control allows text to be displayed and edited</td></tr>
<tr id="row_149_26_15_1_41_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_search_ctrl.html" target="_self">wxSearchCtrl</a></td><td class="desc">A search control is a composite control with a search button, a text control, and a cancel button</td></tr>
<tr id="row_149_26_15_1_42_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_time_picker_ctrl.html" target="_self">wxTimePickerCtrl</a></td><td class="desc">This control allows the user to enter time</td></tr>
<tr id="row_149_26_15_1_43_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_tool_bar.html" target="_self">wxToolBar</a></td><td class="desc">A toolbar is a bar of buttons and/or other controls usually placed below the menu bar in a <a class="el" href="classwx_frame.html" title="A frame is a window whose size and position can (usually) be changed by the user.">wxFrame</a></td></tr>
<tr id="row_149_26_15_1_44_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_tree_ctrl.html" target="_self">wxTreeCtrl</a></td><td class="desc">A tree control presents information as a hierarchy, with items that may be expanded to show further items</td></tr>
<tr id="row_149_26_15_1_45_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_web_kit_ctrl.html" target="_self">wxWebKitCtrl</a></td><td class="desc">This control is a native wrapper around the Safari web browsing engine</td></tr>
<tr id="row_149_26_15_1_46_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_web_view.html" target="_self">wxWebView</a></td><td class="desc">This control may be used to render web (HTML / CSS / javascript) documents</td></tr>
<tr id="row_149_26_15_2_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_g_l_canvas.html" target="_self">wxGLCanvas</a></td><td class="desc">WxGLCanvas is a class for displaying OpenGL graphics</td></tr>
<tr id="row_149_26_15_3_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_html_help_window.html" target="_self">wxHtmlHelpWindow</a></td><td class="desc">This class is used by <a class="el" href="classwx_html_help_controller.html" title="This help controller provides an easy way of displaying HTML help in your application (see HTML Sampl...">wxHtmlHelpController</a> to display help within a frame or dialog, but you can use it yourself to create an embedded HTML help window</td></tr>
<tr id="row_149_26_15_4_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_m_d_i_client_window.html" target="_self">wxMDIClientWindow</a></td><td class="desc">An MDI client window is a child of <a class="el" href="classwx_m_d_i_parent_frame.html" title="An MDI (Multiple Document Interface) parent frame is a window which can contain MDI child frames in i...">wxMDIParentFrame</a>, and manages zero or more <a class="el" href="classwx_m_d_i_child_frame.html" title="An MDI child frame is a frame that can only exist inside a wxMDIClientWindow, which is itself a child...">wxMDIChildFrame</a> objects</td></tr>
<tr id="row_149_26_15_5_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_menu_bar.html" target="_self">wxMenuBar</a></td><td class="desc">A menu bar is a series of menus accessible from the top of a frame</td></tr>
<tr id="row_149_26_15_6_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img id="arr_149_26_15_6_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('149_26_15_6_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_non_owned_window.html" target="_self">wxNonOwnedWindow</a></td><td class="desc">Common base class for all non-child windows</td></tr>
<tr id="row_149_26_15_6_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_149_26_15_6_0_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('149_26_15_6_0_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_popup_window.html" target="_self">wxPopupWindow</a></td><td class="desc">A special kind of top level window used for popup menus, combobox popups and such</td></tr>
<tr id="row_149_26_15_6_0_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_popup_transient_window.html" target="_self">wxPopupTransientWindow</a></td><td class="desc">A <a class="el" href="classwx_popup_window.html" title="A special kind of top level window used for popup menus, combobox popups and such.">wxPopupWindow</a> which disappears automatically when the user clicks mouse outside it or if it loses focus in any other way</td></tr>
<tr id="row_149_26_15_6_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_149_26_15_6_1_" src="ftv2plastnode.png" alt="\" width="16" height="22" onclick="toggleFolder('149_26_15_6_1_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_top_level_window.html" target="_self">wxTopLevelWindow</a></td><td class="desc">WxTopLevelWindow is a common base class for <a class="el" href="classwx_dialog.html" title="A dialog box is a window with a title bar and sometimes a system menu, which can be moved around the ...">wxDialog</a> and <a class="el" href="classwx_frame.html" title="A frame is a window whose size and position can (usually) be changed by the user.">wxFrame</a></td></tr>
<tr id="row_149_26_15_6_1_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img id="arr_149_26_15_6_1_0_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('149_26_15_6_1_0_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_dialog.html" target="_self">wxDialog</a></td><td class="desc">A dialog box is a window with a title bar and sometimes a system menu, which can be moved around the screen</td></tr>
<tr id="row_149_26_15_6_1_0_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_colour_dialog.html" target="_self">wxColourDialog</a></td><td class="desc">This class represents the colour chooser dialog</td></tr>
<tr id="row_149_26_15_6_1_0_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_dir_dialog.html" target="_self">wxDirDialog</a></td><td class="desc">This class represents the directory chooser dialog</td></tr>
<tr id="row_149_26_15_6_1_0_2_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_file_dialog.html" target="_self">wxFileDialog</a></td><td class="desc">This class represents the file chooser dialog</td></tr>
<tr id="row_149_26_15_6_1_0_3_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_find_replace_dialog.html" target="_self">wxFindReplaceDialog</a></td><td class="desc">WxFindReplaceDialog is a standard modeless dialog which is used to allow the user to search for some text (and possibly replace it with something else)</td></tr>
<tr id="row_149_26_15_6_1_0_4_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_font_dialog.html" target="_self">wxFontDialog</a></td><td class="desc">This class represents the font chooser dialog</td></tr>
<tr id="row_149_26_15_6_1_0_5_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_149_26_15_6_1_0_5_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('149_26_15_6_1_0_5_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_generic_progress_dialog.html" target="_self">wxGenericProgressDialog</a></td><td class="desc">This class represents a dialog that shows a short message and a progress bar</td></tr>
<tr id="row_149_26_15_6_1_0_5_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_progress_dialog.html" target="_self">wxProgressDialog</a></td><td class="desc">If supported by the platform this class will provide the platform's native progress dialog, else it will simply be the <em><a class="el" href="classwx_generic_progress_dialog.html" title="This class represents a dialog that shows a short message and a progress bar.">wxGenericProgressDialog</a></em> </td></tr>
<tr id="row_149_26_15_6_1_0_6_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_html_help_dialog.html" target="_self">wxHtmlHelpDialog</a></td><td class="desc">This class is used by <a class="el" href="classwx_html_help_controller.html" title="This help controller provides an easy way of displaying HTML help in your application (see HTML Sampl...">wxHtmlHelpController</a> to display help</td></tr>
<tr id="row_149_26_15_6_1_0_7_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_message_dialog.html" target="_self">wxMessageDialog</a></td><td class="desc">This class represents a dialog that shows a single or multi-line message, with a choice of OK, Yes, No and Cancel buttons</td></tr>
<tr id="row_149_26_15_6_1_0_8_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_multi_choice_dialog.html" target="_self">wxMultiChoiceDialog</a></td><td class="desc">This class represents a dialog that shows a list of strings, and allows the user to select one or more</td></tr>
<tr id="row_149_26_15_6_1_0_9_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_print_abort_dialog.html" target="_self">wxPrintAbortDialog</a></td><td class="desc">The dialog created by default by the print framework that enables aborting the printing process</td></tr>
<tr id="row_149_26_15_6_1_0_10_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_149_26_15_6_1_0_10_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('149_26_15_6_1_0_10_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_property_sheet_dialog.html" target="_self">wxPropertySheetDialog</a></td><td class="desc">This class represents a property sheet dialog: a tabbed dialog for showing settings</td></tr>
<tr id="row_149_26_15_6_1_0_10_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_rich_text_formatting_dialog.html" target="_self">wxRichTextFormattingDialog</a></td><td class="desc">This dialog allows the user to edit a character and/or paragraph style</td></tr>
<tr id="row_149_26_15_6_1_0_11_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_rearrange_dialog.html" target="_self">wxRearrangeDialog</a></td><td class="desc">A dialog allowing the user to rearrange the specified items</td></tr>
<tr id="row_149_26_15_6_1_0_12_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_rich_text_style_organiser_dialog.html" target="_self">wxRichTextStyleOrganiserDialog</a></td><td class="desc">This class shows a style sheet and allows the user to edit, add and remove styles</td></tr>
<tr id="row_149_26_15_6_1_0_13_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_single_choice_dialog.html" target="_self">wxSingleChoiceDialog</a></td><td class="desc">This class represents a dialog that shows a list of strings, and allows the user to select one</td></tr>
<tr id="row_149_26_15_6_1_0_14_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_symbol_picker_dialog.html" target="_self">wxSymbolPickerDialog</a></td><td class="desc">WxSymbolPickerDialog presents the user with a choice of fonts and a grid of available characters</td></tr>
<tr id="row_149_26_15_6_1_0_15_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_149_26_15_6_1_0_15_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('149_26_15_6_1_0_15_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_text_entry_dialog.html" target="_self">wxTextEntryDialog</a></td><td class="desc">This class represents a dialog that requests a one-line text string from the user</td></tr>
<tr id="row_149_26_15_6_1_0_15_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_password_entry_dialog.html" target="_self">wxPasswordEntryDialog</a></td><td class="desc">This class represents a dialog that requests a one-line password string from the user</td></tr>
<tr id="row_149_26_15_6_1_0_16_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_wizard.html" target="_self">wxWizard</a></td><td class="desc">WxWizard is the central class for implementing 'wizard-like' dialogs</td></tr>
<tr id="row_149_26_15_6_1_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img id="arr_149_26_15_6_1_1_" src="ftv2plastnode.png" alt="\" width="16" height="22" onclick="toggleFolder('149_26_15_6_1_1_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_frame.html" target="_self">wxFrame</a></td><td class="desc">A frame is a window whose size and position can (usually) be changed by the user</td></tr>
<tr id="row_149_26_15_6_1_1_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_doc_child_frame.html" target="_self">wxDocChildFrame</a></td><td class="desc">Default frame for displaying documents on separate windows</td></tr>
<tr id="row_149_26_15_6_1_1_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_doc_parent_frame.html" target="_self">wxDocParentFrame</a></td><td class="desc">Default top-level frame for applications using the document/view framework</td></tr>
<tr id="row_149_26_15_6_1_1_2_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_html_help_frame.html" target="_self">wxHtmlHelpFrame</a></td><td class="desc">This class is used by <a class="el" href="classwx_html_help_controller.html" title="This help controller provides an easy way of displaying HTML help in your application (see HTML Sampl...">wxHtmlHelpController</a> to display help</td></tr>
<tr id="row_149_26_15_6_1_1_3_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img id="arr_149_26_15_6_1_1_3_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('149_26_15_6_1_1_3_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_m_d_i_child_frame.html" target="_self">wxMDIChildFrame</a></td><td class="desc">An MDI child frame is a frame that can only exist inside a <a class="el" href="classwx_m_d_i_client_window.html" title="An MDI client window is a child of wxMDIParentFrame, and manages zero or more wxMDIChildFrame objects...">wxMDIClientWindow</a>, which is itself a child of <a class="el" href="classwx_m_d_i_parent_frame.html" title="An MDI (Multiple Document Interface) parent frame is a window which can contain MDI child frames in i...">wxMDIParentFrame</a></td></tr>
<tr id="row_149_26_15_6_1_1_3_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_doc_m_d_i_child_frame.html" target="_self">wxDocMDIChildFrame</a></td><td class="desc">Default frame for displaying documents on separate windows</td></tr>
<tr id="row_149_26_15_6_1_1_4_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img id="arr_149_26_15_6_1_1_4_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('149_26_15_6_1_1_4_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_m_d_i_parent_frame.html" target="_self">wxMDIParentFrame</a></td><td class="desc">An MDI (Multiple Document Interface) parent frame is a window which can contain MDI child frames in its client area which emulates the full desktop</td></tr>
<tr id="row_149_26_15_6_1_1_4_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_doc_m_d_i_parent_frame.html" target="_self">wxDocMDIParentFrame</a></td><td class="desc">Default top-level frame for applications using the document/view framework</td></tr>
<tr id="row_149_26_15_6_1_1_5_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_mini_frame.html" target="_self">wxMiniFrame</a></td><td class="desc">A miniframe is a frame with a small title bar</td></tr>
<tr id="row_149_26_15_6_1_1_6_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_preview_frame.html" target="_self">wxPreviewFrame</a></td><td class="desc">This class provides the default method of managing the print preview interface</td></tr>
<tr id="row_149_26_15_6_1_1_7_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_splash_screen.html" target="_self">wxSplashScreen</a></td><td class="desc">WxSplashScreen shows a window with a thin border, displaying a bitmap describing your application</td></tr>
<tr id="row_149_26_15_7_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img id="arr_149_26_15_7_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('149_26_15_7_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_panel.html" target="_self">wxPanel</a></td><td class="desc">A panel is a window on which controls are placed</td></tr>
<tr id="row_149_26_15_7_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_editable_list_box.html" target="_self">wxEditableListBox</a></td><td class="desc">An editable listbox is composite control that lets the user easily enter, delete and reorder a list of strings</td></tr>
<tr id="row_149_26_15_7_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_h_scrolled_window.html" target="_self">wxHScrolledWindow</a></td><td class="desc">In the name of this class, "H" stands for "horizontal" because it can be used for scrolling columns of variable widths</td></tr>
<tr id="row_149_26_15_7_2_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_h_v_scrolled_window.html" target="_self">wxHVScrolledWindow</a></td><td class="desc">This window inherits all functionality of both vertical and horizontal, variable scrolled windows</td></tr>
<tr id="row_149_26_15_7_3_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_preview_control_bar.html" target="_self">wxPreviewControlBar</a></td><td class="desc">This is the default implementation of the preview control bar, a panel with buttons and a zoom control</td></tr>
<tr id="row_149_26_15_7_4_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_property_grid_manager.html" target="_self">wxPropertyGridManager</a></td><td class="desc">WxPropertyGridManager is an efficient multi-page version of <a class="el" href="classwx_property_grid.html" title="wxPropertyGrid is a specialized grid for editing properties - in other words name = value pairs...">wxPropertyGrid</a>, which can optionally have toolbar for mode and page selection, a help text box, and a header</td></tr>
<tr id="row_149_26_15_7_5_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_rearrange_ctrl.html" target="_self">wxRearrangeCtrl</a></td><td class="desc">A composite control containing a <a class="el" href="classwx_rearrange_list.html" title="A listbox-like control allowing the user to rearrange the items and to enable or disable them...">wxRearrangeList</a> and the buttons allowing to move the items in it</td></tr>
<tr id="row_149_26_15_7_6_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_149_26_15_7_6_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('149_26_15_7_6_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_v_scrolled_window.html" target="_self">wxVScrolledWindow</a></td><td class="desc">In the name of this class, "V" may stand for "variable" because it can be used for scrolling rows of variable heights; "virtual", because it is not necessary to know the heights of all rows in advance – only those which are shown on the screen need to be measured; or even "vertical", because this class only supports scrolling vertically</td></tr>
<tr id="row_149_26_15_7_6_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_149_26_15_7_6_0_" src="ftv2plastnode.png" alt="\" width="16" height="22" onclick="toggleFolder('149_26_15_7_6_0_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_v_list_box.html" target="_self">wxVListBox</a></td><td class="desc">WxVListBox is a wxListBox-like control with the following two main differences from a regular <a class="el" href="classwx_list_box.html" title="A listbox is used to select one or more of a list of strings.">wxListBox</a>: it can have an arbitrarily huge number of items because it doesn't store them itself but uses the <a class="el" href="classwx_v_list_box.html#aa3f4d4f5f0c9f00dd3e671334345b83b" title="The derived class must implement this function to actually draw the item with the given index on the ...">OnDrawItem()</a> callback to draw them (so it is a virtual listbox) and its items can have variable height as determined by <a class="el" href="classwx_v_list_box.html#a25c651d397f60c62039dd89bd6f92152" title="The derived class must implement this method to return the height of the specified item (in pixels)...">OnMeasureItem()</a> (so it is also a listbox with the lines of variable height)</td></tr>
<tr id="row_149_26_15_7_6_0_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img id="arr_149_26_15_7_6_0_0_" src="ftv2plastnode.png" alt="\" width="16" height="22" onclick="toggleFolder('149_26_15_7_6_0_0_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_html_list_box.html" target="_self">wxHtmlListBox</a></td><td class="desc">WxHtmlListBox is an implementation of <a class="el" href="classwx_v_list_box.html" title="wxVListBox is a wxListBox-like control with the following two main differences from a regular wxListB...">wxVListBox</a> which shows HTML content in the listbox rows</td></tr>
<tr id="row_149_26_15_7_6_0_0_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_rich_text_style_list_box.html" target="_self">wxRichTextStyleListBox</a></td><td class="desc">This is a listbox that can display the styles in a <a class="el" href="classwx_rich_text_style_sheet.html" title="A style sheet contains named paragraph and character styles that make it easy for a user to apply com...">wxRichTextStyleSheet</a>, and apply the selection to an associated <a class="el" href="classwx_rich_text_ctrl.html" title="wxRichTextCtrl provides a generic, ground-up implementation of a text control capable of showing mult...">wxRichTextCtrl</a></td></tr>
<tr id="row_149_26_15_7_6_0_0_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_simple_html_list_box.html" target="_self">wxSimpleHtmlListBox</a></td><td class="desc">WxSimpleHtmlListBox is an implementation of <a class="el" href="classwx_html_list_box.html" title="wxHtmlListBox is an implementation of wxVListBox which shows HTML content in the listbox rows...">wxHtmlListBox</a> which shows HTML content in the listbox rows</td></tr>
<tr id="row_149_26_15_7_7_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_149_26_15_7_7_" src="ftv2plastnode.png" alt="\" width="16" height="22" onclick="toggleFolder('149_26_15_7_7_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_wizard_page.html" target="_self">wxWizardPage</a></td><td class="desc">WxWizardPage is one of the screens in <a class="el" href="classwx_wizard.html" title="wxWizard is the central class for implementing 'wizard-like' dialogs.">wxWizard</a>: it must know what are the following and preceding pages (which may be <span class="literal">NULL</span> for the first/last page)</td></tr>
<tr id="row_149_26_15_7_7_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_wizard_page_simple.html" target="_self">wxWizardPageSimple</a></td><td class="desc">WxWizardPageSimple is the simplest possible <a class="el" href="classwx_wizard_page.html" title="wxWizardPage is one of the screens in wxWizard: it must know what are the following and preceding pag...">wxWizardPage</a> implementation: it just returns the pointers given to its constructor from <a class="el" href="classwx_wizard_page.html#a90f7e694f3c8680a751a8240a1538a60" title="Get the page which should be shown when the user chooses the "Next" button: if NULL is returned...">wxWizardPage::GetNext()</a> and <a class="el" href="classwx_wizard_page.html#ab556984170e62541d15bbe892666bc68" title="Get the page which should be shown when the user chooses the "Back" button: if NULL is returned...">wxWizardPage::GetPrev()</a> functions</td></tr>
<tr id="row_149_26_15_8_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_p_g_multi_button.html" target="_self">wxPGMultiButton</a></td><td class="desc">This class can be used to have multiple buttons in a property editor</td></tr>
<tr id="row_149_26_15_9_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img id="arr_149_26_15_9_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('149_26_15_9_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_sash_window.html" target="_self">wxSashWindow</a></td><td class="desc">WxSashWindow allows any of its edges to have a sash which can be dragged to resize the window</td></tr>
<tr id="row_149_26_15_9_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_sash_layout_window.html" target="_self">wxSashLayoutWindow</a></td><td class="desc">WxSashLayoutWindow responds to OnCalculateLayout events generated by <a class="el" href="classwx_layout_algorithm.html" title="wxLayoutAlgorithm implements layout of subwindows in MDI or SDI frames.">wxLayoutAlgorithm</a></td></tr>
<tr id="row_149_26_15_10_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_splitter_window.html" target="_self">wxSplitterWindow</a></td><td class="desc">This class manages up to two subwindows</td></tr>
<tr id="row_149_26_15_11_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_tip_window.html" target="_self">wxTipWindow</a></td><td class="desc">Shows simple text in a popup tip window on creation</td></tr>
<tr id="row_149_26_15_12_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_tree_list_ctrl.html" target="_self">wxTreeListCtrl</a></td><td class="desc">A control combining <a class="el" href="classwx_tree_ctrl.html" title="A tree control presents information as a hierarchy, with items that may be expanded to show further i...">wxTreeCtrl</a> and <a class="el" href="classwx_list_ctrl.html" title="A list control presents lists in a number of formats: list view, report view, icon view and small ico...">wxListCtrl</a> features</td></tr>
<tr id="row_149_27_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_file_history.html" target="_self">wxFileHistory</a></td><td class="desc">The <a class="el" href="classwx_file_history.html" title="The wxFileHistory encapsulates a user interface convenience, the list of most recently visited files ...">wxFileHistory</a> encapsulates a user interface convenience, the list of most recently visited files as shown on a menu (usually the File menu)</td></tr>
<tr id="row_149_28_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_file_system.html" target="_self">wxFileSystem</a></td><td class="desc">This class provides an interface for opening files on different file systems</td></tr>
<tr id="row_149_29_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_149_29_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('149_29_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_file_system_handler.html" target="_self">wxFileSystemHandler</a></td><td class="desc">Classes derived from <a class="el" href="classwx_file_system_handler.html" title="Classes derived from wxFileSystemHandler are used to access virtual file systems.">wxFileSystemHandler</a> are used to access virtual file systems</td></tr>
<tr id="row_149_29_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_archive_f_s_handler.html" target="_self">wxArchiveFSHandler</a></td><td class="desc">A file system handler for accessing files inside of archives</td></tr>
<tr id="row_149_29_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_filter_f_s_handler.html" target="_self">wxFilterFSHandler</a></td><td class="desc">Filter file system handler</td></tr>
<tr id="row_149_29_2_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_internet_f_s_handler.html" target="_self">wxInternetFSHandler</a></td><td class="desc">A file system handler for accessing files from internet servers</td></tr>
<tr id="row_149_29_3_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_memory_f_s_handler.html" target="_self">wxMemoryFSHandler</a></td><td class="desc">This <a class="el" href="classwx_file_system.html" title="This class provides an interface for opening files on different file systems.">wxFileSystem</a> handler can store arbitrary data in memory stream and make them accessible via an URL</td></tr>
<tr id="row_149_30_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_filter_class_factory.html" target="_self">wxFilterClassFactory</a></td><td class="desc">Allows the creation of filter streams to handle compression formats such as gzip and bzip2</td></tr>
<tr id="row_149_31_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_find_replace_data.html" target="_self">wxFindReplaceData</a></td><td class="desc">WxFindReplaceData holds the data for <a class="el" href="classwx_find_replace_dialog.html" title="wxFindReplaceDialog is a standard modeless dialog which is used to allow the user to search for some ...">wxFindReplaceDialog</a></td></tr>
<tr id="row_149_32_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_font_data.html" target="_self">wxFontData</a></td><td class="desc">This class holds a variety of information related to font dialogs</td></tr>
<tr id="row_149_33_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_f_s_file.html" target="_self">wxFSFile</a></td><td class="desc">This class represents a single file opened by <a class="el" href="classwx_file_system.html" title="This class provides an interface for opening files on different file systems.">wxFileSystem</a></td></tr>
<tr id="row_149_34_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_149_34_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('149_34_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_g_d_i_object.html" target="_self">wxGDIObject</a></td><td class="desc">This class allows platforms to implement functionality to optimise GDI objects, such as <a class="el" href="classwx_pen.html" title="A pen is a drawing tool for drawing outlines.">wxPen</a>, <a class="el" href="classwx_brush.html" title="A brush is a drawing tool for filling in areas.">wxBrush</a> and <a class="el" href="classwx_font.html" title="A font is an object which determines the appearance of text.">wxFont</a></td></tr>
<tr id="row_149_34_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_bitmap.html" target="_self">wxBitmap</a></td><td class="desc">This class encapsulates the concept of a platform-dependent bitmap, either monochrome or colour or colour with alpha channel support</td></tr>
<tr id="row_149_34_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_brush.html" target="_self">wxBrush</a></td><td class="desc">A brush is a drawing tool for filling in areas</td></tr>
<tr id="row_149_34_2_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_cursor.html" target="_self">wxCursor</a></td><td class="desc">A cursor is a small bitmap usually used for denoting where the mouse pointer is, with a picture that might indicate the interpretation of a mouse click</td></tr>
<tr id="row_149_34_3_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_font.html" target="_self">wxFont</a></td><td class="desc">A font is an object which determines the appearance of text</td></tr>
<tr id="row_149_34_4_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_icon.html" target="_self">wxIcon</a></td><td class="desc">An icon is a small rectangular bitmap usually used for denoting a minimized application</td></tr>
<tr id="row_149_34_5_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_icon_bundle.html" target="_self">wxIconBundle</a></td><td class="desc">This class contains multiple copies of an icon in different sizes</td></tr>
<tr id="row_149_34_6_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_palette.html" target="_self">wxPalette</a></td><td class="desc">A palette is a table that maps pixel values to RGB colours</td></tr>
<tr id="row_149_34_7_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_pen.html" target="_self">wxPen</a></td><td class="desc">A pen is a drawing tool for drawing outlines</td></tr>
<tr id="row_149_34_8_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_region.html" target="_self">wxRegion</a></td><td class="desc">A <a class="el" href="classwx_region.html" title="A wxRegion represents a simple or complex region on a device context or window.">wxRegion</a> represents a simple or complex region on a device context or window</td></tr>
<tr id="row_149_35_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_g_l_context.html" target="_self">wxGLContext</a></td><td class="desc">An instance of a <a class="el" href="classwx_g_l_context.html" title="An instance of a wxGLContext represents the state of an OpenGL state machine and the connection betwe...">wxGLContext</a> represents the state of an OpenGL state machine and the connection between OpenGL and the system</td></tr>
<tr id="row_149_36_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_149_36_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('149_36_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_graphics_object.html" target="_self">wxGraphicsObject</a></td><td class="desc">This class is the superclass of native graphics objects like pens etc</td></tr>
<tr id="row_149_36_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_graphics_bitmap.html" target="_self">wxGraphicsBitmap</a></td><td class="desc">Represents a bitmap</td></tr>
<tr id="row_149_36_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_graphics_brush.html" target="_self">wxGraphicsBrush</a></td><td class="desc">A <a class="el" href="classwx_graphics_brush.html" title="A wxGraphicsBrush is a native representation of a brush.">wxGraphicsBrush</a> is a native representation of a brush</td></tr>
<tr id="row_149_36_2_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_graphics_context.html" target="_self">wxGraphicsContext</a></td><td class="desc">A <a class="el" href="classwx_graphics_context.html" title="A wxGraphicsContext instance is the object that is drawn upon.">wxGraphicsContext</a> instance is the object that is drawn upon</td></tr>
<tr id="row_149_36_3_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_graphics_font.html" target="_self">wxGraphicsFont</a></td><td class="desc">A <a class="el" href="classwx_graphics_font.html" title="A wxGraphicsFont is a native representation of a font.">wxGraphicsFont</a> is a native representation of a font</td></tr>
<tr id="row_149_36_4_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_graphics_matrix.html" target="_self">wxGraphicsMatrix</a></td><td class="desc">A <a class="el" href="classwx_graphics_matrix.html" title="A wxGraphicsMatrix is a native representation of an affine matrix.">wxGraphicsMatrix</a> is a native representation of an affine matrix</td></tr>
<tr id="row_149_36_5_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_graphics_path.html" target="_self">wxGraphicsPath</a></td><td class="desc">A <a class="el" href="classwx_graphics_path.html" title="A wxGraphicsPath is a native representation of a geometric path.">wxGraphicsPath</a> is a native representation of a geometric path</td></tr>
<tr id="row_149_36_6_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_graphics_pen.html" target="_self">wxGraphicsPen</a></td><td class="desc">A <a class="el" href="classwx_graphics_pen.html" title="A wxGraphicsPen is a native representation of a pen.">wxGraphicsPen</a> is a native representation of a pen</td></tr>
<tr id="row_149_37_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_graphics_renderer.html" target="_self">wxGraphicsRenderer</a></td><td class="desc">A <a class="el" href="classwx_graphics_renderer.html" title="A wxGraphicsRenderer is the instance corresponding to the rendering engine used.">wxGraphicsRenderer</a> is the instance corresponding to the rendering engine used</td></tr>
<tr id="row_149_38_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_149_38_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('149_38_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_grid_table_base.html" target="_self">wxGridTableBase</a></td><td class="desc">The almost abstract base class for grid tables</td></tr>
<tr id="row_149_38_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_grid_string_table.html" target="_self">wxGridStringTable</a></td><td class="desc">Simplest type of data table for a grid for small tables of strings that are stored in memory</td></tr>
<tr id="row_149_39_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_hash_table.html" target="_self">wxHashTable</a></td><td class="desc"></td></tr>
<tr id="row_149_40_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_149_40_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('149_40_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_help_controller_base.html" target="_self">wxHelpControllerBase</a></td><td class="desc">This is the abstract base class a family of classes by which applications may invoke a help viewer to provide on-line help</td></tr>
<tr id="row_149_40_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_ext_help_controller.html" target="_self">wxExtHelpController</a></td><td class="desc">This class implements help via an external browser</td></tr>
<tr id="row_149_40_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_help_controller.html" target="_self">wxHelpController</a></td><td class="desc">This is an alias for one of a family of help controller classes which is most appropriate for the current platform</td></tr>
<tr id="row_149_40_2_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_html_help_controller.html" target="_self">wxHtmlHelpController</a></td><td class="desc">This help controller provides an easy way of displaying HTML help in your application (see <a class="el" href="page_samples.html#page_samples_html">HTML Sample</a>, test example)</td></tr>
<tr id="row_149_41_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_149_41_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('149_41_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_html_cell.html" target="_self">wxHtmlCell</a></td><td class="desc">Internal data structure</td></tr>
<tr id="row_149_41_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_html_colour_cell.html" target="_self">wxHtmlColourCell</a></td><td class="desc">This cell changes the colour of either the background or the foreground</td></tr>
<tr id="row_149_41_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_html_container_cell.html" target="_self">wxHtmlContainerCell</a></td><td class="desc">Implementation of a cell that may contain more cells in it</td></tr>
<tr id="row_149_41_2_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_html_font_cell.html" target="_self">wxHtmlFontCell</a></td><td class="desc">This cell represents a font change in the document stream</td></tr>
<tr id="row_149_41_3_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_html_widget_cell.html" target="_self">wxHtmlWidgetCell</a></td><td class="desc">WxHtmlWidgetCell is a class that provides a connection between HTML cells and widgets (an object derived from <a class="el" href="classwx_window.html" title="wxWindow is the base class for all windows and represents any visible object on screen.">wxWindow</a>)</td></tr>
<tr id="row_149_41_4_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_149_41_4_" src="ftv2plastnode.png" alt="\" width="16" height="22" onclick="toggleFolder('149_41_4_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_html_word_cell.html" target="_self">wxHtmlWordCell</a></td><td class="desc">This html cell represents a single word or text fragment in the document stream</td></tr>
<tr id="row_149_41_4_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_html_word_with_tabs_cell.html" target="_self">wxHtmlWordWithTabsCell</a></td><td class="desc">WxHtmlWordCell is a specialization for storing text fragments with embedded tab characters</td></tr>
<tr id="row_149_42_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_html_d_c_renderer.html" target="_self">wxHtmlDCRenderer</a></td><td class="desc">This class can render HTML document into a specified area of a DC</td></tr>
<tr id="row_149_43_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_html_easy_printing.html" target="_self">wxHtmlEasyPrinting</a></td><td class="desc">This class provides very simple interface to printing architecture</td></tr>
<tr id="row_149_44_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_html_filter.html" target="_self">wxHtmlFilter</a></td><td class="desc">This class is the parent class of input filters for <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></td></tr>
<tr id="row_149_45_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_html_help_data.html" target="_self">wxHtmlHelpData</a></td><td class="desc">This class is used by <a class="el" href="classwx_html_help_controller.html" title="This help controller provides an easy way of displaying HTML help in your application (see HTML Sampl...">wxHtmlHelpController</a> and <a class="el" href="classwx_html_help_frame.html" title="This class is used by wxHtmlHelpController to display help.">wxHtmlHelpFrame</a> to access HTML help items</td></tr>
<tr id="row_149_46_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_html_link_info.html" target="_self">wxHtmlLinkInfo</a></td><td class="desc">This class stores all necessary information about hypertext links (as represented by <A> tag in HTML documents)</td></tr>
<tr id="row_149_47_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_149_47_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('149_47_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_html_tag_handler.html" target="_self">wxHtmlTagHandler</a></td><td class="desc"></td></tr>
<tr id="row_149_47_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_html_win_tag_handler.html" target="_self">wxHtmlWinTagHandler</a></td><td class="desc">This is basically <a class="el" href="classwx_html_tag_handler.html">wxHtmlTagHandler</a> except that it is extended with protected member m_WParser pointing to the <a class="el" href="classwx_html_win_parser.html" title="This class is derived from wxHtmlParser and its main goal is to parse HTML input so that it can be di...">wxHtmlWinParser</a> object (value of this member is identical to <a class="el" href="classwx_html_parser.html" title="Classes derived from this handle the generic parsing of HTML documents: it scans the document and div...">wxHtmlParser</a>'s m_Parser)</td></tr>
<tr id="row_149_48_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_image.html" target="_self">wxImage</a></td><td class="desc">This class encapsulates a platform-independent image</td></tr>
<tr id="row_149_49_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_image_handler.html" target="_self">wxImageHandler</a></td><td class="desc">This is the base class for implementing image file loading/saving, and image creation from data</td></tr>
<tr id="row_149_50_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_image_list.html" target="_self">wxImageList</a></td><td class="desc">A <a class="el" href="classwx_image_list.html" title="A wxImageList contains a list of images, which are stored in an unspecified form.">wxImageList</a> contains a list of images, which are stored in an unspecified form</td></tr>
<tr id="row_149_51_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_individual_layout_constraint.html" target="_self">wxIndividualLayoutConstraint</a></td><td class="desc"></td></tr>
<tr id="row_149_52_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_joystick.html" target="_self">wxJoystick</a></td><td class="desc">WxJoystick allows an application to control one or more joysticks</td></tr>
<tr id="row_149_53_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_layout_algorithm.html" target="_self">wxLayoutAlgorithm</a></td><td class="desc">WxLayoutAlgorithm implements layout of subwindows in MDI or SDI frames</td></tr>
<tr id="row_149_54_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_layout_constraints.html" target="_self">wxLayoutConstraints</a></td><td class="desc"></td></tr>
<tr id="row_149_55_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_list_item.html" target="_self">wxListItem</a></td><td class="desc">This class stores information about a <a class="el" href="classwx_list_ctrl.html" title="A list control presents lists in a number of formats: list view, report view, icon view and small ico...">wxListCtrl</a> item or column</td></tr>
<tr id="row_149_56_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_mask.html" target="_self">wxMask</a></td><td class="desc">This class encapsulates a monochrome mask bitmap, where the masked area is black and the unmasked area is white</td></tr>
<tr id="row_149_57_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_menu_item.html" target="_self">wxMenuItem</a></td><td class="desc">A menu item represents an item in a menu</td></tr>
<tr id="row_149_58_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_metafile.html" target="_self">wxMetafile</a></td><td class="desc">A <b><a class="el" href="classwx_metafile.html" title="A wxMetafile represents the MS Windows metafile object, so metafile operations have no effect in X...">wxMetafile</a></b> represents the MS Windows metafile object, so metafile operations have no effect in X</td></tr>
<tr id="row_149_59_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_149_59_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('149_59_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_module.html" target="_self">wxModule</a></td><td class="desc">The module system is a very simple mechanism to allow applications (and parts of wxWidgets itself) to define initialization and cleanup functions that are automatically called on wxWidgets startup and exit</td></tr>
<tr id="row_149_59_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_html_tags_module.html" target="_self">wxHtmlTagsModule</a></td><td class="desc">This class provides easy way of filling <a class="el" href="classwx_html_win_parser.html" title="This class is derived from wxHtmlParser and its main goal is to parse HTML input so that it can be di...">wxHtmlWinParser</a>'s table of tag handlers</td></tr>
<tr id="row_149_60_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_page_setup_dialog.html" target="_self">wxPageSetupDialog</a></td><td class="desc">This class represents the page setup common dialog</td></tr>
<tr id="row_149_61_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_page_setup_dialog_data.html" target="_self">wxPageSetupDialogData</a></td><td class="desc">This class holds a variety of information related to <a class="el" href="classwx_page_setup_dialog.html" title="This class represents the page setup common dialog.">wxPageSetupDialog</a></td></tr>
<tr id="row_149_62_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_p_g_cell.html" target="_self">wxPGCell</a></td><td class="desc">Base class for <a class="el" href="classwx_property_grid.html" title="wxPropertyGrid is a specialized grid for editing properties - in other words name = value pairs...">wxPropertyGrid</a> cell information</td></tr>
<tr id="row_149_63_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_p_g_editor.html" target="_self">wxPGEditor</a></td><td class="desc">Base class for custom <a class="el" href="classwx_property_grid.html" title="wxPropertyGrid is a specialized grid for editing properties - in other words name = value pairs...">wxPropertyGrid</a> editors</td></tr>
<tr id="row_149_64_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_p_g_property.html" target="_self">wxPGProperty</a></td><td class="desc">WxPGProperty is base class for all <a class="el" href="classwx_property_grid.html" title="wxPropertyGrid is a specialized grid for editing properties - in other words name = value pairs...">wxPropertyGrid</a> properties</td></tr>
<tr id="row_149_65_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_print_data.html" target="_self">wxPrintData</a></td><td class="desc">This class holds a variety of information related to printers and printer device contexts</td></tr>
<tr id="row_149_66_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_print_dialog.html" target="_self">wxPrintDialog</a></td><td class="desc">This class represents the print and print setup common dialogs</td></tr>
<tr id="row_149_67_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_print_dialog_data.html" target="_self">wxPrintDialogData</a></td><td class="desc">This class holds information related to the visual characteristics of <a class="el" href="classwx_print_dialog.html" title="This class represents the print and print setup common dialogs.">wxPrintDialog</a></td></tr>
<tr id="row_149_68_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_printer.html" target="_self">wxPrinter</a></td><td class="desc">This class represents the Windows or PostScript printer, and is the vehicle through which printing may be launched by an application</td></tr>
<tr id="row_149_69_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_149_69_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('149_69_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_printout.html" target="_self">wxPrintout</a></td><td class="desc">This class encapsulates the functionality of printing out an application document</td></tr>
<tr id="row_149_69_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_html_printout.html" target="_self">wxHtmlPrintout</a></td><td class="desc">This class serves as printout class for HTML documents</td></tr>
<tr id="row_149_69_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_rich_text_printout.html" target="_self">wxRichTextPrintout</a></td><td class="desc">This class implements print layout for <a class="el" href="classwx_rich_text_buffer.html" title="This is a kind of paragraph layout box, used to represent the whole buffer.">wxRichTextBuffer</a></td></tr>
<tr id="row_149_70_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_print_preview.html" target="_self">wxPrintPreview</a></td><td class="desc">Objects of this class manage the print preview process</td></tr>
<tr id="row_149_71_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_quantize.html" target="_self">wxQuantize</a></td><td class="desc">Performs quantization, or colour reduction, on a <a class="el" href="classwx_image.html" title="This class encapsulates a platform-independent image.">wxImage</a></td></tr>
<tr id="row_149_72_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_region_iterator.html" target="_self">wxRegionIterator</a></td><td class="desc">This class is used to iterate through the rectangles in a region, typically when examining the damaged regions of a window within an OnPaint call</td></tr>
<tr id="row_149_73_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_rich_text_action.html" target="_self">wxRichTextAction</a></td><td class="desc">Implements a part of a command</td></tr>
<tr id="row_149_74_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_rich_text_drawing_context.html" target="_self">wxRichTextDrawingContext</a></td><td class="desc">A class for passing information to drawing and measuring functions</td></tr>
<tr id="row_149_75_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_rich_text_drawing_handler.html" target="_self">wxRichTextDrawingHandler</a></td><td class="desc">The base class for custom drawing handlers</td></tr>
<tr id="row_149_76_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_149_76_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('149_76_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_rich_text_field_type.html" target="_self">wxRichTextFieldType</a></td><td class="desc">The base class for custom field types</td></tr>
<tr id="row_149_76_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_rich_text_field_type_standard.html" target="_self">wxRichTextFieldTypeStandard</a></td><td class="desc">A field type that can handle fields with text or bitmap labels, with a small range of styles for implementing rectangular fields and fields that can be used for start and end tags</td></tr>
<tr id="row_149_77_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_149_77_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('149_77_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_rich_text_file_handler.html" target="_self">wxRichTextFileHandler</a></td><td class="desc">The base class for file handlers</td></tr>
<tr id="row_149_77_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_rich_text_h_t_m_l_handler.html" target="_self">wxRichTextHTMLHandler</a></td><td class="desc">Handles HTML output (only) for <a class="el" href="classwx_rich_text_ctrl.html" title="wxRichTextCtrl provides a generic, ground-up implementation of a text control capable of showing mult...">wxRichTextCtrl</a> content</td></tr>
<tr id="row_149_77_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_rich_text_plain_text_handler.html" target="_self">wxRichTextPlainTextHandler</a></td><td class="desc">Implements saving a buffer to plain text</td></tr>
<tr id="row_149_77_2_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_rich_text_x_m_l_handler.html" target="_self">wxRichTextXMLHandler</a></td><td class="desc">A handler for loading and saving content in an XML format specific to <a class="el" href="classwx_rich_text_buffer.html" title="This is a kind of paragraph layout box, used to represent the whole buffer.">wxRichTextBuffer</a></td></tr>
<tr id="row_149_78_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_rich_text_font_table.html" target="_self">wxRichTextFontTable</a></td><td class="desc">Manages quick access to a pool of fonts for rendering rich text</td></tr>
<tr id="row_149_79_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_rich_text_formatting_dialog_factory.html" target="_self">wxRichTextFormattingDialogFactory</a></td><td class="desc">This class provides pages for <a class="el" href="classwx_rich_text_formatting_dialog.html" title="This dialog allows the user to edit a character and/or paragraph style.">wxRichTextFormattingDialog</a>, and allows other customization of the dialog</td></tr>
<tr id="row_149_80_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_rich_text_header_footer_data.html" target="_self">wxRichTextHeaderFooterData</a></td><td class="desc">This class represents header and footer data to be passed to the <a class="el" href="classwx_rich_text_printing.html" title="This class provides a simple interface for performing wxRichTextBuffer printing and previewing...">wxRichTextPrinting</a> and <a class="el" href="classwx_rich_text_printout.html" title="This class implements print layout for wxRichTextBuffer.">wxRichTextPrintout</a> classes</td></tr>
<tr id="row_149_81_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_rich_text_image_block.html" target="_self">wxRichTextImageBlock</a></td><td class="desc">This class stores information about an image, in binary in-memory form</td></tr>
<tr id="row_149_82_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_149_82_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('149_82_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_rich_text_object.html" target="_self">wxRichTextObject</a></td><td class="desc">This is the base for drawable rich text objects</td></tr>
<tr id="row_149_82_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_149_82_0_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('149_82_0_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_rich_text_composite_object.html" target="_self">wxRichTextCompositeObject</a></td><td class="desc">Objects of this class can contain other objects</td></tr>
<tr id="row_149_82_0_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_rich_text_paragraph.html" target="_self">wxRichTextParagraph</a></td><td class="desc">This object represents a single paragraph containing various objects such as text content, images, and further paragraph layout objects</td></tr>
<tr id="row_149_82_0_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_149_82_0_1_" src="ftv2plastnode.png" alt="\" width="16" height="22" onclick="toggleFolder('149_82_0_1_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_rich_text_paragraph_layout_box.html" target="_self">wxRichTextParagraphLayoutBox</a></td><td class="desc">This class knows how to lay out paragraphs</td></tr>
<tr id="row_149_82_0_1_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img id="arr_149_82_0_1_0_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('149_82_0_1_0_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_rich_text_box.html" target="_self">wxRichTextBox</a></td><td class="desc">This class implements a floating or inline text box, containing paragraphs</td></tr>
<tr id="row_149_82_0_1_0_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_rich_text_cell.html" target="_self">wxRichTextCell</a></td><td class="desc">WxRichTextCell is the cell in a table, in which the user can type</td></tr>
<tr id="row_149_82_0_1_0_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_rich_text_table.html" target="_self">wxRichTextTable</a></td><td class="desc">WxRichTextTable represents a table with arbitrary columns and rows</td></tr>
<tr id="row_149_82_0_1_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_rich_text_buffer.html" target="_self">wxRichTextBuffer</a></td><td class="desc">This is a kind of paragraph layout box, used to represent the whole buffer</td></tr>
<tr id="row_149_82_0_1_2_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_rich_text_field.html" target="_self">wxRichTextField</a></td><td class="desc">This class implements the general concept of a field, an object that represents additional functionality such as a footnote, a bookmark, a page number, a table of contents, and so on</td></tr>
<tr id="row_149_82_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_rich_text_image.html" target="_self">wxRichTextImage</a></td><td class="desc">This class implements a graphic object</td></tr>
<tr id="row_149_82_2_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_rich_text_plain_text.html" target="_self">wxRichTextPlainText</a></td><td class="desc">This object represents a single piece of text</td></tr>
<tr id="row_149_83_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_rich_text_printing.html" target="_self">wxRichTextPrinting</a></td><td class="desc">This class provides a simple interface for performing <a class="el" href="classwx_rich_text_buffer.html" title="This is a kind of paragraph layout box, used to represent the whole buffer.">wxRichTextBuffer</a> printing and previewing</td></tr>
<tr id="row_149_84_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_rich_text_properties.html" target="_self">wxRichTextProperties</a></td><td class="desc">A simple property class using wxVariants</td></tr>
<tr id="row_149_85_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_149_85_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('149_85_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_rich_text_renderer.html" target="_self">wxRichTextRenderer</a></td><td class="desc">This class isolates some common drawing functionality</td></tr>
<tr id="row_149_85_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_rich_text_std_renderer.html" target="_self">wxRichTextStdRenderer</a></td><td class="desc">The standard renderer for drawing bullets</td></tr>
<tr id="row_149_86_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_149_86_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('149_86_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_rich_text_style_definition.html" target="_self">wxRichTextStyleDefinition</a></td><td class="desc">This is a base class for paragraph and character styles</td></tr>
<tr id="row_149_86_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_rich_text_character_style_definition.html" target="_self">wxRichTextCharacterStyleDefinition</a></td><td class="desc">This class represents a character style definition, usually added to a <a class="el" href="classwx_rich_text_style_sheet.html" title="A style sheet contains named paragraph and character styles that make it easy for a user to apply com...">wxRichTextStyleSheet</a></td></tr>
<tr id="row_149_86_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_149_86_1_" src="ftv2plastnode.png" alt="\" width="16" height="22" onclick="toggleFolder('149_86_1_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_rich_text_paragraph_style_definition.html" target="_self">wxRichTextParagraphStyleDefinition</a></td><td class="desc">This class represents a paragraph style definition, usually added to a <a class="el" href="classwx_rich_text_style_sheet.html" title="A style sheet contains named paragraph and character styles that make it easy for a user to apply com...">wxRichTextStyleSheet</a></td></tr>
<tr id="row_149_86_1_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_rich_text_list_style_definition.html" target="_self">wxRichTextListStyleDefinition</a></td><td class="desc">This class represents a list style definition, usually added to a <a class="el" href="classwx_rich_text_style_sheet.html" title="A style sheet contains named paragraph and character styles that make it easy for a user to apply com...">wxRichTextStyleSheet</a></td></tr>
<tr id="row_149_87_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_rich_text_style_sheet.html" target="_self">wxRichTextStyleSheet</a></td><td class="desc">A style sheet contains named paragraph and character styles that make it easy for a user to apply combinations of attributes to a <a class="el" href="classwx_rich_text_ctrl.html" title="wxRichTextCtrl provides a generic, ground-up implementation of a text control capable of showing mult...">wxRichTextCtrl</a></td></tr>
<tr id="row_149_88_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_149_88_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('149_88_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_sizer.html" target="_self">wxSizer</a></td><td class="desc">WxSizer is the abstract base class used for laying out subwindows in a window</td></tr>
<tr id="row_149_88_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_149_88_0_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('149_88_0_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_box_sizer.html" target="_self">wxBoxSizer</a></td><td class="desc">The basic idea behind a box sizer is that windows will most often be laid out in rather simple basic geometry, typically in a row or a column or several hierarchies of either</td></tr>
<tr id="row_149_88_0_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_static_box_sizer.html" target="_self">wxStaticBoxSizer</a></td><td class="desc">WxStaticBoxSizer is a sizer derived from <a class="el" href="classwx_box_sizer.html" title="The basic idea behind a box sizer is that windows will most often be laid out in rather simple basic ...">wxBoxSizer</a> but adds a static box around the sizer</td></tr>
<tr id="row_149_88_0_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_std_dialog_button_sizer.html" target="_self">wxStdDialogButtonSizer</a></td><td class="desc">This class creates button layouts which conform to the standard button spacing and ordering defined by the platform or toolkit's user interface guidelines (if such things exist)</td></tr>
<tr id="row_149_88_0_2_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_wrap_sizer.html" target="_self">wxWrapSizer</a></td><td class="desc">A wrap sizer lays out its items in a single line, like a box sizer – as long as there is space available in that direction</td></tr>
<tr id="row_149_88_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_149_88_1_" src="ftv2plastnode.png" alt="\" width="16" height="22" onclick="toggleFolder('149_88_1_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_grid_sizer.html" target="_self">wxGridSizer</a></td><td class="desc">A grid sizer is a sizer which lays out its children in a two-dimensional table with all table fields having the same size, i.e</td></tr>
<tr id="row_149_88_1_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img id="arr_149_88_1_0_" src="ftv2plastnode.png" alt="\" width="16" height="22" onclick="toggleFolder('149_88_1_0_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_flex_grid_sizer.html" target="_self">wxFlexGridSizer</a></td><td class="desc">A flex grid sizer is a sizer which lays out its children in a two-dimensional table with all table fields in one row having the same height and all fields in one column having the same width, but all rows or all columns are not necessarily the same height or width as in the <a class="el" href="classwx_grid_sizer.html" title="A grid sizer is a sizer which lays out its children in a two-dimensional table with all table fields ...">wxGridSizer</a></td></tr>
<tr id="row_149_88_1_0_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_grid_bag_sizer.html" target="_self">wxGridBagSizer</a></td><td class="desc">A <a class="el" href="classwx_sizer.html" title="wxSizer is the abstract base class used for laying out subwindows in a window.">wxSizer</a> that can lay out items in a virtual grid like a <a class="el" href="classwx_flex_grid_sizer.html" title="A flex grid sizer is a sizer which lays out its children in a two-dimensional table with all table fi...">wxFlexGridSizer</a> but in this case explicit positioning of the items is allowed using <a class="el" href="classwx_g_b_position.html" title="This class represents the position of an item in a virtual grid of rows and columns managed by a wxGr...">wxGBPosition</a>, and items can optionally span more than one row and/or column using <a class="el" href="classwx_g_b_span.html" title="This class is used to hold the row and column spanning attributes of items in a wxGridBagSizer.">wxGBSpan</a></td></tr>
<tr id="row_149_89_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_149_89_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('149_89_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_sizer_item.html" target="_self">wxSizerItem</a></td><td class="desc">Used to track the position, size and other attributes of each item managed by a <a class="el" href="classwx_sizer.html" title="wxSizer is the abstract base class used for laying out subwindows in a window.">wxSizer</a></td></tr>
<tr id="row_149_89_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_g_b_sizer_item.html" target="_self">wxGBSizerItem</a></td><td class="desc">Used by the <a class="el" href="classwx_grid_bag_sizer.html" title="A wxSizer that can lay out items in a virtual grid like a wxFlexGridSizer but in this case explicit p...">wxGridBagSizer</a> for tracking the items in the sizer</td></tr>
<tr id="row_149_90_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_149_90_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('149_90_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_sock_address.html" target="_self">wxSockAddress</a></td><td class="desc">You are unlikely to need to use this class: only <a class="el" href="classwx_socket_base.html" title="wxSocketBase is the base class for all socket-related objects, and it defines all basic IO functional...">wxSocketBase</a> uses it</td></tr>
<tr id="row_149_90_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_149_90_0_" src="ftv2plastnode.png" alt="\" width="16" height="22" onclick="toggleFolder('149_90_0_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_i_paddress.html" target="_self">wxIPaddress</a></td><td class="desc">WxIPaddress is an abstract base class for all internet protocol address objects</td></tr>
<tr id="row_149_90_0_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_i_p_v4address.html" target="_self">wxIPV4address</a></td><td class="desc">A class for working with IPv4 network addresses</td></tr>
<tr id="row_149_91_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_149_91_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('149_91_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_socket_base.html" target="_self">wxSocketBase</a></td><td class="desc">WxSocketBase is the base class for all socket-related objects, and it defines all basic IO functionality</td></tr>
<tr id="row_149_91_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_datagram_socket.html" target="_self">wxDatagramSocket</a></td><td class="desc"></td></tr>
<tr id="row_149_91_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_149_91_1_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('149_91_1_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_socket_client.html" target="_self">wxSocketClient</a></td><td class="desc"></td></tr>
<tr id="row_149_91_1_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_149_91_1_0_" src="ftv2plastnode.png" alt="\" width="16" height="22" onclick="toggleFolder('149_91_1_0_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_protocol.html" target="_self">wxProtocol</a></td><td class="desc">Represents a protocol for use with <a class="el" href="classwx_u_r_l.html" title="wxURL is a specialization of wxURI for parsing URLs.">wxURL</a></td></tr>
<tr id="row_149_91_1_0_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_f_t_p.html" target="_self">wxFTP</a></td><td class="desc">WxFTP can be used to establish a connection to an FTP server and perform all the usual operations</td></tr>
<tr id="row_149_91_1_0_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_h_t_t_p.html" target="_self">wxHTTP</a></td><td class="desc">WxHTTP can be used to establish a connection to an HTTP server</td></tr>
<tr id="row_149_91_2_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_socket_server.html" target="_self">wxSocketServer</a></td><td class="desc"></td></tr>
<tr id="row_149_92_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_sound.html" target="_self">wxSound</a></td><td class="desc">This class represents a short sound (loaded from Windows WAV file), that can be stored in memory and played</td></tr>
<tr id="row_149_93_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_string_tokenizer.html" target="_self">wxStringTokenizer</a></td><td class="desc">WxStringTokenizer helps you to break a string up into a number of tokens</td></tr>
<tr id="row_149_94_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_system_options.html" target="_self">wxSystemOptions</a></td><td class="desc">WxSystemOptions stores option/value pairs that wxWidgets itself or applications can use to alter behaviour at run-time</td></tr>
<tr id="row_149_95_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_system_settings.html" target="_self">wxSystemSettings</a></td><td class="desc">WxSystemSettings allows the application to ask for details about the system</td></tr>
<tr id="row_149_96_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_t_c_p_client.html" target="_self">wxTCPClient</a></td><td class="desc">A <a class="el" href="classwx_t_c_p_client.html" title="A wxTCPClient object represents the client part of a client-server conversation.">wxTCPClient</a> object represents the client part of a client-server conversation</td></tr>
<tr id="row_149_97_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_t_c_p_connection.html" target="_self">wxTCPConnection</a></td><td class="desc">A <a class="el" href="classwx_t_c_p_client.html" title="A wxTCPClient object represents the client part of a client-server conversation.">wxTCPClient</a> object represents the connection between a client and a server</td></tr>
<tr id="row_149_98_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_t_c_p_server.html" target="_self">wxTCPServer</a></td><td class="desc">A <a class="el" href="classwx_t_c_p_server.html" title="A wxTCPServer object represents the server part of a client-server conversation.">wxTCPServer</a> object represents the server part of a client-server conversation</td></tr>
<tr id="row_149_99_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_tool_bar_tool_base.html" target="_self">wxToolBarToolBase</a></td><td class="desc">A toolbar tool represents one item on the toolbar</td></tr>
<tr id="row_149_100_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_tool_tip.html" target="_self">wxToolTip</a></td><td class="desc">This class holds information about a tooltip associated with a window (see <a class="el" href="classwx_window.html#a81a9fb74e3c6c7f4416e882f5e589b8c" title="Attach a tooltip to the window.">wxWindow::SetToolTip()</a>)</td></tr>
<tr id="row_149_101_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_149_101_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('149_101_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_u_r_i.html" target="_self">wxURI</a></td><td class="desc">WxURI is used to extract information from a URI (Uniform Resource Identifier)</td></tr>
<tr id="row_149_101_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_u_r_l.html" target="_self">wxURL</a></td><td class="desc">WxURL is a specialization of <a class="el" href="classwx_u_r_i.html" title="wxURI is used to extract information from a URI (Uniform Resource Identifier).">wxURI</a> for parsing URLs</td></tr>
<tr id="row_149_102_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_variant.html" target="_self">wxVariant</a></td><td class="desc">Container for any type</td></tr>
<tr id="row_149_103_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_web_view_factory.html" target="_self">wxWebViewFactory</a></td><td class="desc">An abstract factory class for creating <a class="el" href="classwx_web_view.html" title="This control may be used to render web (HTML / CSS / javascript) documents.">wxWebView</a> backends</td></tr>
<tr id="row_149_104_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_xml_document.html" target="_self">wxXmlDocument</a></td><td class="desc">This class holds XML data/document as parsed by XML parser in the root node</td></tr>
<tr id="row_149_105_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_xml_resource.html" target="_self">wxXmlResource</a></td><td class="desc">This is the main class for interacting with the XML-based resource system</td></tr>
<tr id="row_149_106_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_149_106_" src="ftv2plastnode.png" alt="\" width="16" height="22" onclick="toggleFolder('149_106_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_xml_resource_handler.html" target="_self">wxXmlResourceHandler</a></td><td class="desc">WxSizerXmlHandler is a class for resource handlers capable of creating a <a class="el" href="classwx_sizer.html" title="wxSizer is the abstract base class used for laying out subwindows in a window.">wxSizer</a> object from an XML node</td></tr>
<tr id="row_149_106_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_sizer_xml_handler.html" target="_self">wxSizerXmlHandler</a></td><td class="desc"></td></tr>
<tr id="row_150_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_object_data_ptr_3_01_t_01_4.html" target="_self">wxObjectDataPtr< T ></a></td><td class="desc">This is an helper template class primarily written to avoid memory leaks because of missing calls to <a class="el" href="classwx_ref_counter.html#a803eb5be907b1a342082ceb59c01d8c5" title="Decrements the reference count associated with this shared data and, if it reaches zero...">wxRefCounter::DecRef()</a> and wxObjectRefData::DecRef()</td></tr>
<tr id="row_151_"><td class="entry"><img id="arr_151_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('151_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_object_ref_data.html" target="_self">wxObjectRefData</a></td><td class="desc">This class is just a typedef to <a class="el" href="classwx_ref_counter.html" title="This class is used to manage reference-counting providing a simple interface and a counter...">wxRefCounter</a> and is used by <a class="el" href="classwx_object.html" title="This is the root class of many of the wxWidgets classes.">wxObject</a></td></tr>
<tr id="row_151_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_151_0_" src="ftv2plastnode.png" alt="\" width="16" height="22" onclick="toggleFolder('151_0_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_variant_data.html" target="_self">wxVariantData</a></td><td class="desc">Used to implement a new type for <a class="el" href="classwx_variant.html" title="The wxVariant class represents a container for any type.">wxVariant</a></td></tr>
<tr id="row_151_0_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_variant_data_currency.html" target="_self">wxVariantDataCurrency</a></td><td class="desc">This class represents a thin wrapper for Microsoft Windows CURRENCY type</td></tr>
<tr id="row_151_0_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_variant_data_error_code.html" target="_self">wxVariantDataErrorCode</a></td><td class="desc">This class represents a thin wrapper for Microsoft Windows SCODE type (which is the same as HRESULT)</td></tr>
<tr id="row_151_0_2_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_variant_data_safe_array.html" target="_self">wxVariantDataSafeArray</a></td><td class="desc">This class represents a thin wrapper for Microsoft Windows SAFEARRAY type</td></tr>
<tr id="row_152_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_overlay.html" target="_self">wxOverlay</a></td><td class="desc">Creates an overlay over an existing window, allowing for manipulations like rubberbanding, etc</td></tr>
<tr id="row_153_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_pen_list.html" target="_self">wxPenList</a></td><td class="desc">There is only one instance of this class: <a class="el" href="pen_8h.html#a9eb4c70a69dd5c289c6c53b0da13f48b" title="The global list of wxPen objects ready to be re-used (for better performances).">wxThePenList</a></td></tr>
<tr id="row_154_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_persistence_manager.html" target="_self">wxPersistenceManager</a></td><td class="desc">Provides support for automatically saving and restoring object properties to persistent storage</td></tr>
<tr id="row_155_"><td class="entry"><img id="arr_155_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('155_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_persistent_object.html" target="_self">wxPersistentObject</a></td><td class="desc">Base class for persistent object adapters</td></tr>
<tr id="row_155_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_persistent_window.html" target="_self">wxPersistentWindow< T ></a></td><td class="desc">Base class for persistent windows</td></tr>
<tr id="row_155_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_155_1_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('155_1_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_persistent_window.html" target="_self">wxPersistentWindow< wxBookCtrlBase ></a></td><td class="desc"></td></tr>
<tr id="row_155_1_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_155_1_0_" src="ftv2plastnode.png" alt="\" width="16" height="22" onclick="toggleFolder('155_1_0_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_persistent_book_ctrl.html" target="_self">wxPersistentBookCtrl</a></td><td class="desc">Persistence adapter for <a class="el" href="classwx_book_ctrl_base.html" title="A book control is a convenient way of displaying multiple pages of information, displayed one page at...">wxBookCtrlBase</a></td></tr>
<tr id="row_155_1_0_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_persistent_tree_book_ctrl.html" target="_self">wxPersistentTreeBookCtrl</a></td><td class="desc">Persistence adapter for <a class="el" href="classwx_treebook.html" title="This class is an extension of the wxNotebook class that allows a tree structured set of pages to be s...">wxTreebook</a></td></tr>
<tr id="row_155_2_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_155_2_" src="ftv2plastnode.png" alt="\" width="16" height="22" onclick="toggleFolder('155_2_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_persistent_window.html" target="_self">wxPersistentWindow< wxTopLevelWindow ></a></td><td class="desc"></td></tr>
<tr id="row_155_2_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_persistent_t_l_w.html" target="_self">wxPersistentTLW</a></td><td class="desc">Persistence adapter for <a class="el" href="classwx_top_level_window.html" title="wxTopLevelWindow is a common base class for wxDialog and wxFrame.">wxTopLevelWindow</a></td></tr>
<tr id="row_156_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_p_g_choices.html" target="_self">wxPGChoices</a></td><td class="desc">Helper class for managing choices of <a class="el" href="classwx_property_grid.html" title="wxPropertyGrid is a specialized grid for editing properties - in other words name = value pairs...">wxPropertyGrid</a> properties</td></tr>
<tr id="row_157_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_p_g_validation_info.html" target="_self">wxPGValidationInfo</a></td><td class="desc">WxPGValidationInfo</td></tr>
<tr id="row_158_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_p_g_v_iterator.html" target="_self">wxPGVIterator</a></td><td class="desc"></td></tr>
<tr id="row_159_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_platform_info.html" target="_self">wxPlatformInfo</a></td><td class="desc">This class holds information about the operating system, the toolkit and the basic architecture of the machine where the application is currently running</td></tr>
<tr id="row_160_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_point.html" target="_self">wxPoint</a></td><td class="desc">A <a class="el" href="classwx_point.html" title="A wxPoint is a useful data structure for graphics operations.">wxPoint</a> is a useful data structure for graphics operations</td></tr>
<tr id="row_161_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_point2_d_double.html" target="_self">wxPoint2DDouble</a></td><td class="desc"></td></tr>
<tr id="row_162_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_point2_d_int.html" target="_self">wxPoint2DInt</a></td><td class="desc"></td></tr>
<tr id="row_163_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_position.html" target="_self">wxPosition</a></td><td class="desc">This class represents the position of an item in any kind of grid of rows and columns such as <a class="el" href="classwx_grid_bag_sizer.html" title="A wxSizer that can lay out items in a virtual grid like a wxFlexGridSizer but in this case explicit p...">wxGridBagSizer</a>, or <a class="el" href="classwx_h_v_scrolled_window.html" title="This window inherits all functionality of both vertical and horizontal, variable scrolled windows...">wxHVScrolledWindow</a></td></tr>
<tr id="row_164_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_preferences_editor.html" target="_self">wxPreferencesEditor</a></td><td class="desc">Manage preferences dialog</td></tr>
<tr id="row_165_"><td class="entry"><img id="arr_165_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('165_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_preferences_page.html" target="_self">wxPreferencesPage</a></td><td class="desc">One page of preferences dialog</td></tr>
<tr id="row_165_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_stock_preferences_page.html" target="_self">wxStockPreferencesPage</a></td><td class="desc">Specialization of <a class="el" href="classwx_preferences_page.html" title="One page of preferences dialog.">wxPreferencesPage</a> useful for certain commonly used preferences page</td></tr>
<tr id="row_166_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_propagate_once.html" target="_self">wxPropagateOnce</a></td><td class="desc">Helper class to temporarily lower propagation level</td></tr>
<tr id="row_167_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_propagation_disabler.html" target="_self">wxPropagationDisabler</a></td><td class="desc">Helper class to temporarily change an event to not propagate</td></tr>
<tr id="row_168_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structwx_property_grid_hit_test_result.html" target="_self">wxPropertyGridHitTestResult</a></td><td class="desc"></td></tr>
<tr id="row_169_"><td class="entry"><img id="arr_169_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('169_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_property_grid_interface.html" target="_self">wxPropertyGridInterface</a></td><td class="desc">Most of the shared property manipulation interface shared by <a class="el" href="classwx_property_grid.html" title="wxPropertyGrid is a specialized grid for editing properties - in other words name = value pairs...">wxPropertyGrid</a>, <a class="el" href="classwx_property_grid_page.html" title="Holder of property grid page information.">wxPropertyGridPage</a>, and <a class="el" href="classwx_property_grid_manager.html" title="wxPropertyGridManager is an efficient multi-page version of wxPropertyGrid, which can optionally have...">wxPropertyGridManager</a> is defined in this class</td></tr>
<tr id="row_169_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_property_grid.html" target="_self">wxPropertyGrid</a></td><td class="desc">WxPropertyGrid is a specialized grid for editing properties - in other words name = value pairs</td></tr>
<tr id="row_169_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_property_grid_manager.html" target="_self">wxPropertyGridManager</a></td><td class="desc">WxPropertyGridManager is an efficient multi-page version of <a class="el" href="classwx_property_grid.html" title="wxPropertyGrid is a specialized grid for editing properties - in other words name = value pairs...">wxPropertyGrid</a>, which can optionally have toolbar for mode and page selection, a help text box, and a header</td></tr>
<tr id="row_169_2_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_property_grid_page.html" target="_self">wxPropertyGridPage</a></td><td class="desc">Holder of property grid page information</td></tr>
<tr id="row_170_" class="even"><td class="entry"><img id="arr_170_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('170_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><b>wxPropertyGridIteratorBase</b></td><td class="desc"></td></tr>
<tr id="row_170_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_property_grid_iterator.html" target="_self">wxPropertyGridIterator</a></td><td class="desc"></td></tr>
<tr id="row_171_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_protocol_log.html" target="_self">wxProtocolLog</a></td><td class="desc">Class allowing to log network operations performed by <a class="el" href="classwx_protocol.html" title="Represents a protocol for use with wxURL.">wxProtocol</a></td></tr>
<tr id="row_172_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_real_point.html" target="_self">wxRealPoint</a></td><td class="desc">A <a class="el" href="classwx_real_point.html" title="A wxRealPoint is a useful data structure for graphics operations.">wxRealPoint</a> is a useful data structure for graphics operations</td></tr>
<tr id="row_173_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_rect.html" target="_self">wxRect</a></td><td class="desc">A class for manipulating rectangles</td></tr>
<tr id="row_174_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_rect2_d_double.html" target="_self">wxRect2DDouble</a></td><td class="desc"></td></tr>
<tr id="row_175_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_rect2_d_int.html" target="_self">wxRect2DInt</a></td><td class="desc"></td></tr>
<tr id="row_176_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_recursion_guard.html" target="_self">wxRecursionGuard</a></td><td class="desc">WxRecursionGuard is a very simple class which can be used to prevent reentrancy problems in a function</td></tr>
<tr id="row_177_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_recursion_guard_flag.html" target="_self">wxRecursionGuardFlag</a></td><td class="desc">This is a completely opaque class which exists only to be used with <a class="el" href="classwx_recursion_guard.html" title="wxRecursionGuard is a very simple class which can be used to prevent reentrancy problems in a functio...">wxRecursionGuard</a>, please see the example in that class' documentation</td></tr>
<tr id="row_178_" class="even"><td class="entry"><img id="arr_178_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('178_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_ref_counter.html" target="_self">wxRefCounter</a></td><td class="desc">This class is used to manage reference-counting providing a simple interface and a counter</td></tr>
<tr id="row_178_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_178_0_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('178_0_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_data_view_model.html" target="_self">wxDataViewModel</a></td><td class="desc">WxDataViewModel is the base class for all data model to be displayed by a <a class="el" href="classwx_data_view_ctrl.html" title="wxDataViewCtrl is a control to display data either in a tree like fashion or in a tabular form or bot...">wxDataViewCtrl</a></td></tr>
<tr id="row_178_0_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_178_0_0_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('178_0_0_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_data_view_list_model.html" target="_self">wxDataViewListModel</a></td><td class="desc">Base class with abstract API for <a class="el" href="classwx_data_view_index_list_model.html" title="wxDataViewIndexListModel is a specialized data model which lets you address an item by its position (...">wxDataViewIndexListModel</a> and <a class="el" href="classwx_data_view_virtual_list_model.html" title="wxDataViewVirtualListModel is a specialized data model which lets you address an item by its position...">wxDataViewVirtualListModel</a></td></tr>
<tr id="row_178_0_0_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_178_0_0_0_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('178_0_0_0_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_data_view_index_list_model.html" target="_self">wxDataViewIndexListModel</a></td><td class="desc">WxDataViewIndexListModel is a specialized data model which lets you address an item by its position (row) rather than its <a class="el" href="classwx_data_view_item.html" title="wxDataViewItem is a small opaque class that represents an item in a wxDataViewCtrl in a persistent wa...">wxDataViewItem</a> (which you can obtain from this class)</td></tr>
<tr id="row_178_0_0_0_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_data_view_list_store.html" target="_self">wxDataViewListStore</a></td><td class="desc">WxDataViewListStore is a specialised <a class="el" href="classwx_data_view_model.html" title="wxDataViewModel is the base class for all data model to be displayed by a wxDataViewCtrl.">wxDataViewModel</a> for storing a simple table of data</td></tr>
<tr id="row_178_0_0_1_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_data_view_virtual_list_model.html" target="_self">wxDataViewVirtualListModel</a></td><td class="desc">WxDataViewVirtualListModel is a specialized data model which lets you address an item by its position (row) rather than its <a class="el" href="classwx_data_view_item.html" title="wxDataViewItem is a small opaque class that represents an item in a wxDataViewCtrl in a persistent wa...">wxDataViewItem</a> and as such offers the exact same interface as <a class="el" href="classwx_data_view_index_list_model.html" title="wxDataViewIndexListModel is a specialized data model which lets you address an item by its position (...">wxDataViewIndexListModel</a></td></tr>
<tr id="row_178_0_1_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_data_view_tree_store.html" target="_self">wxDataViewTreeStore</a></td><td class="desc">WxDataViewTreeStore is a specialised <a class="el" href="classwx_data_view_model.html" title="wxDataViewModel is the base class for all data model to be displayed by a wxDataViewCtrl.">wxDataViewModel</a> for storing simple trees very much like <a class="el" href="classwx_tree_ctrl.html" title="A tree control presents information as a hierarchy, with items that may be expanded to show further i...">wxTreeCtrl</a> does and it offers a similar API</td></tr>
<tr id="row_178_1_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_grid_cell_attr.html" target="_self">wxGridCellAttr</a></td><td class="desc">This class can be used to alter the cells' appearance in the grid by changing their attributes from the defaults</td></tr>
<tr id="row_178_2_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_grid_cell_editor.html" target="_self">wxGridCellEditor</a></td><td class="desc">This class is responsible for providing and manipulating the in-place edit controls for the grid</td></tr>
<tr id="row_178_3_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_grid_cell_renderer.html" target="_self">wxGridCellRenderer</a></td><td class="desc">This class is responsible for actually drawing the cell in the grid</td></tr>
<tr id="row_179_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_reg_ex.html" target="_self">wxRegEx</a></td><td class="desc">WxRegEx represents a regular expression</td></tr>
<tr id="row_180_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_reg_key.html" target="_self">wxRegKey</a></td><td class="desc">WxRegKey is a class representing the Windows registry (it is only available under Windows)</td></tr>
<tr id="row_181_"><td class="entry"><img id="arr_181_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('181_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_renderer_native.html" target="_self">wxRendererNative</a></td><td class="desc">First, a brief introduction to <a class="el" href="classwx_renderer_native.html" title="First, a brief introduction to wxRendererNative and why it is needed.">wxRendererNative</a> and why it is needed</td></tr>
<tr id="row_181_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_delegate_renderer_native.html" target="_self">wxDelegateRendererNative</a></td><td class="desc">WxDelegateRendererNative allows reuse of renderers code by forwarding all the <a class="el" href="classwx_renderer_native.html" title="First, a brief introduction to wxRendererNative and why it is needed.">wxRendererNative</a> methods to the given object and thus allowing you to only modify some of its methods – without having to reimplement all of them</td></tr>
<tr id="row_182_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structwx_renderer_version.html" target="_self">wxRendererVersion</a></td><td class="desc">This simple struct represents the <a class="el" href="classwx_renderer_native.html" title="First, a brief introduction to wxRendererNative and why it is needed.">wxRendererNative</a> interface version and is only used as the return value of <a class="el" href="classwx_renderer_native.html#af42af0da60489f1f54c8883f68bfdd42" title="This function is used for version checking: Load() refuses to load any shared libraries implementing ...">wxRendererNative::GetVersion()</a></td></tr>
<tr id="row_183_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_ribbon_art_provider.html" target="_self">wxRibbonArtProvider</a></td><td class="desc">WxRibbonArtProvider is responsible for drawing all the components of the ribbon interface</td></tr>
<tr id="row_184_" class="even"><td class="entry"><img id="arr_184_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('184_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><b>wxRichMessageDialogBase</b></td><td class="desc"></td></tr>
<tr id="row_184_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_rich_message_dialog.html" target="_self">wxRichMessageDialog</a></td><td class="desc">Extension of <a class="el" href="classwx_message_dialog.html" title="This class represents a dialog that shows a single or multi-line message, with a choice of OK...">wxMessageDialog</a> with additional functionality</td></tr>
<tr id="row_185_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_rich_text_context_menu_properties_info.html" target="_self">wxRichTextContextMenuPropertiesInfo</a></td><td class="desc">WxRichTextContextMenuPropertiesInfo keeps track of objects that appear in the context menu, whose properties are available to be edited</td></tr>
<tr id="row_186_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_rich_text_line.html" target="_self">wxRichTextLine</a></td><td class="desc">This object represents a line in a paragraph, and stores offsets from the start of the paragraph representing the start and end positions of the line</td></tr>
<tr id="row_187_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_rich_text_object_address.html" target="_self">wxRichTextObjectAddress</a></td><td class="desc">A class for specifying an object anywhere in an object hierarchy, without using a pointer, necessary since wxRTC commands may delete and recreate sub-objects so physical object addresses change</td></tr>
<tr id="row_188_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_rich_text_range.html" target="_self">wxRichTextRange</a></td><td class="desc">This stores beginning and end positions for a range of data</td></tr>
<tr id="row_189_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_rich_text_selection.html" target="_self">wxRichTextSelection</a></td><td class="desc">Stores selection information</td></tr>
<tr id="row_190_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_rich_text_table_block.html" target="_self">wxRichTextTableBlock</a></td><td class="desc">Stores the coordinates for a block of cells</td></tr>
<tr id="row_191_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_rich_tool_tip.html" target="_self">wxRichToolTip</a></td><td class="desc">Allows to show a tool tip with more customizations than <a class="el" href="classwx_tool_tip.html" title="This class holds information about a tooltip associated with a window (see wxWindow::SetToolTip()).">wxToolTip</a></td></tr>
<tr id="row_192_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_scoped_array.html" target="_self">wxScopedArray< T ></a></td><td class="desc">A scoped array template class</td></tr>
<tr id="row_193_"><td class="entry"><img id="arr_193_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('193_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_scoped_char_type_buffer.html" target="_self">wxScopedCharTypeBuffer< T ></a></td><td class="desc">WxScopedCharTypeBuffer<T> is a template class for storing characters</td></tr>
<tr id="row_193_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_char_type_buffer.html" target="_self">wxCharTypeBuffer< T ></a></td><td class="desc">WxCharTypeBuffer<T> is a template class for storing characters</td></tr>
<tr id="row_194_" class="even"><td class="entry"><img id="arr_194_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('194_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_scoped_char_type_buffer.html" target="_self">wxScopedCharTypeBuffer< char ></a></td><td class="desc"></td></tr>
<tr id="row_194_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_194_0_" src="ftv2plastnode.png" alt="\" width="16" height="22" onclick="toggleFolder('194_0_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_char_type_buffer.html" target="_self">wxCharTypeBuffer< char ></a></td><td class="desc"></td></tr>
<tr id="row_194_0_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_char_buffer.html" target="_self">wxCharBuffer</a></td><td class="desc">This is a specialization of wxCharTypeBuffer<T> for <code>char</code> type</td></tr>
<tr id="row_195_"><td class="entry"><img id="arr_195_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('195_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_scoped_char_type_buffer.html" target="_self">wxScopedCharTypeBuffer< wchar_t ></a></td><td class="desc"></td></tr>
<tr id="row_195_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_195_0_" src="ftv2plastnode.png" alt="\" width="16" height="22" onclick="toggleFolder('195_0_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_char_type_buffer.html" target="_self">wxCharTypeBuffer< wchar_t ></a></td><td class="desc"></td></tr>
<tr id="row_195_0_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_w_char_buffer.html" target="_self">wxWCharBuffer</a></td><td class="desc">This is a specialization of wxCharTypeBuffer<T> for <code>wchar_t</code> type</td></tr>
<tr id="row_196_" class="even"><td class="entry"><img id="arr_196_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('196_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_scoped_ptr.html" target="_self">wxScopedPtr</a></td><td class="desc">This is a simple scoped smart pointer implementation that is similar to the Boost smart pointers (see <a href="http://www.boost.org">http://www.boost.org</a>) but rewritten to use macros instead</td></tr>
<tr id="row_196_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_scoped_tied_ptr.html" target="_self">wxScopedTiedPtr</a></td><td class="desc">This is a variation on the topic of <a class="el" href="classwx_scoped_ptr.html" title="This is a simple scoped smart pointer implementation that is similar to the Boost smart pointers (see...">wxScopedPtr</a></td></tr>
<tr id="row_197_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_scoped_ptr_3_01_t_01_4.html" target="_self">wxScopedPtr< T ></a></td><td class="desc">A scoped pointer template class</td></tr>
<tr id="row_198_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_scope_guard.html" target="_self">wxScopeGuard</a></td><td class="desc">Scope guard is an object which allows executing an action on scope exit</td></tr>
<tr id="row_199_"><td class="entry"><img id="arr_199_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('199_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><b>wxScrollHelper</b></td><td class="desc"></td></tr>
<tr id="row_199_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_property_grid.html" target="_self">wxPropertyGrid</a></td><td class="desc">WxPropertyGrid is a specialized grid for editing properties - in other words name = value pairs</td></tr>
<tr id="row_199_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_rich_text_ctrl.html" target="_self">wxRichTextCtrl</a></td><td class="desc">WxRichTextCtrl provides a generic, ground-up implementation of a text control capable of showing multiple styles and images</td></tr>
<tr id="row_200_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_semaphore.html" target="_self">wxSemaphore</a></td><td class="desc">WxSemaphore is a counter limiting the number of threads concurrently accessing a shared resource</td></tr>
<tr id="row_201_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_server.html" target="_self">wxServer</a></td><td class="desc">A <a class="el" href="classwx_server.html" title="A wxServer object represents the server part of a client-server DDE-like (Dynamic Data Exchange) conv...">wxServer</a> object represents the server part of a client-server DDE-like (Dynamic Data Exchange) conversation</td></tr>
<tr id="row_202_" class="even"><td class="entry"><img id="arr_202_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('202_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_shared_ptr_3_01_t_01_4.html" target="_self">wxSharedPtr< T ></a></td><td class="desc">A smart pointer with non-intrusive reference counting</td></tr>
<tr id="row_202_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_window_ptr_3_01_t_01_4.html" target="_self">wxWindowPtr< T ></a></td><td class="desc">A reference-counted smart pointer for holding <a class="el" href="classwx_window.html" title="wxWindow is the base class for all windows and represents any visible object on screen.">wxWindow</a> instances</td></tr>
<tr id="row_203_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_single_instance_checker.html" target="_self">wxSingleInstanceChecker</a></td><td class="desc">WxSingleInstanceChecker class allows to check that only a single instance of a program is running</td></tr>
<tr id="row_204_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_size.html" target="_self">wxSize</a></td><td class="desc">A <a class="el" href="classwx_size.html" title="A wxSize is a useful data structure for graphics operations.">wxSize</a> is a useful data structure for graphics operations</td></tr>
<tr id="row_205_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_sizer_flags.html" target="_self">wxSizerFlags</a></td><td class="desc">Container for sizer items flags providing readable names for them</td></tr>
<tr id="row_206_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structwx_splitter_render_params.html" target="_self">wxSplitterRenderParams</a></td><td class="desc">This is just a simple <code>struct</code> used as a return value of <a class="el" href="classwx_renderer_native.html#a4c5673f91bfd18792710ca133ca2e3f8" title="Get the splitter parameters, see wxSplitterRenderParams.">wxRendererNative::GetSplitterParams()</a></td></tr>
<tr id="row_207_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_stack_3_01_t_01_4.html" target="_self">wxStack< T ></a></td><td class="desc">WxStack<T> is similar to <code>std::stack</code> and can be used exactly like it</td></tr>
<tr id="row_208_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_stack_frame.html" target="_self">wxStackFrame</a></td><td class="desc">WxStackFrame represents a single stack frame, or a single function in the call stack, and is used exclusively together with <a class="el" href="classwx_stack_walker.html" title="wxStackWalker allows an application to enumerate, or walk, the stack frames (the function callstack)...">wxStackWalker</a>, see there for a more detailed discussion</td></tr>
<tr id="row_209_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_stack_walker.html" target="_self">wxStackWalker</a></td><td class="desc">WxStackWalker allows an application to enumerate, or walk, the stack frames (the function callstack)</td></tr>
<tr id="row_210_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_standard_paths.html" target="_self">wxStandardPaths</a></td><td class="desc">WxStandardPaths returns the standard locations in the file system and should be used by applications to find their data files in a portable way</td></tr>
<tr id="row_211_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_status_bar_pane.html" target="_self">wxStatusBarPane</a></td><td class="desc">A status bar pane data container used by <a class="el" href="classwx_status_bar.html" title="A status bar is a narrow window that can be placed along the bottom of a frame to give small amounts ...">wxStatusBar</a></td></tr>
<tr id="row_212_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_stop_watch.html" target="_self">wxStopWatch</a></td><td class="desc">Allow you to measure time intervals</td></tr>
<tr id="row_213_"><td class="entry"><img id="arr_213_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('213_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_stream_base.html" target="_self">wxStreamBase</a></td><td class="desc">This class is the base class of most stream related classes in wxWidgets</td></tr>
<tr id="row_213_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_213_0_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('213_0_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_input_stream.html" target="_self">wxInputStream</a></td><td class="desc">WxInputStream is an abstract base class which may not be used directly</td></tr>
<tr id="row_213_0_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_213_0_0_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('213_0_0_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_f_file_input_stream.html" target="_self">wxFFileInputStream</a></td><td class="desc">This class represents data read in from a file</td></tr>
<tr id="row_213_0_0_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_f_file_stream.html" target="_self">wxFFileStream</a></td><td class="desc">This stream allows to both read from and write to a file using buffered STDIO functions</td></tr>
<tr id="row_213_0_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_213_0_1_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('213_0_1_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_file_input_stream.html" target="_self">wxFileInputStream</a></td><td class="desc">This class represents data read in from a file</td></tr>
<tr id="row_213_0_1_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_file_stream.html" target="_self">wxFileStream</a></td><td class="desc">This class represents data that can be both read from and written to a file</td></tr>
<tr id="row_213_0_2_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_213_0_2_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('213_0_2_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_filter_input_stream.html" target="_self">wxFilterInputStream</a></td><td class="desc">A filter stream has the capability of a normal stream but it can be placed on top of another stream</td></tr>
<tr id="row_213_0_2_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_213_0_2_0_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('213_0_2_0_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_archive_input_stream.html" target="_self">wxArchiveInputStream</a></td><td class="desc">This is an abstract base class which serves as a common interface to archive input streams such as <a class="el" href="classwx_zip_input_stream.html" title="Input stream for reading zip files.">wxZipInputStream</a></td></tr>
<tr id="row_213_0_2_0_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_tar_input_stream.html" target="_self">wxTarInputStream</a></td><td class="desc">Input stream for reading tar files</td></tr>
<tr id="row_213_0_2_0_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_zip_input_stream.html" target="_self">wxZipInputStream</a></td><td class="desc">Input stream for reading zip files</td></tr>
<tr id="row_213_0_2_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_buffered_input_stream.html" target="_self">wxBufferedInputStream</a></td><td class="desc">This stream acts as a cache</td></tr>
<tr id="row_213_0_2_2_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_213_0_2_2_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('213_0_2_2_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_wrapper_input_stream.html" target="_self">wxWrapperInputStream</a></td><td class="desc">A wrapper input stream is a kind of filter stream which forwards all the operations to its base stream</td></tr>
<tr id="row_213_0_2_2_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_f_s_input_stream.html" target="_self">wxFSInputStream</a></td><td class="desc">Input stream for virtual file stream files</td></tr>
<tr id="row_213_0_2_3_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_zlib_input_stream.html" target="_self">wxZlibInputStream</a></td><td class="desc">This filter stream decompresses a stream that is in zlib or gzip format</td></tr>
<tr id="row_213_0_3_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_memory_input_stream.html" target="_self">wxMemoryInputStream</a></td><td class="desc">This class allows to use all methods taking a <a class="el" href="classwx_input_stream.html" title="wxInputStream is an abstract base class which may not be used directly.">wxInputStream</a> reference to read in-memory data</td></tr>
<tr id="row_213_0_4_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_socket_input_stream.html" target="_self">wxSocketInputStream</a></td><td class="desc">This class implements an input stream which reads data from a connected socket</td></tr>
<tr id="row_213_0_5_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_string_input_stream.html" target="_self">wxStringInputStream</a></td><td class="desc">This class implements an input stream which reads data from a string</td></tr>
<tr id="row_213_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_213_1_" src="ftv2plastnode.png" alt="\" width="16" height="22" onclick="toggleFolder('213_1_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_output_stream.html" target="_self">wxOutputStream</a></td><td class="desc">WxOutputStream is an abstract base class which may not be used directly</td></tr>
<tr id="row_213_1_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_counting_output_stream.html" target="_self">wxCountingOutputStream</a></td><td class="desc">WxCountingOutputStream is a specialized output stream which does not write any data anywhere, instead it counts how many bytes would get written if this were a normal stream</td></tr>
<tr id="row_213_1_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img id="arr_213_1_1_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('213_1_1_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_f_file_output_stream.html" target="_self">wxFFileOutputStream</a></td><td class="desc">This class represents data written to a file</td></tr>
<tr id="row_213_1_1_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_f_file_stream.html" target="_self">wxFFileStream</a></td><td class="desc">This stream allows to both read from and write to a file using buffered STDIO functions</td></tr>
<tr id="row_213_1_2_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img id="arr_213_1_2_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('213_1_2_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_file_output_stream.html" target="_self">wxFileOutputStream</a></td><td class="desc">This class represents data written to a file</td></tr>
<tr id="row_213_1_2_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_file_stream.html" target="_self">wxFileStream</a></td><td class="desc">This class represents data that can be both read from and written to a file</td></tr>
<tr id="row_213_1_3_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img id="arr_213_1_3_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('213_1_3_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_filter_output_stream.html" target="_self">wxFilterOutputStream</a></td><td class="desc">A filter stream has the capability of a normal stream but it can be placed on top of another stream</td></tr>
<tr id="row_213_1_3_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_213_1_3_0_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('213_1_3_0_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_archive_output_stream.html" target="_self">wxArchiveOutputStream</a></td><td class="desc">This is an abstract base class which serves as a common interface to archive output streams such as <a class="el" href="classwx_zip_output_stream.html" title="Output stream for writing zip files.">wxZipOutputStream</a></td></tr>
<tr id="row_213_1_3_0_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_tar_output_stream.html" target="_self">wxTarOutputStream</a></td><td class="desc">Output stream for writing tar files</td></tr>
<tr id="row_213_1_3_0_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_zip_output_stream.html" target="_self">wxZipOutputStream</a></td><td class="desc">Output stream for writing zip files</td></tr>
<tr id="row_213_1_3_1_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_buffered_output_stream.html" target="_self">wxBufferedOutputStream</a></td><td class="desc">This stream acts as a cache</td></tr>
<tr id="row_213_1_3_2_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_zlib_output_stream.html" target="_self">wxZlibOutputStream</a></td><td class="desc">This stream compresses all data written to it</td></tr>
<tr id="row_213_1_4_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_memory_output_stream.html" target="_self">wxMemoryOutputStream</a></td><td class="desc">This class allows to use all methods taking a <a class="el" href="classwx_output_stream.html" title="wxOutputStream is an abstract base class which may not be used directly.">wxOutputStream</a> reference to write to in-memory data</td></tr>
<tr id="row_213_1_5_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_socket_output_stream.html" target="_self">wxSocketOutputStream</a></td><td class="desc">This class implements an output stream which writes data from a connected socket</td></tr>
<tr id="row_213_1_6_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_string_output_stream.html" target="_self">wxStringOutputStream</a></td><td class="desc">This class implements an output stream which writes data either to a user-provided or internally allocated string</td></tr>
<tr id="row_213_1_7_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_temp_file_output_stream.html" target="_self">wxTempFileOutputStream</a></td><td class="desc">WxTempFileOutputStream is an output stream based on <a class="el" href="classwx_temp_file.html" title="wxTempFile provides a relatively safe way to replace the contents of the existing file...">wxTempFile</a></td></tr>
<tr id="row_214_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_stream_buffer.html" target="_self">wxStreamBuffer</a></td><td class="desc">WxStreamBuffer is a cache manager for <a class="el" href="classwx_stream_base.html" title="This class is the base class of most stream related classes in wxWidgets.">wxStreamBase</a>: it manages a stream buffer linked to a stream</td></tr>
<tr id="row_215_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_stream_to_text_redirector.html" target="_self">wxStreamToTextRedirector</a></td><td class="desc">This class can be used to (temporarily) redirect all output sent to a C++ ostream object to a <a class="el" href="classwx_text_ctrl.html" title="A text control allows text to be displayed and edited.">wxTextCtrl</a> instead</td></tr>
<tr id="row_216_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_string.html" target="_self">wxString</a></td><td class="desc">String class for passing textual data to or receiving it from wxWidgets</td></tr>
<tr id="row_217_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_string_buffer.html" target="_self">wxStringBuffer</a></td><td class="desc">This tiny class allows you to conveniently access the <a class="el" href="classwx_string.html" title="String class for passing textual data to or receiving it from wxWidgets.">wxString</a> internal buffer as a writable pointer without any risk of forgetting to restore the string to the usable state later</td></tr>
<tr id="row_218_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_string_buffer_length.html" target="_self">wxStringBufferLength</a></td><td class="desc">This tiny class allows you to conveniently access the <a class="el" href="classwx_string.html" title="String class for passing textual data to or receiving it from wxWidgets.">wxString</a> internal buffer as a writable pointer without any risk of forgetting to restore the string to the usable state later, and allows the user to set the internal length of the string</td></tr>
<tr id="row_219_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_temp_file.html" target="_self">wxTempFile</a></td><td class="desc">WxTempFile provides a relatively safe way to replace the contents of the existing file</td></tr>
<tr id="row_220_" class="even"><td class="entry"><img id="arr_220_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('220_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_text_attr.html" target="_self">wxTextAttr</a></td><td class="desc">WxTextAttr represents the character and paragraph attributes, or style, for a range of text in a <a class="el" href="classwx_text_ctrl.html" title="A text control allows text to be displayed and edited.">wxTextCtrl</a> or <a class="el" href="classwx_rich_text_ctrl.html" title="wxRichTextCtrl provides a generic, ground-up implementation of a text control capable of showing mult...">wxRichTextCtrl</a></td></tr>
<tr id="row_220_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_rich_text_attr.html" target="_self">wxRichTextAttr</a></td><td class="desc">A class representing enhanced attributes for rich text objects</td></tr>
<tr id="row_221_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_text_attr_border.html" target="_self">wxTextAttrBorder</a></td><td class="desc">A class representing a rich text object border</td></tr>
<tr id="row_222_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_text_attr_borders.html" target="_self">wxTextAttrBorders</a></td><td class="desc">A class representing a rich text object's borders</td></tr>
<tr id="row_223_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_text_attr_dimension.html" target="_self">wxTextAttrDimension</a></td><td class="desc">A class representing a rich text dimension, including units and position</td></tr>
<tr id="row_224_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_text_attr_dimension_converter.html" target="_self">wxTextAttrDimensionConverter</a></td><td class="desc">A class to make it easier to convert dimensions</td></tr>
<tr id="row_225_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_text_attr_dimensions.html" target="_self">wxTextAttrDimensions</a></td><td class="desc">A class for left, right, top and bottom dimensions</td></tr>
<tr id="row_226_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_text_attr_size.html" target="_self">wxTextAttrSize</a></td><td class="desc">A class for representing width and height</td></tr>
<tr id="row_227_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_text_box_attr.html" target="_self">wxTextBoxAttr</a></td><td class="desc">A class representing the box attributes of a rich text object</td></tr>
<tr id="row_228_" class="even"><td class="entry"><img id="arr_228_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('228_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_text_completer.html" target="_self">wxTextCompleter</a></td><td class="desc">Base class for custom text completer objects</td></tr>
<tr id="row_228_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_text_completer_simple.html" target="_self">wxTextCompleterSimple</a></td><td class="desc">A simpler base class for custom completer objects</td></tr>
<tr id="row_229_"><td class="entry"><img id="arr_229_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('229_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><b>wxTextCtrlIface</b></td><td class="desc"></td></tr>
<tr id="row_229_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_rich_text_ctrl.html" target="_self">wxRichTextCtrl</a></td><td class="desc">WxRichTextCtrl provides a generic, ground-up implementation of a text control capable of showing multiple styles and images</td></tr>
<tr id="row_230_" class="even"><td class="entry"><img id="arr_230_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('230_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_text_entry.html" target="_self">wxTextEntry</a></td><td class="desc">Common base class for single line text entry fields</td></tr>
<tr id="row_230_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_combo_box.html" target="_self">wxComboBox</a></td><td class="desc">A combobox is like a combination of an edit control and a listbox</td></tr>
<tr id="row_230_1_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_combo_ctrl.html" target="_self">wxComboCtrl</a></td><td class="desc">A combo control is a generic combobox that allows totally custom popup</td></tr>
<tr id="row_230_2_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_styled_text_ctrl.html" target="_self">wxStyledTextCtrl</a></td><td class="desc">A wxWidgets implementation of the Scintilla source code editing component</td></tr>
<tr id="row_230_3_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_text_ctrl.html" target="_self">wxTextCtrl</a></td><td class="desc">A text control allows text to be displayed and edited</td></tr>
<tr id="row_231_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_text_file.html" target="_self">wxTextFile</a></td><td class="desc">The <a class="el" href="classwx_text_file.html" title="The wxTextFile is a simple class which allows to work with text files on line by line basis...">wxTextFile</a> is a simple class which allows to work with text files on line by line basis</td></tr>
<tr id="row_232_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_text_input_stream.html" target="_self">wxTextInputStream</a></td><td class="desc">This class provides functions that reads text data using an input stream, allowing you to read text, floats, and integers</td></tr>
<tr id="row_233_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_text_output_stream.html" target="_self">wxTextOutputStream</a></td><td class="desc">This class provides functions that write text data using an output stream, allowing you to write text, floats, and integers</td></tr>
<tr id="row_234_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_text_wrapper.html" target="_self">wxTextWrapper</a></td><td class="desc">Helps wrap lines of text to given width</td></tr>
<tr id="row_235_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_thread.html" target="_self">wxThread</a></td><td class="desc">A thread is basically a path of execution through a program</td></tr>
<tr id="row_236_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_thread_helper.html" target="_self">wxThreadHelper</a></td><td class="desc">Mix-in class that manages a single background thread, either detached or joinable (see <a class="el" href="classwx_thread.html" title="A thread is basically a path of execution through a program.">wxThread</a> for the differences)</td></tr>
<tr id="row_237_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_timer_runner.html" target="_self">wxTimerRunner</a></td><td class="desc">Starts the timer in its ctor, stops in the dtor</td></tr>
<tr id="row_238_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_time_span.html" target="_self">wxTimeSpan</a></td><td class="desc">WxTimeSpan class represents a time interval</td></tr>
<tr id="row_239_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_tip_provider.html" target="_self">wxTipProvider</a></td><td class="desc">This is the class used together with <a class="el" href="group__group__funcmacro__dialog.html#ga71723a35f5e98349f5a79d7a025dac07" title="This function shows a "startup tip" to the user.">wxShowTip()</a> function</td></tr>
<tr id="row_240_" class="even"><td class="entry"><img id="arr_240_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('240_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_trackable.html" target="_self">wxTrackable</a></td><td class="desc">Add-on base class for a trackable object</td></tr>
<tr id="row_240_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_evt_handler.html" target="_self">wxEvtHandler</a></td><td class="desc">A class that can handle events from the windowing system</td></tr>
<tr id="row_241_"><td class="entry"><img id="arr_241_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('241_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><b>wxTrackerNode</b></td><td class="desc"></td></tr>
<tr id="row_241_0_" class="even" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_weak_ref_3_01_t_01_4.html" target="_self">wxWeakRef< T ></a></td><td class="desc">WxWeakRef<T> is a template class for weak references to wxWidgets objects, such as <a class="el" href="classwx_evt_handler.html" title="A class that can handle events from the windowing system.">wxEvtHandler</a>, <a class="el" href="classwx_window.html" title="wxWindow is the base class for all windows and represents any visible object on screen.">wxWindow</a> and <a class="el" href="classwx_object.html" title="This is the root class of many of the wxWidgets classes.">wxObject</a></td></tr>
<tr id="row_242_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_transform2_d.html" target="_self">wxTransform2D</a></td><td class="desc"></td></tr>
<tr id="row_243_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_translations.html" target="_self">wxTranslations</a></td><td class="desc">This class allows to get translations for strings</td></tr>
<tr id="row_244_" class="even"><td class="entry"><img id="arr_244_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('244_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_translations_loader.html" target="_self">wxTranslationsLoader</a></td><td class="desc">Abstraction of translations discovery and loading</td></tr>
<tr id="row_244_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_file_translations_loader.html" target="_self">wxFileTranslationsLoader</a></td><td class="desc">Standard <a class="el" href="classwx_translations_loader.html" title="Abstraction of translations discovery and loading.">wxTranslationsLoader</a> implementation</td></tr>
<tr id="row_244_1_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_resource_translations_loader.html" target="_self">wxResourceTranslationsLoader</a></td><td class="desc">This loader makes it possible to load translations from Windows resources</td></tr>
<tr id="row_245_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_tree_item_id.html" target="_self">wxTreeItemId</a></td><td class="desc">An opaque reference to a tree item</td></tr>
<tr id="row_246_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_tree_list_item.html" target="_self">wxTreeListItem</a></td><td class="desc">Unique identifier of an item in <a class="el" href="classwx_tree_list_ctrl.html" title="A control combining wxTreeCtrl and wxListCtrl features.">wxTreeListCtrl</a></td></tr>
<tr id="row_247_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_tree_list_item_comparator.html" target="_self">wxTreeListItemComparator</a></td><td class="desc">Class defining sort order for the items in <a class="el" href="classwx_tree_list_ctrl.html" title="A control combining wxTreeCtrl and wxListCtrl features.">wxTreeListCtrl</a></td></tr>
<tr id="row_248_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_u_i_action_simulator.html" target="_self">wxUIActionSimulator</a></td><td class="desc">WxUIActionSimulator is a class used to simulate user interface actions such as a mouse click or a key press</td></tr>
<tr id="row_249_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_u_long_long.html" target="_self">wxULongLong</a></td><td class="desc">This class represents an unsigned 64 bit long number</td></tr>
<tr id="row_250_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_uni_char.html" target="_self">wxUniChar</a></td><td class="desc">This class represents a single Unicode character</td></tr>
<tr id="row_251_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_uni_char_ref.html" target="_self">wxUniCharRef</a></td><td class="desc">Writeable reference to a character in <a class="el" href="classwx_string.html" title="String class for passing textual data to or receiving it from wxWidgets.">wxString</a></td></tr>
<tr id="row_252_" class="even"><td class="entry"><img id="arr_252_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('252_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_var_scroll_helper_base.html" target="_self">wxVarScrollHelperBase</a></td><td class="desc">This class provides all common base functionality for scroll calculations shared among all variable scrolled window implementations as well as automatic scrollbar functionality, saved scroll positions, controlling target windows to be scrolled, as well as defining all required virtual functions that need to be implemented for any orientation specific work</td></tr>
<tr id="row_252_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_252_0_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('252_0_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_var_h_scroll_helper.html" target="_self">wxVarHScrollHelper</a></td><td class="desc">This class provides functions wrapping the <a class="el" href="classwx_var_scroll_helper_base.html" title="This class provides all common base functionality for scroll calculations shared among all variable s...">wxVarScrollHelperBase</a> class, targeted for horizontal-specific scrolling</td></tr>
<tr id="row_252_0_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_h_scrolled_window.html" target="_self">wxHScrolledWindow</a></td><td class="desc">In the name of this class, "H" stands for "horizontal" because it can be used for scrolling columns of variable widths</td></tr>
<tr id="row_252_0_1_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_252_0_1_" src="ftv2plastnode.png" alt="\" width="16" height="22" onclick="toggleFolder('252_0_1_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_var_h_v_scroll_helper.html" target="_self">wxVarHVScrollHelper</a></td><td class="desc">This class provides functions wrapping the <a class="el" href="classwx_var_h_scroll_helper.html" title="This class provides functions wrapping the wxVarScrollHelperBase class, targeted for horizontal-speci...">wxVarHScrollHelper</a> and <a class="el" href="classwx_var_v_scroll_helper.html" title="This class provides functions wrapping the wxVarScrollHelperBase class, targeted for vertical-specifi...">wxVarVScrollHelper</a> classes, targeted for scrolling a window in both axis</td></tr>
<tr id="row_252_0_1_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_h_v_scrolled_window.html" target="_self">wxHVScrolledWindow</a></td><td class="desc">This window inherits all functionality of both vertical and horizontal, variable scrolled windows</td></tr>
<tr id="row_252_1_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_252_1_" src="ftv2plastnode.png" alt="\" width="16" height="22" onclick="toggleFolder('252_1_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_var_v_scroll_helper.html" target="_self">wxVarVScrollHelper</a></td><td class="desc">This class provides functions wrapping the <a class="el" href="classwx_var_scroll_helper_base.html" title="This class provides all common base functionality for scroll calculations shared among all variable s...">wxVarScrollHelperBase</a> class, targeted for vertical-specific scrolling</td></tr>
<tr id="row_252_1_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_var_h_v_scroll_helper.html" target="_self">wxVarHVScrollHelper</a></td><td class="desc">This class provides functions wrapping the <a class="el" href="classwx_var_h_scroll_helper.html" title="This class provides functions wrapping the wxVarScrollHelperBase class, targeted for horizontal-speci...">wxVarHScrollHelper</a> and <a class="el" href="classwx_var_v_scroll_helper.html" title="This class provides functions wrapping the wxVarScrollHelperBase class, targeted for vertical-specifi...">wxVarVScrollHelper</a> classes, targeted for scrolling a window in both axis</td></tr>
<tr id="row_252_1_1_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_v_scrolled_window.html" target="_self">wxVScrolledWindow</a></td><td class="desc">In the name of this class, "V" may stand for "variable" because it can be used for scrolling rows of variable heights; "virtual", because it is not necessary to know the heights of all rows in advance – only those which are shown on the screen need to be measured; or even "vertical", because this class only supports scrolling vertically</td></tr>
<tr id="row_253_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_vector_3_01_t_01_4.html" target="_self">wxVector< T ></a></td><td class="desc">WxVector<T> is a template class which implements most of the <code>std::vector</code> class and can be used like it</td></tr>
<tr id="row_254_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_version_info.html" target="_self">wxVersionInfo</a></td><td class="desc">WxVersionInfo contains version information</td></tr>
<tr id="row_255_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structwx_video_mode.html" target="_self">wxVideoMode</a></td><td class="desc">Determines the sizes and locations of displays connected to the system</td></tr>
<tr id="row_256_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="structwx_visual_attributes.html" target="_self">wxVisualAttributes</a></td><td class="desc">Struct containing all the visual attributes of a control</td></tr>
<tr id="row_257_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_weak_ref_dynamic_3_01_t_01_4.html" target="_self">wxWeakRefDynamic< T ></a></td><td class="desc">WxWeakRefDynamic<T> is a template class for weak references that is used in the same way as <a class="el" href="classwx_weak_ref_3_01_t_01_4.html" title="wxWeakRef<T> is a template class for weak references to wxWidgets objects, such as wxEvtHandler...">wxWeakRef<T></a></td></tr>
<tr id="row_258_" class="even"><td class="entry"><img id="arr_258_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('258_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_web_view_handler.html" target="_self">wxWebViewHandler</a></td><td class="desc">The base class for handling custom schemes in <a class="el" href="classwx_web_view.html" title="This control may be used to render web (HTML / CSS / javascript) documents.">wxWebView</a>, for example to allow virtual file system support</td></tr>
<tr id="row_258_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_web_view_archive_handler.html" target="_self">wxWebViewArchiveHandler</a></td><td class="desc">A custom handler for the file scheme which also supports loading from archives</td></tr>
<tr id="row_258_1_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_web_view_f_s_handler.html" target="_self">wxWebViewFSHandler</a></td><td class="desc">A <a class="el" href="classwx_web_view.html" title="This control may be used to render web (HTML / CSS / javascript) documents.">wxWebView</a> file system handler to support standard <a class="el" href="classwx_file_system.html" title="This class provides an interface for opening files on different file systems.">wxFileSystem</a> protocols of the form <code> example:page.htm </code> The handler allows <a class="el" href="classwx_web_view.html" title="This control may be used to render web (HTML / CSS / javascript) documents.">wxWebView</a> to use <a class="el" href="classwx_file_system.html" title="This class provides an interface for opening files on different file systems.">wxFileSystem</a> in a similar fashion to its use with wxHtml</td></tr>
<tr id="row_259_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_web_view_history_item.html" target="_self">wxWebViewHistoryItem</a></td><td class="desc">A simple class that contains the URL and title of an element of the history of a <a class="el" href="classwx_web_view.html" title="This control may be used to render web (HTML / CSS / javascript) documents.">wxWebView</a></td></tr>
<tr id="row_260_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_window_disabler.html" target="_self">wxWindowDisabler</a></td><td class="desc">This class disables all windows of the application (may be with the exception of one of them) in its constructor and enables them back in its destructor</td></tr>
<tr id="row_261_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_window_update_locker.html" target="_self">wxWindowUpdateLocker</a></td><td class="desc">This tiny class prevents redrawing of a <a class="el" href="classwx_window.html" title="wxWindow is the base class for all windows and represents any visible object on screen.">wxWindow</a> during its lifetime by using <a class="el" href="classwx_window.html#a15c678314cfc1d807196bc298b713ed3" title="Freezes the window or, in other words, prevents any updates from taking place on screen, the window is not redrawn at all.">wxWindow::Freeze()</a> and <a class="el" href="classwx_window.html#a279a532124073261b28131b6afb59a1e" title="Re-enables window updating after a previous call to Freeze().">wxWindow::Thaw()</a> methods</td></tr>
<tr id="row_262_" class="even"><td class="entry"><img id="arr_262_" src="ftv2pnode.png" alt="o" width="16" height="22" onclick="toggleFolder('262_')"/><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_with_images.html" target="_self">wxWithImages</a></td><td class="desc">A mixin class to be used with other classes that use a <a class="el" href="classwx_image_list.html" title="A wxImageList contains a list of images, which are stored in an unspecified form.">wxImageList</a></td></tr>
<tr id="row_262_0_" style="display:none;"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_book_ctrl_base.html" target="_self">wxBookCtrlBase</a></td><td class="desc">A book control is a convenient way of displaying multiple pages of information, displayed one page at a time</td></tr>
<tr id="row_263_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_x_locale.html" target="_self">wxXLocale</a></td><td class="desc">This class represents a locale object used by so-called xlocale API</td></tr>
<tr id="row_264_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_xml_attribute.html" target="_self">wxXmlAttribute</a></td><td class="desc">Represents a node attribute</td></tr>
<tr id="row_265_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_xml_node.html" target="_self">wxXmlNode</a></td><td class="desc">Represents a node in an XML document</td></tr>
<tr id="row_266_" class="even"><td class="entry"><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classwx_zip_notifier.html" target="_self">wxZipNotifier</a></td><td class="desc">If you need to know when a <a class="el" href="classwx_zip_input_stream.html" title="Input stream for reading zip files.">wxZipInputStream</a> updates a <a class="el" href="classwx_zip_entry.html" title="Holds the meta-data for an entry in a zip.">wxZipEntry</a>, you can create a notifier by deriving from this abstract base class, overriding <a class="el" href="classwx_zip_notifier.html#a083f9f711200b5d94e7bd1a5512b3d4f" title="Override this to receive notifications when an wxZipEntry object changes.">wxZipNotifier::OnEntryUpdated()</a></td></tr>
</table>
</div><!-- directory -->
</div><!-- contents -->
<address class="footer">
<small>
Generated on Thu Nov 27 2014 13:47:03 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>
|