1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288
|
<!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"/>
<title>Crazy Eddies GUI System: CEGUI::ScrollablePane Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<!-- Generated by Doxygen 1.7.4 -->
<script type="text/javascript">
function hasClass(ele,cls) {
return ele.className.match(new RegExp('(\\s|^)'+cls+'(\\s|$)'));
}
function addClass(ele,cls) {
if (!this.hasClass(ele,cls)) ele.className += " "+cls;
}
function removeClass(ele,cls) {
if (hasClass(ele,cls)) {
var reg = new RegExp('(\\s|^)'+cls+'(\\s|$)');
ele.className=ele.className.replace(reg,' ');
}
}
function toggleVisibility(linkObj) {
var base = linkObj.getAttribute('id');
var summary = document.getElementById(base + '-summary');
var content = document.getElementById(base + '-content');
var trigger = document.getElementById(base + '-trigger');
if ( hasClass(linkObj,'closed') ) {
summary.style.display = 'none';
content.style.display = 'block';
trigger.src = 'open.png';
removeClass(linkObj,'closed');
addClass(linkObj,'opened');
} else if ( hasClass(linkObj,'opened') ) {
summary.style.display = 'block';
content.style.display = 'none';
trigger.src = 'closed.png';
removeClass(linkObj,'opened');
addClass(linkObj,'closed');
}
return false;
}
</script>
<div id="top">
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td style="padding-left: 0.5em;">
<div id="projectname">Crazy Eddies GUI System <span id="projectnumber">0.7.6</span></div>
</td>
</tr>
</tbody>
</table>
</div>
<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="namespaces.html"><span>Namespaces</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><a href="inherits.html"><span>Class Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><a class="el" href="namespaceCEGUI.html">CEGUI</a> </li>
<li class="navelem"><a class="el" href="classCEGUI_1_1ScrollablePane.html">ScrollablePane</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> |
<a href="#pub-static-attribs">Static Public Attributes</a> |
<a href="#pro-methods">Protected Member Functions</a> |
<a href="#pro-attribs">Protected Attributes</a> </div>
<div class="headertitle">
<div class="title">CEGUI::ScrollablePane Class Reference</div> </div>
</div>
<div class="contents">
<!-- doxytag: class="CEGUI::ScrollablePane" --><!-- doxytag: inherits="CEGUI::Window" -->
<p>Base class for the <a class="el" href="classCEGUI_1_1ScrollablePane.html" title="Base class for the ScrollablePane widget.">ScrollablePane</a> widget.
<a href="classCEGUI_1_1ScrollablePane.html#details">More...</a></p>
<div id="dynsection-0" onclick="return toggleVisibility(this)" class="dynheader closed" style="cursor:pointer;">
<img id="dynsection-0-trigger" src="closed.png"/> Inheritance diagram for CEGUI::ScrollablePane:</div>
<div id="dynsection-0-summary" class="dynsummary" style="display:block;">
</div>
<div id="dynsection-0-content" class="dyncontent" style="display:none;">
<div class="center"><img src="classCEGUI_1_1ScrollablePane__inherit__graph.gif" border="0" usemap="#CEGUI_1_1ScrollablePane_inherit__map" alt="Inheritance graph"/></div>
<map name="CEGUI_1_1ScrollablePane_inherit__map" id="CEGUI_1_1ScrollablePane_inherit__map">
<area shape="rect" id="node2" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv..." alt="" coords="25,83,145,112"/><area shape="rect" id="node4" href="classCEGUI_1_1PropertySet.html" title="Class that contains a collection of Property objects." alt="" coords="15,5,156,35"/></map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>
<div id="dynsection-1" onclick="return toggleVisibility(this)" class="dynheader closed" style="cursor:pointer;">
<img id="dynsection-1-trigger" src="closed.png"/> Collaboration diagram for CEGUI::ScrollablePane:</div>
<div id="dynsection-1-summary" class="dynsummary" style="display:block;">
</div>
<div id="dynsection-1-content" class="dyncontent" style="display:none;">
<div class="center"><img src="classCEGUI_1_1ScrollablePane__coll__graph.gif" border="0" usemap="#CEGUI_1_1ScrollablePane_coll__map" alt="Collaboration graph"/></div>
<map name="CEGUI_1_1ScrollablePane_coll__map" id="CEGUI_1_1ScrollablePane_coll__map">
<area shape="rect" id="node2" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv..." alt="" coords="117,181,237,211"/><area shape="rect" id="node4" href="classCEGUI_1_1Rect.html" title="Class encapsulating operations on a Rectangle." alt="" coords="11,5,112,35"/><area shape="rect" id="node7" href="classCEGUI_1_1ScrollablePaneProperties_1_1HorzOverlapSize.html" title="Property to access the overlap size for the horizontal Scrollbar." alt="" coords="391,181,716,211"/></map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>
<p><a href="classCEGUI_1_1ScrollablePane-members.html">List of all members.</a></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a592362c070d73dfe6dd9ddc1d778d8de"></a><!-- doxytag: member="CEGUI::ScrollablePane::ScrollablePane" ref="a592362c070d73dfe6dd9ddc1d778d8de" args="(const String &type, const String &name)" -->
 </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrollablePane.html#a592362c070d73dfe6dd9ddc1d778d8de">ScrollablePane</a> (const <a class="el" href="classCEGUI_1_1String.html">String</a> &type, const <a class="el" href="classCEGUI_1_1String.html">String</a> &name)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Constructor for the <a class="el" href="classCEGUI_1_1ScrollablePane.html" title="Base class for the ScrollablePane widget.">ScrollablePane</a> base class. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a47eb8122d1fd937c581aa3f6a3a78499"></a><!-- doxytag: member="CEGUI::ScrollablePane::~ScrollablePane" ref="a47eb8122d1fd937c581aa3f6a3a78499" args="(void)" -->
 </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrollablePane.html#a47eb8122d1fd937c581aa3f6a3a78499">~ScrollablePane</a> (void)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Destructor for the <a class="el" href="classCEGUI_1_1ScrollablePane.html" title="Base class for the ScrollablePane widget.">ScrollablePane</a> base class. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classCEGUI_1_1ScrolledContainer.html">ScrolledContainer</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrollablePane.html#a43b6ee8ad15850fa77c487af0c3749ac">getContentPane</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Returns a pointer to the window holding the pane contents. <a href="#a43b6ee8ad15850fa77c487af0c3749ac"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrollablePane.html#aa7ec7f03e61db8c0cd64fe71f4303742">isVertScrollbarAlwaysShown</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return whether the vertical scroll bar is always shown. <a href="#aa7ec7f03e61db8c0cd64fe71f4303742"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrollablePane.html#a3f83ae219e9d1519baa4cca2216af9e4">setShowVertScrollbar</a> (bool setting)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Set whether the vertical scroll bar should always be shown. <a href="#a3f83ae219e9d1519baa4cca2216af9e4"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrollablePane.html#a7b6ba513950fba4927f9d0aab2815875">isHorzScrollbarAlwaysShown</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return whether the horizontal scroll bar is always shown. <a href="#a7b6ba513950fba4927f9d0aab2815875"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrollablePane.html#a4f941537f97257ed22626b849f563392">setShowHorzScrollbar</a> (bool setting)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Set whether the horizontal scroll bar should always be shown. <a href="#a4f941537f97257ed22626b849f563392"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrollablePane.html#a5123cb51e44be3796c0f6945300084eb">isContentPaneAutoSized</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return whether the content pane is auto sized. <a href="#a5123cb51e44be3796c0f6945300084eb"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrollablePane.html#a0ad180543fae1f1c4e4525aeb5a9cd97">setContentPaneAutoSized</a> (bool setting)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Set whether the content pane should be auto-sized. <a href="#a0ad180543fae1f1c4e4525aeb5a9cd97"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classCEGUI_1_1Rect.html">Rect</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrollablePane.html#adef816955340e9dbf708996ce146b892">getContentPaneArea</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return the current content pane area for the <a class="el" href="classCEGUI_1_1ScrollablePane.html" title="Base class for the ScrollablePane widget.">ScrollablePane</a>. <a href="#adef816955340e9dbf708996ce146b892"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrollablePane.html#aa217f131a8ac183ff47b09ec8dac3c15">setContentPaneArea</a> (const <a class="el" href="classCEGUI_1_1Rect.html">Rect</a> &area)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Set the current content pane area for the <a class="el" href="classCEGUI_1_1ScrollablePane.html" title="Base class for the ScrollablePane widget.">ScrollablePane</a>. <a href="#aa217f131a8ac183ff47b09ec8dac3c15"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">float </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrollablePane.html#ade1cc2645c50a5fac69b18fc468cc80b">getHorizontalStepSize</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Returns the horizontal scrollbar step size as a fraction of one complete view page. <a href="#ade1cc2645c50a5fac69b18fc468cc80b"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrollablePane.html#a1beb132ea27bff5775caad2ff11bb56b">setHorizontalStepSize</a> (float step)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Sets the horizontal scrollbar step size as a fraction of one complete view page. <a href="#a1beb132ea27bff5775caad2ff11bb56b"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">float </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrollablePane.html#a060d610a28199eabc9d3857a2122119c">getHorizontalOverlapSize</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Returns the horizontal scrollbar overlap size as a fraction of one complete view page. <a href="#a060d610a28199eabc9d3857a2122119c"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrollablePane.html#a17ba0eb008ab3e1de431f1a6f6b2aade">setHorizontalOverlapSize</a> (float overlap)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Sets the horizontal scrollbar overlap size as a fraction of one complete view page. <a href="#a17ba0eb008ab3e1de431f1a6f6b2aade"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">float </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrollablePane.html#af77c1aec33da9af8477cf33fec5b963e">getHorizontalScrollPosition</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Returns the horizontal scroll position as a fraction of the complete scrollable width. <a href="#af77c1aec33da9af8477cf33fec5b963e"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrollablePane.html#a69c3ebb1bac96005bdc59ca87cbb84a7">setHorizontalScrollPosition</a> (float position)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Sets the horizontal scroll position as a fraction of the complete scrollable width. <a href="#a69c3ebb1bac96005bdc59ca87cbb84a7"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">float </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrollablePane.html#a417d1aef4c3ea77969374ef26c0de9db">getVerticalStepSize</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Returns the vertical scrollbar step size as a fraction of one complete view page. <a href="#a417d1aef4c3ea77969374ef26c0de9db"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrollablePane.html#a6cbed62a5907afe7bfccfca5d36d6d39">setVerticalStepSize</a> (float step)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Sets the vertical scrollbar step size as a fraction of one complete view page. <a href="#a6cbed62a5907afe7bfccfca5d36d6d39"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">float </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrollablePane.html#a3699581547c341b79575a0b6bcdbeefd">getVerticalOverlapSize</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Returns the vertical scrollbar overlap size as a fraction of one complete view page. <a href="#a3699581547c341b79575a0b6bcdbeefd"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrollablePane.html#ad34c5bee39ed44603920fb45f7b8747e">setVerticalOverlapSize</a> (float overlap)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Sets the vertical scrollbar overlap size as a fraction of one complete view page. <a href="#ad34c5bee39ed44603920fb45f7b8747e"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">float </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrollablePane.html#a91b299a9a1c9340b871b73cd12ccc5d7">getVerticalScrollPosition</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Returns the vertical scroll position as a fraction of the complete scrollable height. <a href="#a91b299a9a1c9340b871b73cd12ccc5d7"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrollablePane.html#a2285f42e49881a6a4f9fcb908affb794">setVerticalScrollPosition</a> (float position)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Sets the vertical scroll position as a fraction of the complete scrollable height. <a href="#a2285f42e49881a6a4f9fcb908affb794"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classCEGUI_1_1Rect.html">Rect</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrollablePane.html#aafa62b9ae3cd04a2ccd1e1ec70b97e9d">getViewableArea</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return a <a class="el" href="classCEGUI_1_1Rect.html" title="Class encapsulating operations on a Rectangle.">Rect</a> that described the pane's viewable area, relative to this <a class="el" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a>, in pixels. <a href="#aafa62b9ae3cd04a2ccd1e1ec70b97e9d"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classCEGUI_1_1Scrollbar.html">Scrollbar</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrollablePane.html#a4e7ec29e3fb14696e8617e4015736180">getVertScrollbar</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return a pointer to the vertical scrollbar component widget for this <a class="el" href="classCEGUI_1_1ScrollablePane.html" title="Base class for the ScrollablePane widget.">ScrollablePane</a>. <a href="#a4e7ec29e3fb14696e8617e4015736180"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classCEGUI_1_1Scrollbar.html">Scrollbar</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrollablePane.html#add40ea08d72151bf5f243ab049dcd706">getHorzScrollbar</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return a pointer to the horizontal scrollbar component widget for this <a class="el" href="classCEGUI_1_1ScrollablePane.html" title="Base class for the ScrollablePane widget.">ScrollablePane</a>. <a href="#add40ea08d72151bf5f243ab049dcd706"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrollablePane.html#a1b61e72a9fc660f5657c7e6237a87a6a">initialiseComponents</a> (void)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Initialises the <a class="el" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a> based object ready for use. <a href="#a1b61e72a9fc660f5657c7e6237a87a6a"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrollablePane.html#a79a46f90f1e4d6316541c83200d6c4e8">destroy</a> (void)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Internal destroy method which actually just adds the window and any parent destructed child windows to the dead pool. <a href="#a79a46f90f1e4d6316541c83200d6c4e8"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="pub-static-attribs"></a>
