1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442
|
<!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::MultiLineEditbox 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_1MultiLineEditbox.html">MultiLineEditbox</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="summary">
<a href="#nested-classes">Classes</a> |
<a href="#pub-types">Public Types</a> |
<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> |
<a href="#pro-static-attribs">Static Protected Attributes</a> </div>
<div class="headertitle">
<div class="title">CEGUI::MultiLineEditbox Class Reference</div> </div>
</div>
<div class="contents">
<!-- doxytag: class="CEGUI::MultiLineEditbox" --><!-- doxytag: inherits="CEGUI::Window" -->
<p>Base class for the multi-line edit box widget.
<a href="classCEGUI_1_1MultiLineEditbox.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::MultiLineEditbox:</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_1MultiLineEditbox__inherit__graph.gif" border="0" usemap="#CEGUI_1_1MultiLineEditbox_inherit__map" alt="Inheritance graph"/></div>
<map name="CEGUI_1_1MultiLineEditbox_inherit__map" id="CEGUI_1_1MultiLineEditbox_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="29,83,149,112"/><area shape="rect" id="node4" href="classCEGUI_1_1PropertySet.html" title="Class that contains a collection of Property objects." alt="" coords="19,5,160,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::MultiLineEditbox:</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_1MultiLineEditbox__coll__graph.gif" border="0" usemap="#CEGUI_1_1MultiLineEditbox_coll__map" alt="Collaboration graph"/></div>
<map name="CEGUI_1_1MultiLineEditbox_coll__map" id="CEGUI_1_1MultiLineEditbox_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="111,81,231,111"/><area shape="rect" id="node5" href="classCEGUI_1_1MultiLineEditboxProperties_1_1SelectionLength.html" title="Property to access the current selection length." alt="" coords="7,135,335,164"/><area shape="rect" id="node7" href="classCEGUI_1_1MultiLineEditboxProperties_1_1ReadOnly.html" title="Property to access the read-only setting of the edit box." alt="" coords="24,188,317,217"/></map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>
<p><a href="classCEGUI_1_1MultiLineEditbox-members.html">List of all members.</a></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="nested-classes"></a>
Classes</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">struct  </td><td class="memItemRight" valign="bottom"><a class="el" href="structCEGUI_1_1MultiLineEditbox_1_1LineInfo.html">LineInfo</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">struct used to store information about a formatted line within the paragraph. <a href="structCEGUI_1_1MultiLineEditbox_1_1LineInfo.html#details">More...</a><br/></td></tr>
<tr><td colspan="2"><h2><a name="pub-types"></a>
Public Types</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a0e126190879d48d71796ba4568c50169"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::LineList" ref="a0e126190879d48d71796ba4568c50169" args="" -->
typedef std::vector< <a class="el" href="structCEGUI_1_1MultiLineEditbox_1_1LineInfo.html">LineInfo</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1MultiLineEditbox.html#a0e126190879d48d71796ba4568c50169">LineList</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Type for collection of LineInfos. <br/></td></tr>
<tr><td colspan="2"><h2><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1MultiLineEditbox.html#ab9c6be0b86fcbe3183261be2439f5087">hasInputFocus</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">return true if the edit box has input focus. <a href="#ab9c6be0b86fcbe3183261be2439f5087"></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_1MultiLineEditbox.html#a8d03cf382d03a17709af7f352d899513">isReadOnly</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">return true if the edit box is read-only. <a href="#a8d03cf382d03a17709af7f352d899513"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">size_t </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1MultiLineEditbox.html#aa84dcfa3e66d90bc1f6e15434daebf84">getCaratIndex</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">return the current position of the carat. <a href="#aa84dcfa3e66d90bc1f6e15434daebf84"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">size_t </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1MultiLineEditbox.html#aba9257149e42f4e291d1e8c78acbc789">getSelectionStartIndex</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">return the current selection start point. <a href="#aba9257149e42f4e291d1e8c78acbc789"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">size_t </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1MultiLineEditbox.html#ab876c89b9c0b4433ad0497f88e1ed543">getSelectionEndIndex</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">return the current selection end point. <a href="#ab876c89b9c0b4433ad0497f88e1ed543"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">size_t </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1MultiLineEditbox.html#a0a98c03966bd30b6dac5952fb6897d62">getSelectionLength</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">return the length of the current selection (in code points / characters). <a href="#a0a98c03966bd30b6dac5952fb6897d62"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">size_t </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1MultiLineEditbox.html#a1c51f632938f2e2effba174a15ce667e">getMaxTextLength</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">return the maximum text length set for this edit box. <a href="#a1c51f632938f2e2effba174a15ce667e"></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_1MultiLineEditbox.html#a73d33aa044cb215e3cf5280a1ed092f7">isWordWrapped</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return whether the text in the edit box will be word-wrapped. <a href="#a73d33aa044cb215e3cf5280a1ed092f7"></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_1MultiLineEditbox.html#a03a6fada8a5a9d1d88e0005a9256048d">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_1MultiLineEditbox.html" title="Base class for the multi-line edit box widget.">MultiLineEditbox</a>. <a href="#a03a6fada8a5a9d1d88e0005a9256048d"></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_1MultiLineEditbox.html#a411f50945269876b2de82027cd8aae7d">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="#a411f50945269876b2de82027cd8aae7d"></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_1MultiLineEditbox.html#a820063b4cdcc472dece86abbb214f43e">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_1MultiLineEditbox.html" title="Base class for the multi-line edit box widget.">MultiLineEditbox</a>. <a href="#a820063b4cdcc472dece86abbb214f43e"></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_1MultiLineEditbox.html#a9ecc90abaed8de416d1e1000aa53badd">getTextRenderArea</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> object describing, in un-clipped pixels, the window relative area that the text should be rendered in to. <a href="#a9ecc90abaed8de416d1e1000aa53badd"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="adedc8a1c1d30d7a3754225ecbc1ffff6"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::getFormattedLines" ref="adedc8a1c1d30d7a3754225ecbc1ffff6" args="(void) const " -->
const <a class="el" href="classCEGUI_1_1MultiLineEditbox.html#a0e126190879d48d71796ba4568c50169">LineList</a> & </td><td class="memItemRight" valign="bottom"><b>getFormattedLines</b> (void) const </td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ab35e3be0f4a7c23ea95a12fd68fc173e"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::getLineNumberFromIndex" ref="ab35e3be0f4a7c23ea95a12fd68fc173e" args="(size_t index) const " -->
size_t </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1MultiLineEditbox.html#ab35e3be0f4a7c23ea95a12fd68fc173e">getLineNumberFromIndex</a> (size_t index) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return the line number a given index falls on with the current formatting. Will return last line if index is out of range. <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_1MultiLineEditbox.html#a0d5121fbeebd4ddeee9c9e14f5905cea">initialiseComponents</a> (void)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Initialise 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="#a0d5121fbeebd4ddeee9c9e14f5905cea"></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_1MultiLineEditbox.html#a2018704ce4d4c4193d56d50decb4b3d1">setReadOnly</a> (bool setting)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Specify whether the edit box is read-only. <a href="#a2018704ce4d4c4193d56d50decb4b3d1"></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_1MultiLineEditbox.html#ab0b5d315d408f4a4e487887bf670892b">setCaratIndex</a> (size_t carat_pos)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Set the current position of the carat. <a href="#ab0b5d315d408f4a4e487887bf670892b"></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_1MultiLineEditbox.html#a2f487f1b06a2e2cd82b3bc062dad18d1">setSelection</a> (size_t start_pos, size_t end_pos)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Define the current selection for the edit box. <a href="#a2f487f1b06a2e2cd82b3bc062dad18d1"></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_1MultiLineEditbox.html#aa07126d567e2437a1facf1c0650d95fe">setMaxTextLength</a> (size_t max_len)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">set the maximum text length for this edit box. <a href="#aa07126d567e2437a1facf1c0650d95fe"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a3dbb62d7a7810f0f7c9aeee187ec713a"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::ensureCaratIsVisible" ref="a3dbb62d7a7810f0f7c9aeee187ec713a" args="(void)" -->
void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1MultiLineEditbox.html#a3dbb62d7a7810f0f7c9aeee187ec713a">ensureCaratIsVisible</a> (void)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Scroll the view so that the current carat position is visible. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1MultiLineEditbox.html#a97b2c8939f2d2ad7109a9d9f4b32856c">setWordWrapping</a> (bool setting)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Set whether the text will be word wrapped or not. <a href="#a97b2c8939f2d2ad7109a9d9f4b32856c"></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_1MultiLineEditbox.html#a512885ba7990cddb3e1c6d7ebb8794fa">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="#a512885ba7990cddb3e1c6d7ebb8794fa"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aa46bd50b4c12406e98244315c7d6af0e"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::setSelectionBrushImage" ref="aa46bd50b4c12406e98244315c7d6af0e" args="(const Image *image)" -->
void </td><td class="memItemRight" valign="bottom"><b>setSelectionBrushImage</b> (const <a class="el" href="classCEGUI_1_1Image.html">Image</a> *image)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a6529d181ec06baba86ffddc5636c9a42"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::getSelectionBrushImage" ref="a6529d181ec06baba86ffddc5636c9a42" args="() const " -->
const <a class="el" href="classCEGUI_1_1Image.html">Image</a> * </td><td class="memItemRight" valign="bottom"><b>getSelectionBrushImage</b> () const </td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="afa4159a4796073da49b611a28babdf59"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::MultiLineEditbox" ref="afa4159a4796073da49b611a28babdf59" args="(const String &type, const String &name)" -->
 </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1MultiLineEditbox.html#afa4159a4796073da49b611a28babdf59">MultiLineEditbox</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_1MultiLineEditbox.html" title="Base class for the multi-line edit box widget.">MultiLineEditbox</a> base class. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ae0dd8afe1b3b05365126d497be22d770"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::~MultiLineEditbox" ref="ae0dd8afe1b3b05365126d497be22d770" args="(void)" -->
