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
|
<!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: CEGUIWindow.h Source File</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><a href="annotated.html"><span>Classes</span></a></li>
<li class="current"><a href="files.html"><span>Files</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="files.html"><span>File List</span></a></li>
</ul>
</div>
<div class="header">
<div class="headertitle">
<div class="title">CEGUIWindow.h</div> </div>
</div>
<div class="contents">
<div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="comment">/***********************************************************************</span>
<a name="l00002"></a>00002 <span class="comment"> filename: CEGUIWindow.h</span>
<a name="l00003"></a>00003 <span class="comment"> created: 21/2/2004</span>
<a name="l00004"></a>00004 <span class="comment"> author: Paul D Turner</span>
<a name="l00005"></a>00005 <span class="comment"></span>
<a name="l00006"></a>00006 <span class="comment"> purpose: Defines abstract base class for Window objects</span>
<a name="l00007"></a>00007 <span class="comment">*************************************************************************/</span>
<a name="l00008"></a>00008 <span class="comment">/***************************************************************************</span>
<a name="l00009"></a>00009 <span class="comment"> * Copyright (C) 2004 - 2011 Paul D Turner & The CEGUI Development Team</span>
<a name="l00010"></a>00010 <span class="comment"> *</span>
<a name="l00011"></a>00011 <span class="comment"> * Permission is hereby granted, free of charge, to any person obtaining</span>
<a name="l00012"></a>00012 <span class="comment"> * a copy of this software and associated documentation files (the</span>
<a name="l00013"></a>00013 <span class="comment"> * "Software"), to deal in the Software without restriction, including</span>
<a name="l00014"></a>00014 <span class="comment"> * without limitation the rights to use, copy, modify, merge, publish,</span>
<a name="l00015"></a>00015 <span class="comment"> * distribute, sublicense, and/or sell copies of the Software, and to</span>
<a name="l00016"></a>00016 <span class="comment"> * permit persons to whom the Software is furnished to do so, subject to</span>
<a name="l00017"></a>00017 <span class="comment"> * the following conditions:</span>
<a name="l00018"></a>00018 <span class="comment"> *</span>
<a name="l00019"></a>00019 <span class="comment"> * The above copyright notice and this permission notice shall be</span>
<a name="l00020"></a>00020 <span class="comment"> * included in all copies or substantial portions of the Software.</span>
<a name="l00021"></a>00021 <span class="comment"> *</span>
<a name="l00022"></a>00022 <span class="comment"> * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,</span>
<a name="l00023"></a>00023 <span class="comment"> * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF</span>
<a name="l00024"></a>00024 <span class="comment"> * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.</span>
<a name="l00025"></a>00025 <span class="comment"> * IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR</span>
<a name="l00026"></a>00026 <span class="comment"> * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,</span>
<a name="l00027"></a>00027 <span class="comment"> * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR</span>
<a name="l00028"></a>00028 <span class="comment"> * OTHER DEALINGS IN THE SOFTWARE.</span>
<a name="l00029"></a>00029 <span class="comment"> ***************************************************************************/</span>
<a name="l00030"></a>00030 <span class="preprocessor">#ifndef _CEGUIWindow_h_</span>
<a name="l00031"></a>00031 <span class="preprocessor"></span><span class="preprocessor">#define _CEGUIWindow_h_</span>
<a name="l00032"></a>00032 <span class="preprocessor"></span>
<a name="l00033"></a>00033 <span class="preprocessor">#include "CEGUIBase.h"</span>
<a name="l00034"></a>00034 <span class="preprocessor">#include "CEGUIString.h"</span>
<a name="l00035"></a>00035 <span class="preprocessor">#include "CEGUIVector.h"</span>
<a name="l00036"></a>00036 <span class="preprocessor">#include "CEGUIRect.h"</span>
<a name="l00037"></a>00037 <span class="preprocessor">#include "CEGUISize.h"</span>
<a name="l00038"></a>00038 <span class="preprocessor">#include "CEGUIEventSet.h"</span>
<a name="l00039"></a>00039 <span class="preprocessor">#include "CEGUIPropertySet.h"</span>
<a name="l00040"></a>00040 <span class="preprocessor">#include "CEGUISystem.h"</span>
<a name="l00041"></a>00041 <span class="preprocessor">#include "CEGUIInputEvent.h"</span>
<a name="l00042"></a>00042 <span class="preprocessor">#include "CEGUIWindowProperties.h"</span>
<a name="l00043"></a>00043 <span class="preprocessor">#include "CEGUIUDim.h"</span>
<a name="l00044"></a>00044 <span class="preprocessor">#include "CEGUIWindowRenderer.h"</span>
<a name="l00045"></a>00045 <span class="preprocessor">#include "CEGUITextUtils.h"</span>
<a name="l00046"></a>00046 <span class="preprocessor">#include "CEGUIBasicRenderedStringParser.h"</span>
<a name="l00047"></a>00047 <span class="preprocessor">#include "CEGUIDefaultRenderedStringParser.h"</span>
<a name="l00048"></a>00048 <span class="preprocessor">#include <vector></span>
<a name="l00049"></a>00049 <span class="preprocessor">#include <set></span>
<a name="l00050"></a>00050
<a name="l00051"></a>00051
<a name="l00052"></a>00052 <span class="preprocessor">#if defined(_MSC_VER)</span>
<a name="l00053"></a>00053 <span class="preprocessor"></span><span class="preprocessor"># pragma warning(push)</span>
<a name="l00054"></a>00054 <span class="preprocessor"></span><span class="preprocessor"># pragma warning(disable : 4251)</span>
<a name="l00055"></a>00055 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
<a name="l00056"></a>00056 <span class="preprocessor"></span>
<a name="l00057"></a>00057
<a name="l00058"></a>00058 <span class="comment">// Start of CEGUI namespace section</span>
<a name="l00059"></a>00059 <span class="keyword">namespace </span>CEGUI
<a name="l00060"></a>00060 {
<a name="l00065"></a><a class="code" href="namespaceCEGUI.html#a6660132f5465c325fd55754ecba4832a">00065</a> <span class="keyword">enum</span> <a class="code" href="namespaceCEGUI.html#a6660132f5465c325fd55754ecba4832a" title="Enumerated type used when specifying vertical alignments.">VerticalAlignment</a>
<a name="l00066"></a>00066 {
<a name="l00071"></a><a class="code" href="namespaceCEGUI.html#a6660132f5465c325fd55754ecba4832aad3b8bcebeb4d8ff7cf9f62504ae264c9">00071</a> <a class="code" href="namespaceCEGUI.html#a6660132f5465c325fd55754ecba4832aad3b8bcebeb4d8ff7cf9f62504ae264c9">VA_TOP</a>,
<a name="l00076"></a><a class="code" href="namespaceCEGUI.html#a6660132f5465c325fd55754ecba4832aa08614e2bfa98aafe3dc8cca174dfe9ef">00076</a> <a class="code" href="namespaceCEGUI.html#a6660132f5465c325fd55754ecba4832aa08614e2bfa98aafe3dc8cca174dfe9ef">VA_CENTRE</a>,
<a name="l00081"></a><a class="code" href="namespaceCEGUI.html#a6660132f5465c325fd55754ecba4832aab07673d2df837f9114d0f9bb516b9825">00081</a> <a class="code" href="namespaceCEGUI.html#a6660132f5465c325fd55754ecba4832aab07673d2df837f9114d0f9bb516b9825">VA_BOTTOM</a>
<a name="l00082"></a>00082 };
<a name="l00083"></a>00083
<a name="l00088"></a><a class="code" href="namespaceCEGUI.html#a15bee6ef970b3aab6e7355b278901195">00088</a> <span class="keyword">enum</span> <a class="code" href="namespaceCEGUI.html#a15bee6ef970b3aab6e7355b278901195" title="Enumerated type used when specifying horizontal alignments.">HorizontalAlignment</a>
<a name="l00089"></a>00089 {
<a name="l00094"></a><a class="code" href="namespaceCEGUI.html#a15bee6ef970b3aab6e7355b278901195a7d7176df4b21d351638fa26fbe14bc79">00094</a> <a class="code" href="namespaceCEGUI.html#a15bee6ef970b3aab6e7355b278901195a7d7176df4b21d351638fa26fbe14bc79">HA_LEFT</a>,
<a name="l00099"></a><a class="code" href="namespaceCEGUI.html#a15bee6ef970b3aab6e7355b278901195af7cc1ca9eed21a448a4e366757f44ce0">00099</a> <a class="code" href="namespaceCEGUI.html#a15bee6ef970b3aab6e7355b278901195af7cc1ca9eed21a448a4e366757f44ce0">HA_CENTRE</a>,
<a name="l00104"></a><a class="code" href="namespaceCEGUI.html#a15bee6ef970b3aab6e7355b278901195ae555b1d940e38c8c71a7e81ec42de61c">00104</a> <a class="code" href="namespaceCEGUI.html#a15bee6ef970b3aab6e7355b278901195ae555b1d940e38c8c71a7e81ec42de61c">HA_RIGHT</a>
<a name="l00105"></a>00105 };
<a name="l00106"></a>00106
<a name="l00115"></a><a class="code" href="namespaceCEGUI.html#a506db22c86ed2c4ce779c9955bf755cd">00115</a> <span class="keyword">enum</span> <a class="code" href="namespaceCEGUI.html#a506db22c86ed2c4ce779c9955bf755cd" title="Enumerated type used for specifying Window::update mode to be used. Note that the setting specified w...">WindowUpdateMode</a>
<a name="l00116"></a>00116 {
<a name="l00118"></a><a class="code" href="namespaceCEGUI.html#a506db22c86ed2c4ce779c9955bf755cda340ea3ff8be43b7a0a4d1864e7b55e44">00118</a> <a class="code" href="namespaceCEGUI.html#a506db22c86ed2c4ce779c9955bf755cda340ea3ff8be43b7a0a4d1864e7b55e44" title="Always call the Window::update function for this window.">WUM_ALWAYS</a>,
<a name="l00120"></a><a class="code" href="namespaceCEGUI.html#a506db22c86ed2c4ce779c9955bf755cdac0d6c59f892588078f3c2e6ca284af26">00120</a> <a class="code" href="namespaceCEGUI.html#a506db22c86ed2c4ce779c9955bf755cdac0d6c59f892588078f3c2e6ca284af26" title="Never call the Window::update function for this window.">WUM_NEVER</a>,
<a name="l00122"></a><a class="code" href="namespaceCEGUI.html#a506db22c86ed2c4ce779c9955bf755cdaa75e2c9413e502c04b163cec006f1bc1">00122</a> <a class="code" href="namespaceCEGUI.html#a506db22c86ed2c4ce779c9955bf755cdaa75e2c9413e502c04b163cec006f1bc1" title="Only call the Window::update function for this window if it is visible.">WUM_VISIBLE</a>
<a name="l00123"></a>00123 };
<a name="l00124"></a>00124
<a name="l00138"></a><a class="code" href="classCEGUI_1_1Window.html">00138</a> <span class="keyword">class </span>CEGUIEXPORT <a class="code" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a> : <span class="keyword">public</span> <a class="code" href="classCEGUI_1_1PropertySet.html" title="Class that contains a collection of Property objects.">PropertySet</a>, <span class="keyword">public</span> <a class="code" href="classCEGUI_1_1EventSet.html" title="Class that collects together a set of Event objects.">EventSet</a>
<a name="l00139"></a>00139 {
<a name="l00140"></a>00140 <span class="keyword">public</span>:
<a name="l00141"></a>00141 <span class="comment">/*************************************************************************</span>
<a name="l00142"></a>00142 <span class="comment"> Event name constants</span>
<a name="l00143"></a>00143 <span class="comment"> *************************************************************************/</span>
<a name="l00145"></a><a class="code" href="classCEGUI_1_1Window.html#a20af7aae823251f8b19ad443c8b245a9">00145</a> <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1Window.html#a20af7aae823251f8b19ad443c8b245a9" title="Namespace for global events.">EventNamespace</a>;
<a name="l00146"></a>00146
<a name="l00147"></a>00147 <span class="comment">// generated internally by Window</span>
<a name="l00151"></a><a class="code" href="classCEGUI_1_1Window.html#aa22b9c8f57c034bc787a9e02da719ae6">00151</a> <span class="comment"></span> <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1Window.html#aa22b9c8f57c034bc787a9e02da719ae6">EventWindowUpdated</a>;
<a name="l00157"></a><a class="code" href="classCEGUI_1_1Window.html#ab931f2dcd6348af5e07c54443bf222e3">00157</a> <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1Window.html#ab931f2dcd6348af5e07c54443bf222e3">EventParentSized</a>;
<a name="l00162"></a><a class="code" href="classCEGUI_1_1Window.html#a7dbecd8bdd7c8f7e1c4a7169b4ea59c0">00162</a> <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1Window.html#a7dbecd8bdd7c8f7e1c4a7169b4ea59c0">EventSized</a>;
<a name="l00167"></a><a class="code" href="classCEGUI_1_1Window.html#a4a5f761618b0682a137f6389ed0c5722">00167</a> <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1Window.html#a4a5f761618b0682a137f6389ed0c5722">EventMoved</a>;
<a name="l00172"></a><a class="code" href="classCEGUI_1_1Window.html#a5e47b70308472907425e0623e93bc2bc">00172</a> <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1Window.html#a5e47b70308472907425e0623e93bc2bc">EventTextChanged</a>;
<a name="l00177"></a><a class="code" href="classCEGUI_1_1Window.html#accf3d81b183d2bf379bac707e21e7687">00177</a> <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1Window.html#accf3d81b183d2bf379bac707e21e7687">EventFontChanged</a>;
<a name="l00182"></a><a class="code" href="classCEGUI_1_1Window.html#a992169e5f00953d074d7b2aa3c98b47a">00182</a> <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1Window.html#a992169e5f00953d074d7b2aa3c98b47a">EventAlphaChanged</a>;
<a name="l00187"></a><a class="code" href="classCEGUI_1_1Window.html#a6108e4d8623de781ecf4de9d40ef9e1c">00187</a> <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1Window.html#a6108e4d8623de781ecf4de9d40ef9e1c">EventIDChanged</a>;
<a name="l00194"></a><a class="code" href="classCEGUI_1_1Window.html#a040a03cb771150b56197fc883f0f5856">00194</a> <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1Window.html#a040a03cb771150b56197fc883f0f5856">EventActivated</a>;
<a name="l00201"></a><a class="code" href="classCEGUI_1_1Window.html#aefa40c1a70a636c5740e6639d37335b4">00201</a> <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1Window.html#aefa40c1a70a636c5740e6639d37335b4">EventDeactivated</a>;
<a name="l00206"></a><a class="code" href="classCEGUI_1_1Window.html#a34fa1306c9247251b757536c8c5778b8">00206</a> <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1Window.html#a34fa1306c9247251b757536c8c5778b8">EventShown</a>;
<a name="l00211"></a><a class="code" href="classCEGUI_1_1Window.html#a50887f5166e01f6fa1e831fec4f8a497">00211</a> <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1Window.html#a50887f5166e01f6fa1e831fec4f8a497">EventHidden</a>;
<a name="l00216"></a><a class="code" href="classCEGUI_1_1Window.html#aa67d0f21f87394f8db977286864b09e5">00216</a> <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1Window.html#aa67d0f21f87394f8db977286864b09e5">EventEnabled</a>;
<a name="l00222"></a><a class="code" href="classCEGUI_1_1Window.html#a384b7604f879ec58bb5cebea40e32c0a">00222</a> <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1Window.html#a384b7604f879ec58bb5cebea40e32c0a">EventDisabled</a>;
<a name="l00228"></a><a class="code" href="classCEGUI_1_1Window.html#a4217ae415754da431f533c39b949f133">00228</a> <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1Window.html#a4217ae415754da431f533c39b949f133">EventClippedByParentChanged</a>;
<a name="l00234"></a><a class="code" href="classCEGUI_1_1Window.html#ae34ab4a1e29076149a614318cb3f5c27">00234</a> <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1Window.html#ae34ab4a1e29076149a614318cb3f5c27">EventDestroyedByParentChanged</a>;
<a name="l00240"></a><a class="code" href="classCEGUI_1_1Window.html#a2cc6fcd0540c973defde2dd7b69fc57c">00240</a> <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1Window.html#a2cc6fcd0540c973defde2dd7b69fc57c">EventInheritsAlphaChanged</a>;
<a name="l00246"></a><a class="code" href="classCEGUI_1_1Window.html#a1d65f3f0ea495a178e720225e9c00912">00246</a> <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1Window.html#a1d65f3f0ea495a178e720225e9c00912">EventAlwaysOnTopChanged</a>;
<a name="l00251"></a><a class="code" href="classCEGUI_1_1Window.html#a677b3d7a659acf99e09ce9875ec84314">00251</a> <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1Window.html#a677b3d7a659acf99e09ce9875ec84314">EventInputCaptureGained</a>;
<a name="l00260"></a><a class="code" href="classCEGUI_1_1Window.html#a18ca6db3d0e8d1a50aedd071628a7a01">00260</a> <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1Window.html#a18ca6db3d0e8d1a50aedd071628a7a01">EventInputCaptureLost</a>;
<a name="l00268"></a><a class="code" href="classCEGUI_1_1Window.html#a8184cd1749f53fe193b4598ff3687a0c">00268</a> <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1Window.html#a8184cd1749f53fe193b4598ff3687a0c">EventRenderingStarted</a>;
<a name="l00276"></a><a class="code" href="classCEGUI_1_1Window.html#a76471418055803943e9b53f1ea7ce617">00276</a> <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1Window.html#a76471418055803943e9b53f1ea7ce617">EventRenderingEnded</a>;
<a name="l00281"></a><a class="code" href="classCEGUI_1_1Window.html#a9790c9b998853f65e578182b6b0c8d80">00281</a> <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1Window.html#a9790c9b998853f65e578182b6b0c8d80">EventChildAdded</a>;
<a name="l00286"></a><a class="code" href="classCEGUI_1_1Window.html#aff2db0eda7a7cb9dcfd0c1a25e894a9f">00286</a> <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1Window.html#aff2db0eda7a7cb9dcfd0c1a25e894a9f">EventChildRemoved</a>;
<a name="l00291"></a><a class="code" href="classCEGUI_1_1Window.html#abfda50d3efaf0b998346d1fed8803c5d">00291</a> <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1Window.html#abfda50d3efaf0b998346d1fed8803c5d">EventDestructionStarted</a>;
<a name="l00297"></a><a class="code" href="classCEGUI_1_1Window.html#a87e0c01128d6fc9445fc6eeb593535ad">00297</a> <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1Window.html#a87e0c01128d6fc9445fc6eeb593535ad">EventZOrderChanged</a>;
<a name="l00305"></a><a class="code" href="classCEGUI_1_1Window.html#a67741a24d92da5ec9eb60d2dccea8110">00305</a> <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1Window.html#a67741a24d92da5ec9eb60d2dccea8110">EventDragDropItemEnters</a>;
<a name="l00313"></a><a class="code" href="classCEGUI_1_1Window.html#a6f2e99b5c9df2e4a808794e1686570f1">00313</a> <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1Window.html#a6f2e99b5c9df2e4a808794e1686570f1">EventDragDropItemLeaves</a>;
<a name="l00320"></a><a class="code" href="classCEGUI_1_1Window.html#ab84143da98aeb943b5c25e0f3448fccc">00320</a> <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1Window.html#ab84143da98aeb943b5c25e0f3448fccc">EventDragDropItemDropped</a>;
<a name="l00326"></a><a class="code" href="classCEGUI_1_1Window.html#a2ca0aa3785e744b7f814f07c44e00b0a">00326</a> <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1Window.html#a2ca0aa3785e744b7f814f07c44e00b0a">EventVerticalAlignmentChanged</a>;
<a name="l00332"></a><a class="code" href="classCEGUI_1_1Window.html#a48e9373a13723be4495b4143c0c057c1">00332</a> <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1Window.html#a48e9373a13723be4495b4143c0c057c1">EventHorizontalAlignmentChanged</a>;
<a name="l00338"></a><a class="code" href="classCEGUI_1_1Window.html#a86c7e55bf9da5073e0111a24892f8ada">00338</a> <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1Window.html#a86c7e55bf9da5073e0111a24892f8ada">EventWindowRendererAttached</a>;
<a name="l00344"></a><a class="code" href="classCEGUI_1_1Window.html#a28bb6c28cb711216971aedd4354ba630">00344</a> <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1Window.html#a28bb6c28cb711216971aedd4354ba630">EventWindowRendererDetached</a>;
<a name="l00349"></a><a class="code" href="classCEGUI_1_1Window.html#abc23665beec549e42450ea21e0a504a3">00349</a> <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1Window.html#abc23665beec549e42450ea21e0a504a3">EventRotated</a>;
<a name="l00355"></a><a class="code" href="classCEGUI_1_1Window.html#a41bb45ae4fc08e887b7d98ce9c1fc695">00355</a> <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1Window.html#a41bb45ae4fc08e887b7d98ce9c1fc695">EventNonClientChanged</a>;
<a name="l00362"></a><a class="code" href="classCEGUI_1_1Window.html#a60683cfb51e08fbbaa1e44a22c569de2">00362</a> <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1Window.html#a60683cfb51e08fbbaa1e44a22c569de2">EventTextParsingChanged</a>;
<a name="l00368"></a><a class="code" href="classCEGUI_1_1Window.html#a5b508e4da98b6ad84d9090cb254e0bf8">00368</a> <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1Window.html#a5b508e4da98b6ad84d9090cb254e0bf8">EventMarginChanged</a>;
<a name="l00369"></a>00369
<a name="l00370"></a>00370 <span class="comment">// generated externally (inputs)</span>
<a name="l00375"></a><a class="code" href="classCEGUI_1_1Window.html#a5bd0f97b56aed524fbb9c0fe703514e0">00375</a> <span class="comment"></span> <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1Window.html#a5bd0f97b56aed524fbb9c0fe703514e0">EventMouseEntersArea</a>;
<a name="l00380"></a><a class="code" href="classCEGUI_1_1Window.html#a1b60ccc154fc48f29cc668eef9605036">00380</a> <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1Window.html#a1b60ccc154fc48f29cc668eef9605036">EventMouseLeavesArea</a>;
<a name="l00391"></a><a class="code" href="classCEGUI_1_1Window.html#a31d2399340a0fea07b2bc7466981b473">00391</a> <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1Window.html#a31d2399340a0fea07b2bc7466981b473">EventMouseEnters</a>;
<a name="l00402"></a><a class="code" href="classCEGUI_1_1Window.html#a2eafbbb8cb931b41837a936761b5fc15">00402</a> <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1Window.html#a2eafbbb8cb931b41837a936761b5fc15">EventMouseLeaves</a>;
<a name="l00407"></a><a class="code" href="classCEGUI_1_1Window.html#a313d688c2f1d88ba71315d485a4b1a3c">00407</a> <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1Window.html#a313d688c2f1d88ba71315d485a4b1a3c">EventMouseMove</a>;
<a name="l00413"></a><a class="code" href="classCEGUI_1_1Window.html#a8f4195820383444d23f1d56c3b5ed1b7">00413</a> <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1Window.html#a8f4195820383444d23f1d56c3b5ed1b7">EventMouseWheel</a>;
<a name="l00418"></a><a class="code" href="classCEGUI_1_1Window.html#a073c0f8e07cad39c21dce04cc2e49b3c">00418</a> <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1Window.html#a073c0f8e07cad39c21dce04cc2e49b3c">EventMouseButtonDown</a>;
<a name="l00423"></a><a class="code" href="classCEGUI_1_1Window.html#a8f61bea89b0f0e76b9cfcfbb7b7168c1">00423</a> <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1Window.html#a8f61bea89b0f0e76b9cfcfbb7b7168c1">EventMouseButtonUp</a>;
<a name="l00430"></a><a class="code" href="classCEGUI_1_1Window.html#ac5d0498342848fe10648fe704cfaa1b9">00430</a> <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1Window.html#ac5d0498342848fe10648fe704cfaa1b9">EventMouseClick</a>;
<a name="l00436"></a><a class="code" href="classCEGUI_1_1Window.html#adce1ec3231fe1cc24a02c7f232d7f59b">00436</a> <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1Window.html#adce1ec3231fe1cc24a02c7f232d7f59b">EventMouseDoubleClick</a>;
<a name="l00442"></a><a class="code" href="classCEGUI_1_1Window.html#a4290c6976043fd47748fe0130773b84a">00442</a> <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1Window.html#a4290c6976043fd47748fe0130773b84a">EventMouseTripleClick</a>;
<a name="l00451"></a><a class="code" href="classCEGUI_1_1Window.html#a86af9159985241d66ba8f6563c9d0c45">00451</a> <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1Window.html#a86af9159985241d66ba8f6563c9d0c45">EventKeyDown</a>;
<a name="l00460"></a><a class="code" href="classCEGUI_1_1Window.html#a6e75b65127af1b42e2eef4de6db4cffa">00460</a> <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1Window.html#a6e75b65127af1b42e2eef4de6db4cffa">EventKeyUp</a>;
<a name="l00468"></a><a class="code" href="classCEGUI_1_1Window.html#a3db8804a86cde042628ca47c747fffc8">00468</a> <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1Window.html#a3db8804a86cde042628ca47c747fffc8">EventCharacterKey</a>;
<a name="l00469"></a>00469
<a name="l00470"></a>00470 <span class="comment">/*************************************************************************</span>
<a name="l00471"></a>00471 <span class="comment"> Child Widget name suffix constants</span>
<a name="l00472"></a>00472 <span class="comment"> *************************************************************************/</span>
<a name="l00474"></a><a class="code" href="classCEGUI_1_1Window.html#a46adbccab75279519b90f2ac97b2eff5">00474</a> <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1Window.html#a46adbccab75279519b90f2ac97b2eff5" title="Widget name suffix for automatically created tooltip widgets.">TooltipNameSuffix</a>;
<a name="l00476"></a><a class="code" href="classCEGUI_1_1Window.html#af359e44d633ed0c7e0eb354a9cd511c4">00476</a> <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1Window.html#af359e44d633ed0c7e0eb354a9cd511c4" title="Something that all generated widgets will have in their names.">AutoWidgetNameSuffix</a>;
<a name="l00477"></a>00477
<a name="l00478"></a>00478
<a name="l00489"></a>00489 <a class="code" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a>(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>& type, <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>& name);
<a name="l00490"></a>00490
<a name="l00495"></a>00495 <span class="keyword">virtual</span> ~<a class="code" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a>(<span class="keywordtype">void</span>);
<a name="l00496"></a>00496
<a name="l00504"></a>00504 <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>& getType(<span class="keywordtype">void</span>) <span class="keyword">const</span>;
<a name="l00505"></a>00505
<a name="l00513"></a><a class="code" href="classCEGUI_1_1Window.html#acc8633ff7867bde7e04f97734ee53279">00513</a> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>& <a class="code" href="classCEGUI_1_1Window.html#acc8633ff7867bde7e04f97734ee53279" title="return a String object holding the name of this Window.">getName</a>(<span class="keywordtype">void</span>)<span class="keyword"> const </span>{<span class="keywordflow">return</span> d_name;}
<a name="l00514"></a>00514
<a name="l00524"></a><a class="code" href="classCEGUI_1_1Window.html#a68cc9aa83529a83ade83d02e733b7eea">00524</a> <span class="keywordtype">bool</span> <a class="code" href="classCEGUI_1_1Window.html#a68cc9aa83529a83ade83d02e733b7eea" title="returns whether or not this Window is set to be destroyed when its parent window is destroyed...">isDestroyedByParent</a>(<span class="keywordtype">void</span>)<span class="keyword"> const </span>{<span class="keywordflow">return</span> d_destroyedByParent;}
<a name="l00525"></a>00525
<a name="l00535"></a><a class="code" href="classCEGUI_1_1Window.html#a3933fa3248ff75d8a20ef9ac995a252e">00535</a> <span class="keywordtype">bool</span> <a class="code" href="classCEGUI_1_1Window.html#a3933fa3248ff75d8a20ef9ac995a252e" title="returns whether or not this Window is an always on top Window. Also known as a top-most window...">isAlwaysOnTop</a>(<span class="keywordtype">void</span>)<span class="keyword"> const </span>{<span class="keywordflow">return</span> d_alwaysOnTop;}
<a name="l00536"></a>00536
<a name="l00549"></a>00549 <span class="keywordtype">bool</span> isDisabled(<span class="keywordtype">bool</span> localOnly = <span class="keyword">false</span>) <span class="keyword">const</span>;
<a name="l00550"></a>00550
<a name="l00567"></a>00567 <span class="keywordtype">bool</span> isVisible(<span class="keywordtype">bool</span> localOnly = <span class="keyword">false</span>) <span class="keyword">const</span>;
<a name="l00568"></a>00568
<a name="l00583"></a>00583 <span class="keywordtype">bool</span> isActive(<span class="keywordtype">void</span>) <span class="keyword">const</span>;
<a name="l00584"></a>00584
<a name="l00594"></a><a class="code" href="classCEGUI_1_1Window.html#a6ba2730406b75229f7ebfe1f99dda0aa">00594</a> <span class="keywordtype">bool</span> <a class="code" href="classCEGUI_1_1Window.html#a6ba2730406b75229f7ebfe1f99dda0aa" title="return true if this Window is clipped so that its rendering will not pass outside of its parent Windo...">isClippedByParent</a>(<span class="keywordtype">void</span>)<span class="keyword"> const </span>{<span class="keywordflow">return</span> d_clippedByParent;}
<a name="l00595"></a>00595
<a name="l00603"></a><a class="code" href="classCEGUI_1_1Window.html#ac7a2adb0d6323920800ca23cffa29281">00603</a> uint <a class="code" href="classCEGUI_1_1Window.html#ac7a2adb0d6323920800ca23cffa29281" title="return the ID code currently assigned to this Window by client code.">getID</a>(<span class="keywordtype">void</span>)<span class="keyword"> const </span>{<span class="keywordflow">return</span> d_ID;}
<a name="l00604"></a>00604
<a name="l00614"></a><a class="code" href="classCEGUI_1_1Window.html#a87d6c7de0e186c810ac3b6c420da918d">00614</a> <span class="keywordtype">size_t</span> <a class="code" href="classCEGUI_1_1Window.html#a87d6c7de0e186c810ac3b6c420da918d" title="return the number of child Window objects currently attached to this Window.">getChildCount</a>(<span class="keywordtype">void</span>)<span class="keyword"> const </span>{<span class="keywordflow">return</span> d_children.size();}
<a name="l00615"></a>00615
<a name="l00628"></a>00628 <span class="keywordtype">bool</span> isChild(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>& name) <span class="keyword">const</span>;
<a name="l00629"></a>00629
<a name="l00646"></a>00646 <span class="keywordtype">bool</span> isChild(uint ID) <span class="keyword">const</span>;
<a name="l00647"></a>00647
<a name="l00668"></a>00668 <span class="keywordtype">bool</span> isChildRecursive(uint ID) <span class="keyword">const</span>;
<a name="l00669"></a>00669
<a name="l00681"></a>00681 <span class="keywordtype">bool</span> isChild(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a>* window) <span class="keyword">const</span>;
<a name="l00682"></a>00682
<a name="l00704"></a>00704 <a class="code" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a>* getChild(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>& name) <span class="keyword">const</span>;
<a name="l00705"></a>00705
<a name="l00727"></a>00727 <a class="code" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a>* getChild(uint ID) <span class="keyword">const</span>;
<a name="l00728"></a>00728
<a name="l00752"></a>00752 <a class="code" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a>* getChildRecursive(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>& name) <span class="keyword">const</span>;
<a name="l00753"></a>00753
<a name="l00775"></a>00775 <a class="code" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a>* getChildRecursive(uint ID) <span class="keyword">const</span>;
<a name="l00776"></a>00776
<a name="l00790"></a><a class="code" href="classCEGUI_1_1Window.html#af73b4b355e40f7952446eb7b2afb4b18">00790</a> <a class="code" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a>* <a class="code" href="classCEGUI_1_1Window.html#af73b4b355e40f7952446eb7b2afb4b18" title="return a pointer to the child window that is attached to 'this' at the given index.">getChildAtIdx</a>(<span class="keywordtype">size_t</span> idx)<span class="keyword"> const </span>{<span class="keywordflow">return</span> d_children[idx];}
<a name="l00791"></a>00791
<a name="l00804"></a>00804 <a class="code" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a>* getActiveChild(<span class="keywordtype">void</span>);
<a name="l00805"></a>00805 <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a>* getActiveChild(<span class="keywordtype">void</span>) <span class="keyword">const</span>;
<a name="l00806"></a>00806
<a name="l00820"></a>00820 <span class="keywordtype">bool</span> isAncestor(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>& name) <span class="keyword">const</span>;
<a name="l00821"></a>00821
<a name="l00835"></a>00835 <span class="keywordtype">bool</span> isAncestor(uint ID) <span class="keyword">const</span>;
<a name="l00836"></a>00836
<a name="l00849"></a>00849 <span class="keywordtype">bool</span> isAncestor(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a>* window) <span class="keyword">const</span>;
<a name="l00850"></a>00850
<a name="l00864"></a>00864 <a class="code" href="classCEGUI_1_1Font.html" title="Class that encapsulates a typeface.">Font</a>* getFont(<span class="keywordtype">bool</span> useDefault = <span class="keyword">true</span>) <span class="keyword">const</span>;
<a name="l00865"></a>00865
<a name="l00873"></a><a class="code" href="classCEGUI_1_1Window.html#a621d33c0c8d66555860f2b95bb62d85e">00873</a> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>& <a class="code" href="classCEGUI_1_1Window.html#a621d33c0c8d66555860f2b95bb62d85e" title="return the current text for the Window">getText</a>(<span class="keywordtype">void</span>)<span class="keyword"> const </span>{<span class="keywordflow">return</span> d_textLogical;}
<a name="l00874"></a>00874
<a name="l00876"></a>00876 <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>& getTextVisual() <span class="keyword">const</span>;
<a name="l00877"></a>00877
<a name="l00886"></a><a class="code" href="classCEGUI_1_1Window.html#af11ec3a2145935513b52d20e63e3c19d">00886</a> <span class="keywordtype">bool</span> <a class="code" href="classCEGUI_1_1Window.html#af11ec3a2145935513b52d20e63e3c19d" title="return true if the Window inherits alpha from its parent(s).">inheritsAlpha</a>(<span class="keywordtype">void</span>)<span class="keyword"> const </span>{<span class="keywordflow">return</span> d_inheritsAlpha;}
<a name="l00887"></a>00887
<a name="l00905"></a><a class="code" href="classCEGUI_1_1Window.html#a40003e38accdf87cd92c5f498d91a161">00905</a> <span class="keywordtype">float</span> <a class="code" href="classCEGUI_1_1Window.html#a40003e38accdf87cd92c5f498d91a161" title="return the current alpha value set for this Window">getAlpha</a>(<span class="keywordtype">void</span>)<span class="keyword"> const </span>{<span class="keywordflow">return</span> d_alpha;}
<a name="l00906"></a>00906
<a name="l00916"></a>00916 <span class="keywordtype">float</span> getEffectiveAlpha(<span class="keywordtype">void</span>) <span class="keyword">const</span>;
<a name="l00917"></a>00917
<a name="l00923"></a>00923 <a class="code" href="classCEGUI_1_1Rect.html" title="Class encapsulating operations on a Rectangle.">Rect</a> getUnclippedOuterRect() <span class="keyword">const</span>;
<a name="l00924"></a>00924
<a name="l00930"></a>00930 <a class="code" href="classCEGUI_1_1Rect.html" title="Class encapsulating operations on a Rectangle.">Rect</a> getUnclippedInnerRect() <span class="keyword">const</span>;
<a name="l00931"></a>00931
<a name="l00943"></a>00943 <a class="code" href="classCEGUI_1_1Rect.html" title="Class encapsulating operations on a Rectangle.">Rect</a> getUnclippedRect(<span class="keyword">const</span> <span class="keywordtype">bool</span> inner) <span class="keyword">const</span>;
<a name="l00944"></a>00944
<a name="l00957"></a>00957 <a class="code" href="classCEGUI_1_1Rect.html" title="Class encapsulating operations on a Rectangle.">Rect</a> getOuterRectClipper() <span class="keyword">const</span>;
<a name="l00958"></a>00958
<a name="l00971"></a>00971 <a class="code" href="classCEGUI_1_1Rect.html" title="Class encapsulating operations on a Rectangle.">Rect</a> getInnerRectClipper() <span class="keyword">const</span>;
<a name="l00972"></a>00972
<a name="l00991"></a>00991 <a class="code" href="classCEGUI_1_1Rect.html" title="Class encapsulating operations on a Rectangle.">Rect</a> getClipRect(<span class="keyword">const</span> <span class="keywordtype">bool</span> non_client = <span class="keyword">false</span>) <span class="keyword">const</span>;
<a name="l00992"></a>00992
<a name="l01003"></a>01003 <a class="code" href="classCEGUI_1_1Rect.html" title="Class encapsulating operations on a Rectangle.">Rect</a> getHitTestRect() <span class="keyword">const</span>;
<a name="l01004"></a>01004
<a name="l01024"></a>01024 <a class="code" href="classCEGUI_1_1Rect.html" title="Class encapsulating operations on a Rectangle.">Rect</a> getChildWindowContentArea(<span class="keyword">const</span> <span class="keywordtype">bool</span> non_client = <span class="keyword">false</span>) <span class="keyword">const</span>;
<a name="l01025"></a>01025
<a name="l01042"></a>01042 <span class="keyword">virtual</span> <a class="code" href="classCEGUI_1_1Rect.html" title="Class encapsulating operations on a Rectangle.">Rect</a> getUnclippedInnerRect_impl(<span class="keywordtype">void</span>) <span class="keyword">const</span>;
<a name="l01043"></a>01043
<a name="l01052"></a><a class="code" href="classCEGUI_1_1Window.html#ad8cc3c1b215cc21c722c0d13f07e7d0e">01052</a> <span class="keyword">static</span> <a class="code" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a>* <a class="code" href="classCEGUI_1_1Window.html#ad8cc3c1b215cc21c722c0d13f07e7d0e" title="return the Window that currently has inputs captured.">getCaptureWindow</a>(<span class="keywordtype">void</span>) {<span class="keywordflow">return</span> d_captureWindow;}
<a name="l01053"></a>01053
<a name="l01062"></a><a class="code" href="classCEGUI_1_1Window.html#a9cd457bc554fd0d5bba0a4ff7c91d24f">01062</a> <span class="keywordtype">bool</span> <a class="code" href="classCEGUI_1_1Window.html#a9cd457bc554fd0d5bba0a4ff7c91d24f" title="return true if this Window has input captured.">isCapturedByThis</a>(<span class="keywordtype">void</span>)<span class="keyword"> const </span>{<span class="keywordflow">return</span> getCaptureWindow() == <span class="keyword">this</span>;}
<a name="l01063"></a>01063
<a name="l01073"></a><a class="code" href="classCEGUI_1_1Window.html#aba57eeffbf7cb2be5e211d2b2887fccb">01073</a> <span class="keywordtype">bool</span> isCapturedByAncestor(<span class="keywordtype">void</span>)<span class="keyword"> const</span>
<a name="l01074"></a>01074 <span class="keyword"> </span>{<span class="keywordflow">return</span> isAncestor(getCaptureWindow());}
<a name="l01075"></a>01075
<a name="l01084"></a><a class="code" href="classCEGUI_1_1Window.html#afad1e09272f864c5658aed984d85d72f">01084</a> <span class="keywordtype">bool</span> <a class="code" href="classCEGUI_1_1Window.html#afad1e09272f864c5658aed984d85d72f" title="return true if a child window has captured inputs.">isCapturedByChild</a>(<span class="keywordtype">void</span>)<span class="keyword"> const </span>{<span class="keywordflow">return</span> isChild(getCaptureWindow());}
<a name="l01085"></a>01085
<a name="l01102"></a>01102 <span class="keyword">virtual</span> <span class="keywordtype">bool</span> isHit(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1Vector2.html" title="Class used as a two dimensional vector (aka a Point)">Vector2</a>& position,
<a name="l01103"></a>01103 <span class="keyword">const</span> <span class="keywordtype">bool</span> allow_disabled = <span class="keyword">false</span>) <span class="keyword">const</span>;
<a name="l01104"></a>01104
<a name="l01117"></a>01117 <a class="code" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a>* getChildAtPosition(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1Vector2.html" title="Class used as a two dimensional vector (aka a Point)">Vector2</a>& position) <span class="keyword">const</span>;
<a name="l01118"></a>01118
<a name="l01136"></a>01136 <a class="code" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a>* getTargetChildAtPosition(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1Vector2.html" title="Class used as a two dimensional vector (aka a Point)">Vector2</a>& position,
<a name="l01137"></a>01137 <span class="keyword">const</span> <span class="keywordtype">bool</span> allow_disabled = <span class="keyword">false</span>) <span class="keyword">const</span>;
<a name="l01138"></a>01138
<a name="l01147"></a><a class="code" href="classCEGUI_1_1Window.html#a580d1eed72675ce73bdec55128f1d3ae">01147</a> <a class="code" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a>* <a class="code" href="classCEGUI_1_1Window.html#a580d1eed72675ce73bdec55128f1d3ae" title="return the parent of this Window.">getParent</a>(<span class="keywordtype">void</span>)<span class="keyword"> const </span>{<span class="keywordflow">return</span> d_parent;}
<a name="l01148"></a>01148
<a name="l01163"></a>01163 <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1Image.html" title="Class that represents a single Image of an Imageset.">Image</a>* getMouseCursor(<span class="keywordtype">bool</span> useDefault = <span class="keyword">true</span>) <span class="keyword">const</span>;
<a name="l01164"></a>01164
<a name="l01172"></a><a class="code" href="classCEGUI_1_1Window.html#a80d7ed6778a9aeb1c50c0f06a848bb54">01172</a> <a class="code" href="classCEGUI_1_1Size.html" title="Class that holds the size (width & height) of something.">Size</a> <a class="code" href="classCEGUI_1_1Window.html#a80d7ed6778a9aeb1c50c0f06a848bb54" title="Return the window size in pixels.">getPixelSize</a>(<span class="keywordtype">void</span>)<span class="keyword"> const </span>{ <span class="keywordflow">return</span> d_pixelSize; }
<a name="l01173"></a>01173
<a name="l01185"></a><a class="code" href="classCEGUI_1_1Window.html#ad21e1553825dd33905898d48ea40d1cb">01185</a> <span class="keywordtype">void</span>* <a class="code" href="classCEGUI_1_1Window.html#ad21e1553825dd33905898d48ea40d1cb" title="Return the user data set for this Window.">getUserData</a>(<span class="keywordtype">void</span>)<span class="keyword"> const </span>{<span class="keywordflow">return</span> d_userData;}
<a name="l01186"></a>01186
<a name="l01201"></a><a class="code" href="classCEGUI_1_1Window.html#a2f2b3176034fc6a7b1c93ed90e95e9e5">01201</a> <span class="keywordtype">bool</span> <a class="code" href="classCEGUI_1_1Window.html#a2f2b3176034fc6a7b1c93ed90e95e9e5" title="Return whether this window is set to restore old input capture when it loses input capture...">restoresOldCapture</a>(<span class="keywordtype">void</span>)<span class="keyword"> const </span>{<span class="keywordflow">return</span> d_restoreOldCapture;}
<a name="l01202"></a>01202
<a name="l01222"></a>01222 <span class="keywordtype">bool</span> isZOrderingEnabled(<span class="keywordtype">void</span>) <span class="keyword">const</span>;
<a name="l01223"></a>01223
<a name="l01234"></a>01234 <span class="keywordtype">bool</span> wantsMultiClickEvents(<span class="keywordtype">void</span>) <span class="keyword">const</span>;
<a name="l01235"></a>01235
<a name="l01247"></a>01247 <span class="keywordtype">bool</span> isMouseAutoRepeatEnabled(<span class="keywordtype">void</span>) <span class="keyword">const</span>;
<a name="l01248"></a>01248
<a name="l01257"></a>01257 <span class="keywordtype">float</span> getAutoRepeatDelay(<span class="keywordtype">void</span>) <span class="keyword">const</span>;
<a name="l01258"></a>01258
<a name="l01268"></a>01268 <span class="keywordtype">float</span> getAutoRepeatRate(<span class="keywordtype">void</span>) <span class="keyword">const</span>;
<a name="l01269"></a>01269
<a name="l01279"></a>01279 <span class="keywordtype">bool</span> distributesCapturedInputs(<span class="keywordtype">void</span>) <span class="keyword">const</span>;
<a name="l01280"></a>01280
<a name="l01290"></a>01290 <span class="keywordtype">bool</span> isUsingDefaultTooltip(<span class="keywordtype">void</span>) <span class="keyword">const</span>;
<a name="l01291"></a>01291
<a name="l01301"></a>01301 <a class="code" href="classCEGUI_1_1Tooltip.html" title="Base class for Tooltip widgets.">Tooltip</a>* getTooltip(<span class="keywordtype">void</span>) <span class="keyword">const</span>;
<a name="l01302"></a>01302
<a name="l01311"></a>01311 <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> getTooltipType(<span class="keywordtype">void</span>) <span class="keyword">const</span>;
<a name="l01312"></a>01312
<a name="l01320"></a>01320 <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>& getTooltipText(<span class="keywordtype">void</span>) <span class="keyword">const</span>;
<a name="l01321"></a>01321
<a name="l01333"></a>01333 <span class="keywordtype">bool</span> inheritsTooltipText(<span class="keywordtype">void</span>) <span class="keyword">const</span>;
<a name="l01334"></a>01334
<a name="l01355"></a><a class="code" href="classCEGUI_1_1Window.html#a66f4ac26a1a2248a8b43060e48d89f91">01355</a> <span class="keywordtype">bool</span> <a class="code" href="classCEGUI_1_1Window.html#a66f4ac26a1a2248a8b43060e48d89f91" title="Return whether this window will rise to the top of the z-order when clicked with the left mouse butto...">isRiseOnClickEnabled</a>(<span class="keywordtype">void</span>)<span class="keyword"> const </span>{ <span class="keywordflow">return</span> d_riseOnClick; }
<a name="l01356"></a>01356
<a name="l01368"></a><a class="code" href="classCEGUI_1_1Window.html#a8263b4abf5857291313d8ad1efc866ea">01368</a> <span class="keywordtype">bool</span> testClassName(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>& class_name)<span class="keyword"> const</span>
<a name="l01369"></a>01369 <span class="keyword"> </span>{<span class="keywordflow">return</span> testClassName_impl(class_name);}
<a name="l01370"></a>01370
<a name="l01381"></a><a class="code" href="classCEGUI_1_1Window.html#a6c29388ddc664a365cb616aee4443f9d">01381</a> <a class="code" href="namespaceCEGUI.html#a6660132f5465c325fd55754ecba4832a" title="Enumerated type used when specifying vertical alignments.">VerticalAlignment</a> <a class="code" href="classCEGUI_1_1Window.html#a6c29388ddc664a365cb616aee4443f9d" title="Get the vertical alignment.">getVerticalAlignment</a>()<span class="keyword"> const </span>{<span class="keywordflow">return</span> d_vertAlign;}
<a name="l01382"></a>01382
<a name="l01393"></a><a class="code" href="classCEGUI_1_1Window.html#aaa1797b702b1e62dce3137d3738f2e21">01393</a> <a class="code" href="namespaceCEGUI.html#a15bee6ef970b3aab6e7355b278901195" title="Enumerated type used when specifying horizontal alignments.">HorizontalAlignment</a> <a class="code" href="classCEGUI_1_1Window.html#aaa1797b702b1e62dce3137d3738f2e21" title="Get the horizontal alignment.">getHorizontalAlignment</a>()<span class="keyword"> const </span>{<span class="keywordflow">return</span> d_horzAlign;}
<a name="l01394"></a>01394
<a name="l01402"></a>01402 <a class="code" href="classCEGUI_1_1GeometryBuffer.html" title="Abstract class defining the interface for objects that buffer geometry for later rendering.">GeometryBuffer</a>& getGeometryBuffer();
<a name="l01403"></a>01403
<a name="l01412"></a>01412 <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>& getLookNFeel() <span class="keyword">const</span>;
<a name="l01413"></a>01413
<a name="l01421"></a><a class="code" href="classCEGUI_1_1Window.html#a76c19839c5c7fb2f607e9b5df6784061">01421</a> <span class="keywordtype">bool</span> getModalState(<span class="keywordtype">void</span>)<span class="keyword"> const</span>
<a name="l01422"></a>01422 <span class="keyword"> </span>{<span class="keywordflow">return</span>(<a class="code" href="classCEGUI_1_1System.html#a8d059b018d621be0e4b98d069421426f" title="Return singleton System object.">System::getSingleton</a>().getModalTarget() == <span class="keyword">this</span>);}
<a name="l01423"></a>01423
<a name="l01437"></a>01437 <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>& getUserString(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>& name) <span class="keyword">const</span>;
<a name="l01438"></a>01438
<a name="l01450"></a>01450 <span class="keywordtype">bool</span> isUserStringDefined(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>& name) <span class="keyword">const</span>;
<a name="l01451"></a>01451
<a name="l01467"></a>01467 <a class="code" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a>* getActiveSibling();
<a name="l01468"></a>01468
<a name="l01478"></a>01478 <a class="code" href="classCEGUI_1_1Size.html" title="Class that holds the size (width & height) of something.">Size</a> getParentPixelSize(<span class="keywordtype">void</span>) <span class="keyword">const</span>;
<a name="l01479"></a>01479
<a name="l01489"></a>01489 <span class="keywordtype">float</span> getParentPixelWidth(<span class="keywordtype">void</span>) <span class="keyword">const</span>;
<a name="l01490"></a>01490
<a name="l01500"></a>01500 <span class="keywordtype">float</span> getParentPixelHeight(<span class="keywordtype">void</span>) <span class="keyword">const</span>;
<a name="l01501"></a>01501
<a name="l01512"></a><a class="code" href="classCEGUI_1_1Window.html#aa751bb63ab4f5949968ea6d951a4a998">01512</a> <span class="keywordtype">bool</span> <a class="code" href="classCEGUI_1_1Window.html#aa751bb63ab4f5949968ea6d951a4a998" title="Returns whether this window should ignore mouse event and pass them through to and other windows behi...">isMousePassThroughEnabled</a>(<span class="keywordtype">void</span>)<span class="keyword"> const </span>{<span class="keywordflow">return</span> d_mousePassThroughEnabled;}
<a name="l01513"></a>01513
<a name="l01519"></a><a class="code" href="classCEGUI_1_1Window.html#ad485f5b054063273ac8614e1f135ae38">01519</a> <span class="keywordtype">bool</span> <a class="code" href="classCEGUI_1_1Window.html#ad485f5b054063273ac8614e1f135ae38" title="Returns whether this window is an auto-child window. All auto-child windows have "__auto_" in their n...">isAutoWindow</a>(<span class="keywordtype">void</span>)<span class="keyword"> const </span>{<span class="keywordflow">return</span> d_autoWindow;}
<a name="l01520"></a>01520
<a name="l01525"></a><a class="code" href="classCEGUI_1_1Window.html#af66647fdbacf19ec5f8b018802dcdef6">01525</a> <span class="keywordtype">bool</span> <a class="code" href="classCEGUI_1_1Window.html#af66647fdbacf19ec5f8b018802dcdef6" title="Returns whether this window is allowed to write XML.">isWritingXMLAllowed</a>(<span class="keywordtype">void</span>)<span class="keyword"> const </span>{<span class="keywordflow">return</span> d_allowWriteXML;}
<a name="l01526"></a>01526
<a name="l01551"></a>01551 <a class="code" href="classCEGUI_1_1ConstBaseIterator.html" title="Base class constant iterator used to offer iteration over various collections within the system...">EventSet::Iterator</a> getEventIterator() <span class="keyword">const</span>;
<a name="l01552"></a>01552
<a name="l01573"></a>01573 <a class="code" href="classCEGUI_1_1ConstBaseIterator.html" title="Base class constant iterator used to offer iteration over various collections within the system...">PropertySet::Iterator</a> getPropertyIterator() <span class="keyword">const</span>;
<a name="l01574"></a>01574
<a name="l01584"></a>01584 <span class="keywordtype">bool</span> isDragDropTarget() <span class="keyword">const</span>;
<a name="l01585"></a>01585
<a name="l01591"></a>01591 <span class="keywordtype">void</span> getRenderingContext(<a class="code" href="structCEGUI_1_1RenderingContext.html" title="struct that holds some context relating to a RenderingSurface object.">RenderingContext</a>& ctx) <span class="keyword">const</span>;
<a name="l01592"></a>01592
<a name="l01594"></a>01594 <span class="keyword">virtual</span> <span class="keywordtype">void</span> getRenderingContext_impl(<a class="code" href="structCEGUI_1_1RenderingContext.html" title="struct that holds some context relating to a RenderingSurface object.">RenderingContext</a>& ctx) <span class="keyword">const</span>;
<a name="l01595"></a>01595
<a name="l01601"></a>01601 <a class="code" href="classCEGUI_1_1RenderingSurface.html" title="Class that represents a surface that can have geometry based imagery drawn to it.">RenderingSurface</a>* getRenderingSurface() <span class="keyword">const</span>;
<a name="l01602"></a>01602
<a name="l01608"></a>01608 <a class="code" href="classCEGUI_1_1RenderingSurface.html" title="Class that represents a surface that can have geometry based imagery drawn to it.">RenderingSurface</a>& getTargetRenderingSurface() <span class="keyword">const</span>;
<a name="l01609"></a>01609
<a name="l01621"></a>01621 <span class="keywordtype">bool</span> isUsingAutoRenderingSurface() <span class="keyword">const</span>;
<a name="l01622"></a>01622
<a name="l01633"></a>01633 <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a>* getRootWindow() <span class="keyword">const</span>;
<a name="l01634"></a>01634 <a class="code" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a>* getRootWindow();
<a name="l01635"></a>01635
<a name="l01637"></a>01637 <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1Vector3.html" title="Class used as a three dimensional vector.">Vector3</a>& getRotation() <span class="keyword">const</span>;
<a name="l01638"></a>01638
<a name="l01653"></a>01653 <span class="keywordtype">bool</span> isNonClientWindow() <span class="keyword">const</span>;
<a name="l01654"></a>01654
<a name="l01665"></a>01665 <span class="keywordtype">void</span> rename(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>& new_name);
<a name="l01666"></a>01666
<a name="l01678"></a><a class="code" href="classCEGUI_1_1Window.html#a15d1b3c2be063277773eb28e33a2ee84">01678</a> <span class="keyword">virtual</span> <span class="keywordtype">void</span> <a class="code" href="classCEGUI_1_1Window.html#a15d1b3c2be063277773eb28e33a2ee84" title="Initialises the Window based object ready for use.">initialiseComponents</a>(<span class="keywordtype">void</span>) {}
<a name="l01679"></a>01679
<a name="l01693"></a>01693 <span class="keywordtype">void</span> setDestroyedByParent(<span class="keywordtype">bool</span> setting);
<a name="l01694"></a>01694
<a name="l01707"></a>01707 <span class="keywordtype">void</span> setAlwaysOnTop(<span class="keywordtype">bool</span> setting);
<a name="l01708"></a>01708
<a name="l01721"></a>01721 <span class="keywordtype">void</span> setEnabled(<span class="keywordtype">bool</span> setting);
<a name="l01722"></a>01722
<a name="l01730"></a><a class="code" href="classCEGUI_1_1Window.html#aa565b1a80e230ce1f05aaf5014e2134b">01730</a> <span class="keywordtype">void</span> <a class="code" href="classCEGUI_1_1Window.html#aa565b1a80e230ce1f05aaf5014e2134b" title="enable the Window to allow interaction.">enable</a>(<span class="keywordtype">void</span>) {setEnabled(<span class="keyword">true</span>);}
<a name="l01731"></a>01731
<a name="l01739"></a><a class="code" href="classCEGUI_1_1Window.html#a83119d58a28b9ef434bb19ef961ec5f2">01739</a> <span class="keywordtype">void</span> <a class="code" href="classCEGUI_1_1Window.html#a83119d58a28b9ef434bb19ef961ec5f2" title="disable the Window to prevent interaction.">disable</a>(<span class="keywordtype">void</span>) {setEnabled(<span class="keyword">false</span>);}
<a name="l01740"></a>01740
<a name="l01758"></a>01758 <span class="keywordtype">void</span> setVisible(<span class="keywordtype">bool</span> setting);
<a name="l01759"></a>01759
<a name="l01772"></a><a class="code" href="classCEGUI_1_1Window.html#a6c83c6bfff4ea9d1d5940845ffef99c0">01772</a> <span class="keywordtype">void</span> <a class="code" href="classCEGUI_1_1Window.html#a6c83c6bfff4ea9d1d5940845ffef99c0" title="show the Window.">show</a>(<span class="keywordtype">void</span>) {setVisible(<span class="keyword">true</span>);}
<a name="l01773"></a>01773
<a name="l01784"></a><a class="code" href="classCEGUI_1_1Window.html#a85d4ee4139c8497f999efaf38cb1457c">01784</a> <span class="keywordtype">void</span> <a class="code" href="classCEGUI_1_1Window.html#a85d4ee4139c8497f999efaf38cb1457c" title="hide the Window.">hide</a>(<span class="keywordtype">void</span>) {setVisible(<span class="keyword">false</span>);}
<a name="l01785"></a>01785
<a name="l01794"></a>01794 <span class="keywordtype">void</span> activate(<span class="keywordtype">void</span>);
<a name="l01795"></a>01795
<a name="l01805"></a>01805 <span class="keywordtype">void</span> deactivate(<span class="keywordtype">void</span>);
<a name="l01806"></a>01806
<a name="l01819"></a>01819 <span class="keywordtype">void</span> setClippedByParent(<span class="keywordtype">bool</span> setting);
<a name="l01820"></a>01820
<a name="l01832"></a>01832 <span class="keywordtype">void</span> setID(uint ID);
<a name="l01833"></a>01833
<a name="l01844"></a>01844 <span class="keywordtype">void</span> setText(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>& text);
<a name="l01845"></a>01845
<a name="l01859"></a>01859 <span class="keywordtype">void</span> insertText(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>& text, <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html#a4fd79b6226fe39b69c6a6a624d2d2728" title="Unsigned type used for size values and indices.">String::size_type</a> position);
<a name="l01860"></a>01860
<a name="l01870"></a>01870 <span class="keywordtype">void</span> appendText(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>& text);
<a name="l01871"></a>01871
<a name="l01883"></a>01883 <span class="keywordtype">void</span> setFont(<a class="code" href="classCEGUI_1_1Font.html" title="Class that encapsulates a typeface.">Font</a>* font);
<a name="l01884"></a>01884
<a name="l01899"></a>01899 <span class="keywordtype">void</span> setFont(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>& name);
<a name="l01900"></a>01900
<a name="l01919"></a>01919 <span class="keywordtype">void</span> addChildWindow(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>& name);
<a name="l01920"></a>01920
<a name="l01937"></a>01937 <span class="keywordtype">void</span> addChildWindow(<a class="code" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a>* window);
<a name="l01938"></a>01938
<a name="l01950"></a>01950 <span class="keywordtype">void</span> removeChildWindow(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>& name);
<a name="l01951"></a>01951
<a name="l01963"></a>01963 <span class="keywordtype">void</span> removeChildWindow(<a class="code" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a>* window);
<a name="l01964"></a>01964
<a name="l01978"></a>01978 <span class="keywordtype">void</span> removeChildWindow(uint ID);
<a name="l01979"></a>01979
<a name="l01993"></a>01993 <span class="keywordtype">void</span> moveToFront();
<a name="l01994"></a>01994
<a name="l02009"></a>02009 <span class="keywordtype">void</span> moveToBack();
<a name="l02010"></a>02010
<a name="l02024"></a>02024 <span class="keywordtype">void</span> moveInFront(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a>* <span class="keyword">const</span> window);
<a name="l02025"></a>02025
<a name="l02040"></a>02040 <span class="keywordtype">void</span> moveBehind(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a>* <span class="keyword">const</span> window);
<a name="l02041"></a>02041
<a name="l02051"></a>02051 <span class="keywordtype">bool</span> captureInput(<span class="keywordtype">void</span>);
<a name="l02052"></a>02052
<a name="l02061"></a>02061 <span class="keywordtype">void</span> releaseInput(<span class="keywordtype">void</span>);
<a name="l02062"></a>02062
<a name="l02081"></a>02081 <span class="keywordtype">void</span> setRestoreCapture(<span class="keywordtype">bool</span> setting);
<a name="l02082"></a>02082
<a name="l02103"></a>02103 <span class="keywordtype">void</span> setAlpha(<span class="keywordtype">float</span> alpha);
<a name="l02104"></a>02104
<a name="l02116"></a>02116 <span class="keywordtype">void</span> setInheritsAlpha(<span class="keywordtype">bool</span> setting);
<a name="l02117"></a>02117
<a name="l02129"></a>02129 <span class="keywordtype">void</span> invalidate(<span class="keywordtype">void</span>);
<a name="l02130"></a>02130
<a name="l02146"></a>02146 <span class="keywordtype">void</span> invalidate(<span class="keyword">const</span> <span class="keywordtype">bool</span> recursive);
<a name="l02147"></a>02147
<a name="l02159"></a>02159 <span class="keywordtype">void</span> setMouseCursor(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1Image.html" title="Class that represents a single Image of an Imageset.">Image</a>* image);
<a name="l02160"></a>02160
<a name="l02171"></a>02171 <span class="keywordtype">void</span> setMouseCursor(<a class="code" href="namespaceCEGUI.html#abceac8add620a21fa3ce491a51b7ecbb" title="Enumeration of special values used for mouse cursor settings in Window objects.">MouseCursorImage</a> image);
<a name="l02172"></a>02172
<a name="l02192"></a>02192 <span class="keywordtype">void</span> setMouseCursor(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>& imageset, <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>& image_name);
<a name="l02193"></a>02193
<a name="l02208"></a><a class="code" href="classCEGUI_1_1Window.html#a30f85c67050bc719d3cef3c3f85a7bcc">02208</a> <span class="keywordtype">void</span> <a class="code" href="classCEGUI_1_1Window.html#a30f85c67050bc719d3cef3c3f85a7bcc" title="Set the user data set for this Window.">setUserData</a>(<span class="keywordtype">void</span>* user_data) {d_userData = user_data;}
<a name="l02209"></a>02209
<a name="l02232"></a>02232 <span class="keywordtype">void</span> setZOrderingEnabled(<span class="keywordtype">bool</span> setting);
<a name="l02233"></a>02233
<a name="l02247"></a>02247 <span class="keywordtype">void</span> setWantsMultiClickEvents(<span class="keywordtype">bool</span> setting);
<a name="l02248"></a>02248
<a name="l02261"></a>02261 <span class="keywordtype">void</span> setMouseAutoRepeatEnabled(<span class="keywordtype">bool</span> setting);
<a name="l02262"></a>02262
<a name="l02274"></a>02274 <span class="keywordtype">void</span> setAutoRepeatDelay(<span class="keywordtype">float</span> delay);
<a name="l02275"></a>02275
<a name="l02288"></a>02288 <span class="keywordtype">void</span> setAutoRepeatRate(<span class="keywordtype">float</span> rate);
<a name="l02289"></a>02289
<a name="l02299"></a>02299 <span class="keywordtype">void</span> setDistributesCapturedInputs(<span class="keywordtype">bool</span> setting);
<a name="l02300"></a>02300
<a name="l02306"></a>02306 <span class="keywordtype">void</span> notifyDragDropItemEnters(<a class="code" href="classCEGUI_1_1DragContainer.html" title="Generic drag & drop enabled window class.">DragContainer</a>* item);
<a name="l02307"></a>02307
<a name="l02313"></a>02313 <span class="keywordtype">void</span> notifyDragDropItemLeaves(<a class="code" href="classCEGUI_1_1DragContainer.html" title="Generic drag & drop enabled window class.">DragContainer</a>* item);
<a name="l02314"></a>02314
<a name="l02320"></a>02320 <span class="keywordtype">void</span> notifyDragDropItemDropped(<a class="code" href="classCEGUI_1_1DragContainer.html" title="Generic drag & drop enabled window class.">DragContainer</a>* item);
<a name="l02321"></a>02321
<a name="l02335"></a>02335 <span class="keyword">virtual</span> <span class="keywordtype">void</span> destroy(<span class="keywordtype">void</span>);
<a name="l02336"></a>02336
<a name="l02352"></a>02352 <span class="keywordtype">void</span> setTooltip(<a class="code" href="classCEGUI_1_1Tooltip.html" title="Base class for Tooltip widgets.">Tooltip</a>* tooltip);
<a name="l02353"></a>02353
<a name="l02372"></a>02372 <span class="keywordtype">void</span> setTooltipType(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>& tooltipType);
<a name="l02373"></a>02373
<a name="l02385"></a>02385 <span class="keywordtype">void</span> setTooltipText(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>& tip);
<a name="l02386"></a>02386
<a name="l02401"></a>02401 <span class="keywordtype">void</span> setInheritsTooltipText(<span class="keywordtype">bool</span> setting);
<a name="l02402"></a>02402
<a name="l02426"></a><a class="code" href="classCEGUI_1_1Window.html#a8635aa24a09933785f8b3ac770bd1e50">02426</a> <span class="keywordtype">void</span> <a class="code" href="classCEGUI_1_1Window.html#a8635aa24a09933785f8b3ac770bd1e50" title="Set whether this window will rise to the top of the z-order when clicked with the left mouse button...">setRiseOnClickEnabled</a>(<span class="keywordtype">bool</span> setting) { d_riseOnClick = setting; }
<a name="l02427"></a>02427
<a name="l02441"></a>02441 <span class="keywordtype">void</span> setVerticalAlignment(<span class="keyword">const</span> <a class="code" href="namespaceCEGUI.html#a6660132f5465c325fd55754ecba4832a" title="Enumerated type used when specifying vertical alignments.">VerticalAlignment</a> alignment);
<a name="l02442"></a>02442
<a name="l02456"></a>02456 <span class="keywordtype">void</span> setHorizontalAlignment(<span class="keyword">const</span> <a class="code" href="namespaceCEGUI.html#a15bee6ef970b3aab6e7355b278901195" title="Enumerated type used when specifying horizontal alignments.">HorizontalAlignment</a> alignment);
<a name="l02457"></a>02457
<a name="l02474"></a>02474 <span class="keyword">virtual</span> <span class="keywordtype">void</span> setLookNFeel(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>& look);
<a name="l02475"></a>02475
<a name="l02489"></a>02489 <span class="keywordtype">void</span> setModalState(<span class="keywordtype">bool</span> state);
<a name="l02490"></a>02490
<a name="l02501"></a>02501 <span class="keyword">virtual</span> <span class="keywordtype">void</span> performChildWindowLayout();
<a name="l02502"></a>02502
<a name="l02516"></a>02516 <span class="keywordtype">void</span> setUserString(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>& name, <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>& value);
<a name="l02517"></a>02517
<a name="l02544"></a>02544 <span class="keywordtype">void</span> setArea(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1UDim.html" title="Class representing a unified dimension; that is a dimension that has both a relative 'scale' portion ...">UDim</a>& xpos, <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1UDim.html" title="Class representing a unified dimension; that is a dimension that has both a relative 'scale' portion ...">UDim</a>& ypos, <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1UDim.html" title="Class representing a unified dimension; that is a dimension that has both a relative 'scale' portion ...">UDim</a>& width, <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1UDim.html" title="Class representing a unified dimension; that is a dimension that has both a relative 'scale' portion ...">UDim</a>& height);
<a name="l02545"></a>02545
<a name="l02567"></a>02567 <span class="keywordtype">void</span> setArea(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1UVector2.html" title="Two dimensional vector class built using unified dimensions (UDims). The UVector2 class is used for r...">UVector2</a>& pos, <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1UVector2.html" title="Two dimensional vector class built using unified dimensions (UDims). The UVector2 class is used for r...">UVector2</a>& size);
<a name="l02568"></a>02568
<a name="l02586"></a>02586 <span class="keywordtype">void</span> setArea(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1URect.html" title="Area rectangle class built using unified dimensions (UDims).">URect</a>& area);
<a name="l02587"></a>02587
<a name="l02606"></a>02606 <span class="keywordtype">void</span> setPosition(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1UVector2.html" title="Two dimensional vector class built using unified dimensions (UDims). The UVector2 class is used for r...">UVector2</a>& pos);
<a name="l02607"></a>02607
<a name="l02625"></a>02625 <span class="keywordtype">void</span> setXPosition(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1UDim.html" title="Class representing a unified dimension; that is a dimension that has both a relative 'scale' portion ...">UDim</a>& x);
<a name="l02626"></a>02626
<a name="l02644"></a>02644 <span class="keywordtype">void</span> setYPosition(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1UDim.html" title="Class representing a unified dimension; that is a dimension that has both a relative 'scale' portion ...">UDim</a>& y);
<a name="l02645"></a>02645
<a name="l02660"></a>02660 <span class="keywordtype">void</span> setSize(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1UVector2.html" title="Two dimensional vector class built using unified dimensions (UDims). The UVector2 class is used for r...">UVector2</a>& size);
<a name="l02661"></a>02661
<a name="l02676"></a>02676 <span class="keywordtype">void</span> setWidth(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1UDim.html" title="Class representing a unified dimension; that is a dimension that has both a relative 'scale' portion ...">UDim</a>& width);
<a name="l02677"></a>02677
<a name="l02692"></a>02692 <span class="keywordtype">void</span> setHeight(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1UDim.html" title="Class representing a unified dimension; that is a dimension that has both a relative 'scale' portion ...">UDim</a>& height);
<a name="l02693"></a>02693
<a name="l02710"></a>02710 <span class="keywordtype">void</span> setMaxSize(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1UVector2.html" title="Two dimensional vector class built using unified dimensions (UDims). The UVector2 class is used for r...">UVector2</a>& size);
<a name="l02711"></a>02711
<a name="l02728"></a>02728 <span class="keywordtype">void</span> setMinSize(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1UVector2.html" title="Two dimensional vector class built using unified dimensions (UDims). The UVector2 class is used for r...">UVector2</a>& size);
<a name="l02729"></a>02729
<a name="l02747"></a>02747 <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1URect.html" title="Area rectangle class built using unified dimensions (UDims).">URect</a>& getArea() <span class="keyword">const</span>;
<a name="l02748"></a>02748
<a name="l02766"></a>02766 <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1UVector2.html" title="Two dimensional vector class built using unified dimensions (UDims). The UVector2 class is used for r...">UVector2</a>& getPosition() <span class="keyword">const</span>;
<a name="l02767"></a>02767
<a name="l02785"></a>02785 <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1UDim.html" title="Class representing a unified dimension; that is a dimension that has both a relative 'scale' portion ...">UDim</a>& getXPosition() <span class="keyword">const</span>;
<a name="l02786"></a>02786
<a name="l02804"></a>02804 <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1UDim.html" title="Class representing a unified dimension; that is a dimension that has both a relative 'scale' portion ...">UDim</a>& getYPosition() <span class="keyword">const</span>;
<a name="l02805"></a>02805
<a name="l02820"></a>02820 <a class="code" href="classCEGUI_1_1UVector2.html" title="Two dimensional vector class built using unified dimensions (UDims). The UVector2 class is used for r...">UVector2</a> getSize() <span class="keyword">const</span>;
<a name="l02821"></a>02821
<a name="l02836"></a>02836 <a class="code" href="classCEGUI_1_1UDim.html" title="Class representing a unified dimension; that is a dimension that has both a relative 'scale' portion ...">UDim</a> getWidth() <span class="keyword">const</span>;
<a name="l02837"></a>02837
<a name="l02852"></a>02852 <a class="code" href="classCEGUI_1_1UDim.html" title="Class representing a unified dimension; that is a dimension that has both a relative 'scale' portion ...">UDim</a> getHeight() <span class="keyword">const</span>;
<a name="l02853"></a>02853
<a name="l02870"></a>02870 <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1UVector2.html" title="Two dimensional vector class built using unified dimensions (UDims). The UVector2 class is used for r...">UVector2</a>& getMaxSize() <span class="keyword">const</span>;
<a name="l02871"></a>02871
<a name="l02888"></a>02888 <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1UVector2.html" title="Two dimensional vector class built using unified dimensions (UDims). The UVector2 class is used for r...">UVector2</a>& getMinSize() <span class="keyword">const</span>;
<a name="l02889"></a>02889
<a name="l02898"></a>02898 <span class="keywordtype">void</span> render();
<a name="l02899"></a>02899
<a name="l02918"></a>02918 <span class="keyword">virtual</span> <span class="keywordtype">void</span> update(<span class="keywordtype">float</span> elapsed);
<a name="l02919"></a>02919
<a name="l02930"></a>02930 <span class="keyword">virtual</span> <span class="keywordtype">void</span> writeXMLToStream(<a class="code" href="classCEGUI_1_1XMLSerializer.html" title="Class used to create XML Document.">XMLSerializer</a>& xml_stream) <span class="keyword">const</span>;
<a name="l02931"></a>02931
<a name="l02940"></a><a class="code" href="classCEGUI_1_1Window.html#aaa4bce533bdfc0f5a398267e6ebbe1ab">02940</a> <span class="keyword">virtual</span> <span class="keywordtype">void</span> <a class="code" href="classCEGUI_1_1Window.html#aaa4bce533bdfc0f5a398267e6ebbe1ab" title="Sets the internal 'initialising' flag to true. This can be use to optimize initialisation of some wid...">beginInitialisation</a>(<span class="keywordtype">void</span>) {d_initialising = <span class="keyword">true</span>;}
<a name="l02941"></a>02941
<a name="l02949"></a><a class="code" href="classCEGUI_1_1Window.html#a3175f63801fadfc905f78a918420dc22">02949</a> <span class="keyword">virtual</span> <span class="keywordtype">void</span> <a class="code" href="classCEGUI_1_1Window.html#a3175f63801fadfc905f78a918420dc22" title="Sets the internal 'initialising' flag to false. This is called automatically by the layout XML handle...">endInitialisation</a>(<span class="keywordtype">void</span>) {d_initialising = <span class="keyword">false</span>;}
<a name="l02950"></a>02950
<a name="l02961"></a><a class="code" href="classCEGUI_1_1Window.html#a1851f8c98ae64a4cabe7dadd68e912b1">02961</a> <span class="keywordtype">void</span> <a class="code" href="classCEGUI_1_1Window.html#a1851f8c98ae64a4cabe7dadd68e912b1" title="Sets whether this window should ignore mouse events and pass them through to any windows behind it...">setMousePassThroughEnabled</a>(<span class="keywordtype">bool</span> setting) {d_mousePassThroughEnabled = setting;}
<a name="l02962"></a>02962
<a name="l02974"></a>02974 <span class="keywordtype">void</span> setWindowRenderer(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>& name);
<a name="l02975"></a>02975
<a name="l02984"></a>02984 <a class="code" href="classCEGUI_1_1WindowRenderer.html" title="Base-class for the assignable WindowRenderer object.">WindowRenderer</a>* getWindowRenderer(<span class="keywordtype">void</span>) <span class="keyword">const</span>;
<a name="l02985"></a>02985
<a name="l02995"></a>02995 <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> getWindowRendererName(<span class="keywordtype">void</span>) <span class="keyword">const</span>;
<a name="l02996"></a>02996
<a name="l03001"></a><a class="code" href="classCEGUI_1_1Window.html#a1c6a6bf1f342e835e22b9f9633058c5f">03001</a> <span class="keywordtype">void</span> <a class="code" href="classCEGUI_1_1Window.html#a1c6a6bf1f342e835e22b9f9633058c5f" title="Sets whether this window is allowed to write XML.">setWritingXMLAllowed</a>(<span class="keywordtype">bool</span> allow) {d_allowWriteXML = allow;}
<a name="l03002"></a>03002
<a name="l03013"></a>03013 <span class="keywordtype">void</span> notifyScreenAreaChanged(<span class="keywordtype">bool</span> recursive = <span class="keyword">true</span>);
<a name="l03014"></a>03014
<a name="l03026"></a>03026 <span class="keywordtype">void</span> setFalagardType(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>& type, <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>& rendererType = <span class="stringliteral">""</span>);
<a name="l03027"></a>03027
<a name="l03037"></a>03037 <span class="keywordtype">void</span> setDragDropTarget(<span class="keywordtype">bool</span> setting);
<a name="l03038"></a>03038
<a name="l03059"></a>03059 <span class="keywordtype">void</span> setRenderingSurface(<a class="code" href="classCEGUI_1_1RenderingSurface.html" title="Class that represents a surface that can have geometry based imagery drawn to it.">RenderingSurface</a>* surface);
<a name="l03060"></a>03060
<a name="l03067"></a>03067 <span class="keywordtype">void</span> invalidateRenderingSurface();
<a name="l03068"></a>03068
<a name="l03110"></a>03110 <span class="keywordtype">void</span> setUsingAutoRenderingSurface(<span class="keywordtype">bool</span> setting);
<a name="l03111"></a>03111
<a name="l03113"></a>03113 <span class="keywordtype">void</span> setRotation(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1Vector3.html" title="Class used as a three dimensional vector.">Vector3</a>& rotation);
<a name="l03114"></a>03114
<a name="l03129"></a>03129 <span class="keywordtype">void</span> setNonClientWindow(<span class="keyword">const</span> <span class="keywordtype">bool</span> setting);
<a name="l03130"></a>03130
<a name="l03132"></a>03132 <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1RenderedString.html" title="Class representing a rendered string of entities.">RenderedString</a>& getRenderedString() <span class="keyword">const</span>;
<a name="l03134"></a>03134 <a class="code" href="classCEGUI_1_1RenderedStringParser.html" title="Specifies interface for classes that parse text into RenderedString objects.">RenderedStringParser</a>* getCustomRenderedStringParser() <span class="keyword">const</span>;
<a name="l03136"></a>03136 <span class="keywordtype">void</span> setCustomRenderedStringParser(<a class="code" href="classCEGUI_1_1RenderedStringParser.html" title="Specifies interface for classes that parse text into RenderedString objects.">RenderedStringParser</a>* parser);
<a name="l03138"></a>03138 <span class="keyword">virtual</span> <a class="code" href="classCEGUI_1_1RenderedStringParser.html" title="Specifies interface for classes that parse text into RenderedString objects.">RenderedStringParser</a>& getRenderedStringParser() <span class="keyword">const</span>;
<a name="l03140"></a>03140 <span class="keywordtype">bool</span> isTextParsingEnabled() <span class="keyword">const</span>;
<a name="l03142"></a>03142 <span class="keywordtype">void</span> setTextParsingEnabled(<span class="keyword">const</span> <span class="keywordtype">bool</span> setting);
<a name="l03143"></a>03143
<a name="l03145"></a>03145 <span class="keyword">virtual</span> <span class="keywordtype">void</span> setMargin(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1UBox.html" title="Class encapsulating the 'Unified Box' - this is usually used for margin.">UBox</a>& margin);
<a name="l03147"></a>03147 <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1UBox.html" title="Class encapsulating the 'Unified Box' - this is usually used for margin.">UBox</a>& getMargin() <span class="keyword">const</span>;
<a name="l03148"></a>03148
<a name="l03150"></a>03150 <a class="code" href="classCEGUI_1_1Vector2.html" title="Class used as a two dimensional vector (aka a Point)">Vector2</a> getUnprojectedPosition(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1Vector2.html" title="Class used as a two dimensional vector (aka a Point)">Vector2</a>& pos) <span class="keyword">const</span>;
<a name="l03151"></a>03151
<a name="l03153"></a><a class="code" href="classCEGUI_1_1Window.html#a0c380a7e79586ed05db7cb4c77ba1d84">03153</a> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1BiDiVisualMapping.html" title="Abstract class to wrap a BiDi visual mapping of a text string.">BiDiVisualMapping</a>* getBiDiVisualMapping()<span class="keyword"> const</span>
<a name="l03154"></a>03154 <span class="keyword"> </span>{<span class="keywordflow">return</span> d_bidiVisualMapping;}
<a name="l03155"></a>03155
<a name="l03157"></a>03157 <span class="keywordtype">void</span> banPropertyFromXML(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>& property_name);
<a name="l03158"></a>03158
<a name="l03160"></a>03160 <span class="keywordtype">void</span> unbanPropertyFromXML(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>& property_name);
<a name="l03161"></a>03161
<a name="l03163"></a>03163 <span class="keywordtype">bool</span> isPropertyBannedFromXML(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>& property_name) <span class="keyword">const</span>;
<a name="l03164"></a>03164
<a name="l03166"></a>03166 <span class="keywordtype">void</span> banPropertyFromXML(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1Property.html" title="An abstract class that defines the interface to access object properties by name.">Property</a>* property);
<a name="l03167"></a>03167
<a name="l03169"></a>03169 <span class="keywordtype">void</span> unbanPropertyFromXML(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1Property.html" title="An abstract class that defines the interface to access object properties by name.">Property</a>* property);
<a name="l03170"></a>03170
<a name="l03172"></a>03172 <span class="keywordtype">bool</span> isPropertyBannedFromXML(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1Property.html" title="An abstract class that defines the interface to access object properties by name.">Property</a>* property) <span class="keyword">const</span>;
<a name="l03173"></a>03173
<a name="l03191"></a>03191 <span class="keywordtype">void</span> setUpdateMode(<span class="keyword">const</span> <a class="code" href="namespaceCEGUI.html#a506db22c86ed2c4ce779c9955bf755cd" title="Enumerated type used for specifying Window::update mode to be used. Note that the setting specified w...">WindowUpdateMode</a> mode);
<a name="l03192"></a>03192
<a name="l03210"></a>03210 <a class="code" href="namespaceCEGUI.html#a506db22c86ed2c4ce779c9955bf755cd" title="Enumerated type used for specifying Window::update mode to be used. Note that the setting specified w...">WindowUpdateMode</a> getUpdateMode() <span class="keyword">const</span>;
<a name="l03211"></a>03211
<a name="l03222"></a>03222 <span class="keywordtype">void</span> setMouseInputPropagationEnabled(<span class="keyword">const</span> <span class="keywordtype">bool</span> enabled);
<a name="l03223"></a>03223
<a name="l03234"></a>03234 <span class="keywordtype">bool</span> isMouseInputPropagationEnabled() <span class="keyword">const</span>;
<a name="l03235"></a>03235
<a name="l03250"></a>03250 <a class="code" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a>* clone(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>& newName, <span class="keyword">const</span> <span class="keywordtype">bool</span> deepCopy = <span class="keyword">true</span>) <span class="keyword">const</span>;
<a name="l03251"></a>03251
<a name="l03253"></a>03253 <span class="keyword">virtual</span> <span class="keywordtype">void</span> clonePropertiesTo(<a class="code" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a>& target) <span class="keyword">const</span>;
<a name="l03255"></a>03255 <span class="keyword">virtual</span> <span class="keywordtype">void</span> cloneChildWidgetsTo(<a class="code" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a>& target) <span class="keyword">const</span>;
<a name="l03256"></a>03256
<a name="l03269"></a>03269 <span class="keywordtype">size_t</span> getZIndex() <span class="keyword">const</span>;
<a name="l03270"></a>03270
<a name="l03280"></a>03280 <span class="keywordtype">bool</span> isInFront(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a>& wnd) <span class="keyword">const</span>;
<a name="l03281"></a>03281
<a name="l03291"></a>03291 <span class="keywordtype">bool</span> isBehind(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a>& wnd) <span class="keyword">const</span>;
<a name="l03292"></a>03292
<a name="l03293"></a>03293 <span class="keyword">protected</span>:
<a name="l03294"></a>03294 <span class="comment">// friend classes for construction / initialisation purposes (for now)</span>
<a name="l03295"></a>03295 <span class="keyword">friend</span> <span class="keyword">class </span><a class="code" href="classCEGUI_1_1System.html" title="The System class is the CEGUI class that provides access to all other elements in this system...">System</a>;
<a name="l03296"></a>03296 <span class="keyword">friend</span> <span class="keyword">class </span><a class="code" href="classCEGUI_1_1WindowManager.html" title="The WindowManager class describes an object that manages creation and lifetime of Window objects...">WindowManager</a>;
<a name="l03297"></a>03297
<a name="l03298"></a>03298 <span class="comment">/*************************************************************************</span>
<a name="l03299"></a>03299 <span class="comment"> Event trigger methods</span>
<a name="l03300"></a>03300 <span class="comment"> *************************************************************************/</span>
<a name="l03310"></a>03310 <span class="keyword">virtual</span> <span class="keywordtype">void</span> onSized(<a class="code" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a>& e);
<a name="l03311"></a>03311
<a name="l03321"></a>03321 <span class="keyword">virtual</span> <span class="keywordtype">void</span> onMoved(<a class="code" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a>& e);
<a name="l03322"></a>03322
<a name="l03332"></a>03332 <span class="keyword">virtual</span> <span class="keywordtype">void</span> onTextChanged(<a class="code" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a>& e);
<a name="l03333"></a>03333
<a name="l03343"></a>03343 <span class="keyword">virtual</span> <span class="keywordtype">void</span> onFontChanged(<a class="code" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a>& e);
<a name="l03344"></a>03344
<a name="l03354"></a>03354 <span class="keyword">virtual</span> <span class="keywordtype">void</span> onAlphaChanged(<a class="code" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a>& e);
<a name="l03355"></a>03355
<a name="l03365"></a>03365 <span class="keyword">virtual</span> <span class="keywordtype">void</span> onIDChanged(<a class="code" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a>& e);
<a name="l03366"></a>03366
<a name="l03376"></a>03376 <span class="keyword">virtual</span> <span class="keywordtype">void</span> onShown(<a class="code" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a>& e);
<a name="l03377"></a>03377
<a name="l03387"></a>03387 <span class="keyword">virtual</span> <span class="keywordtype">void</span> onHidden(<a class="code" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a>& e);
<a name="l03388"></a>03388
<a name="l03398"></a>03398 <span class="keyword">virtual</span> <span class="keywordtype">void</span> onEnabled(<a class="code" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a>& e);
<a name="l03399"></a>03399
<a name="l03409"></a>03409 <span class="keyword">virtual</span> <span class="keywordtype">void</span> onDisabled(<a class="code" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a>& e);
<a name="l03410"></a>03410
<a name="l03421"></a>03421 <span class="keyword">virtual</span> <span class="keywordtype">void</span> onClippingChanged(<a class="code" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a>& e);
<a name="l03422"></a>03422
<a name="l03433"></a>03433 <span class="keyword">virtual</span> <span class="keywordtype">void</span> onParentDestroyChanged(<a class="code" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a>& e);
<a name="l03434"></a>03434
<a name="l03445"></a>03445 <span class="keyword">virtual</span> <span class="keywordtype">void</span> onInheritsAlphaChanged(<a class="code" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a>& e);
<a name="l03446"></a>03446
<a name="l03456"></a>03456 <span class="keyword">virtual</span> <span class="keywordtype">void</span> onAlwaysOnTopChanged(<a class="code" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a>& e);
<a name="l03457"></a>03457
<a name="l03467"></a>03467 <span class="keyword">virtual</span> <span class="keywordtype">void</span> onCaptureGained(<a class="code" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a>& e);
<a name="l03468"></a>03468
<a name="l03478"></a>03478 <span class="keyword">virtual</span> <span class="keywordtype">void</span> onCaptureLost(<a class="code" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a>& e);
<a name="l03479"></a>03479
<a name="l03489"></a>03489 <span class="keyword">virtual</span> <span class="keywordtype">void</span> onRenderingStarted(<a class="code" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a>& e);
<a name="l03490"></a>03490
<a name="l03500"></a>03500 <span class="keyword">virtual</span> <span class="keywordtype">void</span> onRenderingEnded(<a class="code" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a>& e);
<a name="l03501"></a>03501
<a name="l03511"></a>03511 <span class="keyword">virtual</span> <span class="keywordtype">void</span> onZChanged(<a class="code" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a>& e);
<a name="l03512"></a>03512
<a name="l03522"></a>03522 <span class="keyword">virtual</span> <span class="keywordtype">void</span> onDestructionStarted(<a class="code" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a>& e);
<a name="l03523"></a>03523
<a name="l03532"></a>03532 <span class="keyword">virtual</span> <span class="keywordtype">void</span> onActivated(<a class="code" href="classCEGUI_1_1ActivationEventArgs.html" title="EventArgs based class that is used for Activated and Deactivated window events.">ActivationEventArgs</a>& e);
<a name="l03533"></a>03533
<a name="l03543"></a>03543 <span class="keyword">virtual</span> <span class="keywordtype">void</span> onDeactivated(<a class="code" href="classCEGUI_1_1ActivationEventArgs.html" title="EventArgs based class that is used for Activated and Deactivated window events.">ActivationEventArgs</a>& e);
<a name="l03544"></a>03544
<a name="l03556"></a>03556 <span class="keyword">virtual</span> <span class="keywordtype">void</span> onParentSized(<a class="code" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a>& e);
<a name="l03557"></a>03557
<a name="l03566"></a>03566 <span class="keyword">virtual</span> <span class="keywordtype">void</span> onChildAdded(<a class="code" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a>& e);
<a name="l03567"></a>03567
<a name="l03576"></a>03576 <span class="keyword">virtual</span> <span class="keywordtype">void</span> onChildRemoved(<a class="code" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a>& e);
<a name="l03577"></a>03577
<a name="l03585"></a>03585 <span class="keyword">virtual</span> <span class="keywordtype">void</span> onMouseEntersArea(<a class="code" href="classCEGUI_1_1MouseEventArgs.html" title="EventArgs based class that is used for objects passed to input event handlers concerning mouse input...">MouseEventArgs</a>& e);
<a name="l03586"></a>03586
<a name="l03594"></a>03594 <span class="keyword">virtual</span> <span class="keywordtype">void</span> onMouseLeavesArea(<a class="code" href="classCEGUI_1_1MouseEventArgs.html" title="EventArgs based class that is used for objects passed to input event handlers concerning mouse input...">MouseEventArgs</a>& e);
<a name="l03595"></a>03595
<a name="l03610"></a>03610 <span class="keyword">virtual</span> <span class="keywordtype">void</span> onMouseEnters(<a class="code" href="classCEGUI_1_1MouseEventArgs.html" title="EventArgs based class that is used for objects passed to input event handlers concerning mouse input...">MouseEventArgs</a>& e);
<a name="l03611"></a>03611
<a name="l03626"></a>03626 <span class="keyword">virtual</span> <span class="keywordtype">void</span> onMouseLeaves(<a class="code" href="classCEGUI_1_1MouseEventArgs.html" title="EventArgs based class that is used for objects passed to input event handlers concerning mouse input...">MouseEventArgs</a>& e);
<a name="l03627"></a>03627
<a name="l03636"></a>03636 <span class="keyword">virtual</span> <span class="keywordtype">void</span> onMouseMove(<a class="code" href="classCEGUI_1_1MouseEventArgs.html" title="EventArgs based class that is used for objects passed to input event handlers concerning mouse input...">MouseEventArgs</a>& e);
<a name="l03637"></a>03637
<a name="l03646"></a>03646 <span class="keyword">virtual</span> <span class="keywordtype">void</span> onMouseWheel(<a class="code" href="classCEGUI_1_1MouseEventArgs.html" title="EventArgs based class that is used for objects passed to input event handlers concerning mouse input...">MouseEventArgs</a>& e);
<a name="l03647"></a>03647
<a name="l03656"></a>03656 <span class="keyword">virtual</span> <span class="keywordtype">void</span> onMouseButtonDown(<a class="code" href="classCEGUI_1_1MouseEventArgs.html" title="EventArgs based class that is used for objects passed to input event handlers concerning mouse input...">MouseEventArgs</a>& e);
<a name="l03657"></a>03657
<a name="l03666"></a>03666 <span class="keyword">virtual</span> <span class="keywordtype">void</span> onMouseButtonUp(<a class="code" href="classCEGUI_1_1MouseEventArgs.html" title="EventArgs based class that is used for objects passed to input event handlers concerning mouse input...">MouseEventArgs</a>& e);
<a name="l03667"></a>03667
<a name="l03676"></a>03676 <span class="keyword">virtual</span> <span class="keywordtype">void</span> onMouseClicked(<a class="code" href="classCEGUI_1_1MouseEventArgs.html" title="EventArgs based class that is used for objects passed to input event handlers concerning mouse input...">MouseEventArgs</a>& e);
<a name="l03677"></a>03677
<a name="l03686"></a>03686 <span class="keyword">virtual</span> <span class="keywordtype">void</span> onMouseDoubleClicked(<a class="code" href="classCEGUI_1_1MouseEventArgs.html" title="EventArgs based class that is used for objects passed to input event handlers concerning mouse input...">MouseEventArgs</a>& e);
<a name="l03687"></a>03687
<a name="l03696"></a>03696 <span class="keyword">virtual</span> <span class="keywordtype">void</span> onMouseTripleClicked(<a class="code" href="classCEGUI_1_1MouseEventArgs.html" title="EventArgs based class that is used for objects passed to input event handlers concerning mouse input...">MouseEventArgs</a>& e);
<a name="l03697"></a>03697
<a name="l03709"></a>03709 <span class="keyword">virtual</span> <span class="keywordtype">void</span> onKeyDown(<a class="code" href="classCEGUI_1_1KeyEventArgs.html" title="EventArgs based class that is used for objects passed to input event handlers concerning keyboard inp...">KeyEventArgs</a>& e);
<a name="l03710"></a>03710
<a name="l03722"></a>03722 <span class="keyword">virtual</span> <span class="keywordtype">void</span> onKeyUp(<a class="code" href="classCEGUI_1_1KeyEventArgs.html" title="EventArgs based class that is used for objects passed to input event handlers concerning keyboard inp...">KeyEventArgs</a>& e);
<a name="l03723"></a>03723
<a name="l03735"></a>03735 <span class="keyword">virtual</span> <span class="keywordtype">void</span> onCharacter(<a class="code" href="classCEGUI_1_1KeyEventArgs.html" title="EventArgs based class that is used for objects passed to input event handlers concerning keyboard inp...">KeyEventArgs</a>& e);
<a name="l03736"></a>03736
<a name="l03747"></a>03747 <span class="keyword">virtual</span> <span class="keywordtype">void</span> onDragDropItemEnters(<a class="code" href="classCEGUI_1_1DragDropEventArgs.html" title="EventArgs based class used for certain drag/drop notifications.">DragDropEventArgs</a>& e);
<a name="l03748"></a>03748
<a name="l03759"></a>03759 <span class="keyword">virtual</span> <span class="keywordtype">void</span> onDragDropItemLeaves(<a class="code" href="classCEGUI_1_1DragDropEventArgs.html" title="EventArgs based class used for certain drag/drop notifications.">DragDropEventArgs</a>& e);
<a name="l03760"></a>03760
<a name="l03771"></a>03771 <span class="keyword">virtual</span> <span class="keywordtype">void</span> onDragDropItemDropped(<a class="code" href="classCEGUI_1_1DragDropEventArgs.html" title="EventArgs based class used for certain drag/drop notifications.">DragDropEventArgs</a>& e);
<a name="l03772"></a>03772
<a name="l03783"></a>03783 <span class="keyword">virtual</span> <span class="keywordtype">void</span> onVerticalAlignmentChanged(<a class="code" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a>& e);
<a name="l03784"></a>03784
<a name="l03795"></a>03795 <span class="keyword">virtual</span> <span class="keywordtype">void</span> onHorizontalAlignmentChanged(<a class="code" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a>& e);
<a name="l03796"></a>03796
<a name="l03806"></a>03806 <span class="keyword">virtual</span> <span class="keywordtype">void</span> onWindowRendererAttached(<a class="code" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a>& e);
<a name="l03807"></a>03807
<a name="l03817"></a>03817 <span class="keyword">virtual</span> <span class="keywordtype">void</span> onWindowRendererDetached(<a class="code" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a>& e);
<a name="l03818"></a>03818
<a name="l03828"></a>03828 <span class="keyword">virtual</span> <span class="keywordtype">void</span> onRotated(<a class="code" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a>& e);
<a name="l03829"></a>03829
<a name="l03840"></a>03840 <span class="keyword">virtual</span> <span class="keywordtype">void</span> onNonClientChanged(<a class="code" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a>& e);
<a name="l03841"></a>03841
<a name="l03852"></a>03852 <span class="keyword">virtual</span> <span class="keywordtype">void</span> onTextParsingChanged(<a class="code" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a>& e);
<a name="l03853"></a>03853
<a name="l03854"></a>03854 <span class="keyword">virtual</span> <span class="keywordtype">void</span> onMarginChanged(<a class="code" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a>& e);
<a name="l03855"></a>03855
<a name="l03856"></a>03856 <span class="comment">/*************************************************************************</span>
<a name="l03857"></a>03857 <span class="comment"> Implementation Functions</span>
<a name="l03858"></a>03858 <span class="comment"> *************************************************************************/</span>
<a name="l03870"></a>03870 <span class="keyword">virtual</span> <span class="keywordtype">void</span> updateSelf(<span class="keywordtype">float</span> elapsed);
<a name="l03871"></a>03871
<a name="l03883"></a>03883 <span class="keyword">virtual</span> <span class="keywordtype">void</span> drawSelf(<span class="keyword">const</span> <a class="code" href="structCEGUI_1_1RenderingContext.html" title="struct that holds some context relating to a RenderingSurface object.">RenderingContext</a>& ctx);
<a name="l03884"></a>03884
<a name="l03895"></a>03895 <span class="keywordtype">void</span> bufferGeometry(<span class="keyword">const</span> <a class="code" href="structCEGUI_1_1RenderingContext.html" title="struct that holds some context relating to a RenderingSurface object.">RenderingContext</a>& ctx);
<a name="l03896"></a>03896
<a name="l03907"></a>03907 <span class="keywordtype">void</span> queueGeometry(<span class="keyword">const</span> <a class="code" href="structCEGUI_1_1RenderingContext.html" title="struct that holds some context relating to a RenderingSurface object.">RenderingContext</a>& ctx);
<a name="l03908"></a>03908
<a name="l03915"></a><a class="code" href="classCEGUI_1_1Window.html#a13674627bf251c6a6c8aa92ece139885">03915</a> <span class="keyword">virtual</span> <span class="keywordtype">void</span> <a class="code" href="classCEGUI_1_1Window.html#a13674627bf251c6a6c8aa92ece139885" title="Update the rendering cache.">populateGeometryBuffer</a>() {}
<a name="l03916"></a>03916
<a name="l03928"></a><a class="code" href="classCEGUI_1_1Window.html#a2b58cf00b4790c9cb08acfc18d5d3b0b">03928</a> <span class="keyword">virtual</span> <span class="keywordtype">bool</span> testClassName_impl(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>& class_name)<span class="keyword"> const</span>
<a name="l03929"></a>03929 <span class="keyword"> </span>{
<a name="l03930"></a>03930 <span class="keywordflow">if</span> (class_name == <span class="stringliteral">"Window"</span>) <span class="keywordflow">return</span> <span class="keyword">true</span>;
<a name="l03931"></a>03931 <span class="keywordflow">return</span> <span class="keyword">false</span>;
<a name="l03932"></a>03932 }
<a name="l03933"></a>03933
<a name="l03945"></a>03945 <span class="keywordtype">void</span> setParent(<a class="code" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a>* parent);
<a name="l03946"></a>03946
<a name="l03947"></a>03947 <a class="code" href="classCEGUI_1_1Size.html" title="Class that holds the size (width & height) of something.">Size</a> getSize_impl(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a>* window) <span class="keyword">const</span>;
<a name="l03948"></a>03948
<a name="l03953"></a>03953 <span class="keywordtype">void</span> generateAutoRepeatEvent(<a class="code" href="namespaceCEGUI.html#aa445483fd17f02e7d119e9be540a4976" title="Enumeration of mouse buttons.">MouseButton</a> button);
<a name="l03954"></a>03954
<a name="l03963"></a>03963 <span class="keyword">virtual</span> <span class="keywordtype">bool</span> validateWindowRenderer(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a>& name) <span class="keyword">const</span>;
<a name="l03964"></a>03964
<a name="l03971"></a>03971 <span class="keywordtype">bool</span> isPropertyAtDefault(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1Property.html" title="An abstract class that defines the interface to access object properties by name.">Property</a>* property) <span class="keyword">const</span>;
<a name="l03972"></a>03972
<a name="l03978"></a>03978 <span class="keywordtype">void</span> notifyClippingChanged(<span class="keywordtype">void</span>);
<a name="l03979"></a>03979
<a name="l03981"></a>03981 <span class="keywordtype">void</span> allocateRenderingWindow();
<a name="l03982"></a>03982
<a name="l03984"></a>03984 <span class="keywordtype">void</span> releaseRenderingWindow();
<a name="l03985"></a>03985
<a name="l03987"></a>03987 <span class="keywordtype">void</span> initialiseClippers(<span class="keyword">const</span> <a class="code" href="structCEGUI_1_1RenderingContext.html" title="struct that holds some context relating to a RenderingSurface object.">RenderingContext</a>& ctx);
<a name="l03988"></a>03988
<a name="l03993"></a>03993 <span class="keyword">virtual</span> <span class="keywordtype">void</span> cleanupChildren(<span class="keywordtype">void</span>);
<a name="l03994"></a>03994
<a name="l03999"></a>03999 <span class="keyword">virtual</span> <span class="keywordtype">void</span> addChild_impl(<a class="code" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a>* wnd);
<a name="l04000"></a>04000
<a name="l04005"></a>04005 <span class="keyword">virtual</span> <span class="keywordtype">void</span> removeChild_impl(<a class="code" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a>* wnd);
<a name="l04006"></a>04006
<a name="l04011"></a>04011 <span class="keyword">virtual</span> <span class="keywordtype">void</span> onZChange_impl(<span class="keywordtype">void</span>);
<a name="l04012"></a>04012
<a name="l04017"></a>04017 <span class="keywordtype">void</span> addStandardProperties(<span class="keywordtype">void</span>);
<a name="l04018"></a>04018
<a name="l04027"></a>04027 <span class="keyword">virtual</span> <span class="keywordtype">bool</span> moveToFront_impl(<span class="keywordtype">bool</span> wasClicked);
<a name="l04028"></a>04028
<a name="l04059"></a>04059 <span class="keywordtype">void</span> setArea_impl(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1UVector2.html" title="Two dimensional vector class built using unified dimensions (UDims). The UVector2 class is used for r...">UVector2</a>& pos, <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1UVector2.html" title="Two dimensional vector class built using unified dimensions (UDims). The UVector2 class is used for r...">UVector2</a>& size,
<a name="l04060"></a>04060 <span class="keywordtype">bool</span> topLeftSizing = <span class="keyword">false</span>, <span class="keywordtype">bool</span> fireEvents = <span class="keyword">true</span>);
<a name="l04061"></a>04061
<a name="l04081"></a>04081 <span class="keywordtype">void</span> addWindowToDrawList(<a class="code" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a>& wnd, <span class="keywordtype">bool</span> at_back = <span class="keyword">false</span>);
<a name="l04082"></a>04082
<a name="l04094"></a>04094 <span class="keywordtype">void</span> removeWindowFromDrawList(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a>& wnd);
<a name="l04095"></a>04095
<a name="l04107"></a>04107 <span class="keywordtype">bool</span> isTopOfZOrder() <span class="keyword">const</span>;
<a name="l04108"></a>04108
<a name="l04114"></a>04114 <span class="keywordtype">void</span> updateGeometryRenderSettings();
<a name="l04115"></a>04115
<a name="l04117"></a>04117 <span class="keywordtype">void</span> transferChildSurfaces();
<a name="l04118"></a>04118
<a name="l04120"></a>04120 <a class="code" href="classCEGUI_1_1Rect.html" title="Class encapsulating operations on a Rectangle.">Rect</a> getParentElementClipIntersection(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1Rect.html" title="Class encapsulating operations on a Rectangle.">Rect</a>& unclipped_area) <span class="keyword">const</span>;
<a name="l04121"></a>04121
<a name="l04123"></a>04123 <span class="keywordtype">void</span> invalidate_impl(<span class="keyword">const</span> <span class="keywordtype">bool</span> recursive);
<a name="l04124"></a>04124
<a name="l04126"></a>04126 <span class="keywordtype">bool</span> isInnerRectSizeChanged() <span class="keyword">const</span>;
<a name="l04127"></a>04127
<a name="l04134"></a>04134 <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a>* getWindowAttachedToCommonAncestor(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a>& wnd) <span class="keyword">const</span>;
<a name="l04135"></a>04135
<a name="l04137"></a>04137 <span class="keyword">virtual</span> <a class="code" href="classCEGUI_1_1Rect.html" title="Class encapsulating operations on a Rectangle.">Rect</a> getUnclippedOuterRect_impl() <span class="keyword">const</span>;
<a name="l04139"></a>04139 <span class="keyword">virtual</span> <a class="code" href="classCEGUI_1_1Rect.html" title="Class encapsulating operations on a Rectangle.">Rect</a> getOuterRectClipper_impl() <span class="keyword">const</span>;
<a name="l04141"></a>04141 <span class="keyword">virtual</span> <a class="code" href="classCEGUI_1_1Rect.html" title="Class encapsulating operations on a Rectangle.">Rect</a> getInnerRectClipper_impl() <span class="keyword">const</span>;
<a name="l04143"></a>04143 <span class="keyword">virtual</span> <a class="code" href="classCEGUI_1_1Rect.html" title="Class encapsulating operations on a Rectangle.">Rect</a> getHitTestRect_impl() <span class="keyword">const</span>;
<a name="l04145"></a>04145 <span class="keyword">virtual</span> <a class="code" href="classCEGUI_1_1Rect.html" title="Class encapsulating operations on a Rectangle.">Rect</a> getNonClientChildWindowContentArea_impl() <span class="keyword">const</span>;
<a name="l04147"></a>04147 <span class="keyword">virtual</span> <a class="code" href="classCEGUI_1_1Rect.html" title="Class encapsulating operations on a Rectangle.">Rect</a> getClientChildWindowContentArea_impl() <span class="keyword">const</span>;
<a name="l04148"></a>04148
<a name="l04149"></a>04149 <span class="keyword">virtual</span> <span class="keywordtype">int</span> writePropertiesXML(<a class="code" href="classCEGUI_1_1XMLSerializer.html" title="Class used to create XML Document.">XMLSerializer</a>& xml_stream) <span class="keyword">const</span>;
<a name="l04150"></a>04150 <span class="keyword">virtual</span> <span class="keywordtype">int</span> writeChildWindowsXML(<a class="code" href="classCEGUI_1_1XMLSerializer.html" title="Class used to create XML Document.">XMLSerializer</a>& xml_stream) <span class="keyword">const</span>;
<a name="l04151"></a>04151 <span class="keyword">virtual</span> <span class="keywordtype">bool</span> writeAutoChildWindowXML(<a class="code" href="classCEGUI_1_1XMLSerializer.html" title="Class used to create XML Document.">XMLSerializer</a>& xml_stream) <span class="keyword">const</span>;
<a name="l04152"></a>04152
<a name="l04153"></a>04153 <span class="comment">// constrain given UVector2 to window's min size, return if size changed.</span>
<a name="l04154"></a>04154 <span class="keywordtype">bool</span> constrainUVector2ToMinSize(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1Size.html" title="Class that holds the size (width & height) of something.">Size</a>& base_sz, <a class="code" href="classCEGUI_1_1UVector2.html" title="Two dimensional vector class built using unified dimensions (UDims). The UVector2 class is used for r...">UVector2</a>& sz);
<a name="l04155"></a>04155 <span class="comment">// constrain given UVector2 to window's max size, return if size changed.</span>
<a name="l04156"></a>04156 <span class="keywordtype">bool</span> constrainUVector2ToMaxSize(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1Size.html" title="Class that holds the size (width & height) of something.">Size</a>& base_sz, <a class="code" href="classCEGUI_1_1UVector2.html" title="Two dimensional vector class built using unified dimensions (UDims). The UVector2 class is used for r...">UVector2</a>& sz);
<a name="l04157"></a>04157
<a name="l04158"></a>04158 <span class="comment">/*************************************************************************</span>
<a name="l04159"></a>04159 <span class="comment"> Properties for Window base class</span>
<a name="l04160"></a>04160 <span class="comment"> *************************************************************************/</span>
<a name="l04161"></a>04161 <span class="keyword">static</span> <a class="code" href="classCEGUI_1_1WindowProperties_1_1Alpha.html" title="Property to access window alpha setting.">WindowProperties::Alpha</a> d_alphaProperty;
<a name="l04162"></a>04162 <span class="keyword">static</span> <a class="code" href="classCEGUI_1_1WindowProperties_1_1AlwaysOnTop.html" title="Property to access window "Always-On-Top" setting.">WindowProperties::AlwaysOnTop</a> d_alwaysOnTopProperty;
<a name="l04163"></a>04163 <span class="keyword">static</span> <a class="code" href="classCEGUI_1_1WindowProperties_1_1ClippedByParent.html" title="Property to access window "clipped by parent" setting.">WindowProperties::ClippedByParent</a> d_clippedByParentProperty;
<a name="l04164"></a>04164 <span class="keyword">static</span> <a class="code" href="classCEGUI_1_1WindowProperties_1_1DestroyedByParent.html" title="Property to access window Destroyed by Parent setting.">WindowProperties::DestroyedByParent</a> d_destroyedByParentProperty;
<a name="l04165"></a>04165 <span class="keyword">static</span> <a class="code" href="classCEGUI_1_1WindowProperties_1_1Disabled.html" title="Property to access window Disabled setting.">WindowProperties::Disabled</a> d_disabledProperty;
<a name="l04166"></a>04166 <span class="keyword">static</span> <a class="code" href="classCEGUI_1_1WindowProperties_1_1Font.html" title="Property to access window Font setting.">WindowProperties::Font</a> d_fontProperty;
<a name="l04167"></a>04167 <span class="keyword">static</span> <a class="code" href="classCEGUI_1_1WindowProperties_1_1ID.html" title="Property to access window ID field.">WindowProperties::ID</a> d_IDProperty;
<a name="l04168"></a>04168 <span class="keyword">static</span> <a class="code" href="classCEGUI_1_1WindowProperties_1_1InheritsAlpha.html" title="Property to access window "Inherits Alpha" setting.">WindowProperties::InheritsAlpha</a> d_inheritsAlphaProperty;
<a name="l04169"></a>04169 <span class="keyword">static</span> <a class="code" href="classCEGUI_1_1WindowProperties_1_1MouseCursorImage.html" title="Property to access window mouse cursor setting.">WindowProperties::MouseCursorImage</a> d_mouseCursorProperty;
<a name="l04170"></a>04170 <span class="keyword">static</span> <a class="code" href="classCEGUI_1_1WindowProperties_1_1RestoreOldCapture.html" title="Property to access window Restore Old Capture setting.">WindowProperties::RestoreOldCapture</a> d_restoreOldCaptureProperty;
<a name="l04171"></a>04171 <span class="keyword">static</span> <a class="code" href="classCEGUI_1_1WindowProperties_1_1Text.html" title="Property to access window text setting.">WindowProperties::Text</a> d_textProperty;
<a name="l04172"></a>04172 <span class="keyword">static</span> <a class="code" href="classCEGUI_1_1WindowProperties_1_1Visible.html" title="Property to access window Visible setting.">WindowProperties::Visible</a> d_visibleProperty;
<a name="l04173"></a>04173 <span class="keyword">static</span> <a class="code" href="classCEGUI_1_1WindowProperties_1_1ZOrderChangeEnabled.html" title="Property to access window Z-Order changing enabled setting.">WindowProperties::ZOrderChangeEnabled</a> d_zOrderChangeProperty;
<a name="l04174"></a>04174 <span class="keyword">static</span> <a class="code" href="classCEGUI_1_1WindowProperties_1_1WantsMultiClickEvents.html" title="Property to control whether the window will receive double/triple-click events.">WindowProperties::WantsMultiClickEvents</a> d_wantsMultiClicksProperty;
<a name="l04175"></a>04175 <span class="keyword">static</span> <a class="code" href="classCEGUI_1_1WindowProperties_1_1MouseButtonDownAutoRepeat.html" title="Property to control whether the window will receive autorepeat mouse button down events.">WindowProperties::MouseButtonDownAutoRepeat</a> d_autoRepeatProperty;
<a name="l04176"></a>04176 <span class="keyword">static</span> <a class="code" href="classCEGUI_1_1WindowProperties_1_1AutoRepeatDelay.html" title="Property to access window autorepeat delay value.">WindowProperties::AutoRepeatDelay</a> d_autoRepeatDelayProperty;
<a name="l04177"></a>04177 <span class="keyword">static</span> <a class="code" href="classCEGUI_1_1WindowProperties_1_1AutoRepeatRate.html" title="Property to access window autorepeat rate value.">WindowProperties::AutoRepeatRate</a> d_autoRepeatRateProperty;
<a name="l04178"></a>04178 <span class="keyword">static</span> <a class="code" href="classCEGUI_1_1WindowProperties_1_1DistributeCapturedInputs.html" title="Property to access whether inputs are passed to child windows when input is captured to this window...">WindowProperties::DistributeCapturedInputs</a> d_distInputsProperty;
<a name="l04179"></a>04179 <span class="keyword">static</span> <a class="code" href="classCEGUI_1_1WindowProperties_1_1CustomTooltipType.html" title="Property to access the custom tooltip for this Window.">WindowProperties::CustomTooltipType</a> d_tooltipTypeProperty;
<a name="l04180"></a>04180 <span class="keyword">static</span> <a class="code" href="classCEGUI_1_1WindowProperties_1_1Tooltip.html" title="Property to access the tooltip text for this Window.">WindowProperties::Tooltip</a> d_tooltipProperty;
<a name="l04181"></a>04181 <span class="keyword">static</span> <a class="code" href="classCEGUI_1_1WindowProperties_1_1InheritsTooltipText.html" title="Property to access whether the window inherits its tooltip text from its parent when it has no toolti...">WindowProperties::InheritsTooltipText</a> d_inheritsTooltipProperty;
<a name="l04182"></a>04182 <span class="keyword">static</span> <a class="code" href="classCEGUI_1_1WindowProperties_1_1RiseOnClick.html" title="Property to access whether the window rises to the top of the z order when clicked.">WindowProperties::RiseOnClick</a> d_riseOnClickProperty;
<a name="l04183"></a>04183 <span class="keyword">static</span> <a class="code" href="classCEGUI_1_1WindowProperties_1_1VerticalAlignment.html" title="Property to access the vertical alignment setting for the window.">WindowProperties::VerticalAlignment</a> d_vertAlignProperty;
<a name="l04184"></a>04184 <span class="keyword">static</span> <a class="code" href="classCEGUI_1_1WindowProperties_1_1HorizontalAlignment.html" title="Property to access the horizontal alignment setting for the window.">WindowProperties::HorizontalAlignment</a> d_horzAlignProperty;
<a name="l04185"></a>04185 <span class="keyword">static</span> <a class="code" href="classCEGUI_1_1WindowProperties_1_1UnifiedAreaRect.html" title="Property to access the unified area rectangle of the window.">WindowProperties::UnifiedAreaRect</a> d_unifiedAreaRectProperty;
<a name="l04186"></a>04186 <span class="keyword">static</span> <a class="code" href="classCEGUI_1_1WindowProperties_1_1UnifiedPosition.html" title="Property to access the unified position of the window.">WindowProperties::UnifiedPosition</a> d_unifiedPositionProperty;
<a name="l04187"></a>04187 <span class="keyword">static</span> <a class="code" href="classCEGUI_1_1WindowProperties_1_1UnifiedXPosition.html" title="Property to access the unified position x-coordinate of the window.">WindowProperties::UnifiedXPosition</a> d_unifiedXPositionProperty;
<a name="l04188"></a>04188 <span class="keyword">static</span> <a class="code" href="classCEGUI_1_1WindowProperties_1_1UnifiedYPosition.html" title="Property to access the unified position y-coordinate of the window.">WindowProperties::UnifiedYPosition</a> d_unifiedYPositionProperty;
<a name="l04189"></a>04189 <span class="keyword">static</span> <a class="code" href="classCEGUI_1_1WindowProperties_1_1UnifiedSize.html" title="Property to access the unified position of the window.">WindowProperties::UnifiedSize</a> d_unifiedSizeProperty;
<a name="l04190"></a>04190 <span class="keyword">static</span> <a class="code" href="classCEGUI_1_1WindowProperties_1_1UnifiedWidth.html" title="Property to access the unified width of the window.">WindowProperties::UnifiedWidth</a> d_unifiedWidthProperty;
<a name="l04191"></a>04191 <span class="keyword">static</span> <a class="code" href="classCEGUI_1_1WindowProperties_1_1UnifiedHeight.html" title="Property to access the unified height of the window.">WindowProperties::UnifiedHeight</a> d_unifiedHeightProperty;
<a name="l04192"></a>04192 <span class="keyword">static</span> <a class="code" href="classCEGUI_1_1WindowProperties_1_1UnifiedMinSize.html" title="Property to access the unified minimum size of the window.">WindowProperties::UnifiedMinSize</a> d_unifiedMinSizeProperty;
<a name="l04193"></a>04193 <span class="keyword">static</span> <a class="code" href="classCEGUI_1_1WindowProperties_1_1UnifiedMaxSize.html" title="Property to access the unified maximum size of the window.">WindowProperties::UnifiedMaxSize</a> d_unifiedMaxSizeProperty;
<a name="l04194"></a>04194 <span class="keyword">static</span> <a class="code" href="classCEGUI_1_1WindowProperties_1_1MousePassThroughEnabled.html" title="Property to access whether the window ignores mouse events and pass them through to any windows behin...">WindowProperties::MousePassThroughEnabled</a> d_mousePassThroughEnabledProperty;
<a name="l04195"></a>04195 <span class="keyword">static</span> <a class="code" href="classCEGUI_1_1WindowProperties_1_1WindowRenderer.html" title="Property to access/change the assigned window renderer object.">WindowProperties::WindowRenderer</a> d_windowRendererProperty;
<a name="l04196"></a>04196 <span class="keyword">static</span> <a class="code" href="classCEGUI_1_1WindowProperties_1_1LookNFeel.html" title="Property to access/change the assigned look'n'feel.">WindowProperties::LookNFeel</a> d_lookNFeelProperty;
<a name="l04197"></a>04197 <span class="keyword">static</span> <a class="code" href="classCEGUI_1_1WindowProperties_1_1DragDropTarget.html" title="Property to get/set whether the Window will receive drag and drop related notifications.">WindowProperties::DragDropTarget</a> d_dragDropTargetProperty;
<a name="l04198"></a>04198 <span class="keyword">static</span> <a class="code" href="classCEGUI_1_1WindowProperties_1_1AutoRenderingSurface.html" title="Property to get/set whether the Window will automatically attempt to use a full imagery caching Rende...">WindowProperties::AutoRenderingSurface</a> d_autoRenderingSurfaceProperty;
<a name="l04199"></a>04199 <span class="keyword">static</span> <a class="code" href="classCEGUI_1_1WindowProperties_1_1Rotation.html" title="Property to access the rotation factors of the window.">WindowProperties::Rotation</a> d_rotationProperty;
<a name="l04200"></a>04200 <span class="keyword">static</span> <a class="code" href="classCEGUI_1_1WindowProperties_1_1XRotation.html" title="Property to access the x axis rotation factor of the window.">WindowProperties::XRotation</a> d_xRotationProperty;
<a name="l04201"></a>04201 <span class="keyword">static</span> <a class="code" href="classCEGUI_1_1WindowProperties_1_1YRotation.html" title="Property to access the y axis rotation factor of the window.">WindowProperties::YRotation</a> d_yRotationProperty;
<a name="l04202"></a>04202 <span class="keyword">static</span> <a class="code" href="classCEGUI_1_1WindowProperties_1_1ZRotation.html" title="Property to access the z axis rotation factor of the window.">WindowProperties::ZRotation</a> d_zRotationProperty;
<a name="l04203"></a>04203 <span class="keyword">static</span> <a class="code" href="classCEGUI_1_1WindowProperties_1_1NonClient.html" title="Property to access window non-client setting.">WindowProperties::NonClient</a> d_nonClientProperty;
<a name="l04204"></a>04204 <span class="keyword">static</span> <a class="code" href="classCEGUI_1_1WindowProperties_1_1TextParsingEnabled.html" title="Property to access window text parsing enabled setting.">WindowProperties::TextParsingEnabled</a> d_textParsingEnabledProperty;
<a name="l04205"></a>04205 <span class="keyword">static</span> <a class="code" href="classCEGUI_1_1WindowProperties_1_1Margin.html" title="Property to access window margin.">WindowProperties::Margin</a> d_marginProperty;
<a name="l04206"></a>04206 <span class="keyword">static</span> <a class="code" href="classCEGUI_1_1WindowProperties_1_1UpdateMode.html" title="Property to access the update mode setting for the window.">WindowProperties::UpdateMode</a> d_updateModeProperty;
<a name="l04207"></a>04207 <span class="keyword">static</span> <a class="code" href="classCEGUI_1_1WindowProperties_1_1MouseInputPropagationEnabled.html" title="Property to access the setting that controls whether mouse input not handled directly by the window w...">WindowProperties::MouseInputPropagationEnabled</a> d_mouseInputPropagationProperty;
<a name="l04208"></a>04208
<a name="l04209"></a>04209 <span class="comment">/*************************************************************************</span>
<a name="l04210"></a>04210 <span class="comment"> Implementation Data</span>
<a name="l04211"></a>04211 <span class="comment"> *************************************************************************/</span>
<a name="l04213"></a><a class="code" href="classCEGUI_1_1Window.html#a1c5810d8f2d5b3d75c4c2e7b398f9e4c">04213</a> <span class="keyword">typedef</span> std::vector<Window*> <a class="code" href="classCEGUI_1_1Window.html#a1c5810d8f2d5b3d75c4c2e7b398f9e4c" title="definition of type used for the list of attached child windows.">ChildList</a>;
<a name="l04215"></a><a class="code" href="classCEGUI_1_1Window.html#a45556dd9a301a348ea0387f7d075e99c">04215</a> <span class="keyword">typedef</span> std::map<String, String, String::FastLessCompare> <a class="code" href="classCEGUI_1_1Window.html#a45556dd9a301a348ea0387f7d075e99c" title="definition of type used for the UserString dictionary.">UserStringMap</a>;
<a name="l04217"></a><a class="code" href="classCEGUI_1_1Window.html#ab267c5ece8d958898b7268c165b0ef52">04217</a> <span class="keyword">typedef</span> std::set<String, String::FastLessCompare> <a class="code" href="classCEGUI_1_1Window.html#ab267c5ece8d958898b7268c165b0ef52" title="definition of type used to track properties banned from writing XML.">BannedXMLPropertySet</a>;
<a name="l04218"></a>04218
<a name="l04220"></a><a class="code" href="classCEGUI_1_1Window.html#a840c98ecb1d0dfdc09ce02f69a932b80">04220</a> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1Window.html#a840c98ecb1d0dfdc09ce02f69a932b80" title="type of Window (also the name of the WindowFactory that created us)">d_type</a>;
<a name="l04222"></a><a class="code" href="classCEGUI_1_1Window.html#aa30560290c8efb3a94bb7a04dd736091">04222</a> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1Window.html#aa30560290c8efb3a94bb7a04dd736091" title="The name of the window (GUI system unique).">d_name</a>;
<a name="l04224"></a><a class="code" href="classCEGUI_1_1Window.html#ab7749d4385deb47b7e60dbee90c727cf">04224</a> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1Window.html#ab7749d4385deb47b7e60dbee90c727cf" title="Type name of the window as defined in a Falagard mapping.">d_falagardType</a>;
<a name="l04226"></a><a class="code" href="classCEGUI_1_1Window.html#ada2eec5bf7ac27e5d51ec37bc1974391">04226</a> <span class="keywordtype">bool</span> <a class="code" href="classCEGUI_1_1Window.html#ada2eec5bf7ac27e5d51ec37bc1974391" title="true when this window is an auto-window (it's name contains __auto_)">d_autoWindow</a>;
<a name="l04227"></a>04227
<a name="l04229"></a><a class="code" href="classCEGUI_1_1Window.html#ac13acfa9c9e1140ba0506a4198b79792">04229</a> <span class="keywordtype">bool</span> <a class="code" href="classCEGUI_1_1Window.html#ac13acfa9c9e1140ba0506a4198b79792" title="true when this window is currently being initialised (creating children etc)">d_initialising</a>;
<a name="l04231"></a><a class="code" href="classCEGUI_1_1Window.html#addd6ae564f6b87b92273ac767412dff5">04231</a> <span class="keywordtype">bool</span> <a class="code" href="classCEGUI_1_1Window.html#addd6ae564f6b87b92273ac767412dff5" title="true when this window is being destroyed.">d_destructionStarted</a>;
<a name="l04233"></a><a class="code" href="classCEGUI_1_1Window.html#a4304e1617a408733f6acdd45e4187d81">04233</a> <span class="keywordtype">bool</span> <a class="code" href="classCEGUI_1_1Window.html#a4304e1617a408733f6acdd45e4187d81" title="true when Window is enabled">d_enabled</a>;
<a name="l04235"></a><a class="code" href="classCEGUI_1_1Window.html#af3efffa6bc80236d2e46dbf5e4704068">04235</a> <span class="keywordtype">bool</span> <a class="code" href="classCEGUI_1_1Window.html#af3efffa6bc80236d2e46dbf5e4704068" title="is window visible (i.e. it will be rendered, but may still be obscured)">d_visible</a>;
<a name="l04237"></a><a class="code" href="classCEGUI_1_1Window.html#a32819174975149dbd12bc1efff0e7e20">04237</a> <span class="keywordtype">bool</span> <a class="code" href="classCEGUI_1_1Window.html#a32819174975149dbd12bc1efff0e7e20" title="true when Window is the active Window (receiving inputs).">d_active</a>;
<a name="l04238"></a>04238
<a name="l04240"></a><a class="code" href="classCEGUI_1_1Window.html#a6b49710fd84e1fe1de4fdc820fcfa094">04240</a> <a class="code" href="classCEGUI_1_1Window.html#a1c5810d8f2d5b3d75c4c2e7b398f9e4c" title="definition of type used for the list of attached child windows.">ChildList</a> <a class="code" href="classCEGUI_1_1Window.html#a6b49710fd84e1fe1de4fdc820fcfa094" title="The list of child Window objects attached to this.">d_children</a>;
<a name="l04242"></a><a class="code" href="classCEGUI_1_1Window.html#a486bcaade215ebd16dce516509790973">04242</a> <a class="code" href="classCEGUI_1_1Window.html#a1c5810d8f2d5b3d75c4c2e7b398f9e4c" title="definition of type used for the list of attached child windows.">ChildList</a> <a class="code" href="classCEGUI_1_1Window.html#a486bcaade215ebd16dce516509790973" title="Child window objects arranged in rendering order.">d_drawList</a>;
<a name="l04244"></a><a class="code" href="classCEGUI_1_1Window.html#a42cfc40606eccf133ea107a19761ca0b">04244</a> <a class="code" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a>* <a class="code" href="classCEGUI_1_1Window.html#a42cfc40606eccf133ea107a19761ca0b" title="Holds pointer to the parent window.">d_parent</a>;
<a name="l04246"></a><a class="code" href="classCEGUI_1_1Window.html#a4e0cbc0e50a21a170597b4a6495790e3">04246</a> <span class="keywordtype">bool</span> <a class="code" href="classCEGUI_1_1Window.html#a4e0cbc0e50a21a170597b4a6495790e3" title="true when Window will be auto-destroyed by parent.">d_destroyedByParent</a>;
<a name="l04247"></a>04247
<a name="l04249"></a><a class="code" href="classCEGUI_1_1Window.html#a518cc171820c75550daeeff695b71fa7">04249</a> <span class="keywordtype">bool</span> <a class="code" href="classCEGUI_1_1Window.html#a518cc171820c75550daeeff695b71fa7" title="true when Window will be clipped by parent Window area Rect.">d_clippedByParent</a>;
<a name="l04251"></a><a class="code" href="classCEGUI_1_1Window.html#a324eed2b3ad0c29817b537b7dd6c93f7">04251</a> <span class="keywordtype">bool</span> <a class="code" href="classCEGUI_1_1Window.html#a324eed2b3ad0c29817b537b7dd6c93f7" title="true if Window is in non-client (outside InnerRect) area of parent.">d_nonClientContent</a>;
<a name="l04252"></a>04252
<a name="l04254"></a><a class="code" href="classCEGUI_1_1Window.html#accc46c1e4aca2896067ff46180c054ed">04254</a> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1Window.html#accc46c1e4aca2896067ff46180c054ed" title="Name of the Look assigned to this window (if any).">d_lookName</a>;
<a name="l04256"></a><a class="code" href="classCEGUI_1_1Window.html#acd920657d7cad9a1444d0ba2aa034003">04256</a> <a class="code" href="classCEGUI_1_1WindowRenderer.html" title="Base-class for the assignable WindowRenderer object.">WindowRenderer</a>* <a class="code" href="classCEGUI_1_1Window.html#acd920657d7cad9a1444d0ba2aa034003" title="The WindowRenderer module that implements the Look'N'Feel specification.">d_windowRenderer</a>;
<a name="l04258"></a><a class="code" href="classCEGUI_1_1Window.html#ac7be5c1a8e8002707a04e95d0fec1d55">04258</a> <a class="code" href="classCEGUI_1_1GeometryBuffer.html" title="Abstract class defining the interface for objects that buffer geometry for later rendering.">GeometryBuffer</a>* <a class="code" href="classCEGUI_1_1Window.html#ac7be5c1a8e8002707a04e95d0fec1d55" title="Object which acts as a cache of geometry drawn by this Window.">d_geometry</a>;
<a name="l04260"></a><a class="code" href="classCEGUI_1_1Window.html#a26cdd72eff0828335de2a72d798ceb5b">04260</a> <a class="code" href="classCEGUI_1_1RenderingSurface.html" title="Class that represents a surface that can have geometry based imagery drawn to it.">RenderingSurface</a>* <a class="code" href="classCEGUI_1_1Window.html#a26cdd72eff0828335de2a72d798ceb5b" title="RenderingSurface owned by this window (may be 0)">d_surface</a>;
<a name="l04262"></a><a class="code" href="classCEGUI_1_1Window.html#aa46c627c0af259715aa5fe16a7613d7c">04262</a> <span class="keyword">mutable</span> <span class="keywordtype">bool</span> <a class="code" href="classCEGUI_1_1Window.html#aa46c627c0af259715aa5fe16a7613d7c" title="true if window geometry cache needs to be regenerated.">d_needsRedraw</a>;
<a name="l04264"></a><a class="code" href="classCEGUI_1_1Window.html#ad1ccd48edec00a39ece1a31e072c1241">04264</a> <span class="keywordtype">bool</span> <a class="code" href="classCEGUI_1_1Window.html#ad1ccd48edec00a39ece1a31e072c1241" title="holds setting for automatic creation of of surface (RenderingWindow)">d_autoRenderingWindow</a>;
<a name="l04265"></a>04265
<a name="l04267"></a><a class="code" href="classCEGUI_1_1Window.html#a5f89f42aca15c8d2a0b04e4d3b314b36">04267</a> <span class="keyword">const</span> <a class="code" href="classCEGUI_1_1Image.html" title="Class that represents a single Image of an Imageset.">Image</a>* <a class="code" href="classCEGUI_1_1Window.html#a5f89f42aca15c8d2a0b04e4d3b314b36" title="Holds pointer to the Window objects current mouse cursor image.">d_mouseCursor</a>;
<a name="l04268"></a>04268
<a name="l04270"></a><a class="code" href="classCEGUI_1_1Window.html#a03fd80de90ba7823f0dbbcaaa669d572">04270</a> <span class="keywordtype">float</span> <a class="code" href="classCEGUI_1_1Window.html#a03fd80de90ba7823f0dbbcaaa669d572" title="Alpha transparency setting for the Window.">d_alpha</a>;
<a name="l04272"></a><a class="code" href="classCEGUI_1_1Window.html#a9aff9a1d7f71565f7f4e0e9bd2ea7e6c">04272</a> <span class="keywordtype">bool</span> <a class="code" href="classCEGUI_1_1Window.html#a9aff9a1d7f71565f7f4e0e9bd2ea7e6c" title="true if the Window inherits alpha from the parent Window">d_inheritsAlpha</a>;
<a name="l04273"></a>04273
<a name="l04275"></a><a class="code" href="classCEGUI_1_1Window.html#a7097a69ff3dfee0ec1b47a28cebf9892">04275</a> <span class="keyword">static</span> <a class="code" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a>* <a class="code" href="classCEGUI_1_1Window.html#a7097a69ff3dfee0ec1b47a28cebf9892" title="Window that has captured inputs.">d_captureWindow</a>;
<a name="l04277"></a><a class="code" href="classCEGUI_1_1Window.html#a0324ccd770dadcfa9b82d227446f83b6">04277</a> <a class="code" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a>* <a class="code" href="classCEGUI_1_1Window.html#a0324ccd770dadcfa9b82d227446f83b6" title="The Window that previously had capture (used for restoreOldCapture mode)">d_oldCapture</a>;
<a name="l04279"></a><a class="code" href="classCEGUI_1_1Window.html#a73fc871a0ac57c17b7c30b594f974130">04279</a> <span class="keywordtype">bool</span> <a class="code" href="classCEGUI_1_1Window.html#a73fc871a0ac57c17b7c30b594f974130" title="Restore capture to the previous capture window when releasing capture.">d_restoreOldCapture</a>;
<a name="l04281"></a><a class="code" href="classCEGUI_1_1Window.html#adf29b133b4f4ea7c33abd1e4b3872622">04281</a> <span class="keywordtype">bool</span> <a class="code" href="classCEGUI_1_1Window.html#adf29b133b4f4ea7c33abd1e4b3872622" title="Whether to distribute captured inputs to child windows.">d_distCapturedInputs</a>;
<a name="l04282"></a>04282
<a name="l04284"></a><a class="code" href="classCEGUI_1_1Window.html#ae4b85d0fec22677736a5e1438cf63dfa">04284</a> <a class="code" href="classCEGUI_1_1Font.html" title="Class that encapsulates a typeface.">Font</a>* <a class="code" href="classCEGUI_1_1Window.html#ae4b85d0fec22677736a5e1438cf63dfa" title="Holds pointer to the Window objects current Font.">d_font</a>;
<a name="l04286"></a><a class="code" href="classCEGUI_1_1Window.html#a500c5d214f4689c3b401b3200736e5fb">04286</a> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1Window.html#a500c5d214f4689c3b401b3200736e5fb" title="Holds the text / label / caption for this Window.">d_textLogical</a>;
<a name="l04288"></a><a class="code" href="classCEGUI_1_1Window.html#ad44a9772b08a93aa2b3a54fb2d7abeb5">04288</a> <a class="code" href="classCEGUI_1_1BiDiVisualMapping.html" title="Abstract class to wrap a BiDi visual mapping of a text string.">BiDiVisualMapping</a>* <a class="code" href="classCEGUI_1_1Window.html#ad44a9772b08a93aa2b3a54fb2d7abeb5" title="pointer to bidirection support object">d_bidiVisualMapping</a>;
<a name="l04290"></a><a class="code" href="classCEGUI_1_1Window.html#ab4dd503b404820eb5f64635b37c3a3a5">04290</a> <span class="keyword">mutable</span> <span class="keywordtype">bool</span> <a class="code" href="classCEGUI_1_1Window.html#ab4dd503b404820eb5f64635b37c3a3a5" title="whether bidi visual mapping has been updated since last text change.">d_bidiDataValid</a>;
<a name="l04292"></a><a class="code" href="classCEGUI_1_1Window.html#a38f82176db791f54075a1d3b74adb0eb">04292</a> <span class="keyword">mutable</span> <a class="code" href="classCEGUI_1_1RenderedString.html" title="Class representing a rendered string of entities.">RenderedString</a> <a class="code" href="classCEGUI_1_1Window.html#a38f82176db791f54075a1d3b74adb0eb" title="RenderedString representation of text string as ouput from a parser.">d_renderedString</a>;
<a name="l04294"></a><a class="code" href="classCEGUI_1_1Window.html#a68d994961bc8147dc098073a6520ee9f">04294</a> <span class="keyword">mutable</span> <span class="keywordtype">bool</span> <a class="code" href="classCEGUI_1_1Window.html#a68d994961bc8147dc098073a6520ee9f" title="true if d_renderedString is valid, false if needs re-parse.">d_renderedStringValid</a>;
<a name="l04296"></a><a class="code" href="classCEGUI_1_1Window.html#adbda71ad001a93631a539592dc952190">04296</a> <span class="keyword">static</span> <a class="code" href="classCEGUI_1_1BasicRenderedStringParser.html" title="Basic RenderedStringParser class that offers support for the following tags:">BasicRenderedStringParser</a> <a class="code" href="classCEGUI_1_1Window.html#adbda71ad001a93631a539592dc952190" title="Shared instance of a parser to be used in most instances.">d_basicStringParser</a>;
<a name="l04298"></a><a class="code" href="classCEGUI_1_1Window.html#a089079c255001ecb5a6261cd537b9c07">04298</a> <span class="keyword">static</span> <a class="code" href="classCEGUI_1_1DefaultRenderedStringParser.html" title="Effectively a 'null' parser that returns a RenderedString representation that will draw the input tex...">DefaultRenderedStringParser</a> <a class="code" href="classCEGUI_1_1Window.html#a089079c255001ecb5a6261cd537b9c07" title="Shared instance of a parser to be used when rendering text verbatim.">d_defaultStringParser</a>;
<a name="l04300"></a><a class="code" href="classCEGUI_1_1Window.html#a5271f27303722875d15218f2ed338cdd">04300</a> <a class="code" href="classCEGUI_1_1RenderedStringParser.html" title="Specifies interface for classes that parse text into RenderedString objects.">RenderedStringParser</a>* <a class="code" href="classCEGUI_1_1Window.html#a5271f27303722875d15218f2ed338cdd" title="Pointer to a custom (user assigned) RenderedStringParser object.">d_customStringParser</a>;
<a name="l04302"></a><a class="code" href="classCEGUI_1_1Window.html#a60f9de70138a5ed10a85cb1b3a94d1c0">04302</a> <span class="keywordtype">bool</span> <a class="code" href="classCEGUI_1_1Window.html#a60f9de70138a5ed10a85cb1b3a94d1c0" title="true if use of parser other than d_defaultStringParser is enabled">d_textParsingEnabled</a>;
<a name="l04303"></a>04303
<a name="l04305"></a><a class="code" href="classCEGUI_1_1Window.html#a6a03db328d14e2a96ea1562c8810e16b">04305</a> <a class="code" href="classCEGUI_1_1UBox.html" title="Class encapsulating the 'Unified Box' - this is usually used for margin.">UBox</a> <a class="code" href="classCEGUI_1_1Window.html#a6a03db328d14e2a96ea1562c8810e16b" title="Margin, only used when the Window is inside LayoutContainer class.">d_margin</a>;
<a name="l04306"></a>04306
<a name="l04308"></a><a class="code" href="classCEGUI_1_1Window.html#a6916347a42cfb818fed0398b76c0d00d">04308</a> uint <a class="code" href="classCEGUI_1_1Window.html#a6916347a42cfb818fed0398b76c0d00d" title="User ID assigned to this Window.">d_ID</a>;
<a name="l04310"></a><a class="code" href="classCEGUI_1_1Window.html#af4b535fdb296654afbe1524aa5337b3d">04310</a> <span class="keywordtype">void</span>* <a class="code" href="classCEGUI_1_1Window.html#af4b535fdb296654afbe1524aa5337b3d" title="Holds pointer to some user assigned data.">d_userData</a>;
<a name="l04312"></a><a class="code" href="classCEGUI_1_1Window.html#aca529b27cabf60cfffb408b94cf3749f">04312</a> <a class="code" href="classCEGUI_1_1Window.html#a45556dd9a301a348ea0387f7d075e99c" title="definition of type used for the UserString dictionary.">UserStringMap</a> <a class="code" href="classCEGUI_1_1Window.html#aca529b27cabf60cfffb408b94cf3749f" title="Holds a collection of named user string values.">d_userStrings</a>;
<a name="l04313"></a>04313
<a name="l04315"></a><a class="code" href="classCEGUI_1_1Window.html#a3fc3141c97d79a0a920d846ad844e19f">04315</a> <span class="keywordtype">bool</span> <a class="code" href="classCEGUI_1_1Window.html#a3fc3141c97d79a0a920d846ad844e19f" title="true if Window will be drawn on top of all other Windows">d_alwaysOnTop</a>;
<a name="l04317"></a><a class="code" href="classCEGUI_1_1Window.html#aba634da6ad209edc07ac9041a88622bb">04317</a> <span class="keywordtype">bool</span> <a class="code" href="classCEGUI_1_1Window.html#aba634da6ad209edc07ac9041a88622bb" title="whether window should rise in the z order when left clicked.">d_riseOnClick</a>;
<a name="l04319"></a><a class="code" href="classCEGUI_1_1Window.html#ad9791bfc457d521a58a7518bfdab95d6">04319</a> <span class="keywordtype">bool</span> <a class="code" href="classCEGUI_1_1Window.html#ad9791bfc457d521a58a7518bfdab95d6" title="true if the Window responds to z-order change requests.">d_zOrderingEnabled</a>;
<a name="l04320"></a>04320
<a name="l04322"></a><a class="code" href="classCEGUI_1_1Window.html#aa3c1cfa84154c7b43b916aad5d4df6dd">04322</a> <span class="keywordtype">bool</span> <a class="code" href="classCEGUI_1_1Window.html#aa3c1cfa84154c7b43b916aad5d4df6dd" title="true if the Window wishes to hear about multi-click mouse events.">d_wantsMultiClicks</a>;
<a name="l04324"></a><a class="code" href="classCEGUI_1_1Window.html#a7d3cf9327c26f06ca5d5a8d5f8c16f97">04324</a> <span class="keywordtype">bool</span> <a class="code" href="classCEGUI_1_1Window.html#a7d3cf9327c26f06ca5d5a8d5f8c16f97" title="whether (most) mouse events pass through this window">d_mousePassThroughEnabled</a>;
<a name="l04326"></a><a class="code" href="classCEGUI_1_1Window.html#a0460c1bbc20e3920368b77a59f64dad2">04326</a> <span class="keywordtype">bool</span> <a class="code" href="classCEGUI_1_1Window.html#a0460c1bbc20e3920368b77a59f64dad2" title="whether pressed mouse button will auto-repeat the down event.">d_autoRepeat</a>;
<a name="l04328"></a><a class="code" href="classCEGUI_1_1Window.html#a9ec17d2a23e5ef7fb35341872edc283a">04328</a> <span class="keywordtype">float</span> <a class="code" href="classCEGUI_1_1Window.html#a9ec17d2a23e5ef7fb35341872edc283a" title="seconds before first repeat event is fired">d_repeatDelay</a>;
<a name="l04330"></a><a class="code" href="classCEGUI_1_1Window.html#a0ec4b5e120c50cff9f16b5b8e4db8edc">04330</a> <span class="keywordtype">float</span> <a class="code" href="classCEGUI_1_1Window.html#a0ec4b5e120c50cff9f16b5b8e4db8edc" title="secons between further repeats after delay has expired.">d_repeatRate</a>;
<a name="l04332"></a><a class="code" href="classCEGUI_1_1Window.html#a5119825ed59ee7534e85d5da91ebd744">04332</a> <a class="code" href="namespaceCEGUI.html#aa445483fd17f02e7d119e9be540a4976" title="Enumeration of mouse buttons.">MouseButton</a> <a class="code" href="classCEGUI_1_1Window.html#a5119825ed59ee7534e85d5da91ebd744" title="button we're tracking for auto-repeat purposes.">d_repeatButton</a>;
<a name="l04334"></a><a class="code" href="classCEGUI_1_1Window.html#ae73ed679628ac8bb2e550553f75af647">04334</a> <span class="keywordtype">bool</span> <a class="code" href="classCEGUI_1_1Window.html#ae73ed679628ac8bb2e550553f75af647" title="implements repeating - is true after delay has elapsed,">d_repeating</a>;
<a name="l04336"></a><a class="code" href="classCEGUI_1_1Window.html#a31ecf0a897d1b2d79728100cd63129a1">04336</a> <span class="keywordtype">float</span> <a class="code" href="classCEGUI_1_1Window.html#a31ecf0a897d1b2d79728100cd63129a1" title="implements repeating - tracks time elapsed.">d_repeatElapsed</a>;
<a name="l04337"></a>04337
<a name="l04339"></a><a class="code" href="classCEGUI_1_1Window.html#a1240a75d93537d4e9a945390143068b4">04339</a> <span class="keywordtype">bool</span> <a class="code" href="classCEGUI_1_1Window.html#a1240a75d93537d4e9a945390143068b4" title="true if window will receive drag and drop related notifications">d_dragDropTarget</a>;
<a name="l04340"></a>04340
<a name="l04342"></a><a class="code" href="classCEGUI_1_1Window.html#a63db9139ad87569f772800260758038f">04342</a> <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <a class="code" href="classCEGUI_1_1Window.html#a63db9139ad87569f772800260758038f" title="Text string used as tip for this window.">d_tooltipText</a>;
<a name="l04344"></a><a class="code" href="classCEGUI_1_1Window.html#ab0921544e393b36fcbba011241361a82">04344</a> <a class="code" href="classCEGUI_1_1Tooltip.html" title="Base class for Tooltip widgets.">Tooltip</a>* <a class="code" href="classCEGUI_1_1Window.html#ab0921544e393b36fcbba011241361a82" title="Possible custom Tooltip for this window.">d_customTip</a>;
<a name="l04346"></a><a class="code" href="classCEGUI_1_1Window.html#a4d51c35ea23a783a1261c98df01b0600">04346</a> <span class="keywordtype">bool</span> <a class="code" href="classCEGUI_1_1Window.html#a4d51c35ea23a783a1261c98df01b0600" title="true if this Window created the custom Tooltip.">d_weOwnTip</a>;
<a name="l04348"></a><a class="code" href="classCEGUI_1_1Window.html#ac0e128e3d517f4796ea2c3cf477029db">04348</a> <span class="keywordtype">bool</span> <a class="code" href="classCEGUI_1_1Window.html#ac0e128e3d517f4796ea2c3cf477029db" title="whether tooltip text may be inherited from parent.">d_inheritsTipText</a>;
<a name="l04349"></a>04349
<a name="l04351"></a><a class="code" href="classCEGUI_1_1Window.html#a310d7e5a489b2d81c6b2a383d7ddcc79">04351</a> <span class="keywordtype">bool</span> <a class="code" href="classCEGUI_1_1Window.html#a310d7e5a489b2d81c6b2a383d7ddcc79" title="true if this window is allowed to write XML, false if not">d_allowWriteXML</a>;
<a name="l04353"></a><a class="code" href="classCEGUI_1_1Window.html#a665bb2715791cd443e4e4ae92f953570">04353</a> <a class="code" href="classCEGUI_1_1Window.html#ab267c5ece8d958898b7268c165b0ef52" title="definition of type used to track properties banned from writing XML.">BannedXMLPropertySet</a> <a class="code" href="classCEGUI_1_1Window.html#a665bb2715791cd443e4e4ae92f953570" title="collection of properties not to be written to XML for this window.">d_bannedXMLProperties</a>;
<a name="l04354"></a>04354
<a name="l04356"></a><a class="code" href="classCEGUI_1_1Window.html#a1b3b10ecf8e8f2bd98bb0d662bb64df0">04356</a> <a class="code" href="classCEGUI_1_1URect.html" title="Area rectangle class built using unified dimensions (UDims).">URect</a> <a class="code" href="classCEGUI_1_1Window.html#a1b3b10ecf8e8f2bd98bb0d662bb64df0" title="This Window objects area as defined by a URect.">d_area</a>;
<a name="l04358"></a><a class="code" href="classCEGUI_1_1Window.html#ae77c564d385aa86f202c65169190b606">04358</a> <a class="code" href="classCEGUI_1_1Size.html" title="Class that holds the size (width & height) of something.">Size</a> <a class="code" href="classCEGUI_1_1Window.html#ae77c564d385aa86f202c65169190b606" title="Current constrained pixel size of the window.">d_pixelSize</a>;
<a name="l04360"></a><a class="code" href="classCEGUI_1_1Window.html#accc293917a606b6201437ab7882b9493">04360</a> <a class="code" href="classCEGUI_1_1UVector2.html" title="Two dimensional vector class built using unified dimensions (UDims). The UVector2 class is used for r...">UVector2</a> <a class="code" href="classCEGUI_1_1Window.html#accc293917a606b6201437ab7882b9493" title="current minimum size for the window.">d_minSize</a>;
<a name="l04362"></a><a class="code" href="classCEGUI_1_1Window.html#ad8065e25a60f0870225d3fa40393a018">04362</a> <a class="code" href="classCEGUI_1_1UVector2.html" title="Two dimensional vector class built using unified dimensions (UDims). The UVector2 class is used for r...">UVector2</a> <a class="code" href="classCEGUI_1_1Window.html#ad8065e25a60f0870225d3fa40393a018" title="current maximum size for the window.">d_maxSize</a>;
<a name="l04364"></a><a class="code" href="classCEGUI_1_1Window.html#a1d5273cde84521a6f6857887d6389548">04364</a> <a class="code" href="namespaceCEGUI.html#a15bee6ef970b3aab6e7355b278901195" title="Enumerated type used when specifying horizontal alignments.">HorizontalAlignment</a> <a class="code" href="classCEGUI_1_1Window.html#a1d5273cde84521a6f6857887d6389548" title="Specifies the base for horizontal alignment.">d_horzAlign</a>;
<a name="l04366"></a><a class="code" href="classCEGUI_1_1Window.html#aacb22d947673be6328ca07cde223ab94">04366</a> <a class="code" href="namespaceCEGUI.html#a6660132f5465c325fd55754ecba4832a" title="Enumerated type used when specifying vertical alignments.">VerticalAlignment</a> <a class="code" href="classCEGUI_1_1Window.html#aacb22d947673be6328ca07cde223ab94" title="Specifies the base for vertical alignment.">d_vertAlign</a>;
<a name="l04368"></a><a class="code" href="classCEGUI_1_1Window.html#af545340790723a81ab9202de0d072959">04368</a> <a class="code" href="classCEGUI_1_1Vector3.html" title="Class used as a three dimensional vector.">Vector3</a> <a class="code" href="classCEGUI_1_1Window.html#af545340790723a81ab9202de0d072959" title="Rotation angles for this window.">d_rotation</a>;
<a name="l04369"></a>04369
<a name="l04371"></a><a class="code" href="classCEGUI_1_1Window.html#ae4abd8894b9eac40d0a4d8a21f9d3981">04371</a> <span class="keyword">mutable</span> <a class="code" href="classCEGUI_1_1Rect.html" title="Class encapsulating operations on a Rectangle.">Rect</a> <a class="code" href="classCEGUI_1_1Window.html#ae4abd8894b9eac40d0a4d8a21f9d3981" title="outer area rect in screen pixels">d_outerUnclippedRect</a>;
<a name="l04373"></a><a class="code" href="classCEGUI_1_1Window.html#af6f40f225e9d361f9eaf0ab347b23479">04373</a> <span class="keyword">mutable</span> <a class="code" href="classCEGUI_1_1Rect.html" title="Class encapsulating operations on a Rectangle.">Rect</a> <a class="code" href="classCEGUI_1_1Window.html#af6f40f225e9d361f9eaf0ab347b23479" title="inner area rect in screen pixels">d_innerUnclippedRect</a>;
<a name="l04375"></a><a class="code" href="classCEGUI_1_1Window.html#a8f5f2d0b7f2c383900e6dbffad1da358">04375</a> <span class="keyword">mutable</span> <a class="code" href="classCEGUI_1_1Rect.html" title="Class encapsulating operations on a Rectangle.">Rect</a> <a class="code" href="classCEGUI_1_1Window.html#a8f5f2d0b7f2c383900e6dbffad1da358" title="outer area clipping rect in screen pixels">d_outerRectClipper</a>;
<a name="l04377"></a><a class="code" href="classCEGUI_1_1Window.html#ac549ca86f1779639988f9f05ff2d827c">04377</a> <span class="keyword">mutable</span> <a class="code" href="classCEGUI_1_1Rect.html" title="Class encapsulating operations on a Rectangle.">Rect</a> <a class="code" href="classCEGUI_1_1Window.html#ac549ca86f1779639988f9f05ff2d827c" title="inner area clipping rect in screen pixels">d_innerRectClipper</a>;
<a name="l04379"></a><a class="code" href="classCEGUI_1_1Window.html#a96bd77380ab15cd393db9286628b7ba3">04379</a> <span class="keyword">mutable</span> <a class="code" href="classCEGUI_1_1Rect.html" title="Class encapsulating operations on a Rectangle.">Rect</a> <a class="code" href="classCEGUI_1_1Window.html#a96bd77380ab15cd393db9286628b7ba3" title="area rect used for hit-testing agains this window">d_hitTestRect</a>;
<a name="l04380"></a>04380
<a name="l04381"></a>04381 <span class="keyword">mutable</span> <span class="keywordtype">bool</span> d_outerUnclippedRectValid;
<a name="l04382"></a>04382 <span class="keyword">mutable</span> <span class="keywordtype">bool</span> d_innerUnclippedRectValid;
<a name="l04383"></a>04383 <span class="keyword">mutable</span> <span class="keywordtype">bool</span> d_outerRectClipperValid;
<a name="l04384"></a>04384 <span class="keyword">mutable</span> <span class="keywordtype">bool</span> d_innerRectClipperValid;
<a name="l04385"></a>04385 <span class="keyword">mutable</span> <span class="keywordtype">bool</span> d_hitTestRectValid;
<a name="l04386"></a>04386
<a name="l04388"></a><a class="code" href="classCEGUI_1_1Window.html#a6c1e5f168066e21fa1791ca8b56efaf3">04388</a> <a class="code" href="namespaceCEGUI.html#a506db22c86ed2c4ce779c9955bf755cd" title="Enumerated type used for specifying Window::update mode to be used. Note that the setting specified w...">WindowUpdateMode</a> <a class="code" href="classCEGUI_1_1Window.html#a6c1e5f168066e21fa1791ca8b56efaf3" title="The mode to use for calling Window::update.">d_updateMode</a>;
<a name="l04390"></a><a class="code" href="classCEGUI_1_1Window.html#a82b7150f5afaf60a89024f8f4f412021">04390</a> <span class="keywordtype">bool</span> <a class="code" href="classCEGUI_1_1Window.html#a82b7150f5afaf60a89024f8f4f412021" title="specifies whether mouse inputs should be propagated to parent(s)">d_propagateMouseInputs</a>;
<a name="l04391"></a>04391
<a name="l04392"></a>04392
<a name="l04393"></a>04393 <span class="keyword">private</span>:
<a name="l04394"></a>04394 <span class="comment">/*************************************************************************</span>
<a name="l04395"></a>04395 <span class="comment"> May not copy or assign Window objects</span>
<a name="l04396"></a>04396 <span class="comment"> *************************************************************************/</span>
<a name="l04397"></a>04397 <a class="code" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a>(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a>&) : <a class="code" href="classCEGUI_1_1PropertySet.html" title="Class that contains a collection of Property objects.">PropertySet</a>(), <a class="code" href="classCEGUI_1_1EventSet.html" title="Class that collects together a set of Event objects.">EventSet</a>() {}
<a name="l04398"></a>04398 <a class="code" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a>& operator=(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a>&) {<span class="keywordflow">return</span> *<span class="keyword">this</span>;}
<a name="l04399"></a>04399 };
<a name="l04400"></a>04400
<a name="l04401"></a>04401 } <span class="comment">// End of CEGUI namespace section</span>
<a name="l04402"></a>04402
<a name="l04403"></a>04403
<a name="l04404"></a>04404 <span class="preprocessor">#if defined(_MSC_VER)</span>
<a name="l04405"></a>04405 <span class="preprocessor"></span><span class="preprocessor"># pragma warning(pop)</span>
<a name="l04406"></a>04406 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
<a name="l04407"></a>04407 <span class="preprocessor"></span>
<a name="l04408"></a>04408 <span class="preprocessor">#endif // end of guard _CEGUIWindow_h_</span>
<a name="l04409"></a>04409 <span class="preprocessor"></span>
</pre></div></div>
</div>
<hr class="footer"/><address class="footer"><small>Generated on Sun Jan 22 2012 16:07:40 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>
|