Static Public Attributes</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a8747c6f122ac2249e88187ee51ef4d00"></a><!-- doxytag: member="CEGUI::ScrollablePane::WidgetTypeName" ref="a8747c6f122ac2249e88187ee51ef4d00" args="" -->
static const <a class="el" href="classCEGUI_1_1String.html">String</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrollablePane.html#a8747c6f122ac2249e88187ee51ef4d00">WidgetTypeName</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight"><a class="el" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a> factory name. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="afd7daf307ccf23bcb4725c6b3541309c"></a><!-- doxytag: member="CEGUI::ScrollablePane::EventNamespace" ref="afd7daf307ccf23bcb4725c6b3541309c" args="" -->
static const <a class="el" href="classCEGUI_1_1String.html">String</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrollablePane.html#afd7daf307ccf23bcb4725c6b3541309c">EventNamespace</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Namespace for global events. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="classCEGUI_1_1String.html">String</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrollablePane.html#a93ed460fe5ec36a51ab4bbf6e4917a8b">EventContentPaneChanged</a></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="classCEGUI_1_1String.html">String</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrollablePane.html#a6bae31cb6030349a5034e7a55168929f">EventVertScrollbarModeChanged</a></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="classCEGUI_1_1String.html">String</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrollablePane.html#a6f569c3fe460cf674ba010dd99cd6fa6">EventHorzScrollbarModeChanged</a></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="classCEGUI_1_1String.html">String</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrollablePane.html#aa7309eb7bef6f0ae59bbd7bacab25fcd">EventAutoSizeSettingChanged</a></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="classCEGUI_1_1String.html">String</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrollablePane.html#a98ce9a5593d6757834418585a792bb23">EventContentPaneScrolled</a></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aeeabf0e97254c46b4204f8c060033259"></a><!-- doxytag: member="CEGUI::ScrollablePane::VertScrollbarNameSuffix" ref="aeeabf0e97254c46b4204f8c060033259" args="" -->
static const <a class="el" href="classCEGUI_1_1String.html">String</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrollablePane.html#aeeabf0e97254c46b4204f8c060033259">VertScrollbarNameSuffix</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Widget name suffix for the vertical scrollbar component. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a487a2c16eb6d1eeee7fd9371e93624f3"></a><!-- doxytag: member="CEGUI::ScrollablePane::HorzScrollbarNameSuffix" ref="a487a2c16eb6d1eeee7fd9371e93624f3" args="" -->
static const <a class="el" href="classCEGUI_1_1String.html">String</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrollablePane.html#a487a2c16eb6d1eeee7fd9371e93624f3">HorzScrollbarNameSuffix</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Widget name suffix for the horizontal scrollbar component. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a8c43906bcca025ece00698885ae85b2d"></a><!-- doxytag: member="CEGUI::ScrollablePane::ScrolledContainerNameSuffix" ref="a8c43906bcca025ece00698885ae85b2d" args="" -->
static const <a class="el" href="classCEGUI_1_1String.html">String</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrollablePane.html#a8c43906bcca025ece00698885ae85b2d">ScrolledContainerNameSuffix</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Widget name suffix for the scrolled container component. <br/></td></tr>
<tr><td colspan="2"><h2><a name="pro-methods"></a>
Protected Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ab277dc638429c1fe90ec77e675d76e2f"></a><!-- doxytag: member="CEGUI::ScrollablePane::configureScrollbars" ref="ab277dc638429c1fe90ec77e675d76e2f" args="(void)" -->
void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrollablePane.html#ab277dc638429c1fe90ec77e675d76e2f">configureScrollbars</a> (void)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">display required integrated scroll bars according to current size of the <a class="el" href="classCEGUI_1_1ScrollablePane.html" title="Base class for the ScrollablePane widget.">ScrollablePane</a> view area and the size of the attached <a class="el" href="classCEGUI_1_1ScrolledContainer.html" title="Helper container window class which is used in the implementation of the ScrollablePane widget class...">ScrolledContainer</a>. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrollablePane.html#abca111e21ca6dc5f40baa5a9e53f6339">isVertScrollbarNeeded</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return whether the vertical scrollbar is needed. <a href="#abca111e21ca6dc5f40baa5a9e53f6339"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrollablePane.html#aaeb212d1deb552312bff0e604765a7c0">isHorzScrollbarNeeded</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return whether the horizontal scrollbar is needed. <a href="#aaeb212d1deb552312bff0e604765a7c0"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a59bb73a489c8fe8b183de0c734f770cc"></a><!-- doxytag: member="CEGUI::ScrollablePane::updateContainerPosition" ref="a59bb73a489c8fe8b183de0c734f770cc" args="(void)" -->
void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrollablePane.html#a59bb73a489c8fe8b183de0c734f770cc">updateContainerPosition</a> (void)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Update the content container position according to the current state of the widget (like scrollbar positions, etc). <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrollablePane.html#ab703fd741f04b29369e6a00a22e9d613">testClassName_impl</a> (const <a class="el" href="classCEGUI_1_1String.html">String</a> &class_name) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return whether this window was inherited from the given class name at some point in the inheritance hierarchy. <a href="#ab703fd741f04b29369e6a00a22e9d613"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classCEGUI_1_1ScrolledContainer.html">ScrolledContainer</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrollablePane.html#a0b59d4d77d7545c1afe93e14f0bfd23a">getScrolledContainer</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return a pointer to the <a class="el" href="classCEGUI_1_1ScrolledContainer.html" title="Helper container window class which is used in the implementation of the ScrollablePane widget class...">ScrolledContainer</a> component widget for this <a class="el" href="classCEGUI_1_1ScrollablePane.html" title="Base class for the ScrollablePane widget.">ScrollablePane</a>. <a href="#a0b59d4d77d7545c1afe93e14f0bfd23a"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrollablePane.html#a3f928d5a1cf519598fd19cd0d3ebba94">validateWindowRenderer</a> (const <a class="el" href="classCEGUI_1_1String.html">String</a> &name) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Function used in checking if a <a class="el" href="classCEGUI_1_1WindowRenderer.html" title="Base-class for the assignable WindowRenderer object.">WindowRenderer</a> is valid for this window. <a href="#a3f928d5a1cf519598fd19cd0d3ebba94"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrollablePane.html#a7302b29ef82459f524fc75f4a8c20cb1">onContentPaneChanged</a> (<a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> &e)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight"><a class="el" href="classCEGUI_1_1Event.html" title="Defines an 'event' which can be subscribed to by interested parties.">Event</a> trigger method called when some pane content has changed size or location. <a href="#a7302b29ef82459f524fc75f4a8c20cb1"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrollablePane.html#a6352ac1cd0762f407112f8d7e74eb4e0">onVertScrollbarModeChanged</a> (<a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> &e)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight"><a class="el" href="classCEGUI_1_1Event.html" title="Defines an 'event' which can be subscribed to by interested parties.">Event</a> trigger method called when the setting that controls whether the vertical scrollbar is always shown or not, is changed. <a href="#a6352ac1cd0762f407112f8d7e74eb4e0"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrollablePane.html#a0e0ec6f60fb1cbb916b50f736f980e29">onHorzScrollbarModeChanged</a> (<a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> &e)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight"><a class="el" href="classCEGUI_1_1Event.html" title="Defines an 'event' which can be subscribed to by interested parties.">Event</a> trigger method called when the setting that controls whether the horizontal scrollbar is always shown or not, is changed. <a href="#a0e0ec6f60fb1cbb916b50f736f980e29"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrollablePane.html#aff441485fdfe15f8db533311ef8e15bb">onAutoSizeSettingChanged</a> (<a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> &e)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Notification method called whenever the setting that controls whether the content pane is automatically sized is changed. <a href="#aff441485fdfe15f8db533311ef8e15bb"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrollablePane.html#a63aab26d6f0870306522ef6620e4e7c3">onContentPaneScrolled</a> (<a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> &e)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Notification method called whenever the content pane is scrolled via changes in the scrollbar positions. <a href="#a63aab26d6f0870306522ef6620e4e7c3"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a69964dd1544469e64ce3100b0edf31b9"></a><!-- doxytag: member="CEGUI::ScrollablePane::handleScrollChange" ref="a69964dd1544469e64ce3100b0edf31b9" args="(const EventArgs &e)" -->
bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrollablePane.html#a69964dd1544469e64ce3100b0edf31b9">handleScrollChange</a> (const <a class="el" href="classCEGUI_1_1EventArgs.html">EventArgs</a> &e)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Handler method which gets subscribed to the scrollbar position change events. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ad3fd68a8fa03fc5a1b0cf66a535be50c"></a><!-- doxytag: member="CEGUI::ScrollablePane::handleContentAreaChange" ref="ad3fd68a8fa03fc5a1b0cf66a535be50c" args="(const EventArgs &e)" -->
bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrollablePane.html#ad3fd68a8fa03fc5a1b0cf66a535be50c">handleContentAreaChange</a> (const <a class="el" href="classCEGUI_1_1EventArgs.html">EventArgs</a> &e)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Handler method which gets subscribed to the <a class="el" href="classCEGUI_1_1ScrolledContainer.html" title="Helper container window class which is used in the implementation of the ScrollablePane widget class...">ScrolledContainer</a> content change events. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="abc6a2a3b6be39fa59fb235b0de8be9bf"></a><!-- doxytag: member="CEGUI::ScrollablePane::handleAutoSizePaneChanged" ref="abc6a2a3b6be39fa59fb235b0de8be9bf" args="(const EventArgs &e)" -->
bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrollablePane.html#abc6a2a3b6be39fa59fb235b0de8be9bf">handleAutoSizePaneChanged</a> (const <a class="el" href="classCEGUI_1_1EventArgs.html">EventArgs</a> &e)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Handler method which gets subscribed to the <a class="el" href="classCEGUI_1_1ScrolledContainer.html" title="Helper container window class which is used in the implementation of the ScrollablePane widget class...">ScrolledContainer</a> auto-size setting changes. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a8935490e77a3cd764ab541e80941b038"></a><!-- doxytag: member="CEGUI::ScrollablePane::addChild_impl" ref="a8935490e77a3cd764ab541e80941b038" args="(Window *wnd)" -->
void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrollablePane.html#a8935490e77a3cd764ab541e80941b038">addChild_impl</a> (<a class="el" href="classCEGUI_1_1Window.html">Window</a> *wnd)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Add given window to child list at an appropriate position. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ac1d23d20ef6b06c2a9c764dd7c8379e6"></a><!-- doxytag: member="CEGUI::ScrollablePane::removeChild_impl" ref="ac1d23d20ef6b06c2a9c764dd7c8379e6" args="(Window *wnd)" -->
void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrollablePane.html#ac1d23d20ef6b06c2a9c764dd7c8379e6">removeChild_impl</a> (<a class="el" href="classCEGUI_1_1Window.html">Window</a> *wnd)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Remove given window from child list. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrollablePane.html#a0072b0cd80073f05763afcba43c66b3f">onSized</a> (<a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> &e)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Handler called when the window's size changes. <a href="#a0072b0cd80073f05763afcba43c66b3f"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrollablePane.html#a9b2b2d7419e2d88b7f0a72298dceaa9b">onMouseWheel</a> (<a class="el" href="classCEGUI_1_1MouseEventArgs.html">MouseEventArgs</a> &e)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Handler called when the mouse wheel (z-axis) position changes within this window's area. <a href="#a9b2b2d7419e2d88b7f0a72298dceaa9b"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="pro-attribs"></a>
Protected Attributes</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a49e870ceda99ebeb26ad212777b911fe"></a><!-- doxytag: member="CEGUI::ScrollablePane::d_forceVertScroll" ref="a49e870ceda99ebeb26ad212777b911fe" args="" -->
bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrollablePane.html#a49e870ceda99ebeb26ad212777b911fe">d_forceVertScroll</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">true if vertical scrollbar should always be displayed <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a2c39e39126fb853030e968581db837b9"></a><!-- doxytag: member="CEGUI::ScrollablePane::d_forceHorzScroll" ref="a2c39e39126fb853030e968581db837b9" args="" -->
bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrollablePane.html#a2c39e39126fb853030e968581db837b9">d_forceHorzScroll</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">true if horizontal scrollbar should always be displayed <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a465921a94dc93b803a63bc79f867b712"></a><!-- doxytag: member="CEGUI::ScrollablePane::d_contentRect" ref="a465921a94dc93b803a63bc79f867b712" args="" -->
<a class="el" href="classCEGUI_1_1Rect.html">Rect</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrollablePane.html#a465921a94dc93b803a63bc79f867b712">d_contentRect</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">holds content area so we can track changes. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a280cbf078760ffddfdd2b305156b3ed5"></a><!-- doxytag: member="CEGUI::ScrollablePane::d_vertStep" ref="a280cbf078760ffddfdd2b305156b3ed5" args="" -->
float </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrollablePane.html#a280cbf078760ffddfdd2b305156b3ed5">d_vertStep</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">vertical scroll step fraction. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="abe073a0440b5b2029e8c9a88dabae2d0"></a><!-- doxytag: member="CEGUI::ScrollablePane::d_vertOverlap" ref="abe073a0440b5b2029e8c9a88dabae2d0" args="" -->
float </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrollablePane.html#abe073a0440b5b2029e8c9a88dabae2d0">d_vertOverlap</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">vertical scroll overlap fraction. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a226fab6abfa85ae66333075e60eff75e"></a><!-- doxytag: member="CEGUI::ScrollablePane::d_horzStep" ref="a226fab6abfa85ae66333075e60eff75e" args="" -->
float </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrollablePane.html#a226fab6abfa85ae66333075e60eff75e">d_horzStep</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">horizontal scroll step fraction. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="afc6bce7e4434f9b0a6ec634592476336"></a><!-- doxytag: member="CEGUI::ScrollablePane::d_horzOverlap" ref="afc6bce7e4434f9b0a6ec634592476336" args="" -->
float </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrollablePane.html#afc6bce7e4434f9b0a6ec634592476336">d_horzOverlap</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">horizontal scroll overlap fraction. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a4feb6429e1cc8e2f13fa380596f22f92"></a><!-- doxytag: member="CEGUI::ScrollablePane::d_contentChangedConn" ref="a4feb6429e1cc8e2f13fa380596f22f92" args="" -->
<a class="el" href="classCEGUI_1_1RefCounted.html">Event::Connection</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrollablePane.html#a4feb6429e1cc8e2f13fa380596f22f92">d_contentChangedConn</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight"><a class="el" href="classCEGUI_1_1Event.html" title="Defines an 'event' which can be subscribed to by interested parties.">Event</a> connection to content pane. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a04272fbc4fa304515993bc3c8e2cf12a"></a><!-- doxytag: member="CEGUI::ScrollablePane::d_autoSizeChangedConn" ref="a04272fbc4fa304515993bc3c8e2cf12a" args="" -->
<a class="el" href="classCEGUI_1_1RefCounted.html">Event::Connection</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrollablePane.html#a04272fbc4fa304515993bc3c8e2cf12a">d_autoSizeChangedConn</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight"><a class="el" href="classCEGUI_1_1Event.html" title="Defines an 'event' which can be subscribed to by interested parties.">Event</a> connection to content pane. <br/></td></tr>
</table>
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
<div class="textblock"><p>Base class for the <a class="el" href="classCEGUI_1_1ScrollablePane.html" title="Base class for the ScrollablePane widget.">ScrollablePane</a> widget. </p>
<p>The <a class="el" href="classCEGUI_1_1ScrollablePane.html" title="Base class for the ScrollablePane widget.">ScrollablePane</a> widget allows child windows to be attached which cover an area larger than the <a class="el" href="classCEGUI_1_1ScrollablePane.html" title="Base class for the ScrollablePane widget.">ScrollablePane</a> itself and these child windows can be scrolled into view using the scrollbars of the scrollable pane. </p>
</div><hr/><h2>Member Function Documentation</h2>
<a class="anchor" id="a79a46f90f1e4d6316541c83200d6c4e8"></a><!-- doxytag: member="CEGUI::ScrollablePane::destroy" ref="a79a46f90f1e4d6316541c83200d6c4e8" args="(void)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::ScrollablePane::destroy </td>
<td>(</td>
<td class="paramtype">void </td>
<td class="paramname"></td><td>)</td>
<td><code> [virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Internal destroy method which actually just adds the window and any parent destructed child windows to the dead pool. </p>
<p>This is virtual to allow for specialised cleanup which may be required in some advanced cases. If you override this for the above reason, you MUST call this base class version.</p>
<dl class="note"><dt><b>Note:</b></dt><dd>You never have to call this method yourself, use <a class="el" href="classCEGUI_1_1WindowManager.html" title="The WindowManager class describes an object that manages creation and lifetime of Window objects...">WindowManager</a> to destroy your <a class="el" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a> objects (which will call this for you). </dd></dl>
<p>Reimplemented from <a class="el" href="classCEGUI_1_1Window.html#aeeb00ea41381c32ad1964c92e9a6474f">CEGUI::Window</a>.</p>
</div>
</div>
<a class="anchor" id="a43b6ee8ad15850fa77c487af0c3749ac"></a><!-- doxytag: member="CEGUI::ScrollablePane::getContentPane" ref="a43b6ee8ad15850fa77c487af0c3749ac" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">const <a class="el" href="classCEGUI_1_1ScrolledContainer.html">ScrolledContainer</a>* CEGUI::ScrollablePane::getContentPane </td>
<td>(</td>
<td class="paramtype">void </td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Returns a pointer to the window holding the pane contents. </p>
<p>The purpose of this is so that attached windows may be inspected, client code may not modify the returned window in any way.</p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Pointer to the <a class="el" href="classCEGUI_1_1ScrolledContainer.html" title="Helper container window class which is used in the implementation of the ScrollablePane widget class...">ScrolledContainer</a> that is acting as the container for the scrollable pane content. The returned window is const, client code should not modify the <a class="el" href="classCEGUI_1_1ScrolledContainer.html" title="Helper container window class which is used in the implementation of the ScrollablePane widget class...">ScrolledContainer</a> settings directly. </dd></dl>
</div>
</div>
<a class="anchor" id="adef816955340e9dbf708996ce146b892"></a><!-- doxytag: member="CEGUI::ScrollablePane::getContentPaneArea" ref="adef816955340e9dbf708996ce146b892" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">const <a class="el" href="classCEGUI_1_1Rect.html">Rect</a>& CEGUI::ScrollablePane::getContentPaneArea </td>
<td>(</td>
<td class="paramtype">void </td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Return the current content pane area for the <a class="el" href="classCEGUI_1_1ScrollablePane.html" title="Base class for the ScrollablePane widget.">ScrollablePane</a>. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><a class="el" href="classCEGUI_1_1Rect.html" title="Class encapsulating operations on a Rectangle.">Rect</a> object that details the current pixel extents of the content pane attached to this <a class="el" href="classCEGUI_1_1ScrollablePane.html" title="Base class for the ScrollablePane widget.">ScrollablePane</a>. </dd></dl>
</div>
</div>
<a class="anchor" id="a060d610a28199eabc9d3857a2122119c"></a><!-- doxytag: member="CEGUI::ScrollablePane::getHorizontalOverlapSize" ref="a060d610a28199eabc9d3857a2122119c" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">float CEGUI::ScrollablePane::getHorizontalOverlapSize </td>
<td>(</td>
<td class="paramtype">void </td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Returns the horizontal scrollbar overlap size as a fraction of one complete view page. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>float value specifying the overlap size where 1.0f would be the width of the viewing area. </dd></dl>
</div>
</div>
<a class="anchor" id="af77c1aec33da9af8477cf33fec5b963e"></a><!-- doxytag: member="CEGUI::ScrollablePane::getHorizontalScrollPosition" ref="af77c1aec33da9af8477cf33fec5b963e" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">float CEGUI::ScrollablePane::getHorizontalScrollPosition </td>
<td>(</td>
<td class="paramtype">void </td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Returns the horizontal scroll position as a fraction of the complete scrollable width. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>float value specifying the scroll position. </dd></dl>
</div>
</div>
<a class="anchor" id="ade1cc2645c50a5fac69b18fc468cc80b"></a><!-- doxytag: member="CEGUI::ScrollablePane::getHorizontalStepSize" ref="ade1cc2645c50a5fac69b18fc468cc80b" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">float CEGUI::ScrollablePane::getHorizontalStepSize </td>
<td>(</td>
<td class="paramtype">void </td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Returns the horizontal scrollbar step size as a fraction of one complete view page. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>float value specifying the step size where 1.0f would be the width of the viewing area. </dd></dl>
</div>
</div>
<a class="anchor" id="add40ea08d72151bf5f243ab049dcd706"></a><!-- doxytag: member="CEGUI::ScrollablePane::getHorzScrollbar" ref="add40ea08d72151bf5f243ab049dcd706" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classCEGUI_1_1Scrollbar.html">Scrollbar</a>* CEGUI::ScrollablePane::getHorzScrollbar </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Return a pointer to the horizontal scrollbar component widget for this <a class="el" href="classCEGUI_1_1ScrollablePane.html" title="Base class for the ScrollablePane widget.">ScrollablePane</a>. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Pointer to a <a class="el" href="classCEGUI_1_1Scrollbar.html" title="Base scroll bar class.">Scrollbar</a> object.</dd></dl>
<dl><dt><b>Exceptions:</b></dt><dd>
<table class="exception">
<tr><td class="paramname"><a class="el" href="classCEGUI_1_1UnknownObjectException.html" title="Exception class used when a request was made for an unknown object.">UnknownObjectException</a></td><td>Thrown if the horizontal <a class="el" href="classCEGUI_1_1Scrollbar.html" title="Base scroll bar class.">Scrollbar</a> component does not exist. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a0b59d4d77d7545c1afe93e14f0bfd23a"></a><!-- doxytag: member="CEGUI::ScrollablePane::getScrolledContainer" ref="a0b59d4d77d7545c1afe93e14f0bfd23a" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classCEGUI_1_1ScrolledContainer.html">ScrolledContainer</a>* CEGUI::ScrollablePane::getScrolledContainer </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const<code> [protected]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Return a pointer to the <a class="el" href="classCEGUI_1_1ScrolledContainer.html" title="Helper container window class which is used in the implementation of the ScrollablePane widget class...">ScrolledContainer</a> component widget for this <a class="el" href="classCEGUI_1_1ScrollablePane.html" title="Base class for the ScrollablePane widget.">ScrollablePane</a>. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Pointer to a <a class="el" href="classCEGUI_1_1ScrolledContainer.html" title="Helper container window class which is used in the implementation of the ScrollablePane widget class...">ScrolledContainer</a> object.</dd></dl>
<dl><dt><b>Exceptions:</b></dt><dd>
<table class="exception">
<tr><td class="paramname"><a class="el" href="classCEGUI_1_1UnknownObjectException.html" title="Exception class used when a request was made for an unknown object.">UnknownObjectException</a></td><td>Thrown if the scrolled container component does not exist. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a3699581547c341b79575a0b6bcdbeefd"></a><!-- doxytag: member="CEGUI::ScrollablePane::getVerticalOverlapSize" ref="a3699581547c341b79575a0b6bcdbeefd" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">float CEGUI::ScrollablePane::getVerticalOverlapSize </td>
<td>(</td>
<td class="paramtype">void </td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Returns the vertical scrollbar overlap size as a fraction of one complete view page. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>float value specifying the overlap size where 1.0f would be the height of the viewing area. </dd></dl>
</div>
</div>
<a class="anchor" id="a91b299a9a1c9340b871b73cd12ccc5d7"></a><!-- doxytag: member="CEGUI::ScrollablePane::getVerticalScrollPosition" ref="a91b299a9a1c9340b871b73cd12ccc5d7" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">float CEGUI::ScrollablePane::getVerticalScrollPosition </td>
<td>(</td>
<td class="paramtype">void </td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Returns the vertical scroll position as a fraction of the complete scrollable height. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>float value specifying the scroll position. </dd></dl>
</div>
</div>
<a class="anchor" id="a417d1aef4c3ea77969374ef26c0de9db"></a><!-- doxytag: member="CEGUI::ScrollablePane::getVerticalStepSize" ref="a417d1aef4c3ea77969374ef26c0de9db" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">float CEGUI::ScrollablePane::getVerticalStepSize </td>
<td>(</td>
<td class="paramtype">void </td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Returns the vertical scrollbar step size as a fraction of one complete view page. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>float value specifying the step size where 1.0f would be the height of the viewing area. </dd></dl>
</div>
</div>
<a class="anchor" id="a4e7ec29e3fb14696e8617e4015736180"></a><!-- doxytag: member="CEGUI::ScrollablePane::getVertScrollbar" ref="a4e7ec29e3fb14696e8617e4015736180" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classCEGUI_1_1Scrollbar.html">Scrollbar</a>* CEGUI::ScrollablePane::getVertScrollbar </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Return a pointer to the vertical scrollbar component widget for this <a class="el" href="classCEGUI_1_1ScrollablePane.html" title="Base class for the ScrollablePane widget.">ScrollablePane</a>. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Pointer to a <a class="el" href="classCEGUI_1_1Scrollbar.html" title="Base scroll bar class.">Scrollbar</a> object.</dd></dl>
<dl><dt><b>Exceptions:</b></dt><dd>
<table class="exception">
<tr><td class="paramname"><a class="el" href="classCEGUI_1_1UnknownObjectException.html" title="Exception class used when a request was made for an unknown object.">UnknownObjectException</a></td><td>Thrown if the vertical <a class="el" href="classCEGUI_1_1Scrollbar.html" title="Base scroll bar class.">Scrollbar</a> component does not exist. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="aafa62b9ae3cd04a2ccd1e1ec70b97e9d"></a><!-- doxytag: member="CEGUI::ScrollablePane::getViewableArea" ref="aafa62b9ae3cd04a2ccd1e1ec70b97e9d" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classCEGUI_1_1Rect.html">Rect</a> CEGUI::ScrollablePane::getViewableArea </td>
<td>(</td>
<td class="paramtype">void </td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Return a <a class="el" href="classCEGUI_1_1Rect.html" title="Class encapsulating operations on a Rectangle.">Rect</a> that described the pane's viewable area, relative to this <a class="el" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a>, in pixels. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><a class="el" href="classCEGUI_1_1Rect.html" title="Class encapsulating operations on a Rectangle.">Rect</a> object describing the ScrollablePane's viewable area. </dd></dl>
</div>
</div>
<a class="anchor" id="a1b61e72a9fc660f5657c7e6237a87a6a"></a><!-- doxytag: member="CEGUI::ScrollablePane::initialiseComponents" ref="a1b61e72a9fc660f5657c7e6237a87a6a" args="(void)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::ScrollablePane::initialiseComponents </td>
<td>(</td>
<td class="paramtype">void </td>
<td class="paramname"></td><td>)</td>
<td><code> [virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Initialises the <a class="el" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a> based object ready for use. </p>
<dl class="note"><dt><b>Note:</b></dt><dd>This must be called for every window created. Normally this is handled automatically by the <a class="el" href="classCEGUI_1_1WindowManager.html" title="The WindowManager class describes an object that manages creation and lifetime of Window objects...">WindowManager</a>.</dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing </dd></dl>
<p>Reimplemented from <a class="el" href="classCEGUI_1_1Window.html#a15d1b3c2be063277773eb28e33a2ee84">CEGUI::Window</a>.</p>
</div>
</div>
<a class="anchor" id="a5123cb51e44be3796c0f6945300084eb"></a><!-- doxytag: member="CEGUI::ScrollablePane::isContentPaneAutoSized" ref="a5123cb51e44be3796c0f6945300084eb" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool CEGUI::ScrollablePane::isContentPaneAutoSized </td>
<td>(</td>
<td class="paramtype">void </td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Return whether the content pane is auto sized. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><ul>
<li>true to indicate the content pane will automatically resize itself.</li>
<li>false to indicate the content pane will not automatically resize itself. </li>
</ul>
</dd></dl>
</div>
</div>
<a class="anchor" id="a7b6ba513950fba4927f9d0aab2815875"></a><!-- doxytag: member="CEGUI::ScrollablePane::isHorzScrollbarAlwaysShown" ref="a7b6ba513950fba4927f9d0aab2815875" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool CEGUI::ScrollablePane::isHorzScrollbarAlwaysShown </td>
<td>(</td>
<td class="paramtype">void </td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Return whether the horizontal scroll bar is always shown. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><ul>
<li>true if the scroll bar will be shown even if it is not required.</li>
<li>false if the scroll bar will only be shown when it is required. </li>
</ul>
</dd></dl>
</div>
</div>
<a class="anchor" id="aaeb212d1deb552312bff0e604765a7c0"></a><!-- doxytag: member="CEGUI::ScrollablePane::isHorzScrollbarNeeded" ref="aaeb212d1deb552312bff0e604765a7c0" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool CEGUI::ScrollablePane::isHorzScrollbarNeeded </td>
<td>(</td>
<td class="paramtype">void </td>
<td class="paramname"></td><td>)</td>
<td> const<code> [protected]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Return whether the horizontal scrollbar is needed. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><ul>
<li>true if the scrollbar is either needed or forced via setting.</li>
<li>false if the scrollbar should not be shown. </li>
</ul>
</dd></dl>
</div>
</div>
<a class="anchor" id="aa7ec7f03e61db8c0cd64fe71f4303742"></a><!-- doxytag: member="CEGUI::ScrollablePane::isVertScrollbarAlwaysShown" ref="aa7ec7f03e61db8c0cd64fe71f4303742" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool CEGUI::ScrollablePane::isVertScrollbarAlwaysShown </td>
<td>(</td>
<td class="paramtype">void </td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Return whether the vertical scroll bar is always shown. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><ul>
<li>true if the scroll bar will be shown even if it is not required.</li>
<li>false if the scroll bar will only be shown when it is required. </li>
</ul>
</dd></dl>
</div>
</div>
<a class="anchor" id="abca111e21ca6dc5f40baa5a9e53f6339"></a><!-- doxytag: member="CEGUI::ScrollablePane::isVertScrollbarNeeded" ref="abca111e21ca6dc5f40baa5a9e53f6339" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool CEGUI::ScrollablePane::isVertScrollbarNeeded </td>
<td>(</td>
<td class="paramtype">void </td>
<td class="paramname"></td><td>)</td>
<td> const<code> [protected]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Return whether the vertical scrollbar is needed. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><ul>
<li>true if the scrollbar is either needed or forced via setting.</li>
<li>false if the scrollbar should not be shown. </li>
</ul>
</dd></dl>
</div>
</div>
<a class="anchor" id="aff441485fdfe15f8db533311ef8e15bb"></a><!-- doxytag: member="CEGUI::ScrollablePane::onAutoSizeSettingChanged" ref="aff441485fdfe15f8db533311ef8e15bb" args="(WindowEventArgs &e)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void CEGUI::ScrollablePane::onAutoSizeSettingChanged </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> & </td>
<td class="paramname"><em>e</em></td><td>)</td>
<td><code> [protected, virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Notification method called whenever the setting that controls whether the content pane is automatically sized is changed. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">e</td><td><a class="el" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a> object.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>
</div>
</div>
<a class="anchor" id="a7302b29ef82459f524fc75f4a8c20cb1"></a><!-- doxytag: member="CEGUI::ScrollablePane::onContentPaneChanged" ref="a7302b29ef82459f524fc75f4a8c20cb1" args="(WindowEventArgs &e)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void CEGUI::ScrollablePane::onContentPaneChanged </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> & </td>
<td class="paramname"><em>e</em></td><td>)</td>
<td><code> [protected, virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p><a class="el" href="classCEGUI_1_1Event.html" title="Defines an 'event' which can be subscribed to by interested parties.">Event</a> trigger method called when some pane content has changed size or location. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">e</td><td><a class="el" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a> object.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>
</div>
</div>
<a class="anchor" id="a63aab26d6f0870306522ef6620e4e7c3"></a><!-- doxytag: member="CEGUI::ScrollablePane::onContentPaneScrolled" ref="a63aab26d6f0870306522ef6620e4e7c3" args="(WindowEventArgs &e)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void CEGUI::ScrollablePane::onContentPaneScrolled </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> & </td>
<td class="paramname"><em>e</em></td><td>)</td>
<td><code> [protected, virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Notification method called whenever the content pane is scrolled via changes in the scrollbar positions. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">e</td><td><a class="el" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a> object.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>
</div>
</div>
<a class="anchor" id="a0e0ec6f60fb1cbb916b50f736f980e29"></a><!-- doxytag: member="CEGUI::ScrollablePane::onHorzScrollbarModeChanged" ref="a0e0ec6f60fb1cbb916b50f736f980e29" args="(WindowEventArgs &e)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void CEGUI::ScrollablePane::onHorzScrollbarModeChanged </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> & </td>
<td class="paramname"><em>e</em></td><td>)</td>
<td><code> [protected, virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p><a class="el" href="classCEGUI_1_1Event.html" title="Defines an 'event' which can be subscribed to by interested parties.">Event</a> trigger method called when the setting that controls whether the horizontal scrollbar is always shown or not, is changed. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">e</td><td><a class="el" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a> object.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>
</div>
</div>
<a class="anchor" id="a9b2b2d7419e2d88b7f0a72298dceaa9b"></a><!-- doxytag: member="CEGUI::ScrollablePane::onMouseWheel" ref="a9b2b2d7419e2d88b7f0a72298dceaa9b" args="(MouseEventArgs &e)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::ScrollablePane::onMouseWheel </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classCEGUI_1_1MouseEventArgs.html">MouseEventArgs</a> & </td>
<td class="paramname"><em>e</em></td><td>)</td>
<td><code> [protected, virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Handler called when the mouse wheel (z-axis) position changes within this window's area. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">e</td><td><a class="el" href="classCEGUI_1_1MouseEventArgs.html" title="EventArgs based class that is used for objects passed to input event handlers concerning mouse input...">MouseEventArgs</a> object. All fields are valid. </td></tr>
</table>
</dd>
</dl>
<p>Reimplemented from <a class="el" href="classCEGUI_1_1Window.html#a56aa0b4041705f88b3191c2d5adac79b">CEGUI::Window</a>.</p>
</div>
</div>
<a class="anchor" id="a0072b0cd80073f05763afcba43c66b3f"></a><!-- doxytag: member="CEGUI::ScrollablePane::onSized" ref="a0072b0cd80073f05763afcba43c66b3f" args="(WindowEventArgs &e)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::ScrollablePane::onSized </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> & </td>
<td class="paramname"><em>e</em></td><td>)</td>
<td><code> [protected, virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Handler called when the window's size changes. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">e</td><td><a class="el" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a> object whose 'window' pointer field is set to the window that triggered the event. For this event the trigger window is always 'this'. </td></tr>
</table>
</dd>
</dl>
<p>Reimplemented from <a class="el" href="classCEGUI_1_1Window.html#ac43cc38973c4e547ca8e481700da8178">CEGUI::Window</a>.</p>
</div>
</div>
<a class="anchor" id="a6352ac1cd0762f407112f8d7e74eb4e0"></a><!-- doxytag: member="CEGUI::ScrollablePane::onVertScrollbarModeChanged" ref="a6352ac1cd0762f407112f8d7e74eb4e0" args="(WindowEventArgs &e)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void CEGUI::ScrollablePane::onVertScrollbarModeChanged </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> & </td>
<td class="paramname"><em>e</em></td><td>)</td>
<td><code> [protected, virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p><a class="el" href="classCEGUI_1_1Event.html" title="Defines an 'event' which can be subscribed to by interested parties.">Event</a> trigger method called when the setting that controls whether the vertical scrollbar is always shown or not, is changed. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">e</td><td><a class="el" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a> object.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>
</div>
</div>
<a class="anchor" id="aa217f131a8ac183ff47b09ec8dac3c15"></a><!-- doxytag: member="CEGUI::ScrollablePane::setContentPaneArea" ref="aa217f131a8ac183ff47b09ec8dac3c15" args="(const Rect &area)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::ScrollablePane::setContentPaneArea </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classCEGUI_1_1Rect.html">Rect</a> & </td>
<td class="paramname"><em>area</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Set the current content pane area for the <a class="el" href="classCEGUI_1_1ScrollablePane.html" title="Base class for the ScrollablePane widget.">ScrollablePane</a>. </p>
<dl class="note"><dt><b>Note:</b></dt><dd>If the <a class="el" href="classCEGUI_1_1ScrollablePane.html" title="Base class for the ScrollablePane widget.">ScrollablePane</a> is configured to auto-size the content pane this call will have no effect.</dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">area</td><td><a class="el" href="classCEGUI_1_1Rect.html" title="Class encapsulating operations on a Rectangle.">Rect</a> object that details the pixel extents to use for the content pane attached to this <a class="el" href="classCEGUI_1_1ScrollablePane.html" title="Base class for the ScrollablePane widget.">ScrollablePane</a>.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>
</div>
</div>
<a class="anchor" id="a0ad180543fae1f1c4e4525aeb5a9cd97"></a><!-- doxytag: member="CEGUI::ScrollablePane::setContentPaneAutoSized" ref="a0ad180543fae1f1c4e4525aeb5a9cd97" args="(bool setting)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::ScrollablePane::setContentPaneAutoSized </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>setting</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Set whether the content pane should be auto-sized. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">setting</td><td><ul>
<li>true to indicate the content pane should automatically resize itself.</li>
<li>false to indicate the content pane should not automatically resize itself.</li>
</ul>
</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>
</div>
</div>
<a class="anchor" id="a17ba0eb008ab3e1de431f1a6f6b2aade"></a><!-- doxytag: member="CEGUI::ScrollablePane::setHorizontalOverlapSize" ref="a17ba0eb008ab3e1de431f1a6f6b2aade" args="(float overlap)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::ScrollablePane::setHorizontalOverlapSize </td>
<td>(</td>
<td class="paramtype">float </td>
<td class="paramname"><em>overlap</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Sets the horizontal scrollbar overlap size as a fraction of one complete view page. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">overlap</td><td>float value specifying the overlap size, where 1.0f would be the width of the viewing area.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>
</div>
</div>
<a class="anchor" id="a69c3ebb1bac96005bdc59ca87cbb84a7"></a><!-- doxytag: member="CEGUI::ScrollablePane::setHorizontalScrollPosition" ref="a69c3ebb1bac96005bdc59ca87cbb84a7" args="(float position)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::ScrollablePane::setHorizontalScrollPosition </td>
<td>(</td>
<td class="paramtype">float </td>
<td class="paramname"><em>position</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Sets the horizontal scroll position as a fraction of the complete scrollable width. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">position</td><td>float value specifying the new scroll position.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>
</div>
</div>
<a class="anchor" id="a1beb132ea27bff5775caad2ff11bb56b"></a><!-- doxytag: member="CEGUI::ScrollablePane::setHorizontalStepSize" ref="a1beb132ea27bff5775caad2ff11bb56b" args="(float step)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::ScrollablePane::setHorizontalStepSize </td>
<td>(</td>
<td class="paramtype">float </td>
<td class="paramname"><em>step</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Sets the horizontal scrollbar step size as a fraction of one complete view page. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">step</td><td>float value specifying the step size, where 1.0f would be the width of the viewing area.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>
</div>
</div>
<a class="anchor" id="a4f941537f97257ed22626b849f563392"></a><!-- doxytag: member="CEGUI::ScrollablePane::setShowHorzScrollbar" ref="a4f941537f97257ed22626b849f563392" args="(bool setting)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::ScrollablePane::setShowHorzScrollbar </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>setting</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Set whether the horizontal scroll bar should always be shown. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">setting</td><td><ul>
<li>true if the horizontal scroll bar should be shown even when it is not required.</li>
<li>false if the horizontal scroll bar should only be shown when it is required.</li>
</ul>
</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>
</div>
</div>
<a class="anchor" id="a3f83ae219e9d1519baa4cca2216af9e4"></a><!-- doxytag: member="CEGUI::ScrollablePane::setShowVertScrollbar" ref="a3f83ae219e9d1519baa4cca2216af9e4" args="(bool setting)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::ScrollablePane::setShowVertScrollbar </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>setting</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Set whether the vertical scroll bar should always be shown. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">setting</td><td><ul>
<li>true if the vertical scroll bar should be shown even when it is not required.</li>
<li>false if the vertical scroll bar should only be shown when it is required.</li>
</ul>
</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>
</div>
</div>
<a class="anchor" id="ad34c5bee39ed44603920fb45f7b8747e"></a><!-- doxytag: member="CEGUI::ScrollablePane::setVerticalOverlapSize" ref="ad34c5bee39ed44603920fb45f7b8747e" args="(float overlap)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::ScrollablePane::setVerticalOverlapSize </td>
<td>(</td>
<td class="paramtype">float </td>
<td class="paramname"><em>overlap</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Sets the vertical scrollbar overlap size as a fraction of one complete view page. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">overlap</td><td>float value specifying the overlap size, where 1.0f would be the height of the viewing area.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>
</div>
</div>
<a class="anchor" id="a2285f42e49881a6a4f9fcb908affb794"></a><!-- doxytag: member="CEGUI::ScrollablePane::setVerticalScrollPosition" ref="a2285f42e49881a6a4f9fcb908affb794" args="(float position)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::ScrollablePane::setVerticalScrollPosition </td>
<td>(</td>
<td class="paramtype">float </td>
<td class="paramname"><em>position</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Sets the vertical scroll position as a fraction of the complete scrollable height. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">position</td><td>float value specifying the new scroll position.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>
</div>
</div>
<a class="anchor" id="a6cbed62a5907afe7bfccfca5d36d6d39"></a><!-- doxytag: member="CEGUI::ScrollablePane::setVerticalStepSize" ref="a6cbed62a5907afe7bfccfca5d36d6d39" args="(float step)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::ScrollablePane::setVerticalStepSize </td>
<td>(</td>
<td class="paramtype">float </td>
<td class="paramname"><em>step</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Sets the vertical scrollbar step size as a fraction of one complete view page. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">step</td><td>float value specifying the step size, where 1.0f would be the height of the viewing area.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>
</div>
</div>
<a class="anchor" id="ab703fd741f04b29369e6a00a22e9d613"></a><!-- doxytag: member="CEGUI::ScrollablePane::testClassName_impl" ref="ab703fd741f04b29369e6a00a22e9d613" args="(const String &class_name) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual bool CEGUI::ScrollablePane::testClassName_impl </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classCEGUI_1_1String.html">String</a> & </td>
<td class="paramname"><em>class_name</em></td><td>)</td>
<td> const<code> [inline, protected, virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Return whether this window was inherited from the given class name at some point in the inheritance hierarchy. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">class_name</td><td>The class name that is to be checked.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>true if this window was inherited from <em>class_name</em>. false if not. </dd></dl>
<p>Reimplemented from <a class="el" href="classCEGUI_1_1Window.html#a2b58cf00b4790c9cb08acfc18d5d3b0b">CEGUI::Window</a>.</p>
<p>References <a class="el" href="classCEGUI_1_1Window.html#a2b58cf00b4790c9cb08acfc18d5d3b0b">CEGUI::Window::testClassName_impl()</a>.</p>
</div>
</div>
<a class="anchor" id="a3f928d5a1cf519598fd19cd0d3ebba94"></a><!-- doxytag: member="CEGUI::ScrollablePane::validateWindowRenderer" ref="a3f928d5a1cf519598fd19cd0d3ebba94" args="(const String &name) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual bool CEGUI::ScrollablePane::validateWindowRenderer </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classCEGUI_1_1String.html">String</a> & </td>
<td class="paramname"><em>name</em></td><td>)</td>
<td> const<code> [inline, protected, virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Function used in checking if a <a class="el" href="classCEGUI_1_1WindowRenderer.html" title="Base-class for the assignable WindowRenderer object.">WindowRenderer</a> is valid for this window. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Returns true if the given <a class="el" href="classCEGUI_1_1WindowRenderer.html" title="Base-class for the assignable WindowRenderer object.">WindowRenderer</a> class name is valid for this window. False if not. </dd></dl>
<p>Reimplemented from <a class="el" href="classCEGUI_1_1Window.html#a27804e1e76bbbf4af45dfb23c24afa1a">CEGUI::Window</a>.</p>
</div>
</div>
<hr/><h2>Member Data Documentation</h2>
<a class="anchor" id="aa7309eb7bef6f0ae59bbd7bacab25fcd"></a><!-- doxytag: member="CEGUI::ScrollablePane::EventAutoSizeSettingChanged" ref="aa7309eb7bef6f0ae59bbd7bacab25fcd" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">const <a class="el" href="classCEGUI_1_1String.html">String</a> <a class="el" href="classCEGUI_1_1ScrollablePane.html#aa7309eb7bef6f0ae59bbd7bacab25fcd">CEGUI::ScrollablePane::EventAutoSizeSettingChanged</a><code> [static]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p><a class="el" href="classCEGUI_1_1Event.html" title="Defines an 'event' which can be subscribed to by interested parties.">Event</a> fired when the auto size setting for the pane is changed. Handlers are passed a const <a class="el" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a> reference with <a class="el" href="classCEGUI_1_1WindowEventArgs.html#a5817b522882b9648d445a20b8c354966" title="pointer to a Window object of relevance to the event.">WindowEventArgs::window</a> set to the <a class="el" href="classCEGUI_1_1ScrollablePane.html" title="Base class for the ScrollablePane widget.">ScrollablePane</a> whose auto size setting has been changed. </p>
</div>
</div>
<a class="anchor" id="a93ed460fe5ec36a51ab4bbf6e4917a8b"></a><!-- doxytag: member="CEGUI::ScrollablePane::EventContentPaneChanged" ref="a93ed460fe5ec36a51ab4bbf6e4917a8b" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">const <a class="el" href="classCEGUI_1_1String.html">String</a> <a class="el" href="classCEGUI_1_1ScrollablePane.html#a93ed460fe5ec36a51ab4bbf6e4917a8b">CEGUI::ScrollablePane::EventContentPaneChanged</a><code> [static]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p><a class="el" href="classCEGUI_1_1Event.html" title="Defines an 'event' which can be subscribed to by interested parties.">Event</a> fired when an area on the content pane has been updated. Handlers are passed a const <a class="el" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a> reference with <a class="el" href="classCEGUI_1_1WindowEventArgs.html#a5817b522882b9648d445a20b8c354966" title="pointer to a Window object of relevance to the event.">WindowEventArgs::window</a> set to the <a class="el" href="classCEGUI_1_1ScrollablePane.html" title="Base class for the ScrollablePane widget.">ScrollablePane</a> whose content pane has been updated. </p>
</div>
</div>
<a class="anchor" id="a98ce9a5593d6757834418585a792bb23"></a><!-- doxytag: member="CEGUI::ScrollablePane::EventContentPaneScrolled" ref="a98ce9a5593d6757834418585a792bb23" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">const <a class="el" href="classCEGUI_1_1String.html">String</a> <a class="el" href="classCEGUI_1_1ScrollablePane.html#a98ce9a5593d6757834418585a792bb23">CEGUI::ScrollablePane::EventContentPaneScrolled</a><code> [static]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p><a class="el" href="classCEGUI_1_1Event.html" title="Defines an 'event' which can be subscribed to by interested parties.">Event</a> fired when the pane gets scrolled. Handlers are passed a const <a class="el" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a> reference with <a class="el" href="classCEGUI_1_1WindowEventArgs.html#a5817b522882b9648d445a20b8c354966" title="pointer to a Window object of relevance to the event.">WindowEventArgs::window</a> set to the <a class="el" href="classCEGUI_1_1ScrollablePane.html" title="Base class for the ScrollablePane widget.">ScrollablePane</a> that has been scrolled. </p>
</div>
</div>
<a class="anchor" id="a6f569c3fe460cf674ba010dd99cd6fa6"></a><!-- doxytag: member="CEGUI::ScrollablePane::EventHorzScrollbarModeChanged" ref="a6f569c3fe460cf674ba010dd99cd6fa6" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">const <a class="el" href="classCEGUI_1_1String.html">String</a> <a class="el" href="classCEGUI_1_1ScrollablePane.html#a6f569c3fe460cf674ba010dd99cd6fa6">CEGUI::ScrollablePane::EventHorzScrollbarModeChanged</a><code> [static]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p><a class="el" href="classCEGUI_1_1Event.html" title="Defines an 'event' which can be subscribed to by interested parties.">Event</a> fired when the horizontal scroll bar 'force' setting is changed. Handlers are passed a const <a class="el" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a> reference with <a class="el" href="classCEGUI_1_1WindowEventArgs.html#a5817b522882b9648d445a20b8c354966" title="pointer to a Window object of relevance to the event.">WindowEventArgs::window</a> set to the <a class="el" href="classCEGUI_1_1ScrollablePane.html" title="Base class for the ScrollablePane widget.">ScrollablePane</a> whose horizontal scroll bar mode has been changed. </p>
</div>
</div>
<a class="anchor" id="a6bae31cb6030349a5034e7a55168929f"></a><!-- doxytag: member="CEGUI::ScrollablePane::EventVertScrollbarModeChanged" ref="a6bae31cb6030349a5034e7a55168929f" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">const <a class="el" href="classCEGUI_1_1String.html">String</a> <a class="el" href="classCEGUI_1_1ScrollablePane.html#a6bae31cb6030349a5034e7a55168929f">CEGUI::ScrollablePane::EventVertScrollbarModeChanged</a><code> [static]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p><a class="el" href="classCEGUI_1_1Event.html" title="Defines an 'event' which can be subscribed to by interested parties.">Event</a> fired when the vertical scroll bar 'force' setting is changed. Handlers are passed a const <a class="el" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a> reference with <a class="el" href="classCEGUI_1_1WindowEventArgs.html#a5817b522882b9648d445a20b8c354966" title="pointer to a Window object of relevance to the event.">WindowEventArgs::window</a> set to the <a class="el" href="classCEGUI_1_1ScrollablePane.html" title="Base class for the ScrollablePane widget.">ScrollablePane</a> whose vertical scroll bar mode has been changed. </p>
</div>
</div>
</div>
<hr class="footer"/><address class="footer"><small>Generated on Sun Jan 22 2012 16:07:41 for Crazy Eddies GUI System by 
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.4 </small></address>
</body>
</html>
|