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
|
<!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: CEGUIWindowProperties.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">CEGUIWindowProperties.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: CEGUIWindowProperties.h</span>
<a name="l00003"></a>00003 <span class="comment"> created: 5/7/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: Interface to available window base class properties</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 - 2006 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 _CEGUIWindowProperties_h_</span>
<a name="l00031"></a>00031 <span class="preprocessor"></span><span class="preprocessor">#define _CEGUIWindowProperties_h_</span>
<a name="l00032"></a>00032 <span class="preprocessor"></span>
<a name="l00033"></a>00033 <span class="preprocessor">#include "CEGUIProperty.h"</span>
<a name="l00034"></a>00034 <span class="preprocessor">#include "CEGUIXMLSerializer.h"</span>
<a name="l00035"></a>00035
<a name="l00036"></a>00036 <span class="comment">// Start of CEGUI namespace section</span>
<a name="l00037"></a>00037 <span class="keyword">namespace </span>CEGUI
<a name="l00038"></a>00038 {
<a name="l00039"></a>00039
<a name="l00040"></a>00040 <span class="comment">// Start of WindowProperties namespace section</span>
<a name="l00045"></a><a class="code" href="namespaceCEGUI_1_1WindowProperties.html">00045</a> <span class="comment"></span><span class="keyword">namespace </span>WindowProperties
<a name="l00046"></a>00046 {
<a name="l00060"></a><a class="code" href="classCEGUI_1_1WindowProperties_1_1ID.html">00060</a> <span class="keyword">class </span><a class="code" href="classCEGUI_1_1WindowProperties_1_1ID.html" title="Property to access window ID field.">ID</a> : <span class="keyword">public</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>
<a name="l00061"></a>00061 {
<a name="l00062"></a>00062 <span class="keyword">public</span>:
<a name="l00063"></a>00063 <a class="code" href="classCEGUI_1_1WindowProperties_1_1ID.html" title="Property to access window ID field.">ID</a>() : <a class="code" href="classCEGUI_1_1Property.html#a2acafd4f7165506ef5df5c13cc0fc392" title="Creates a new Property object.">Property</a>(
<a name="l00064"></a>00064 <span class="stringliteral">"ID"</span>,
<a name="l00065"></a>00065 <span class="stringliteral">"Property to get/set the ID value of the Window. Value is an unsigned integer number."</span>,
<a name="l00066"></a>00066 <span class="stringliteral">"0"</span>)
<a name="l00067"></a>00067 {}
<a name="l00068"></a>00068
<a name="l00069"></a>00069 <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <span class="keyword">get</span>(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver) <span class="keyword">const</span>;
<a name="l00070"></a>00070 <span class="keywordtype">void</span> <span class="keyword">set</span>(<a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver, <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="l00071"></a>00071 };
<a name="l00072"></a>00072
<a name="l00073"></a>00073
<a name="l00087"></a><a class="code" href="classCEGUI_1_1WindowProperties_1_1Alpha.html">00087</a> <span class="keyword">class </span><a class="code" href="classCEGUI_1_1WindowProperties_1_1Alpha.html" title="Property to access window alpha setting.">Alpha</a> : <span class="keyword">public</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>
<a name="l00088"></a>00088 {
<a name="l00089"></a>00089 <span class="keyword">public</span>:
<a name="l00090"></a>00090 <a class="code" href="classCEGUI_1_1WindowProperties_1_1Alpha.html" title="Property to access window alpha setting.">Alpha</a>() : <a class="code" href="classCEGUI_1_1Property.html#a2acafd4f7165506ef5df5c13cc0fc392" title="Creates a new Property object.">Property</a>(
<a name="l00091"></a>00091 <span class="stringliteral">"Alpha"</span>,
<a name="l00092"></a>00092 <span class="stringliteral">"Property to get/set the alpha value of the Window. Value is floating point number."</span>,
<a name="l00093"></a>00093 <span class="stringliteral">"1"</span>)
<a name="l00094"></a>00094 {}
<a name="l00095"></a>00095
<a name="l00096"></a>00096 <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <span class="keyword">get</span>(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver) <span class="keyword">const</span>;
<a name="l00097"></a>00097 <span class="keywordtype">void</span> <span class="keyword">set</span>(<a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver, <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="l00098"></a>00098 };
<a name="l00099"></a>00099
<a name="l00100"></a>00100
<a name="l00114"></a><a class="code" href="classCEGUI_1_1WindowProperties_1_1Font.html">00114</a> <span class="keyword">class </span><a class="code" href="classCEGUI_1_1WindowProperties_1_1Font.html" title="Property to access window Font setting.">Font</a> : <span class="keyword">public</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>
<a name="l00115"></a>00115 {
<a name="l00116"></a>00116 <span class="keyword">public</span>:
<a name="l00117"></a>00117 <a class="code" href="classCEGUI_1_1WindowProperties_1_1Font.html" title="Property to access window Font setting.">Font</a>() : <a class="code" href="classCEGUI_1_1Property.html#a2acafd4f7165506ef5df5c13cc0fc392" title="Creates a new Property object.">Property</a>(
<a name="l00118"></a>00118 <span class="stringliteral">"Font"</span>,
<a name="l00119"></a>00119 <span class="stringliteral">"Property to get/set the font for the Window. Value is the name of the font to use (must be loaded already)."</span>,
<a name="l00120"></a>00120 <span class="stringliteral">""</span>)
<a name="l00121"></a>00121 {}
<a name="l00122"></a>00122
<a name="l00123"></a>00123 <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <span class="keyword">get</span>(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver) <span class="keyword">const</span>;
<a name="l00124"></a>00124 <span class="keywordtype">void</span> <span class="keyword">set</span>(<a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver, <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="l00125"></a>00125 <span class="keywordtype">bool</span> <a class="code" href="classCEGUI_1_1WindowProperties_1_1Font.html#a3724f65f1c6169eff338c3c316823e4d" title="Returns whether the property is at it's default value.">isDefault</a>(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver) <span class="keyword">const</span>;
<a name="l00126"></a>00126 };
<a name="l00127"></a>00127
<a name="l00128"></a>00128
<a name="l00142"></a><a class="code" href="classCEGUI_1_1WindowProperties_1_1Text.html">00142</a> <span class="keyword">class </span><a class="code" href="classCEGUI_1_1WindowProperties_1_1Text.html" title="Property to access window text setting.">Text</a> : <span class="keyword">public</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>
<a name="l00143"></a>00143 {
<a name="l00144"></a>00144 <span class="keyword">public</span>:
<a name="l00145"></a>00145 <a class="code" href="classCEGUI_1_1WindowProperties_1_1Text.html" title="Property to access window text setting.">Text</a>() : <a class="code" href="classCEGUI_1_1Property.html#a2acafd4f7165506ef5df5c13cc0fc392" title="Creates a new Property object.">Property</a>(
<a name="l00146"></a>00146 <span class="stringliteral">"Text"</span>,
<a name="l00147"></a>00147 <span class="stringliteral">"Property to get/set the text / caption for the Window. Value is the text string to use."</span>,
<a name="l00148"></a>00148 <span class="stringliteral">""</span>)
<a name="l00149"></a>00149 {}
<a name="l00150"></a>00150
<a name="l00151"></a>00151 <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <span class="keyword">get</span>(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver) <span class="keyword">const</span>;
<a name="l00152"></a>00152 <span class="keywordtype">void</span> <span class="keyword">set</span>(<a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver, <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="l00153"></a>00153 };
<a name="l00154"></a>00154
<a name="l00155"></a>00155
<a name="l00170"></a><a class="code" href="classCEGUI_1_1WindowProperties_1_1MouseCursorImage.html">00170</a> <span class="keyword">class </span><a class="code" href="classCEGUI_1_1WindowProperties_1_1MouseCursorImage.html" title="Property to access window mouse cursor setting.">MouseCursorImage</a> : <span class="keyword">public</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>
<a name="l00171"></a>00171 {
<a name="l00172"></a>00172 <span class="keyword">public</span>:
<a name="l00173"></a>00173 <a class="code" href="classCEGUI_1_1WindowProperties_1_1MouseCursorImage.html" title="Property to access window mouse cursor setting.">MouseCursorImage</a>() : <a class="code" href="classCEGUI_1_1Property.html#a2acafd4f7165506ef5df5c13cc0fc392" title="Creates a new Property object.">Property</a>(
<a name="l00174"></a>00174 <span class="stringliteral">"MouseCursorImage"</span>,
<a name="l00175"></a>00175 <span class="stringliteral">"Property to get/set the mouse cursor image for the Window. Value should be \"set:<imageset name> image:<image name>\"."</span>,
<a name="l00176"></a>00176 <span class="stringliteral">""</span>)
<a name="l00177"></a>00177 {}
<a name="l00178"></a>00178
<a name="l00179"></a>00179 <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <span class="keyword">get</span>(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver) <span class="keyword">const</span>;
<a name="l00180"></a>00180 <span class="keywordtype">void</span> <span class="keyword">set</span>(<a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver, <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="l00181"></a>00181 <span class="keywordtype">bool</span> <a class="code" href="classCEGUI_1_1WindowProperties_1_1MouseCursorImage.html#aa2fba5c4e9c5d893c47dfd495133d22b" title="Returns whether the property is at it's default value.">isDefault</a>(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver) <span class="keyword">const</span>;
<a name="l00182"></a>00182 };
<a name="l00183"></a>00183
<a name="l00184"></a>00184
<a name="l00199"></a><a class="code" href="classCEGUI_1_1WindowProperties_1_1ClippedByParent.html">00199</a> <span class="keyword">class </span><a class="code" href="classCEGUI_1_1WindowProperties_1_1ClippedByParent.html" title="Property to access window "clipped by parent" setting.">ClippedByParent</a> : <span class="keyword">public</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>
<a name="l00200"></a>00200 {
<a name="l00201"></a>00201 <span class="keyword">public</span>:
<a name="l00202"></a>00202 <a class="code" href="classCEGUI_1_1WindowProperties_1_1ClippedByParent.html" title="Property to access window "clipped by parent" setting.">ClippedByParent</a>() : <a class="code" href="classCEGUI_1_1Property.html#a2acafd4f7165506ef5df5c13cc0fc392" title="Creates a new Property object.">Property</a>(
<a name="l00203"></a>00203 <span class="stringliteral">"ClippedByParent"</span>,
<a name="l00204"></a>00204 <span class="stringliteral">"Property to get/set the 'clipped by parent' setting for the Window. Value is either \"True\" or \"False\"."</span>,
<a name="l00205"></a>00205 <span class="stringliteral">"True"</span>)
<a name="l00206"></a>00206 {}
<a name="l00207"></a>00207
<a name="l00208"></a>00208 <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <span class="keyword">get</span>(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver) <span class="keyword">const</span>;
<a name="l00209"></a>00209 <span class="keywordtype">void</span> <span class="keyword">set</span>(<a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver, <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="l00210"></a>00210 };
<a name="l00211"></a>00211
<a name="l00212"></a>00212
<a name="l00227"></a><a class="code" href="classCEGUI_1_1WindowProperties_1_1InheritsAlpha.html">00227</a> <span class="keyword">class </span><a class="code" href="classCEGUI_1_1WindowProperties_1_1InheritsAlpha.html" title="Property to access window "Inherits Alpha" setting.">InheritsAlpha</a> : <span class="keyword">public</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>
<a name="l00228"></a>00228 {
<a name="l00229"></a>00229 <span class="keyword">public</span>:
<a name="l00230"></a>00230 <a class="code" href="classCEGUI_1_1WindowProperties_1_1InheritsAlpha.html" title="Property to access window "Inherits Alpha" setting.">InheritsAlpha</a>() : <a class="code" href="classCEGUI_1_1Property.html#a2acafd4f7165506ef5df5c13cc0fc392" title="Creates a new Property object.">Property</a>(
<a name="l00231"></a>00231 <span class="stringliteral">"InheritsAlpha"</span>,
<a name="l00232"></a>00232 <span class="stringliteral">"Property to get/set the 'inherits alpha' setting for the Window. Value is either \"True\" or \"False\"."</span>,
<a name="l00233"></a>00233 <span class="stringliteral">"True"</span>)
<a name="l00234"></a>00234 {}
<a name="l00235"></a>00235
<a name="l00236"></a>00236 <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <span class="keyword">get</span>(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver) <span class="keyword">const</span>;
<a name="l00237"></a>00237 <span class="keywordtype">void</span> <span class="keyword">set</span>(<a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver, <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="l00238"></a>00238 };
<a name="l00239"></a>00239
<a name="l00240"></a>00240
<a name="l00255"></a><a class="code" href="classCEGUI_1_1WindowProperties_1_1AlwaysOnTop.html">00255</a> <span class="keyword">class </span><a class="code" href="classCEGUI_1_1WindowProperties_1_1AlwaysOnTop.html" title="Property to access window "Always-On-Top" setting.">AlwaysOnTop</a> : <span class="keyword">public</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>
<a name="l00256"></a>00256 {
<a name="l00257"></a>00257 <span class="keyword">public</span>:
<a name="l00258"></a>00258 <a class="code" href="classCEGUI_1_1WindowProperties_1_1AlwaysOnTop.html" title="Property to access window "Always-On-Top" setting.">AlwaysOnTop</a>() : <a class="code" href="classCEGUI_1_1Property.html#a2acafd4f7165506ef5df5c13cc0fc392" title="Creates a new Property object.">Property</a>(
<a name="l00259"></a>00259 <span class="stringliteral">"AlwaysOnTop"</span>,
<a name="l00260"></a>00260 <span class="stringliteral">"Property to get/set the 'always on top' setting for the Window. Value is either \"True\" or \"False\"."</span>,
<a name="l00261"></a>00261 <span class="stringliteral">"False"</span>)
<a name="l00262"></a>00262 {}
<a name="l00263"></a>00263
<a name="l00264"></a>00264 <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <span class="keyword">get</span>(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver) <span class="keyword">const</span>;
<a name="l00265"></a>00265 <span class="keywordtype">void</span> <span class="keyword">set</span>(<a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver, <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="l00266"></a>00266 };
<a name="l00267"></a>00267
<a name="l00268"></a>00268
<a name="l00283"></a><a class="code" href="classCEGUI_1_1WindowProperties_1_1Disabled.html">00283</a> <span class="keyword">class </span><a class="code" href="classCEGUI_1_1WindowProperties_1_1Disabled.html" title="Property to access window Disabled setting.">Disabled</a> : <span class="keyword">public</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>
<a name="l00284"></a>00284 {
<a name="l00285"></a>00285 <span class="keyword">public</span>:
<a name="l00286"></a>00286 <a class="code" href="classCEGUI_1_1WindowProperties_1_1Disabled.html" title="Property to access window Disabled setting.">Disabled</a>() : <a class="code" href="classCEGUI_1_1Property.html#a2acafd4f7165506ef5df5c13cc0fc392" title="Creates a new Property object.">Property</a>(
<a name="l00287"></a>00287 <span class="stringliteral">"Disabled"</span>,
<a name="l00288"></a>00288 <span class="stringliteral">"Property to get/set the 'disabled state' setting for the Window. Value is either \"True\" or \"False\"."</span>,
<a name="l00289"></a>00289 <span class="stringliteral">"False"</span>)
<a name="l00290"></a>00290 {}
<a name="l00291"></a>00291
<a name="l00292"></a>00292 <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <span class="keyword">get</span>(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver) <span class="keyword">const</span>;
<a name="l00293"></a>00293 <span class="keywordtype">void</span> <span class="keyword">set</span>(<a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver, <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="l00294"></a>00294 <span class="keywordtype">bool</span> <a class="code" href="classCEGUI_1_1WindowProperties_1_1Disabled.html#af3bcf243b469726531268971d03f263a" title="Returns whether the property is at it's default value.">isDefault</a>(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver) <span class="keyword">const</span>;
<a name="l00295"></a>00295 };
<a name="l00296"></a>00296
<a name="l00297"></a>00297
<a name="l00312"></a><a class="code" href="classCEGUI_1_1WindowProperties_1_1Visible.html">00312</a> <span class="keyword">class </span><a class="code" href="classCEGUI_1_1WindowProperties_1_1Visible.html" title="Property to access window Visible setting.">Visible</a> : <span class="keyword">public</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>
<a name="l00313"></a>00313 {
<a name="l00314"></a>00314 <span class="keyword">public</span>:
<a name="l00315"></a>00315 <a class="code" href="classCEGUI_1_1WindowProperties_1_1Visible.html" title="Property to access window Visible setting.">Visible</a>() : <a class="code" href="classCEGUI_1_1Property.html#a2acafd4f7165506ef5df5c13cc0fc392" title="Creates a new Property object.">Property</a>(
<a name="l00316"></a>00316 <span class="stringliteral">"Visible"</span>,
<a name="l00317"></a>00317 <span class="stringliteral">"Property to get/set the 'visible state' setting for the Window. Value is either \"True\" or \"False\"."</span>,
<a name="l00318"></a>00318 <span class="stringliteral">"True"</span>)
<a name="l00319"></a>00319 {}
<a name="l00320"></a>00320
<a name="l00321"></a>00321 <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <span class="keyword">get</span>(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver) <span class="keyword">const</span>;
<a name="l00322"></a>00322 <span class="keywordtype">void</span> <span class="keyword">set</span>(<a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver, <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="l00323"></a>00323 <span class="keywordtype">bool</span> <a class="code" href="classCEGUI_1_1WindowProperties_1_1Visible.html#a1543f002654b244e3e613cce93deea71" title="Returns whether the property is at it's default value.">isDefault</a>(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver) <span class="keyword">const</span>;
<a name="l00324"></a>00324 };
<a name="l00325"></a>00325
<a name="l00326"></a>00326
<a name="l00342"></a><a class="code" href="classCEGUI_1_1WindowProperties_1_1RestoreOldCapture.html">00342</a> <span class="keyword">class </span><a class="code" href="classCEGUI_1_1WindowProperties_1_1RestoreOldCapture.html" title="Property to access window Restore Old Capture setting.">RestoreOldCapture</a> : <span class="keyword">public</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>
<a name="l00343"></a>00343 {
<a name="l00344"></a>00344 <span class="keyword">public</span>:
<a name="l00345"></a>00345 <a class="code" href="classCEGUI_1_1WindowProperties_1_1RestoreOldCapture.html" title="Property to access window Restore Old Capture setting.">RestoreOldCapture</a>() : <a class="code" href="classCEGUI_1_1Property.html#a2acafd4f7165506ef5df5c13cc0fc392" title="Creates a new Property object.">Property</a>(
<a name="l00346"></a>00346 <span class="stringliteral">"RestoreOldCapture"</span>,
<a name="l00347"></a>00347 <span class="stringliteral">"Property to get/set the 'restore old capture' setting for the Window. Value is either \"True\" or \"False\"."</span>,
<a name="l00348"></a>00348 <span class="stringliteral">"False"</span>)
<a name="l00349"></a>00349 {}
<a name="l00350"></a>00350
<a name="l00351"></a>00351 <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <span class="keyword">get</span>(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver) <span class="keyword">const</span>;
<a name="l00352"></a>00352 <span class="keywordtype">void</span> <span class="keyword">set</span>(<a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver, <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="l00353"></a>00353 };
<a name="l00354"></a>00354
<a name="l00355"></a>00355
<a name="l00370"></a><a class="code" href="classCEGUI_1_1WindowProperties_1_1DestroyedByParent.html">00370</a> <span class="keyword">class </span><a class="code" href="classCEGUI_1_1WindowProperties_1_1DestroyedByParent.html" title="Property to access window Destroyed by Parent setting.">DestroyedByParent</a> : <span class="keyword">public</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>
<a name="l00371"></a>00371 {
<a name="l00372"></a>00372 <span class="keyword">public</span>:
<a name="l00373"></a>00373 <a class="code" href="classCEGUI_1_1WindowProperties_1_1DestroyedByParent.html" title="Property to access window Destroyed by Parent setting.">DestroyedByParent</a>() : <a class="code" href="classCEGUI_1_1Property.html#a2acafd4f7165506ef5df5c13cc0fc392" title="Creates a new Property object.">Property</a>(
<a name="l00374"></a>00374 <span class="stringliteral">"DestroyedByParent"</span>,
<a name="l00375"></a>00375 <span class="stringliteral">"Property to get/set the 'destroyed by parent' setting for the Window. Value is either \"True\" or \"False\"."</span>,
<a name="l00376"></a>00376 <span class="stringliteral">"True"</span>)
<a name="l00377"></a>00377 {}
<a name="l00378"></a>00378
<a name="l00379"></a>00379 <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <span class="keyword">get</span>(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver) <span class="keyword">const</span>;
<a name="l00380"></a>00380 <span class="keywordtype">void</span> <span class="keyword">set</span>(<a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver, <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="l00381"></a>00381 };
<a name="l00382"></a>00382
<a name="l00383"></a>00383
<a name="l00398"></a><a class="code" href="classCEGUI_1_1WindowProperties_1_1ZOrderChangeEnabled.html">00398</a> <span class="keyword">class </span><a class="code" href="classCEGUI_1_1WindowProperties_1_1ZOrderChangeEnabled.html" title="Property to access window Z-Order changing enabled setting.">ZOrderChangeEnabled</a> : <span class="keyword">public</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>
<a name="l00399"></a>00399 {
<a name="l00400"></a>00400 <span class="keyword">public</span>:
<a name="l00401"></a>00401 <a class="code" href="classCEGUI_1_1WindowProperties_1_1ZOrderChangeEnabled.html" title="Property to access window Z-Order changing enabled setting.">ZOrderChangeEnabled</a>() : <a class="code" href="classCEGUI_1_1Property.html#a2acafd4f7165506ef5df5c13cc0fc392" title="Creates a new Property object.">Property</a>(
<a name="l00402"></a>00402 <span class="stringliteral">"ZOrderChangeEnabled"</span>,
<a name="l00403"></a>00403 <span class="stringliteral">"Property to get/set the 'z-order changing enabled' setting for the Window. Value is either \"True\" or \"False\"."</span>,
<a name="l00404"></a>00404 <span class="stringliteral">"True"</span>)
<a name="l00405"></a>00405 {}
<a name="l00406"></a>00406
<a name="l00407"></a>00407 <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <span class="keyword">get</span>(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver) <span class="keyword">const</span>;
<a name="l00408"></a>00408 <span class="keywordtype">void</span> <span class="keyword">set</span>(<a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver, <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="l00409"></a>00409 };
<a name="l00410"></a>00410
<a name="l00411"></a>00411
<a name="l00427"></a><a class="code" href="classCEGUI_1_1WindowProperties_1_1WantsMultiClickEvents.html">00427</a> <span class="keyword">class </span><a class="code" href="classCEGUI_1_1WindowProperties_1_1WantsMultiClickEvents.html" title="Property to control whether the window will receive double/triple-click events.">WantsMultiClickEvents</a> : <span class="keyword">public</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>
<a name="l00428"></a>00428 {
<a name="l00429"></a>00429 <span class="keyword">public</span>:
<a name="l00430"></a>00430 <a class="code" href="classCEGUI_1_1WindowProperties_1_1WantsMultiClickEvents.html" title="Property to control whether the window will receive double/triple-click events.">WantsMultiClickEvents</a>() : <a class="code" href="classCEGUI_1_1Property.html#a2acafd4f7165506ef5df5c13cc0fc392" title="Creates a new Property object.">Property</a>(
<a name="l00431"></a>00431 <span class="stringliteral">"WantsMultiClickEvents"</span>,
<a name="l00432"></a>00432 <span class="stringliteral">"Property to get/set whether the window will receive double-click and triple-click events. Value is either \"True\" or \"False\"."</span>,
<a name="l00433"></a>00433 <span class="stringliteral">"True"</span>)
<a name="l00434"></a>00434 {}
<a name="l00435"></a>00435
<a name="l00436"></a>00436 <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <span class="keyword">get</span>(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver) <span class="keyword">const</span>;
<a name="l00437"></a>00437 <span class="keywordtype">void</span> <span class="keyword">set</span>(<a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver, <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="l00438"></a>00438 };
<a name="l00439"></a>00439
<a name="l00440"></a>00440
<a name="l00456"></a><a class="code" href="classCEGUI_1_1WindowProperties_1_1MouseButtonDownAutoRepeat.html">00456</a> <span class="keyword">class </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.">MouseButtonDownAutoRepeat</a> : <span class="keyword">public</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>
<a name="l00457"></a>00457 {
<a name="l00458"></a>00458 <span class="keyword">public</span>:
<a name="l00459"></a>00459 <a class="code" href="classCEGUI_1_1WindowProperties_1_1MouseButtonDownAutoRepeat.html" title="Property to control whether the window will receive autorepeat mouse button down events.">MouseButtonDownAutoRepeat</a>() : <a class="code" href="classCEGUI_1_1Property.html#a2acafd4f7165506ef5df5c13cc0fc392" title="Creates a new Property object.">Property</a>(
<a name="l00460"></a>00460 <span class="stringliteral">"MouseButtonDownAutoRepeat"</span>,
<a name="l00461"></a>00461 <span class="stringliteral">"Property to get/set whether the window will receive autorepeat mouse button down events. Value is either \"True\" or \"False\"."</span>,
<a name="l00462"></a>00462 <span class="stringliteral">"False"</span>)
<a name="l00463"></a>00463 {}
<a name="l00464"></a>00464
<a name="l00465"></a>00465 <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <span class="keyword">get</span>(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver) <span class="keyword">const</span>;
<a name="l00466"></a>00466 <span class="keywordtype">void</span> <span class="keyword">set</span>(<a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver, <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="l00467"></a>00467 };
<a name="l00468"></a>00468
<a name="l00469"></a>00469
<a name="l00483"></a><a class="code" href="classCEGUI_1_1WindowProperties_1_1AutoRepeatDelay.html">00483</a> <span class="keyword">class </span><a class="code" href="classCEGUI_1_1WindowProperties_1_1AutoRepeatDelay.html" title="Property to access window autorepeat delay value.">AutoRepeatDelay</a> : <span class="keyword">public</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>
<a name="l00484"></a>00484 {
<a name="l00485"></a>00485 <span class="keyword">public</span>:
<a name="l00486"></a>00486 <a class="code" href="classCEGUI_1_1WindowProperties_1_1AutoRepeatDelay.html" title="Property to access window autorepeat delay value.">AutoRepeatDelay</a>() : <a class="code" href="classCEGUI_1_1Property.html#a2acafd4f7165506ef5df5c13cc0fc392" title="Creates a new Property object.">Property</a>(
<a name="l00487"></a>00487 <span class="stringliteral">"AutoRepeatDelay"</span>,
<a name="l00488"></a>00488 <span class="stringliteral">"Property to get/set the autorepeat delay. Value is a floating point number indicating the delay required in seconds."</span>,
<a name="l00489"></a>00489 <span class="stringliteral">"0.3"</span>)
<a name="l00490"></a>00490 {}
<a name="l00491"></a>00491
<a name="l00492"></a>00492 <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <span class="keyword">get</span>(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver) <span class="keyword">const</span>;
<a name="l00493"></a>00493 <span class="keywordtype">void</span> <span class="keyword">set</span>(<a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver, <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="l00494"></a>00494 };
<a name="l00495"></a>00495
<a name="l00496"></a>00496
<a name="l00510"></a><a class="code" href="classCEGUI_1_1WindowProperties_1_1AutoRepeatRate.html">00510</a> <span class="keyword">class </span><a class="code" href="classCEGUI_1_1WindowProperties_1_1AutoRepeatRate.html" title="Property to access window autorepeat rate value.">AutoRepeatRate</a> : <span class="keyword">public</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>
<a name="l00511"></a>00511 {
<a name="l00512"></a>00512 <span class="keyword">public</span>:
<a name="l00513"></a>00513 <a class="code" href="classCEGUI_1_1WindowProperties_1_1AutoRepeatRate.html" title="Property to access window autorepeat rate value.">AutoRepeatRate</a>() : <a class="code" href="classCEGUI_1_1Property.html#a2acafd4f7165506ef5df5c13cc0fc392" title="Creates a new Property object.">Property</a>(
<a name="l00514"></a>00514 <span class="stringliteral">"AutoRepeatRate"</span>,
<a name="l00515"></a>00515 <span class="stringliteral">"Property to get/set the autorepeat rate. Value is a floating point number indicating the rate required in seconds."</span>,
<a name="l00516"></a>00516 <span class="stringliteral">"0.06"</span>)
<a name="l00517"></a>00517 {}
<a name="l00518"></a>00518
<a name="l00519"></a>00519 <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <span class="keyword">get</span>(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver) <span class="keyword">const</span>;
<a name="l00520"></a>00520 <span class="keywordtype">void</span> <span class="keyword">set</span>(<a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver, <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="l00521"></a>00521 };
<a name="l00522"></a>00522
<a name="l00536"></a><a class="code" href="classCEGUI_1_1WindowProperties_1_1DistributeCapturedInputs.html">00536</a> <span class="keyword">class </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...">DistributeCapturedInputs</a> : <span class="keyword">public</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>
<a name="l00537"></a>00537 {
<a name="l00538"></a>00538 <span class="keyword">public</span>:
<a name="l00539"></a>00539 <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...">DistributeCapturedInputs</a>() : <a class="code" href="classCEGUI_1_1Property.html#a2acafd4f7165506ef5df5c13cc0fc392" title="Creates a new Property object.">Property</a>(
<a name="l00540"></a>00540 <span class="stringliteral">"DistributeCapturedInputs"</span>,
<a name="l00541"></a>00541 <span class="stringliteral">"Property to get/set whether captured inputs are passed to child windows. Value is either \"True\" or \"False\"."</span>,
<a name="l00542"></a>00542 <span class="stringliteral">"False"</span>)
<a name="l00543"></a>00543 {}
<a name="l00544"></a>00544
<a name="l00545"></a>00545 <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <span class="keyword">get</span>(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver) <span class="keyword">const</span>;
<a name="l00546"></a>00546 <span class="keywordtype">void</span> <span class="keyword">set</span>(<a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver, <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="l00547"></a>00547 };
<a name="l00548"></a>00548
<a name="l00560"></a><a class="code" href="classCEGUI_1_1WindowProperties_1_1CustomTooltipType.html">00560</a> <span class="keyword">class </span><a class="code" href="classCEGUI_1_1WindowProperties_1_1CustomTooltipType.html" title="Property to access the custom tooltip for this Window.">CustomTooltipType</a> : <span class="keyword">public</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>
<a name="l00561"></a>00561 {
<a name="l00562"></a>00562 <span class="keyword">public</span>:
<a name="l00563"></a>00563 <a class="code" href="classCEGUI_1_1WindowProperties_1_1CustomTooltipType.html" title="Property to access the custom tooltip for this Window.">CustomTooltipType</a>() : <a class="code" href="classCEGUI_1_1Property.html#a2acafd4f7165506ef5df5c13cc0fc392" title="Creates a new Property object.">Property</a>(
<a name="l00564"></a>00564 <span class="stringliteral">"CustomTooltipType"</span>,
<a name="l00565"></a>00565 <span class="stringliteral">"Property to get/set the custom tooltip for the window. Value is the type name of the custom tooltip."</span>,
<a name="l00566"></a>00566 <span class="stringliteral">""</span>)
<a name="l00567"></a>00567 {}
<a name="l00568"></a>00568
<a name="l00569"></a>00569 <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <span class="keyword">get</span>(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver) <span class="keyword">const</span>;
<a name="l00570"></a>00570 <span class="keywordtype">void</span> <span class="keyword">set</span>(<a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver, <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="l00571"></a>00571 };
<a name="l00572"></a>00572
<a name="l00584"></a><a class="code" href="classCEGUI_1_1WindowProperties_1_1Tooltip.html">00584</a> <span class="keyword">class </span><a class="code" href="classCEGUI_1_1WindowProperties_1_1Tooltip.html" title="Property to access the tooltip text for this Window.">Tooltip</a> : <span class="keyword">public</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>
<a name="l00585"></a>00585 {
<a name="l00586"></a>00586 <span class="keyword">public</span>:
<a name="l00587"></a>00587 <a class="code" href="classCEGUI_1_1WindowProperties_1_1Tooltip.html" title="Property to access the tooltip text for this Window.">Tooltip</a>() : <a class="code" href="classCEGUI_1_1Property.html#a2acafd4f7165506ef5df5c13cc0fc392" title="Creates a new Property object.">Property</a>(
<a name="l00588"></a>00588 <span class="stringliteral">"Tooltip"</span>,
<a name="l00589"></a>00589 <span class="stringliteral">"Property to get/set the tooltip text for the window. Value is the tooltip text for the window."</span>,
<a name="l00590"></a>00590 <span class="stringliteral">""</span>)
<a name="l00591"></a>00591 {}
<a name="l00592"></a>00592
<a name="l00593"></a>00593 <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <span class="keyword">get</span>(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver) <span class="keyword">const</span>;
<a name="l00594"></a>00594 <span class="keywordtype">void</span> <span class="keyword">set</span>(<a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver, <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="l00595"></a>00595 };
<a name="l00596"></a>00596
<a name="l00611"></a><a class="code" href="classCEGUI_1_1WindowProperties_1_1InheritsTooltipText.html">00611</a> <span class="keyword">class </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...">InheritsTooltipText</a> : <span class="keyword">public</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>
<a name="l00612"></a>00612 {
<a name="l00613"></a>00613 <span class="keyword">public</span>:
<a name="l00614"></a>00614 <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...">InheritsTooltipText</a>() : <a class="code" href="classCEGUI_1_1Property.html#a2acafd4f7165506ef5df5c13cc0fc392" title="Creates a new Property object.">Property</a>(
<a name="l00615"></a>00615 <span class="stringliteral">"InheritsTooltipText"</span>,
<a name="l00616"></a>00616 <span class="stringliteral">"Property to get/set whether the window inherits its parents tooltip text when it has none of its own. Value is either \"True\" or \"False\"."</span>,
<a name="l00617"></a>00617 <span class="stringliteral">"True"</span>)
<a name="l00618"></a>00618 {}
<a name="l00619"></a>00619
<a name="l00620"></a>00620 <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <span class="keyword">get</span>(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver) <span class="keyword">const</span>;
<a name="l00621"></a>00621 <span class="keywordtype">void</span> <span class="keyword">set</span>(<a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver, <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="l00622"></a>00622 };
<a name="l00623"></a>00623
<a name="l00624"></a>00624
<a name="l00637"></a><a class="code" href="classCEGUI_1_1WindowProperties_1_1RiseOnClick.html">00637</a> <span class="keyword">class </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.">RiseOnClick</a> : <span class="keyword">public</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>
<a name="l00638"></a>00638 {
<a name="l00639"></a>00639 <span class="keyword">public</span>:
<a name="l00640"></a>00640 <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.">RiseOnClick</a>() : <a class="code" href="classCEGUI_1_1Property.html#a2acafd4f7165506ef5df5c13cc0fc392" title="Creates a new Property object.">Property</a>(
<a name="l00641"></a>00641 <span class="stringliteral">"RiseOnClick"</span>,
<a name="l00642"></a>00642 <span class="stringliteral">"Property to get/set whether the window will come tot he top of the z order hwn clicked. Value is either \"True\" or \"False\"."</span>,
<a name="l00643"></a>00643 <span class="stringliteral">"True"</span>)
<a name="l00644"></a>00644 {}
<a name="l00645"></a>00645
<a name="l00646"></a>00646 <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <span class="keyword">get</span>(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver) <span class="keyword">const</span>;
<a name="l00647"></a>00647 <span class="keywordtype">void</span> <span class="keyword">set</span>(<a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver, <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="l00648"></a>00648 };
<a name="l00649"></a>00649
<a name="l00650"></a>00650
<a name="l00664"></a><a class="code" href="classCEGUI_1_1WindowProperties_1_1VerticalAlignment.html">00664</a> <span class="keyword">class </span><a class="code" href="classCEGUI_1_1WindowProperties_1_1VerticalAlignment.html" title="Property to access the vertical alignment setting for the window.">VerticalAlignment</a> : <span class="keyword">public</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>
<a name="l00665"></a>00665 {
<a name="l00666"></a>00666 <span class="keyword">public</span>:
<a name="l00667"></a>00667 <a class="code" href="classCEGUI_1_1WindowProperties_1_1VerticalAlignment.html" title="Property to access the vertical alignment setting for the window.">VerticalAlignment</a>() : <a class="code" href="classCEGUI_1_1Property.html#a2acafd4f7165506ef5df5c13cc0fc392" title="Creates a new Property object.">Property</a>(
<a name="l00668"></a>00668 <span class="stringliteral">"VerticalAlignment"</span>,
<a name="l00669"></a>00669 <span class="stringliteral">"Property to get/set the windows vertical alignment. Value is one of \"Top\", \"Centre\" or \"Bottom\"."</span>,
<a name="l00670"></a>00670 <span class="stringliteral">"Top"</span>)
<a name="l00671"></a>00671 {}
<a name="l00672"></a>00672
<a name="l00673"></a>00673 <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <span class="keyword">get</span>(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver) <span class="keyword">const</span>;
<a name="l00674"></a>00674 <span class="keywordtype">void</span> <span class="keyword">set</span>(<a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver, <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="l00675"></a>00675 };
<a name="l00676"></a>00676
<a name="l00677"></a>00677
<a name="l00691"></a><a class="code" href="classCEGUI_1_1WindowProperties_1_1HorizontalAlignment.html">00691</a> <span class="keyword">class </span><a class="code" href="classCEGUI_1_1WindowProperties_1_1HorizontalAlignment.html" title="Property to access the horizontal alignment setting for the window.">HorizontalAlignment</a> : <span class="keyword">public</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>
<a name="l00692"></a>00692 {
<a name="l00693"></a>00693 <span class="keyword">public</span>:
<a name="l00694"></a>00694 <a class="code" href="classCEGUI_1_1WindowProperties_1_1HorizontalAlignment.html" title="Property to access the horizontal alignment setting for the window.">HorizontalAlignment</a>() : <a class="code" href="classCEGUI_1_1Property.html#a2acafd4f7165506ef5df5c13cc0fc392" title="Creates a new Property object.">Property</a>(
<a name="l00695"></a>00695 <span class="stringliteral">"HorizontalAlignment"</span>,
<a name="l00696"></a>00696 <span class="stringliteral">"Property to get/set the windows horizontal alignment. Value is one of \"Left\", \"Centre\" or \"Right\"."</span>,
<a name="l00697"></a>00697 <span class="stringliteral">"Left"</span>)
<a name="l00698"></a>00698 {}
<a name="l00699"></a>00699
<a name="l00700"></a>00700 <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <span class="keyword">get</span>(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver) <span class="keyword">const</span>;
<a name="l00701"></a>00701 <span class="keywordtype">void</span> <span class="keyword">set</span>(<a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver, <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="l00702"></a>00702 };
<a name="l00703"></a>00703
<a name="l00704"></a>00704
<a name="l00723"></a><a class="code" href="classCEGUI_1_1WindowProperties_1_1UnifiedAreaRect.html">00723</a> <span class="keyword">class </span><a class="code" href="classCEGUI_1_1WindowProperties_1_1UnifiedAreaRect.html" title="Property to access the unified area rectangle of the window.">UnifiedAreaRect</a> : <span class="keyword">public</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>
<a name="l00724"></a>00724 {
<a name="l00725"></a>00725 <span class="keyword">public</span>:
<a name="l00726"></a>00726 <a class="code" href="classCEGUI_1_1WindowProperties_1_1UnifiedAreaRect.html" title="Property to access the unified area rectangle of the window.">UnifiedAreaRect</a>() : <a class="code" href="classCEGUI_1_1Property.html#a2acafd4f7165506ef5df5c13cc0fc392" title="Creates a new Property object.">Property</a>(
<a name="l00727"></a>00727 <span class="stringliteral">"UnifiedAreaRect"</span>,
<a name="l00728"></a>00728 <span class="stringliteral">"Property to get/set the windows unified area rectangle. Value is a \"URect\"."</span>,
<a name="l00729"></a>00729 <span class="stringliteral">"{{0,0},{0,0},{0,0},{0,0}}"</span>)
<a name="l00730"></a>00730 {}
<a name="l00731"></a>00731
<a name="l00732"></a>00732 <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <span class="keyword">get</span>(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver) <span class="keyword">const</span>;
<a name="l00733"></a>00733 <span class="keywordtype">void</span> <span class="keyword">set</span>(<a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver, <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="l00734"></a>00734 };
<a name="l00735"></a>00735
<a name="l00736"></a>00736
<a name="l00751"></a><a class="code" href="classCEGUI_1_1WindowProperties_1_1UnifiedPosition.html">00751</a> <span class="keyword">class </span><a class="code" href="classCEGUI_1_1WindowProperties_1_1UnifiedPosition.html" title="Property to access the unified position of the window.">UnifiedPosition</a> : <span class="keyword">public</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>
<a name="l00752"></a>00752 {
<a name="l00753"></a>00753 <span class="keyword">public</span>:
<a name="l00754"></a>00754 <a class="code" href="classCEGUI_1_1WindowProperties_1_1UnifiedPosition.html" title="Property to access the unified position of the window.">UnifiedPosition</a>() : <a class="code" href="classCEGUI_1_1Property.html#a2acafd4f7165506ef5df5c13cc0fc392" title="Creates a new Property object.">Property</a>(
<a name="l00755"></a>00755 <span class="stringliteral">"UnifiedPosition"</span>,
<a name="l00756"></a>00756 <span class="stringliteral">"Property to get/set the windows unified position. Value is a \"UVector2\"."</span>,
<a name="l00757"></a>00757 <span class="stringliteral">"{{0,0},{0,0}}"</span>, <span class="keyword">false</span>)
<a name="l00758"></a>00758 {}
<a name="l00759"></a>00759
<a name="l00760"></a>00760 <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <span class="keyword">get</span>(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver) <span class="keyword">const</span>;
<a name="l00761"></a>00761 <span class="keywordtype">void</span> <span class="keyword">set</span>(<a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver, <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="l00762"></a>00762 };
<a name="l00763"></a>00763
<a name="l00764"></a>00764
<a name="l00777"></a><a class="code" href="classCEGUI_1_1WindowProperties_1_1UnifiedXPosition.html">00777</a> <span class="keyword">class </span><a class="code" href="classCEGUI_1_1WindowProperties_1_1UnifiedXPosition.html" title="Property to access the unified position x-coordinate of the window.">UnifiedXPosition</a> : <span class="keyword">public</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>
<a name="l00778"></a>00778 {
<a name="l00779"></a>00779 <span class="keyword">public</span>:
<a name="l00780"></a>00780 <a class="code" href="classCEGUI_1_1WindowProperties_1_1UnifiedXPosition.html" title="Property to access the unified position x-coordinate of the window.">UnifiedXPosition</a>() : <a class="code" href="classCEGUI_1_1Property.html#a2acafd4f7165506ef5df5c13cc0fc392" title="Creates a new Property object.">Property</a>(
<a name="l00781"></a>00781 <span class="stringliteral">"UnifiedXPosition"</span>,
<a name="l00782"></a>00782 <span class="stringliteral">"Property to get/set the windows unified position x-coordinate. Value is a \"UDim\"."</span>,
<a name="l00783"></a>00783 <span class="stringliteral">"{0,0}"</span>, <span class="keyword">false</span>)
<a name="l00784"></a>00784 {}
<a name="l00785"></a>00785
<a name="l00786"></a>00786 <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <span class="keyword">get</span>(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver) <span class="keyword">const</span>;
<a name="l00787"></a>00787 <span class="keywordtype">void</span> <span class="keyword">set</span>(<a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver, <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="l00788"></a>00788 };
<a name="l00789"></a>00789
<a name="l00790"></a>00790
<a name="l00803"></a><a class="code" href="classCEGUI_1_1WindowProperties_1_1UnifiedYPosition.html">00803</a> <span class="keyword">class </span><a class="code" href="classCEGUI_1_1WindowProperties_1_1UnifiedYPosition.html" title="Property to access the unified position y-coordinate of the window.">UnifiedYPosition</a> : <span class="keyword">public</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>
<a name="l00804"></a>00804 {
<a name="l00805"></a>00805 <span class="keyword">public</span>:
<a name="l00806"></a>00806 <a class="code" href="classCEGUI_1_1WindowProperties_1_1UnifiedYPosition.html" title="Property to access the unified position y-coordinate of the window.">UnifiedYPosition</a>() : <a class="code" href="classCEGUI_1_1Property.html#a2acafd4f7165506ef5df5c13cc0fc392" title="Creates a new Property object.">Property</a>(
<a name="l00807"></a>00807 <span class="stringliteral">"UnifiedYPosition"</span>,
<a name="l00808"></a>00808 <span class="stringliteral">"Property to get/set the windows unified position y-coordinate. Value is a \"UDim\"."</span>,
<a name="l00809"></a>00809 <span class="stringliteral">"{0,0}"</span>, <span class="keyword">false</span>)
<a name="l00810"></a>00810 {}
<a name="l00811"></a>00811
<a name="l00812"></a>00812 <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <span class="keyword">get</span>(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver) <span class="keyword">const</span>;
<a name="l00813"></a>00813 <span class="keywordtype">void</span> <span class="keyword">set</span>(<a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver, <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="l00814"></a>00814 };
<a name="l00815"></a>00815
<a name="l00816"></a>00816
<a name="l00831"></a><a class="code" href="classCEGUI_1_1WindowProperties_1_1UnifiedSize.html">00831</a> <span class="keyword">class </span><a class="code" href="classCEGUI_1_1WindowProperties_1_1UnifiedSize.html" title="Property to access the unified position of the window.">UnifiedSize</a> : <span class="keyword">public</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>
<a name="l00832"></a>00832 {
<a name="l00833"></a>00833 <span class="keyword">public</span>:
<a name="l00834"></a>00834 <a class="code" href="classCEGUI_1_1WindowProperties_1_1UnifiedSize.html" title="Property to access the unified position of the window.">UnifiedSize</a>() : <a class="code" href="classCEGUI_1_1Property.html#a2acafd4f7165506ef5df5c13cc0fc392" title="Creates a new Property object.">Property</a>(
<a name="l00835"></a>00835 <span class="stringliteral">"UnifiedSize"</span>,
<a name="l00836"></a>00836 <span class="stringliteral">"Property to get/set the windows unified size. Value is a \"UVector2\"."</span>,
<a name="l00837"></a>00837 <span class="stringliteral">"{{0,0},{0,0}}"</span>, <span class="keyword">false</span>)
<a name="l00838"></a>00838 {}
<a name="l00839"></a>00839
<a name="l00840"></a>00840 <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <span class="keyword">get</span>(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver) <span class="keyword">const</span>;
<a name="l00841"></a>00841 <span class="keywordtype">void</span> <span class="keyword">set</span>(<a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver, <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="l00842"></a>00842 };
<a name="l00843"></a>00843
<a name="l00844"></a>00844
<a name="l00857"></a><a class="code" href="classCEGUI_1_1WindowProperties_1_1UnifiedWidth.html">00857</a> <span class="keyword">class </span><a class="code" href="classCEGUI_1_1WindowProperties_1_1UnifiedWidth.html" title="Property to access the unified width of the window.">UnifiedWidth</a> : <span class="keyword">public</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>
<a name="l00858"></a>00858 {
<a name="l00859"></a>00859 <span class="keyword">public</span>:
<a name="l00860"></a>00860 <a class="code" href="classCEGUI_1_1WindowProperties_1_1UnifiedWidth.html" title="Property to access the unified width of the window.">UnifiedWidth</a>() : <a class="code" href="classCEGUI_1_1Property.html#a2acafd4f7165506ef5df5c13cc0fc392" title="Creates a new Property object.">Property</a>(
<a name="l00861"></a>00861 <span class="stringliteral">"UnifiedWidth"</span>,
<a name="l00862"></a>00862 <span class="stringliteral">"Property to get/set the windows unified width. Value is a \"UDim\"."</span>,
<a name="l00863"></a>00863 <span class="stringliteral">"{0,0}"</span>, <span class="keyword">false</span>)
<a name="l00864"></a>00864 {}
<a name="l00865"></a>00865
<a name="l00866"></a>00866 <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <span class="keyword">get</span>(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver) <span class="keyword">const</span>;
<a name="l00867"></a>00867 <span class="keywordtype">void</span> <span class="keyword">set</span>(<a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver, <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="l00868"></a>00868 };
<a name="l00869"></a>00869
<a name="l00870"></a>00870
<a name="l00883"></a><a class="code" href="classCEGUI_1_1WindowProperties_1_1UnifiedHeight.html">00883</a> <span class="keyword">class </span><a class="code" href="classCEGUI_1_1WindowProperties_1_1UnifiedHeight.html" title="Property to access the unified height of the window.">UnifiedHeight</a> : <span class="keyword">public</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>
<a name="l00884"></a>00884 {
<a name="l00885"></a>00885 <span class="keyword">public</span>:
<a name="l00886"></a>00886 <a class="code" href="classCEGUI_1_1WindowProperties_1_1UnifiedHeight.html" title="Property to access the unified height of the window.">UnifiedHeight</a>() : <a class="code" href="classCEGUI_1_1Property.html#a2acafd4f7165506ef5df5c13cc0fc392" title="Creates a new Property object.">Property</a>(
<a name="l00887"></a>00887 <span class="stringliteral">"UnifiedHeight"</span>,
<a name="l00888"></a>00888 <span class="stringliteral">"Property to get/set the windows unified height. Value is a \"UDim\"."</span>,
<a name="l00889"></a>00889 <span class="stringliteral">"{0,0}"</span>, <span class="keyword">false</span>)
<a name="l00890"></a>00890 {}
<a name="l00891"></a>00891
<a name="l00892"></a>00892 <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <span class="keyword">get</span>(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver) <span class="keyword">const</span>;
<a name="l00893"></a>00893 <span class="keywordtype">void</span> <span class="keyword">set</span>(<a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver, <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="l00894"></a>00894 };
<a name="l00895"></a>00895
<a name="l00896"></a>00896
<a name="l00911"></a><a class="code" href="classCEGUI_1_1WindowProperties_1_1UnifiedMinSize.html">00911</a> <span class="keyword">class </span><a class="code" href="classCEGUI_1_1WindowProperties_1_1UnifiedMinSize.html" title="Property to access the unified minimum size of the window.">UnifiedMinSize</a> : <span class="keyword">public</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>
<a name="l00912"></a>00912 {
<a name="l00913"></a>00913 <span class="keyword">public</span>:
<a name="l00914"></a>00914 <a class="code" href="classCEGUI_1_1WindowProperties_1_1UnifiedMinSize.html" title="Property to access the unified minimum size of the window.">UnifiedMinSize</a>() : <a class="code" href="classCEGUI_1_1Property.html#a2acafd4f7165506ef5df5c13cc0fc392" title="Creates a new Property object.">Property</a>(
<a name="l00915"></a>00915 <span class="stringliteral">"UnifiedMinSize"</span>,
<a name="l00916"></a>00916 <span class="stringliteral">"Property to get/set the windows unified minimum size. Value is a \"UVector2\"."</span>,
<a name="l00917"></a>00917 <span class="stringliteral">"{{0,0},{0,0}}"</span>)
<a name="l00918"></a>00918 {}
<a name="l00919"></a>00919
<a name="l00920"></a>00920 <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <span class="keyword">get</span>(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver) <span class="keyword">const</span>;
<a name="l00921"></a>00921 <span class="keywordtype">void</span> <span class="keyword">set</span>(<a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver, <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="l00922"></a>00922 };
<a name="l00923"></a>00923
<a name="l00924"></a>00924
<a name="l00939"></a><a class="code" href="classCEGUI_1_1WindowProperties_1_1UnifiedMaxSize.html">00939</a> <span class="keyword">class </span><a class="code" href="classCEGUI_1_1WindowProperties_1_1UnifiedMaxSize.html" title="Property to access the unified maximum size of the window.">UnifiedMaxSize</a> : <span class="keyword">public</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>
<a name="l00940"></a>00940 {
<a name="l00941"></a>00941 <span class="keyword">public</span>:
<a name="l00942"></a>00942 <a class="code" href="classCEGUI_1_1WindowProperties_1_1UnifiedMaxSize.html" title="Property to access the unified maximum size of the window.">UnifiedMaxSize</a>() : <a class="code" href="classCEGUI_1_1Property.html#a2acafd4f7165506ef5df5c13cc0fc392" title="Creates a new Property object.">Property</a>(
<a name="l00943"></a>00943 <span class="stringliteral">"UnifiedMaxSize"</span>,
<a name="l00944"></a>00944 <span class="stringliteral">"Property to get/set the windows unified maximum size. Value is a \"UVector2\"."</span>,
<a name="l00945"></a>00945 <span class="stringliteral">"{{1,0},{1,0}}"</span>)
<a name="l00946"></a>00946 {}
<a name="l00947"></a>00947
<a name="l00948"></a>00948 <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <span class="keyword">get</span>(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver) <span class="keyword">const</span>;
<a name="l00949"></a>00949 <span class="keywordtype">void</span> <span class="keyword">set</span>(<a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver, <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="l00950"></a>00950 };
<a name="l00951"></a>00951
<a name="l00952"></a>00952
<a name="l00965"></a><a class="code" href="classCEGUI_1_1WindowProperties_1_1MousePassThroughEnabled.html">00965</a> <span class="keyword">class </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...">MousePassThroughEnabled</a> : <span class="keyword">public</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>
<a name="l00966"></a>00966 {
<a name="l00967"></a>00967 <span class="keyword">public</span>:
<a name="l00968"></a>00968 <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...">MousePassThroughEnabled</a>() : <a class="code" href="classCEGUI_1_1Property.html#a2acafd4f7165506ef5df5c13cc0fc392" title="Creates a new Property object.">Property</a>(
<a name="l00969"></a>00969 <span class="stringliteral">"MousePassThroughEnabled"</span>,
<a name="l00970"></a>00970 <span class="stringliteral">"Property to get/set whether the window ignores mouse events and pass them through to any windows behind it. Value is either \"True\" or \"False\"."</span>,
<a name="l00971"></a>00971 <span class="stringliteral">"False"</span>)
<a name="l00972"></a>00972 {}
<a name="l00973"></a>00973
<a name="l00974"></a>00974 <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <span class="keyword">get</span>(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver) <span class="keyword">const</span>;
<a name="l00975"></a>00975 <span class="keywordtype">void</span> <span class="keyword">set</span>(<a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver, <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="l00976"></a>00976 };
<a name="l00977"></a>00977
<a name="l00978"></a>00978
<a name="l00989"></a><a class="code" href="classCEGUI_1_1WindowProperties_1_1WindowRenderer.html">00989</a> <span class="keyword">class </span><a class="code" href="classCEGUI_1_1WindowProperties_1_1WindowRenderer.html" title="Property to access/change the assigned window renderer object.">WindowRenderer</a> : <span class="keyword">public</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>
<a name="l00990"></a>00990 {
<a name="l00991"></a>00991 <span class="keyword">public</span>:
<a name="l00992"></a>00992 <a class="code" href="classCEGUI_1_1WindowProperties_1_1WindowRenderer.html" title="Property to access/change the assigned window renderer object.">WindowRenderer</a>() : <a class="code" href="classCEGUI_1_1Property.html#a2acafd4f7165506ef5df5c13cc0fc392" title="Creates a new Property object.">Property</a>(
<a name="l00993"></a>00993 <span class="stringliteral">"WindowRenderer"</span>,
<a name="l00994"></a>00994 <span class="stringliteral">"Property to get/set the windows assigned window renderer objects name. Value is a string."</span>,
<a name="l00995"></a>00995 <span class="stringliteral">""</span>)
<a name="l00996"></a>00996 {}
<a name="l00997"></a>00997
<a name="l00998"></a>00998 <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <span class="keyword">get</span>(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver) <span class="keyword">const</span>;
<a name="l00999"></a>00999 <span class="keywordtype">void</span> <span class="keyword">set</span>(<a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver, <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="l01000"></a>01000
<a name="l01001"></a>01001 <span class="keywordtype">void</span> <a class="code" href="classCEGUI_1_1WindowProperties_1_1WindowRenderer.html#a78762126d47511bfc50815331319bcdf" title="Writes out an XML representation of this class to the given stream.">writeXMLToStream</a>(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver, <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="l01002"></a>01002 };
<a name="l01003"></a>01003
<a name="l01004"></a>01004
<a name="l01015"></a><a class="code" href="classCEGUI_1_1WindowProperties_1_1LookNFeel.html">01015</a> <span class="keyword">class </span><a class="code" href="classCEGUI_1_1WindowProperties_1_1LookNFeel.html" title="Property to access/change the assigned look'n'feel.">LookNFeel</a> : <span class="keyword">public</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>
<a name="l01016"></a>01016 {
<a name="l01017"></a>01017 <span class="keyword">public</span>:
<a name="l01018"></a>01018 <a class="code" href="classCEGUI_1_1WindowProperties_1_1LookNFeel.html" title="Property to access/change the assigned look'n'feel.">LookNFeel</a>() : <a class="code" href="classCEGUI_1_1Property.html#a2acafd4f7165506ef5df5c13cc0fc392" title="Creates a new Property object.">Property</a>(
<a name="l01019"></a>01019 <span class="stringliteral">"LookNFeel"</span>,
<a name="l01020"></a>01020 <span class="stringliteral">"Property to get/set the windows assigned look'n'feel. Value is a string."</span>,
<a name="l01021"></a>01021 <span class="stringliteral">""</span>)
<a name="l01022"></a>01022 {}
<a name="l01023"></a>01023
<a name="l01024"></a>01024 <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <span class="keyword">get</span>(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver) <span class="keyword">const</span>;
<a name="l01025"></a>01025 <span class="keywordtype">void</span> <span class="keyword">set</span>(<a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver, <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="l01026"></a>01026
<a name="l01027"></a>01027 <span class="keywordtype">void</span> <a class="code" href="classCEGUI_1_1WindowProperties_1_1LookNFeel.html#a9f91fba82657dfa2dbeb15dab20a53b7" title="Writes out an XML representation of this class to the given stream.">writeXMLToStream</a>(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver, <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="l01028"></a>01028 };
<a name="l01029"></a>01029
<a name="l01043"></a><a class="code" href="classCEGUI_1_1WindowProperties_1_1DragDropTarget.html">01043</a> <span class="keyword">class </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.">DragDropTarget</a> : <span class="keyword">public</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>
<a name="l01044"></a>01044 {
<a name="l01045"></a>01045 <span class="keyword">public</span>:
<a name="l01046"></a>01046 <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.">DragDropTarget</a>() : <a class="code" href="classCEGUI_1_1Property.html#a2acafd4f7165506ef5df5c13cc0fc392" title="Creates a new Property object.">Property</a>(
<a name="l01047"></a>01047 <span class="stringliteral">"DragDropTarget"</span>,
<a name="l01048"></a>01048 <span class="stringliteral">"Property to get/set whether the Window will receive drag and drop related notifications. Value is either \"True\" or \"False\"."</span>,
<a name="l01049"></a>01049 <span class="stringliteral">"True"</span>)
<a name="l01050"></a>01050 {}
<a name="l01051"></a>01051
<a name="l01052"></a>01052 <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <span class="keyword">get</span>(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver) <span class="keyword">const</span>;
<a name="l01053"></a>01053 <span class="keywordtype">void</span> <span class="keyword">set</span>(<a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver, <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="l01054"></a>01054 };
<a name="l01055"></a>01055
<a name="l01073"></a><a class="code" href="classCEGUI_1_1WindowProperties_1_1AutoRenderingSurface.html">01073</a> <span class="keyword">class </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...">AutoRenderingSurface</a> : <span class="keyword">public</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>
<a name="l01074"></a>01074 {
<a name="l01075"></a>01075 <span class="keyword">public</span>:
<a name="l01076"></a>01076 <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...">AutoRenderingSurface</a>() : <a class="code" href="classCEGUI_1_1Property.html#a2acafd4f7165506ef5df5c13cc0fc392" title="Creates a new Property object.">Property</a>(
<a name="l01077"></a>01077 <span class="stringliteral">"AutoRenderingSurface"</span>,
<a name="l01078"></a>01078 <span class="stringliteral">"Property to get/set whether the Window will automatically attempt to "</span>
<a name="l01079"></a>01079 <span class="stringliteral">"use a full imagery caching RenderingSurface (if supported by the "</span>
<a name="l01080"></a>01080 <span class="stringliteral">"renderer). Here, full imagery caching usually will mean caching a "</span>
<a name="l01081"></a>01081 <span class="stringliteral">"window's representation onto a texture (although no such "</span>
<a name="l01082"></a>01082 <span class="stringliteral">"implementation requirement is specified.)"</span>
<a name="l01083"></a>01083 <span class="stringliteral">" Value is either \"True\" or \"False\"."</span>,
<a name="l01084"></a>01084 <span class="stringliteral">"False"</span>)
<a name="l01085"></a>01085 {}
<a name="l01086"></a>01086
<a name="l01087"></a>01087 <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <span class="keyword">get</span>(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver) <span class="keyword">const</span>;
<a name="l01088"></a>01088 <span class="keywordtype">void</span> <span class="keyword">set</span>(<a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver, <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="l01089"></a>01089 };
<a name="l01090"></a>01090
<a name="l01107"></a><a class="code" href="classCEGUI_1_1WindowProperties_1_1Rotation.html">01107</a> <span class="keyword">class </span><a class="code" href="classCEGUI_1_1WindowProperties_1_1Rotation.html" title="Property to access the rotation factors of the window.">Rotation</a> : <span class="keyword">public</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>
<a name="l01108"></a>01108 {
<a name="l01109"></a>01109 <span class="keyword">public</span>:
<a name="l01110"></a>01110 <a class="code" href="classCEGUI_1_1WindowProperties_1_1Rotation.html" title="Property to access the rotation factors of the window.">Rotation</a>() : <a class="code" href="classCEGUI_1_1Property.html#a2acafd4f7165506ef5df5c13cc0fc392" title="Creates a new Property object.">Property</a>(
<a name="l01111"></a>01111 <span class="stringliteral">"Rotation"</span>,
<a name="l01112"></a>01112 <span class="stringliteral">"Property to get/set the windows rotation factors. Value is "</span>
<a name="l01113"></a>01113 <span class="stringliteral">"\"x:[x_float] y:[y_float] z:[z_float]\"."</span>,
<a name="l01114"></a>01114 <span class="stringliteral">"x:0 y:0 z:0"</span>)
<a name="l01115"></a>01115 {}
<a name="l01116"></a>01116
<a name="l01117"></a>01117 <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <span class="keyword">get</span>(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver) <span class="keyword">const</span>;
<a name="l01118"></a>01118 <span class="keywordtype">void</span> <span class="keyword">set</span>(<a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver, <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="l01119"></a>01119 };
<a name="l01120"></a>01120
<a name="l01133"></a><a class="code" href="classCEGUI_1_1WindowProperties_1_1XRotation.html">01133</a> <span class="keyword">class </span><a class="code" href="classCEGUI_1_1WindowProperties_1_1XRotation.html" title="Property to access the x axis rotation factor of the window.">XRotation</a> : <span class="keyword">public</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>
<a name="l01134"></a>01134 {
<a name="l01135"></a>01135 <span class="keyword">public</span>:
<a name="l01136"></a>01136 <a class="code" href="classCEGUI_1_1WindowProperties_1_1XRotation.html" title="Property to access the x axis rotation factor of the window.">XRotation</a>() : <a class="code" href="classCEGUI_1_1Property.html#a2acafd4f7165506ef5df5c13cc0fc392" title="Creates a new Property object.">Property</a>(
<a name="l01137"></a>01137 <span class="stringliteral">"XRotation"</span>,
<a name="l01138"></a>01138 <span class="stringliteral">"Property to get/set the window's x axis rotation factor. Value is "</span>
<a name="l01139"></a>01139 <span class="stringliteral">"\"[float]\"."</span>,
<a name="l01140"></a>01140 <span class="stringliteral">"0"</span>, <span class="keyword">false</span>)
<a name="l01141"></a>01141 {}
<a name="l01142"></a>01142
<a name="l01143"></a>01143 <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <span class="keyword">get</span>(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver) <span class="keyword">const</span>;
<a name="l01144"></a>01144 <span class="keywordtype">void</span> <span class="keyword">set</span>(<a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver, <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="l01145"></a>01145 };
<a name="l01146"></a>01146
<a name="l01159"></a><a class="code" href="classCEGUI_1_1WindowProperties_1_1YRotation.html">01159</a> <span class="keyword">class </span><a class="code" href="classCEGUI_1_1WindowProperties_1_1YRotation.html" title="Property to access the y axis rotation factor of the window.">YRotation</a> : <span class="keyword">public</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>
<a name="l01160"></a>01160 {
<a name="l01161"></a>01161 <span class="keyword">public</span>:
<a name="l01162"></a>01162 <a class="code" href="classCEGUI_1_1WindowProperties_1_1YRotation.html" title="Property to access the y axis rotation factor of the window.">YRotation</a>() : <a class="code" href="classCEGUI_1_1Property.html#a2acafd4f7165506ef5df5c13cc0fc392" title="Creates a new Property object.">Property</a>(
<a name="l01163"></a>01163 <span class="stringliteral">"YRotation"</span>,
<a name="l01164"></a>01164 <span class="stringliteral">"Property to get/set the window's y axis rotation factor. Value is "</span>
<a name="l01165"></a>01165 <span class="stringliteral">"\"[float]\"."</span>,
<a name="l01166"></a>01166 <span class="stringliteral">"0"</span>, <span class="keyword">false</span>)
<a name="l01167"></a>01167 {}
<a name="l01168"></a>01168
<a name="l01169"></a>01169 <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <span class="keyword">get</span>(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver) <span class="keyword">const</span>;
<a name="l01170"></a>01170 <span class="keywordtype">void</span> <span class="keyword">set</span>(<a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver, <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="l01171"></a>01171 };
<a name="l01172"></a>01172
<a name="l01185"></a><a class="code" href="classCEGUI_1_1WindowProperties_1_1ZRotation.html">01185</a> <span class="keyword">class </span><a class="code" href="classCEGUI_1_1WindowProperties_1_1ZRotation.html" title="Property to access the z axis rotation factor of the window.">ZRotation</a> : <span class="keyword">public</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>
<a name="l01186"></a>01186 {
<a name="l01187"></a>01187 <span class="keyword">public</span>:
<a name="l01188"></a>01188 <a class="code" href="classCEGUI_1_1WindowProperties_1_1ZRotation.html" title="Property to access the z axis rotation factor of the window.">ZRotation</a>() : <a class="code" href="classCEGUI_1_1Property.html#a2acafd4f7165506ef5df5c13cc0fc392" title="Creates a new Property object.">Property</a>(
<a name="l01189"></a>01189 <span class="stringliteral">"ZRotation"</span>,
<a name="l01190"></a>01190 <span class="stringliteral">"Property to get/set the window's z axis rotation factor. Value is "</span>
<a name="l01191"></a>01191 <span class="stringliteral">"\"[float]\"."</span>,
<a name="l01192"></a>01192 <span class="stringliteral">"0"</span>, <span class="keyword">false</span>)
<a name="l01193"></a>01193 {}
<a name="l01194"></a>01194
<a name="l01195"></a>01195 <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <span class="keyword">get</span>(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver) <span class="keyword">const</span>;
<a name="l01196"></a>01196 <span class="keywordtype">void</span> <span class="keyword">set</span>(<a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver, <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="l01197"></a>01197 };
<a name="l01198"></a>01198
<a name="l01213"></a><a class="code" href="classCEGUI_1_1WindowProperties_1_1NonClient.html">01213</a> <span class="keyword">class </span><a class="code" href="classCEGUI_1_1WindowProperties_1_1NonClient.html" title="Property to access window non-client setting.">NonClient</a> : <span class="keyword">public</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>
<a name="l01214"></a>01214 {
<a name="l01215"></a>01215 <span class="keyword">public</span>:
<a name="l01216"></a>01216 <a class="code" href="classCEGUI_1_1WindowProperties_1_1NonClient.html" title="Property to access window non-client setting.">NonClient</a>() : <a class="code" href="classCEGUI_1_1Property.html#a2acafd4f7165506ef5df5c13cc0fc392" title="Creates a new Property object.">Property</a>(
<a name="l01217"></a>01217 <span class="stringliteral">"NonClient"</span>,
<a name="l01218"></a>01218 <span class="stringliteral">"Property to get/set the 'non-client' setting for the Window. "</span>
<a name="l01219"></a>01219 <span class="stringliteral">"Value is either \"True\" or \"False\"."</span>,
<a name="l01220"></a>01220 <span class="stringliteral">"False"</span>)
<a name="l01221"></a>01221 {}
<a name="l01222"></a>01222
<a name="l01223"></a>01223 <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <span class="keyword">get</span>(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver) <span class="keyword">const</span>;
<a name="l01224"></a>01224 <span class="keywordtype">void</span> <span class="keyword">set</span>(<a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver, <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="l01225"></a>01225 };
<a name="l01226"></a>01226
<a name="l01244"></a><a class="code" href="classCEGUI_1_1WindowProperties_1_1TextParsingEnabled.html">01244</a> <span class="keyword">class </span><a class="code" href="classCEGUI_1_1WindowProperties_1_1TextParsingEnabled.html" title="Property to access window text parsing enabled setting.">TextParsingEnabled</a> : <span class="keyword">public</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>
<a name="l01245"></a>01245 {
<a name="l01246"></a>01246 <span class="keyword">public</span>:
<a name="l01247"></a>01247 <a class="code" href="classCEGUI_1_1WindowProperties_1_1TextParsingEnabled.html" title="Property to access window text parsing enabled setting.">TextParsingEnabled</a>() : <a class="code" href="classCEGUI_1_1Property.html#a2acafd4f7165506ef5df5c13cc0fc392" title="Creates a new Property object.">Property</a>(
<a name="l01248"></a>01248 <span class="stringliteral">"TextParsingEnabled"</span>,
<a name="l01249"></a>01249 <span class="stringliteral">"Property to get/set the text parsing setting for the Window. "</span>
<a name="l01250"></a>01250 <span class="stringliteral">"Value is either \"True\" or \"False\"."</span>,
<a name="l01251"></a>01251 <span class="stringliteral">"True"</span>)
<a name="l01252"></a>01252 {}
<a name="l01253"></a>01253
<a name="l01254"></a>01254 <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <span class="keyword">get</span>(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver) <span class="keyword">const</span>;
<a name="l01255"></a>01255 <span class="keywordtype">void</span> <span class="keyword">set</span>(<a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver, <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="l01256"></a>01256 };
<a name="l01257"></a>01257
<a name="l01280"></a><a class="code" href="classCEGUI_1_1WindowProperties_1_1Margin.html">01280</a> <span class="keyword">class </span><a class="code" href="classCEGUI_1_1WindowProperties_1_1Margin.html" title="Property to access window margin.">Margin</a> : <span class="keyword">public</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>
<a name="l01281"></a>01281 {
<a name="l01282"></a>01282 <span class="keyword">public</span>:
<a name="l01283"></a>01283 <a class="code" href="classCEGUI_1_1WindowProperties_1_1Margin.html" title="Property to access window margin.">Margin</a>() : <a class="code" href="classCEGUI_1_1Property.html#a2acafd4f7165506ef5df5c13cc0fc392" title="Creates a new Property object.">Property</a>(
<a name="l01284"></a>01284 <span class="stringliteral">"Margin"</span>,
<a name="l01285"></a>01285 <span class="stringliteral">"Property to get/set margin for the Window. Value format:"</span>
<a name="l01286"></a>01286 <span class="stringliteral">"{top:{[tops],[topo]},left:{[lefts],[lefto]},bottom:{[bottoms],[bottomo]},right:{[rights],[righto]}}."</span>,
<a name="l01287"></a>01287 <span class="stringliteral">"{top:{0,0},left:{0,0},bottom:{0,0},right:{0,0}}"</span>)
<a name="l01288"></a>01288 {}
<a name="l01289"></a>01289
<a name="l01290"></a>01290 <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <span class="keyword">get</span>(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver) <span class="keyword">const</span>;
<a name="l01291"></a>01291 <span class="keywordtype">void</span> <span class="keyword">set</span>(<a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver, <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="l01292"></a>01292 };
<a name="l01293"></a>01293
<a name="l01308"></a><a class="code" href="classCEGUI_1_1WindowProperties_1_1UpdateMode.html">01308</a> <span class="keyword">class </span><a class="code" href="classCEGUI_1_1WindowProperties_1_1UpdateMode.html" title="Property to access the update mode setting for the window.">UpdateMode</a> : <span class="keyword">public</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>
<a name="l01309"></a>01309 {
<a name="l01310"></a>01310 <span class="keyword">public</span>:
<a name="l01311"></a>01311 <a class="code" href="classCEGUI_1_1WindowProperties_1_1UpdateMode.html" title="Property to access the update mode setting for the window.">UpdateMode</a>() : <a class="code" href="classCEGUI_1_1Property.html#a2acafd4f7165506ef5df5c13cc0fc392" title="Creates a new Property object.">Property</a>(
<a name="l01312"></a>01312 <span class="stringliteral">"UpdateMode"</span>,
<a name="l01313"></a>01313 <span class="stringliteral">"Property to get/set the window update mode setting. "</span>
<a name="l01314"></a>01314 <span class="stringliteral">"Value is one of \"Always\", \"Never\" or \"Visible\"."</span>,
<a name="l01315"></a>01315 <span class="stringliteral">"Visible"</span>)
<a name="l01316"></a>01316 {}
<a name="l01317"></a>01317
<a name="l01318"></a>01318 <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <span class="keyword">get</span>(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver) <span class="keyword">const</span>;
<a name="l01319"></a>01319 <span class="keywordtype">void</span> <span class="keyword">set</span>(<a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver, <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="l01320"></a>01320 };
<a name="l01321"></a>01321
<a name="l01337"></a><a class="code" href="classCEGUI_1_1WindowProperties_1_1MouseInputPropagationEnabled.html">01337</a> <span class="keyword">class </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...">MouseInputPropagationEnabled</a> : <span class="keyword">public</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>
<a name="l01338"></a>01338 {
<a name="l01339"></a>01339 <span class="keyword">public</span>:
<a name="l01340"></a>01340 <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...">MouseInputPropagationEnabled</a>() : <a class="code" href="classCEGUI_1_1Property.html#a2acafd4f7165506ef5df5c13cc0fc392" title="Creates a new Property object.">Property</a>(
<a name="l01341"></a>01341 <span class="stringliteral">"MouseInputPropagationEnabled"</span>,
<a name="l01342"></a>01342 <span class="stringliteral">"Property to get/set whether unhandled mouse inputs should be "</span>
<a name="l01343"></a>01343 <span class="stringliteral">"propagated back to the Window's parent. "</span>
<a name="l01344"></a>01344 <span class="stringliteral">"Value is either \"True\" or \"False\"."</span>,
<a name="l01345"></a>01345 <span class="stringliteral">"False"</span>)
<a name="l01346"></a>01346 {}
<a name="l01347"></a>01347
<a name="l01348"></a>01348 <a class="code" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> <span class="keyword">get</span>(<span class="keyword">const</span> <a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver) <span class="keyword">const</span>;
<a name="l01349"></a>01349 <span class="keywordtype">void</span> <span class="keyword">set</span>(<a class="code" href="classCEGUI_1_1PropertyReceiver.html" title="Dummy base class to ensure correct casting of receivers.">PropertyReceiver</a>* receiver, <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="l01350"></a>01350 };
<a name="l01351"></a>01351
<a name="l01352"></a>01352 } <span class="comment">// End of WindowProperties namespace section</span>
<a name="l01353"></a>01353
<a name="l01354"></a>01354
<a name="l01355"></a>01355 } <span class="comment">// End of CEGUI namespace section</span>
<a name="l01356"></a>01356
<a name="l01357"></a>01357 <span class="preprocessor">#endif // end of guard _CEGUIWindowProperties_h_</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>
|