virtual </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1MultiLineEditbox.html#ae0dd8afe1b3b05365126d497be22d770">~MultiLineEditbox</a> (void)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Destructor for the <a class="el" href="classCEGUI_1_1MultiLineEditbox.html" title="Base class for the multi-line edit box widget.">MultiLineEditbox</a> base class. <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="a17b71a3b362a049ec22d5ccadf2e361d"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::EventNamespace" ref="a17b71a3b362a049ec22d5ccadf2e361d" 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_1MultiLineEditbox.html#a17b71a3b362a049ec22d5ccadf2e361d">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"><a class="anchor" id="afe1a7090b18cb4d17d478fcb82ca9b5a"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::WidgetTypeName" ref="afe1a7090b18cb4d17d478fcb82ca9b5a" 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_1MultiLineEditbox.html#afe1a7090b18cb4d17d478fcb82ca9b5a">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">static const <a class="el" href="classCEGUI_1_1String.html">String</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1MultiLineEditbox.html#aaae1e99aa75b003af18ea204cd77e09c">EventReadOnlyModeChanged</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_1MultiLineEditbox.html#a84d9acc4c8cffd4f7cc57278ad31ee14">EventWordWrapModeChanged</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_1MultiLineEditbox.html#a561d59a53676b09fffce083f5a646fae">EventMaximumTextLengthChanged</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_1MultiLineEditbox.html#ac0c22a456bafd830e2f303b9c5294564">EventCaratMoved</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_1MultiLineEditbox.html#ae7811967efc9b22c5f0e9ba127ae8e6c">EventTextSelectionChanged</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_1MultiLineEditbox.html#a2e5d63e756570af8e01b214c93de487b">EventEditboxFull</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_1MultiLineEditbox.html#aa37785d613418543ccd2b83e61d32c64">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_1MultiLineEditbox.html#acbc250a7300531927f80a4c9a08adfd0">EventHorzScrollbarModeChanged</a></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a9caee6095eb18545db98631f16416142"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::VertScrollbarNameSuffix" ref="a9caee6095eb18545db98631f16416142" 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_1MultiLineEditbox.html#a9caee6095eb18545db98631f16416142">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="aa4ac13634db47bc627a24541a50b39c1"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::HorzScrollbarNameSuffix" ref="aa4ac13634db47bc627a24541a50b39c1" 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_1MultiLineEditbox.html#aa4ac13634db47bc627a24541a50b39c1">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 colspan="2"><h2><a name="pro-methods"></a>
Protected Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1MultiLineEditbox.html#a38a6d6189c0b7d745bff03beacd22a34">formatText</a> (void)</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> object describing, in un-clipped pixels, the window relative area that the text should be rendered in to. <a href="#a38a6d6189c0b7d745bff03beacd22a34"></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_1MultiLineEditbox.html#adf51c651de30ebe7c14039c0799d9e6f">formatText</a> (const bool update_scrollbars)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Format the text into lines as dictated by the formatting options. <a href="#adf51c651de30ebe7c14039c0799d9e6f"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">size_t </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1MultiLineEditbox.html#abedd5c69d0d3c80a53032275d3f1ede5">getNextTokenLength</a> (const <a class="el" href="classCEGUI_1_1String.html">String</a> &text, size_t start_idx) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return the length of the next token in <a class="el" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <em>text</em> starting at index <em>start_idx</em>. <a href="#abedd5c69d0d3c80a53032275d3f1ede5"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a98ba8aadbe9ed4423c1fe414feba9fc5"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::configureScrollbars" ref="a98ba8aadbe9ed4423c1fe414feba9fc5" args="(void)" -->
void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1MultiLineEditbox.html#a98ba8aadbe9ed4423c1fe414feba9fc5">configureScrollbars</a> (void)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">display required integrated scroll bars according to current state of the edit box and update their values. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">size_t </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1MultiLineEditbox.html#a69a3fb4c606e3cbd2d7b18005b787f7f">getTextIndexFromPosition</a> (const <a class="el" href="classCEGUI_1_1Vector2.html">Point</a> &pt) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return the text code point index that is rendered closest to screen position <em>pt</em>. <a href="#a69a3fb4c606e3cbd2d7b18005b787f7f"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ae9ac7e128392c315b5cf0404623b6161"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::clearSelection" ref="ae9ac7e128392c315b5cf0404623b6161" args="(void)" -->
void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1MultiLineEditbox.html#ae9ac7e128392c315b5cf0404623b6161">clearSelection</a> (void)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Clear the current selection setting. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1MultiLineEditbox.html#a42a79a0beb6a2ca500198166c30737a5">eraseSelectedText</a> (bool modify_text=true)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Erase the currently selected text. <a href="#a42a79a0beb6a2ca500198166c30737a5"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a4f0355e9db7fa1885555ac709b99eaaf"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::handleBackspace" ref="a4f0355e9db7fa1885555ac709b99eaaf" args="(void)" -->
void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1MultiLineEditbox.html#a4f0355e9db7fa1885555ac709b99eaaf">handleBackspace</a> (void)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Processing for backspace key. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ae1e08e91757b6a18d39c45e35c2a576d"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::handleDelete" ref="ae1e08e91757b6a18d39c45e35c2a576d" args="(void)" -->
void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1MultiLineEditbox.html#ae1e08e91757b6a18d39c45e35c2a576d">handleDelete</a> (void)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Processing for Delete key. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a8e64fc08561c1407a23ff81132d368ee"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::handleCharLeft" ref="a8e64fc08561c1407a23ff81132d368ee" args="(uint sysKeys)" -->
void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1MultiLineEditbox.html#a8e64fc08561c1407a23ff81132d368ee">handleCharLeft</a> (uint sysKeys)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Processing to move carat one character left. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a22876c31d4898975fbdc0ab192879b86"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::handleWordLeft" ref="a22876c31d4898975fbdc0ab192879b86" args="(uint sysKeys)" -->
void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1MultiLineEditbox.html#a22876c31d4898975fbdc0ab192879b86">handleWordLeft</a> (uint sysKeys)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Processing to move carat one word left. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a101b9b8842a10c89d613b4df8a5ebe70"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::handleCharRight" ref="a101b9b8842a10c89d613b4df8a5ebe70" args="(uint sysKeys)" -->
void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1MultiLineEditbox.html#a101b9b8842a10c89d613b4df8a5ebe70">handleCharRight</a> (uint sysKeys)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Processing to move carat one character right. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a1de3f3805db58c72ba1fe3bec62c83e0"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::handleWordRight" ref="a1de3f3805db58c72ba1fe3bec62c83e0" args="(uint sysKeys)" -->
void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1MultiLineEditbox.html#a1de3f3805db58c72ba1fe3bec62c83e0">handleWordRight</a> (uint sysKeys)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Processing to move carat one word right. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a2fb6d5e938c957cb050a089bc7819243"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::handleDocHome" ref="a2fb6d5e938c957cb050a089bc7819243" args="(uint sysKeys)" -->
void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1MultiLineEditbox.html#a2fb6d5e938c957cb050a089bc7819243">handleDocHome</a> (uint sysKeys)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Processing to move carat to the start of the text. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a9c1be3cad6c755ca08580f70a5acd27f"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::handleDocEnd" ref="a9c1be3cad6c755ca08580f70a5acd27f" args="(uint sysKeys)" -->
void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1MultiLineEditbox.html#a9c1be3cad6c755ca08580f70a5acd27f">handleDocEnd</a> (uint sysKeys)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Processing to move carat to the end of the text. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="af8a83b01c3f2f3c918890d1229c1fa8e"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::handleLineHome" ref="af8a83b01c3f2f3c918890d1229c1fa8e" args="(uint sysKeys)" -->
void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1MultiLineEditbox.html#af8a83b01c3f2f3c918890d1229c1fa8e">handleLineHome</a> (uint sysKeys)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Processing to move carat to the start of the current line. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aad25e39f499c0efedeb726c643288cf2"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::handleLineEnd" ref="aad25e39f499c0efedeb726c643288cf2" args="(uint sysKeys)" -->
void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1MultiLineEditbox.html#aad25e39f499c0efedeb726c643288cf2">handleLineEnd</a> (uint sysKeys)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Processing to move carat to the end of the current line. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a4e9b8990dfcd2e65e3bc2af483737e8e"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::handleLineUp" ref="a4e9b8990dfcd2e65e3bc2af483737e8e" args="(uint sysKeys)" -->
void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1MultiLineEditbox.html#a4e9b8990dfcd2e65e3bc2af483737e8e">handleLineUp</a> (uint sysKeys)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Processing to move carat up a line. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a226799575bd67cccfc6908c305d3b29d"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::handleLineDown" ref="a226799575bd67cccfc6908c305d3b29d" args="(uint sysKeys)" -->
void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1MultiLineEditbox.html#a226799575bd67cccfc6908c305d3b29d">handleLineDown</a> (uint sysKeys)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Processing to move carat down a line. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ad3ea5915b80051d7cc1367436a460ffa"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::handleNewLine" ref="ad3ea5915b80051d7cc1367436a460ffa" args="(uint sysKeys)" -->
void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1MultiLineEditbox.html#ad3ea5915b80051d7cc1367436a460ffa">handleNewLine</a> (uint sysKeys)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Processing to insert a new line / paragraph. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a0c5dad7c1842664d9aa6bf0871d69bc7"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::handlePageUp" ref="a0c5dad7c1842664d9aa6bf0871d69bc7" args="(uint sysKeys)" -->
void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1MultiLineEditbox.html#a0c5dad7c1842664d9aa6bf0871d69bc7">handlePageUp</a> (uint sysKeys)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Processing to move caret one page up. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a71c02dd58be4fc17a38596b03a8fcb3d"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::handlePageDown" ref="a71c02dd58be4fc17a38596b03a8fcb3d" args="(uint sysKeys)" -->
void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1MultiLineEditbox.html#a71c02dd58be4fc17a38596b03a8fcb3d">handlePageDown</a> (uint sysKeys)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Processing to move caret one page down. <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_1MultiLineEditbox.html#adeb23e5945db783837a513689b3686fa">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="#adeb23e5945db783837a513689b3686fa"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ac68f592b4c99481b8de9f8ea02b4c3b3"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::handle_scrollChange" ref="ac68f592b4c99481b8de9f8ea02b4c3b3" args="(const EventArgs &args)" -->
bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1MultiLineEditbox.html#ac68f592b4c99481b8de9f8ea02b4c3b3">handle_scrollChange</a> (const <a class="el" href="classCEGUI_1_1EventArgs.html">EventArgs</a> &args)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Internal handler that is triggered when the user interacts with the scrollbars. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a5c23e73434cc3990b82d47f926ec0c01"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::handle_vertScrollbarVisibilityChanged" ref="a5c23e73434cc3990b82d47f926ec0c01" args="(const EventArgs &)" -->
bool </td><td class="memItemRight" valign="bottom"><b>handle_vertScrollbarVisibilityChanged</b> (const <a class="el" href="classCEGUI_1_1EventArgs.html">EventArgs</a> &)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1MultiLineEditbox.html#afb94426369d87295772f303484161cbf">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="#afb94426369d87295772f303484161cbf"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ab5ea1335c1bb533e2e2efce9a8d5fa18"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::onReadOnlyChanged" ref="ab5ea1335c1bb533e2e2efce9a8d5fa18" args="(WindowEventArgs &e)" -->
void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1MultiLineEditbox.html#ab5ea1335c1bb533e2e2efce9a8d5fa18">onReadOnlyChanged</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 read-only state of the edit box changes. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ac15bfa9fe034cb9c3e934ecb41cbc5af"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::onWordWrapModeChanged" ref="ac15bfa9fe034cb9c3e934ecb41cbc5af" args="(WindowEventArgs &e)" -->
void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1MultiLineEditbox.html#ac15bfa9fe034cb9c3e934ecb41cbc5af">onWordWrapModeChanged</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 word wrap mode for the the edit box changes. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a95d388ceef4b44c28f6de211d3eef905"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::onMaximumTextLengthChanged" ref="a95d388ceef4b44c28f6de211d3eef905" args="(WindowEventArgs &e)" -->
void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1MultiLineEditbox.html#a95d388ceef4b44c28f6de211d3eef905">onMaximumTextLengthChanged</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 maximum text length for the edit box changes. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a2711b65d4cfee1550a124b0aeff2c366"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::onCaratMoved" ref="a2711b65d4cfee1550a124b0aeff2c366" args="(WindowEventArgs &e)" -->
void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1MultiLineEditbox.html#a2711b65d4cfee1550a124b0aeff2c366">onCaratMoved</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 carat moves. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a6df7e0ce333094d08cc032a87335845c"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::onTextSelectionChanged" ref="a6df7e0ce333094d08cc032a87335845c" args="(WindowEventArgs &e)" -->
void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1MultiLineEditbox.html#a6df7e0ce333094d08cc032a87335845c">onTextSelectionChanged</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 text selection changes. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a8e6a0148c2f763a21b20a8a916fe70d3"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::onEditboxFullEvent" ref="a8e6a0148c2f763a21b20a8a916fe70d3" args="(WindowEventArgs &e)" -->
void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1MultiLineEditbox.html#a8e6a0148c2f763a21b20a8a916fe70d3">onEditboxFullEvent</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 edit box is full. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a5f172f90a83ea6d3828472646eaddbd6"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::onVertScrollbarModeChanged" ref="a5f172f90a83ea6d3828472646eaddbd6" args="(WindowEventArgs &e)" -->
void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1MultiLineEditbox.html#a5f172f90a83ea6d3828472646eaddbd6">onVertScrollbarModeChanged</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 'always show' setting for the vertical scroll bar changes. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ab70b20510d9e5e1b7cab9b3e6a806da8"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::onHorzScrollbarModeChanged" ref="ab70b20510d9e5e1b7cab9b3e6a806da8" args="(WindowEventArgs &e)" -->
void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1MultiLineEditbox.html#ab70b20510d9e5e1b7cab9b3e6a806da8">onHorzScrollbarModeChanged</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 'always show' setting for the horizontal scroll bar changes. <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_1MultiLineEditbox.html#a48cab59ce9776bf057386ccaaae7c466">onMouseButtonDown</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 a mouse button has been depressed within this window's area. <a href="#a48cab59ce9776bf057386ccaaae7c466"></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_1MultiLineEditbox.html#a6ca677d8143e5c0fa3fe92619d97ba0a">onMouseButtonUp</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 a mouse button has been released within this window's area. <a href="#a6ca677d8143e5c0fa3fe92619d97ba0a"></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_1MultiLineEditbox.html#ae8cded7484d6e1dd5b289e08860e6b32">onMouseDoubleClicked</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 a mouse button has been double-clicked within this window's area. <a href="#ae8cded7484d6e1dd5b289e08860e6b32"></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_1MultiLineEditbox.html#a88f04d2e12c9a4bed9b4205ba2f901b0">onMouseTripleClicked</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 a mouse button has been triple-clicked within this window's area. <a href="#a88f04d2e12c9a4bed9b4205ba2f901b0"></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_1MultiLineEditbox.html#a89cd379327a7f13883e61ba3aa75844a">onMouseMove</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 cursor has been moved within this window's area. <a href="#a89cd379327a7f13883e61ba3aa75844a"></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_1MultiLineEditbox.html#aa9e8347cd21bbc4f8a5342c6f618a0dc">onCaptureLost</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 this window loses capture of mouse inputs. <a href="#aa9e8347cd21bbc4f8a5342c6f618a0dc"></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_1MultiLineEditbox.html#af031aca1343d5a5e5ba1a6e2324a1732">onCharacter</a> (<a class="el" href="classCEGUI_1_1KeyEventArgs.html">KeyEventArgs</a> &e)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Handler called when a character-key has been pressed while this window has input focus. <a href="#af031aca1343d5a5e5ba1a6e2324a1732"></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_1MultiLineEditbox.html#abb9c6d35fba3a41d55f9004b1ff37783">onKeyDown</a> (<a class="el" href="classCEGUI_1_1KeyEventArgs.html">KeyEventArgs</a> &e)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Handler called when a key as been depressed while this window has input focus. <a href="#abb9c6d35fba3a41d55f9004b1ff37783"></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_1MultiLineEditbox.html#aff40bc513b1737c6e0f09b24843314d2">onTextChanged</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 text is changed. <a href="#aff40bc513b1737c6e0f09b24843314d2"></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_1MultiLineEditbox.html#a607cc4fbf99927ce539b7006367504ac">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="#a607cc4fbf99927ce539b7006367504ac"></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_1MultiLineEditbox.html#aa80a53a6fe48f4e837e46078e970ea7c">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="#aa80a53a6fe48f4e837e46078e970ea7c"></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="a9ecd0334afe6b4b074049efab53f800c"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::d_readOnly" ref="a9ecd0334afe6b4b074049efab53f800c" args="" -->
bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1MultiLineEditbox.html#a9ecd0334afe6b4b074049efab53f800c">d_readOnly</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">true if the edit box is in read-only mode <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a93430086e5d0ad5172fdd514b74e66af"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::d_maxTextLen" ref="a93430086e5d0ad5172fdd514b74e66af" args="" -->
size_t </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1MultiLineEditbox.html#a93430086e5d0ad5172fdd514b74e66af">d_maxTextLen</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Maximum number of characters for this <a class="el" href="classCEGUI_1_1Editbox.html" title="Base class for an Editbox widget.">Editbox</a>. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a9707f291552a14124db2ad57a4ca2d4e"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::d_caratPos" ref="a9707f291552a14124db2ad57a4ca2d4e" args="" -->
size_t </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1MultiLineEditbox.html#a9707f291552a14124db2ad57a4ca2d4e">d_caratPos</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Position of the carat / insert-point. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aa0076300810d1e711332e2fd38c3219d"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::d_selectionStart" ref="aa0076300810d1e711332e2fd38c3219d" args="" -->
size_t </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1MultiLineEditbox.html#aa0076300810d1e711332e2fd38c3219d">d_selectionStart</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Start of selection area. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a7e1256a0ad4b324f5a7f693e82226c6c"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::d_selectionEnd" ref="a7e1256a0ad4b324f5a7f693e82226c6c" args="" -->
size_t </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1MultiLineEditbox.html#a7e1256a0ad4b324f5a7f693e82226c6c">d_selectionEnd</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">End of selection area. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a447ba895d2e520d6933739d8febb2646"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::d_dragging" ref="a447ba895d2e520d6933739d8febb2646" args="" -->
bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1MultiLineEditbox.html#a447ba895d2e520d6933739d8febb2646">d_dragging</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">true when a selection is being dragged. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a1d1fd3edf8598df1cb187d51f73af017"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::d_dragAnchorIdx" ref="a1d1fd3edf8598df1cb187d51f73af017" args="" -->
size_t </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1MultiLineEditbox.html#a1d1fd3edf8598df1cb187d51f73af017">d_dragAnchorIdx</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Selection index for drag selection anchor point. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a6c118592fbb9ed216f3f642cb9612754"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::d_wordWrap" ref="a6c118592fbb9ed216f3f642cb9612754" args="" -->
bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1MultiLineEditbox.html#a6c118592fbb9ed216f3f642cb9612754">d_wordWrap</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">true when formatting uses word-wrapping. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="abf8a42c529e2f6486f6dfb3dab82d200"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::d_lines" ref="abf8a42c529e2f6486f6dfb3dab82d200" args="" -->
<a class="el" href="classCEGUI_1_1MultiLineEditbox.html#a0e126190879d48d71796ba4568c50169">LineList</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1MultiLineEditbox.html#abf8a42c529e2f6486f6dfb3dab82d200">d_lines</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Holds the lines for the current formatting. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ae881f96f819be44fa1ad8c9f5f26c06a"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::d_widestExtent" ref="ae881f96f819be44fa1ad8c9f5f26c06a" args="" -->
float </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1MultiLineEditbox.html#ae881f96f819be44fa1ad8c9f5f26c06a">d_widestExtent</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Holds the extent of the widest line as calculated in the last formatting pass. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="af1d68d563dee56dd72176ea32880f82e"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::d_forceVertScroll" ref="af1d68d563dee56dd72176ea32880f82e" args="" -->
bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1MultiLineEditbox.html#af1d68d563dee56dd72176ea32880f82e">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="a2195dd3ee0421527363cc9d2f66494e1"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::d_forceHorzScroll" ref="a2195dd3ee0421527363cc9d2f66494e1" args="" -->
bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1MultiLineEditbox.html#a2195dd3ee0421527363cc9d2f66494e1">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="a4b2a6545fa6207fa117db61338e3248a"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::d_selectionBrush" ref="a4b2a6545fa6207fa117db61338e3248a" args="" -->
const <a class="el" href="classCEGUI_1_1Image.html">Image</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1MultiLineEditbox.html#a4b2a6545fa6207fa117db61338e3248a">d_selectionBrush</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight"><a class="el" href="classCEGUI_1_1Image.html" title="Class that represents a single Image of an Imageset.">Image</a> to use as the selection brush (should be set by derived class). <br/></td></tr>
<tr><td colspan="2"><h2><a name="pro-static-attribs"></a>
Static Protected Attributes</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a4212e41d33ddbd1c605879210dd0910c"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::d_lineBreakChars" ref="a4212e41d33ddbd1c605879210dd0910c" args="" -->
static <a class="el" href="classCEGUI_1_1String.html">String</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1MultiLineEditbox.html#a4212e41d33ddbd1c605879210dd0910c">d_lineBreakChars</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Holds what we consider to be line break characters. <br/></td></tr>
</table>
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
<div class="textblock"><p>Base class for the multi-line edit box widget. </p>
</div><hr/><h2>Member Function Documentation</h2>
<a class="anchor" id="a42a79a0beb6a2ca500198166c30737a5"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::eraseSelectedText" ref="a42a79a0beb6a2ca500198166c30737a5" args="(bool modify_text=true)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::MultiLineEditbox::eraseSelectedText </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>modify_text</em> = <code>true</code></td><td>)</td>
<td><code> [protected]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Erase the currently selected text. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">modify_text</td><td>when true, the actual text will be modified. When false, everything is done except erasing the characters. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="adf51c651de30ebe7c14039c0799d9e6f"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::formatText" ref="adf51c651de30ebe7c14039c0799d9e6f" args="(const bool update_scrollbars)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::MultiLineEditbox::formatText </td>
<td>(</td>
<td class="paramtype">const bool </td>
<td class="paramname"><em>update_scrollbars</em></td><td>)</td>
<td><code> [protected]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Format the text into lines as dictated by the formatting options. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">update_scrollbars</td><td><ul>
<li>true if scrollbar configuration should be performed.</li>
<li>false if scrollbar configuration should not be performed. </li>
</ul>
</td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a38a6d6189c0b7d745bff03beacd22a34"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::formatText" ref="a38a6d6189c0b7d745bff03beacd22a34" args="(void)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::MultiLineEditbox::formatText </td>
<td>(</td>
<td class="paramtype">void </td>
<td class="paramname"></td><td>)</td>
<td><code> [protected]</code></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> object describing, in un-clipped pixels, the window relative area that the text should be rendered in to. </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 area of 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> to be used for rendering text.</dd></dl>
<p>Format the text into lines as needed by the current formatting options. </p>
<dl class="deprecated"><dt><b><a class="el" href="deprecated.html#_deprecated000003">Deprecated:</a></b></dt><dd>This is deprecated in favour of the version taking a boolean. </dd></dl>
</div>
</div>
<a class="anchor" id="aa84dcfa3e66d90bc1f6e15434daebf84"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::getCaratIndex" ref="aa84dcfa3e66d90bc1f6e15434daebf84" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">size_t CEGUI::MultiLineEditbox::getCaratIndex </td>
<td>(</td>
<td class="paramtype">void </td>
<td class="paramname"></td><td>)</td>
<td> const<code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>return the current position of the carat. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Index of the insert carat relative to the start of the text. </dd></dl>
</div>
</div>
<a class="anchor" id="a820063b4cdcc472dece86abbb214f43e"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::getHorzScrollbar" ref="a820063b4cdcc472dece86abbb214f43e" 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::MultiLineEditbox::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_1MultiLineEditbox.html" title="Base class for the multi-line edit box widget.">MultiLineEditbox</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="a1c51f632938f2e2effba174a15ce667e"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::getMaxTextLength" ref="a1c51f632938f2e2effba174a15ce667e" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">size_t CEGUI::MultiLineEditbox::getMaxTextLength </td>
<td>(</td>
<td class="paramtype">void </td>
<td class="paramname"></td><td>)</td>
<td> const<code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>return the maximum text length set for this edit box. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>The maximum number of code points (characters) that can be entered into this edit box. </dd></dl>
</div>
</div>
<a class="anchor" id="abedd5c69d0d3c80a53032275d3f1ede5"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::getNextTokenLength" ref="abedd5c69d0d3c80a53032275d3f1ede5" args="(const String &text, size_t start_idx) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">size_t CEGUI::MultiLineEditbox::getNextTokenLength </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classCEGUI_1_1String.html">String</a> & </td>
<td class="paramname"><em>text</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">size_t </td>
<td class="paramname"><em>start_idx</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td> const<code> [protected]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Return the length of the next token in <a class="el" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <em>text</em> starting at index <em>start_idx</em>. </p>
<dl class="note"><dt><b>Note:</b></dt><dd>Any single whitespace character is one token, any group of other characters is a token.</dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The code point length of the token. </dd></dl>
</div>
</div>
<a class="anchor" id="ab876c89b9c0b4433ad0497f88e1ed543"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::getSelectionEndIndex" ref="ab876c89b9c0b4433ad0497f88e1ed543" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">size_t CEGUI::MultiLineEditbox::getSelectionEndIndex </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 selection end point. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Index of the selection end point relative to the start of the text. If no selection is defined this function returns the position of the carat. </dd></dl>
</div>
</div>
<a class="anchor" id="a0a98c03966bd30b6dac5952fb6897d62"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::getSelectionLength" ref="a0a98c03966bd30b6dac5952fb6897d62" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">size_t CEGUI::MultiLineEditbox::getSelectionLength </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 length of the current selection (in code points / characters). </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Number of code points (or characters) contained within the currently defined selection. </dd></dl>
</div>
</div>
<a class="anchor" id="aba9257149e42f4e291d1e8c78acbc789"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::getSelectionStartIndex" ref="aba9257149e42f4e291d1e8c78acbc789" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">size_t CEGUI::MultiLineEditbox::getSelectionStartIndex </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 selection start point. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Index of the selection start point relative to the start of the text. If no selection is defined this function returns the position of the carat. </dd></dl>
</div>
</div>
<a class="anchor" id="a69a3fb4c606e3cbd2d7b18005b787f7f"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::getTextIndexFromPosition" ref="a69a3fb4c606e3cbd2d7b18005b787f7f" args="(const Point &pt) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">size_t CEGUI::MultiLineEditbox::getTextIndexFromPosition </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classCEGUI_1_1Vector2.html">Point</a> & </td>
<td class="paramname"><em>pt</em></td><td>)</td>
<td> const<code> [protected]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Return the text code point index that is rendered closest to screen position <em>pt</em>. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">pt</td><td>Point object describing a position on the screen in pixels.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Code point index into the text that is rendered closest to screen position <em>pt</em>. </dd></dl>
</div>
</div>
<a class="anchor" id="a9ecc90abaed8de416d1e1000aa53badd"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::getTextRenderArea" ref="a9ecc90abaed8de416d1e1000aa53badd" 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::MultiLineEditbox::getTextRenderArea </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> object describing, in un-clipped pixels, the window relative area that the text should be rendered in to. </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 area of 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> to be used for rendering text. </dd></dl>
</div>
</div>
<a class="anchor" id="a03a6fada8a5a9d1d88e0005a9256048d"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::getVertScrollbar" ref="a03a6fada8a5a9d1d88e0005a9256048d" 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::MultiLineEditbox::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_1MultiLineEditbox.html" title="Base class for the multi-line edit box widget.">MultiLineEditbox</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="ab9c6be0b86fcbe3183261be2439f5087"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::hasInputFocus" ref="ab9c6be0b86fcbe3183261be2439f5087" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool CEGUI::MultiLineEditbox::hasInputFocus </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 true if the edit box has input focus. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><ul>
<li>true if the edit box has keyboard input focus.</li>
<li>false if the edit box does not have keyboard input focus. </li>
</ul>
</dd></dl>
</div>
</div>
<a class="anchor" id="a0d5121fbeebd4ddeee9c9e14f5905cea"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::initialiseComponents" ref="a0d5121fbeebd4ddeee9c9e14f5905cea" args="(void)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void CEGUI::MultiLineEditbox::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>Initialise 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_1WindowFactory.html" title="Abstract class that defines the required interface for all WindowFactory objects.">WindowFactory</a> for each <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> type.</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="a8d03cf382d03a17709af7f352d899513"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::isReadOnly" ref="a8d03cf382d03a17709af7f352d899513" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool CEGUI::MultiLineEditbox::isReadOnly </td>
<td>(</td>
<td class="paramtype">void </td>
<td class="paramname"></td><td>)</td>
<td> const<code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>return true if the edit box is read-only. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><ul>
<li>true if the edit box is read only and can't be edited by the user.</li>
<li>false if the edit box is not read only and may be edited by the user. </li>
</ul>
</dd></dl>
</div>
</div>
<a class="anchor" id="a411f50945269876b2de82027cd8aae7d"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::isVertScrollbarAlwaysShown" ref="a411f50945269876b2de82027cd8aae7d" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool CEGUI::MultiLineEditbox::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 always 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="a73d33aa044cb215e3cf5280a1ed092f7"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::isWordWrapped" ref="a73d33aa044cb215e3cf5280a1ed092f7" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool CEGUI::MultiLineEditbox::isWordWrapped </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 text in the edit box will be word-wrapped. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><ul>
<li>true if the text will be word-wrapped at the edges of the widget frame.</li>
<li>false if text will not be word-wrapped (a scroll bar will be used to access long text lines). </li>
</ul>
</dd></dl>
</div>
</div>
<a class="anchor" id="aa9e8347cd21bbc4f8a5342c6f618a0dc"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::onCaptureLost" ref="aa9e8347cd21bbc4f8a5342c6f618a0dc" args="(WindowEventArgs &e)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void CEGUI::MultiLineEditbox::onCaptureLost </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 this window loses capture of mouse inputs. </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#a14d613fe66ba50dacb9ee9490b64d26e">CEGUI::Window</a>.</p>
</div>
</div>
<a class="anchor" id="af031aca1343d5a5e5ba1a6e2324a1732"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::onCharacter" ref="af031aca1343d5a5e5ba1a6e2324a1732" args="(KeyEventArgs &e)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void CEGUI::MultiLineEditbox::onCharacter </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classCEGUI_1_1KeyEventArgs.html">KeyEventArgs</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 a character-key has been pressed while this window has input focus. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">e</td><td><a class="el" href="classCEGUI_1_1KeyEventArgs.html" title="EventArgs based class that is used for objects passed to input event handlers concerning keyboard inp...">KeyEventArgs</a> object whose 'codepoint' field is set to the Unicode code point (encoded as utf32) for the character typed, and whose 'sysKeys' field represents the combination of SystemKey that were active when the event was generated. All other fields should be considered as 'junk'. </td></tr>
</table>
</dd>
</dl>
<p>Reimplemented from <a class="el" href="classCEGUI_1_1Window.html#a79969475a45a04c9a8d1b5fb6ef2ccd6">CEGUI::Window</a>.</p>
</div>
</div>
<a class="anchor" id="abb9c6d35fba3a41d55f9004b1ff37783"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::onKeyDown" ref="abb9c6d35fba3a41d55f9004b1ff37783" args="(KeyEventArgs &e)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void CEGUI::MultiLineEditbox::onKeyDown </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classCEGUI_1_1KeyEventArgs.html">KeyEventArgs</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 a key as been depressed while this window has input focus. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">e</td><td><a class="el" href="classCEGUI_1_1KeyEventArgs.html" title="EventArgs based class that is used for objects passed to input event handlers concerning keyboard inp...">KeyEventArgs</a> object whose 'scancode' field is set to the Key::Scan value representing the key that was pressed, and whose 'sysKeys' field represents the combination of SystemKey that were active when the event was generated. </td></tr>
</table>
</dd>
</dl>
<p>Reimplemented from <a class="el" href="classCEGUI_1_1Window.html#aa69218466130b226e4596428fc0eb60f">CEGUI::Window</a>.</p>
</div>
</div>
<a class="anchor" id="a48cab59ce9776bf057386ccaaae7c466"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::onMouseButtonDown" ref="a48cab59ce9776bf057386ccaaae7c466" args="(MouseEventArgs &e)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void CEGUI::MultiLineEditbox::onMouseButtonDown </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 a mouse button has been depressed 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#abb30780cd259d8328df6ff0809f8ce4a">CEGUI::Window</a>.</p>
</div>
</div>
<a class="anchor" id="a6ca677d8143e5c0fa3fe92619d97ba0a"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::onMouseButtonUp" ref="a6ca677d8143e5c0fa3fe92619d97ba0a" args="(MouseEventArgs &e)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void CEGUI::MultiLineEditbox::onMouseButtonUp </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 a mouse button has been released 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#ac03b4971d121ff91d6fc771386029792">CEGUI::Window</a>.</p>
</div>
</div>
<a class="anchor" id="ae8cded7484d6e1dd5b289e08860e6b32"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::onMouseDoubleClicked" ref="ae8cded7484d6e1dd5b289e08860e6b32" args="(MouseEventArgs &e)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void CEGUI::MultiLineEditbox::onMouseDoubleClicked </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 a mouse button has been double-clicked 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#a7e80ca1e972a2f07f630f805ce391d9a">CEGUI::Window</a>.</p>
</div>
</div>
<a class="anchor" id="a89cd379327a7f13883e61ba3aa75844a"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::onMouseMove" ref="a89cd379327a7f13883e61ba3aa75844a" args="(MouseEventArgs &e)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void CEGUI::MultiLineEditbox::onMouseMove </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 cursor has been moved 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#a6ed7a299dff48cf855256983b86c971d">CEGUI::Window</a>.</p>
</div>
</div>
<a class="anchor" id="a88f04d2e12c9a4bed9b4205ba2f901b0"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::onMouseTripleClicked" ref="a88f04d2e12c9a4bed9b4205ba2f901b0" args="(MouseEventArgs &e)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void CEGUI::MultiLineEditbox::onMouseTripleClicked </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 a mouse button has been triple-clicked 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#ab1001b8a1a76110974082d105dc778b2">CEGUI::Window</a>.</p>
</div>
</div>
<a class="anchor" id="aa80a53a6fe48f4e837e46078e970ea7c"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::onMouseWheel" ref="aa80a53a6fe48f4e837e46078e970ea7c" args="(MouseEventArgs &e)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void CEGUI::MultiLineEditbox::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="a607cc4fbf99927ce539b7006367504ac"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::onSized" ref="a607cc4fbf99927ce539b7006367504ac" args="(WindowEventArgs &e)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void CEGUI::MultiLineEditbox::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="aff40bc513b1737c6e0f09b24843314d2"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::onTextChanged" ref="aff40bc513b1737c6e0f09b24843314d2" args="(WindowEventArgs &e)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void CEGUI::MultiLineEditbox::onTextChanged </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 text 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 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#a0733e77b1194b53838ed868c4cb7187c">CEGUI::Window</a>.</p>
</div>
</div>
<a class="anchor" id="ab0b5d315d408f4a4e487887bf670892b"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::setCaratIndex" ref="ab0b5d315d408f4a4e487887bf670892b" args="(size_t carat_pos)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::MultiLineEditbox::setCaratIndex </td>
<td>(</td>
<td class="paramtype">size_t </td>
<td class="paramname"><em>carat_pos</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Set the current position of the carat. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">carat_pos</td><td>New index for the insert carat relative to the start of the text. If the value specified is greater than the number of characters in the edit box, the carat is positioned at the end of the text.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>
</div>
</div>
<a class="anchor" id="aa07126d567e2437a1facf1c0650d95fe"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::setMaxTextLength" ref="aa07126d567e2437a1facf1c0650d95fe" args="(size_t max_len)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::MultiLineEditbox::setMaxTextLength </td>
<td>(</td>
<td class="paramtype">size_t </td>
<td class="paramname"><em>max_len</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>set the maximum text length for this edit box. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">max_len</td><td>The maximum number of code points (characters) that can be entered into this <a class="el" href="classCEGUI_1_1Editbox.html" title="Base class for an Editbox widget.">Editbox</a>.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>
</div>
</div>
<a class="anchor" id="a2018704ce4d4c4193d56d50decb4b3d1"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::setReadOnly" ref="a2018704ce4d4c4193d56d50decb4b3d1" args="(bool setting)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::MultiLineEditbox::setReadOnly </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>Specify whether the edit box is read-only. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">setting</td><td><ul>
<li>true if the edit box is read only and can't be edited by the user.</li>
<li>false if the edit box is not read only and may be edited by the user.</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="a2f487f1b06a2e2cd82b3bc062dad18d1"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::setSelection" ref="a2f487f1b06a2e2cd82b3bc062dad18d1" args="(size_t start_pos, size_t end_pos)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::MultiLineEditbox::setSelection </td>
<td>(</td>
<td class="paramtype">size_t </td>
<td class="paramname"><em>start_pos</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">size_t </td>
<td class="paramname"><em>end_pos</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Define the current selection for the edit box. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">start_pos</td><td>Index of the starting point for the selection. If this value is greater than the number of characters in the edit box, the selection start will be set to the end of the text.</td></tr>
<tr><td class="paramname">end_pos</td><td>Index of the ending point for the selection. If this value is greater than the number of characters in the edit box, the selection start will be set to the end of the text.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>
</div>
</div>
<a class="anchor" id="a512885ba7990cddb3e1c6d7ebb8794fa"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::setShowVertScrollbar" ref="a512885ba7990cddb3e1c6d7ebb8794fa" args="(bool setting)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::MultiLineEditbox::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>true if the vertical scroll bar should be shown even when it is not required. false if the vertical scroll bar should only be shown when it is required.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>
</div>
</div>
<a class="anchor" id="a97b2c8939f2d2ad7109a9d9f4b32856c"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::setWordWrapping" ref="a97b2c8939f2d2ad7109a9d9f4b32856c" args="(bool setting)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::MultiLineEditbox::setWordWrapping </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 text will be word wrapped or not. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">setting</td><td><ul>
<li>true if the text should word-wrap at the edges of the text box.</li>
<li>false if the text should not wrap, but a scroll bar should be used.</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="adeb23e5945db783837a513689b3686fa"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::testClassName_impl" ref="adeb23e5945db783837a513689b3686fa" args="(const String &class_name) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual bool CEGUI::MultiLineEditbox::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="afb94426369d87295772f303484161cbf"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::validateWindowRenderer" ref="afb94426369d87295772f303484161cbf" args="(const String &name) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual bool CEGUI::MultiLineEditbox::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="ac0c22a456bafd830e2f303b9c5294564"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::EventCaratMoved" ref="ac0c22a456bafd830e2f303b9c5294564" 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_1MultiLineEditbox.html#ac0c22a456bafd830e2f303b9c5294564">CEGUI::MultiLineEditbox::EventCaratMoved</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 text caret / current insertion position 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_1MultiLineEditbox.html" title="Base class for the multi-line edit box widget.">MultiLineEditbox</a> whose caret position has changed. </p>
</div>
</div>
<a class="anchor" id="a2e5d63e756570af8e01b214c93de487b"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::EventEditboxFull" ref="a2e5d63e756570af8e01b214c93de487b" 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_1MultiLineEditbox.html#a2e5d63e756570af8e01b214c93de487b">CEGUI::MultiLineEditbox::EventEditboxFull</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 number of characters in the edit box reaches the current maximum length. 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_1MultiLineEditbox.html" title="Base class for the multi-line edit box widget.">MultiLineEditbox</a> whose text length has reached the set maximum allowable length for the edit box. </p>
</div>
</div>
<a class="anchor" id="acbc250a7300531927f80a4c9a08adfd0"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::EventHorzScrollbarModeChanged" ref="acbc250a7300531927f80a4c9a08adfd0" 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_1MultiLineEditbox.html#acbc250a7300531927f80a4c9a08adfd0">CEGUI::MultiLineEditbox::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 mode setting that forces the display of the horizontal scroll bar for the edit box 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_1MultiLineEditbox.html" title="Base class for the multi-line edit box widget.">MultiLineEditbox</a> whose horizontal scrollbar mode has been changed. </p>
</div>
</div>
<a class="anchor" id="a561d59a53676b09fffce083f5a646fae"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::EventMaximumTextLengthChanged" ref="a561d59a53676b09fffce083f5a646fae" 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_1MultiLineEditbox.html#a561d59a53676b09fffce083f5a646fae">CEGUI::MultiLineEditbox::EventMaximumTextLengthChanged</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 maximum allowable string length for the edit box has been 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_1MultiLineEditbox.html" title="Base class for the multi-line edit box widget.">MultiLineEditbox</a> whose maximum string length was changed. </p>
</div>
</div>
<a class="anchor" id="aaae1e99aa75b003af18ea204cd77e09c"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::EventReadOnlyModeChanged" ref="aaae1e99aa75b003af18ea204cd77e09c" 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_1MultiLineEditbox.html#aaae1e99aa75b003af18ea204cd77e09c">CEGUI::MultiLineEditbox::EventReadOnlyModeChanged</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 read-only mode for the edit box has been 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_1MultiLineEditbox.html" title="Base class for the multi-line edit box widget.">MultiLineEditbox</a> whose read-only mode was changed. </p>
</div>
</div>
<a class="anchor" id="ae7811967efc9b22c5f0e9ba127ae8e6c"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::EventTextSelectionChanged" ref="ae7811967efc9b22c5f0e9ba127ae8e6c" 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_1MultiLineEditbox.html#ae7811967efc9b22c5f0e9ba127ae8e6c">CEGUI::MultiLineEditbox::EventTextSelectionChanged</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 current text selection for the edit box 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_1MultiLineEditbox.html" title="Base class for the multi-line edit box widget.">MultiLineEditbox</a> whose text selection was changed. </p>
</div>
</div>
<a class="anchor" id="aa37785d613418543ccd2b83e61d32c64"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::EventVertScrollbarModeChanged" ref="aa37785d613418543ccd2b83e61d32c64" 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_1MultiLineEditbox.html#aa37785d613418543ccd2b83e61d32c64">CEGUI::MultiLineEditbox::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 mode setting that forces the display of the vertical scroll bar for the edit box 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_1MultiLineEditbox.html" title="Base class for the multi-line edit box widget.">MultiLineEditbox</a> whose vertical scrollbar mode has been changed. </p>
</div>
</div>
<a class="anchor" id="a84d9acc4c8cffd4f7cc57278ad31ee14"></a><!-- doxytag: member="CEGUI::MultiLineEditbox::EventWordWrapModeChanged" ref="a84d9acc4c8cffd4f7cc57278ad31ee14" 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_1MultiLineEditbox.html#a84d9acc4c8cffd4f7cc57278ad31ee14">CEGUI::MultiLineEditbox::EventWordWrapModeChanged</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 word wrap mode of the edit box has been 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_1MultiLineEditbox.html" title="Base class for the multi-line edit box widget.">MultiLineEditbox</a> whose word wrap mode was 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>
|