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
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Crazy Eddies GUI System: CEGUI::ScrolledContainer Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<!-- Generated by Doxygen 1.7.4 -->
<script type="text/javascript">
function hasClass(ele,cls) {
return ele.className.match(new RegExp('(\\s|^)'+cls+'(\\s|$)'));
}
function addClass(ele,cls) {
if (!this.hasClass(ele,cls)) ele.className += " "+cls;
}
function removeClass(ele,cls) {
if (hasClass(ele,cls)) {
var reg = new RegExp('(\\s|^)'+cls+'(\\s|$)');
ele.className=ele.className.replace(reg,' ');
}
}
function toggleVisibility(linkObj) {
var base = linkObj.getAttribute('id');
var summary = document.getElementById(base + '-summary');
var content = document.getElementById(base + '-content');
var trigger = document.getElementById(base + '-trigger');
if ( hasClass(linkObj,'closed') ) {
summary.style.display = 'none';
content.style.display = 'block';
trigger.src = 'open.png';
removeClass(linkObj,'closed');
addClass(linkObj,'opened');
} else if ( hasClass(linkObj,'opened') ) {
summary.style.display = 'block';
content.style.display = 'none';
trigger.src = 'closed.png';
removeClass(linkObj,'opened');
addClass(linkObj,'closed');
}
return false;
}
</script>
<div id="top">
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td style="padding-left: 0.5em;">
<div id="projectname">Crazy Eddies GUI System <span id="projectnumber">0.7.6</span></div>
</td>
</tr>
</tbody>
</table>
</div>
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="pages.html"><span>Related Pages</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class List</span></a></li>
<li><a href="classes.html"><span>Class Index</span></a></li>
<li><a href="inherits.html"><span>Class Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><a class="el" href="namespaceCEGUI.html">CEGUI</a> </li>
<li class="navelem"><a class="el" href="classCEGUI_1_1ScrolledContainer.html">ScrolledContainer</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> |
<a href="#pub-static-attribs">Static Public Attributes</a> |
<a href="#pro-types">Protected Types</a> |
<a href="#pro-methods">Protected Member Functions</a> |
<a href="#pro-attribs">Protected Attributes</a> </div>
<div class="headertitle">
<div class="title">CEGUI::ScrolledContainer Class Reference</div> </div>
</div>
<div class="contents">
<!-- doxytag: class="CEGUI::ScrolledContainer" --><!-- doxytag: inherits="CEGUI::Window" -->
<p>Helper container window class which is used in the implementation of the <a class="el" href="classCEGUI_1_1ScrollablePane.html" title="Base class for the ScrollablePane widget.">ScrollablePane</a> widget class.
<a href="classCEGUI_1_1ScrolledContainer.html#details">More...</a></p>
<div id="dynsection-0" onclick="return toggleVisibility(this)" class="dynheader closed" style="cursor:pointer;">
<img id="dynsection-0-trigger" src="closed.png"/> Inheritance diagram for CEGUI::ScrolledContainer:</div>
<div id="dynsection-0-summary" class="dynsummary" style="display:block;">
</div>
<div id="dynsection-0-content" class="dyncontent" style="display:none;">
<div class="center"><img src="classCEGUI_1_1ScrolledContainer__inherit__graph.gif" border="0" usemap="#CEGUI_1_1ScrolledContainer_inherit__map" alt="Inheritance graph"/></div>
<map name="CEGUI_1_1ScrolledContainer_inherit__map" id="CEGUI_1_1ScrolledContainer_inherit__map">
<area shape="rect" id="node2" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv..." alt="" coords="33,83,153,112"/><area shape="rect" id="node4" href="classCEGUI_1_1PropertySet.html" title="Class that contains a collection of Property objects." alt="" coords="23,5,164,35"/></map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>
<div id="dynsection-1" onclick="return toggleVisibility(this)" class="dynheader closed" style="cursor:pointer;">
<img id="dynsection-1-trigger" src="closed.png"/> Collaboration diagram for CEGUI::ScrolledContainer:</div>
<div id="dynsection-1-summary" class="dynsummary" style="display:block;">
</div>
<div id="dynsection-1-content" class="dyncontent" style="display:none;">
<div class="center"><img src="classCEGUI_1_1ScrolledContainer__coll__graph.gif" border="0" usemap="#CEGUI_1_1ScrolledContainer_coll__map" alt="Collaboration graph"/></div>
<map name="CEGUI_1_1ScrolledContainer_coll__map" id="CEGUI_1_1ScrolledContainer_coll__map">
<area shape="rect" id="node2" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv..." alt="" coords="117,181,237,211"/><area shape="rect" id="node4" href="classCEGUI_1_1Rect.html" title="Class encapsulating operations on a Rectangle." alt="" coords="11,5,112,35"/><area shape="rect" id="node8" href="classCEGUI_1_1ScrolledContainerProperties_1_1ChildExtentsArea.html" title="Property offering read-only access to the current content extents rectangle (as window relative pixel..." alt="" coords="391,181,735,211"/></map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>
<p><a href="classCEGUI_1_1ScrolledContainer-members.html">List of all members.</a></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a971f7b2fbfba1fbaf9a6a6671960edef"></a><!-- doxytag: member="CEGUI::ScrolledContainer::ScrolledContainer" ref="a971f7b2fbfba1fbaf9a6a6671960edef" args="(const String &type, const String &name)" -->
 </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrolledContainer.html#a971f7b2fbfba1fbaf9a6a6671960edef">ScrolledContainer</a> (const <a class="el" href="classCEGUI_1_1String.html">String</a> &type, const <a class="el" href="classCEGUI_1_1String.html">String</a> &name)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Constructor for <a class="el" href="classCEGUI_1_1ScrolledContainer.html" title="Helper container window class which is used in the implementation of the ScrollablePane widget class...">ScrolledContainer</a> objects. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="afd688370a632c18d5e9cc96bb1f013df"></a><!-- doxytag: member="CEGUI::ScrolledContainer::~ScrolledContainer" ref="afd688370a632c18d5e9cc96bb1f013df" args="(void)" -->
 </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrolledContainer.html#afd688370a632c18d5e9cc96bb1f013df">~ScrolledContainer</a> (void)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Destructor for <a class="el" href="classCEGUI_1_1ScrolledContainer.html" title="Helper container window class which is used in the implementation of the ScrollablePane widget class...">ScrolledContainer</a> objects. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrolledContainer.html#ab97b345c8182cb6dd4bbd3f25ce18df0">isContentPaneAutoSized</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return whether the content pane is auto sized. <a href="#ab97b345c8182cb6dd4bbd3f25ce18df0"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrolledContainer.html#a8c1f2d32d965438e9284046d1d28a425">setContentPaneAutoSized</a> (bool setting)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Set whether the content pane should be auto-sized. <a href="#a8c1f2d32d965438e9284046d1d28a425"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classCEGUI_1_1Rect.html">Rect</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrolledContainer.html#a2b7711d64fc8714698b5a23b942b9a44">getContentArea</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return the current content pane area for the <a class="el" href="classCEGUI_1_1ScrolledContainer.html" title="Helper container window class which is used in the implementation of the ScrollablePane widget class...">ScrolledContainer</a>. <a href="#a2b7711d64fc8714698b5a23b942b9a44"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrolledContainer.html#a87ea10d0e62f942c98f6016e98c67420">setContentArea</a> (const <a class="el" href="classCEGUI_1_1Rect.html">Rect</a> &area)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Set the current content pane area for the <a class="el" href="classCEGUI_1_1ScrolledContainer.html" title="Helper container window class which is used in the implementation of the ScrollablePane widget class...">ScrolledContainer</a>. <a href="#a87ea10d0e62f942c98f6016e98c67420"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classCEGUI_1_1Rect.html">Rect</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrolledContainer.html#a12cb4c9e712e1c1e43c11ffd44780142">getChildExtentsArea</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return the current extents of the attached content. <a href="#a12cb4c9e712e1c1e43c11ffd44780142"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classCEGUI_1_1Rect.html">Rect</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrolledContainer.html#aa4b2220f2739409908895b9c10cc4271">getUnclippedInnerRect_impl</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return a <a class="el" href="classCEGUI_1_1Rect.html" title="Class encapsulating operations on a Rectangle.">Rect</a> object that describes, unclipped, the inner rectangle for this window. The inner rectangle is typically an area that excludes some frame or other rendering that should not be touched by subsequent rendering. <a href="#aa4b2220f2739409908895b9c10cc4271"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="pub-static-attribs"></a>
Static Public Attributes</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a5b559345a96cb9176b3e562d177f21a0"></a><!-- doxytag: member="CEGUI::ScrolledContainer::WidgetTypeName" ref="a5b559345a96cb9176b3e562d177f21a0" args="" -->
static const <a class="el" href="classCEGUI_1_1String.html">String</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrolledContainer.html#a5b559345a96cb9176b3e562d177f21a0">WidgetTypeName</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Type name for <a class="el" href="classCEGUI_1_1ScrolledContainer.html" title="Helper container window class which is used in the implementation of the ScrollablePane widget class...">ScrolledContainer</a>. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a756c50a29182b67ce4e64149bcc55da0"></a><!-- doxytag: member="CEGUI::ScrolledContainer::EventNamespace" ref="a756c50a29182b67ce4e64149bcc55da0" args="" -->
static const <a class="el" href="classCEGUI_1_1String.html">String</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrolledContainer.html#a756c50a29182b67ce4e64149bcc55da0">EventNamespace</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Namespace for global events. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="classCEGUI_1_1String.html">String</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrolledContainer.html#a73f8c9e93aa9e9c6018e3d550ba96ece">EventContentChanged</a></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="classCEGUI_1_1String.html">String</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrolledContainer.html#ae7632290ee3983df2fcf3878ab144d62">EventAutoSizeSettingChanged</a></td></tr>
<tr><td colspan="2"><h2><a name="pro-types"></a>
Protected Types</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a0117cd625fa1cf615b6d2cb36c5c50db"></a><!-- doxytag: member="CEGUI::ScrolledContainer::ConnectionTracker" ref="a0117cd625fa1cf615b6d2cb36c5c50db" args="" -->
typedef std::multimap< <a class="el" href="classCEGUI_1_1Window.html">Window</a> <br class="typebreak"/>
*, <a class="el" href="classCEGUI_1_1RefCounted.html">Event::Connection</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrolledContainer.html#a0117cd625fa1cf615b6d2cb36c5c50db">ConnectionTracker</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">type definition for collection used to track event connections. <br/></td></tr>
<tr><td colspan="2"><h2><a name="pro-methods"></a>
Protected Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrolledContainer.html#a0b367d866269350b4994a1ba3e4d4926">testClassName_impl</a> (const <a class="el" href="classCEGUI_1_1String.html">String</a> &class_name) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return whether this window was inherited from the given class name at some point in the inheritance hierarchy. <a href="#a0b367d866269350b4994a1ba3e4d4926"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrolledContainer.html#a8e9d63a337031cf0d5446da8e8807b3e">onContentChanged</a> (<a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> &e)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Notification method called whenever the content size may have changed. <a href="#a8e9d63a337031cf0d5446da8e8807b3e"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrolledContainer.html#a9bbe3d43738af49e2fb51176a6e8ce51">onAutoSizeSettingChanged</a> (<a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> &e)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Notification method called whenever the setting that controls whether the content pane is automatically sized is changed. <a href="#a9bbe3d43738af49e2fb51176a6e8ce51"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a801208fa1ec08bff2424e910ad3f8222"></a><!-- doxytag: member="CEGUI::ScrolledContainer::handleChildSized" ref="a801208fa1ec08bff2424e910ad3f8222" args="(const EventArgs &e)" -->
bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrolledContainer.html#a801208fa1ec08bff2424e910ad3f8222">handleChildSized</a> (const <a class="el" href="classCEGUI_1_1EventArgs.html">EventArgs</a> &e)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">handles notifications about child windows being moved. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a7c8ccf99473e75a69b91e82efcbb1683"></a><!-- doxytag: member="CEGUI::ScrolledContainer::handleChildMoved" ref="a7c8ccf99473e75a69b91e82efcbb1683" args="(const EventArgs &e)" -->
bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrolledContainer.html#a7c8ccf99473e75a69b91e82efcbb1683">handleChildMoved</a> (const <a class="el" href="classCEGUI_1_1EventArgs.html">EventArgs</a> &e)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">handles notifications about child windows being sized. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrolledContainer.html#ab2f606b06b1dc653d1c819679673839c">drawSelf</a> (const <a class="el" href="structCEGUI_1_1RenderingContext.html">RenderingContext</a> &)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Perform the actual rendering for this <a class="el" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a>. <a href="#ab2f606b06b1dc653d1c819679673839c"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ae194e5cf5bb1b7bd70e3aa8ca0c331f8"></a><!-- doxytag: member="CEGUI::ScrolledContainer::getInnerRectClipper_impl" ref="ae194e5cf5bb1b7bd70e3aa8ca0c331f8" args="() const " -->
<a class="el" href="classCEGUI_1_1Rect.html">Rect</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrolledContainer.html#ae194e5cf5bb1b7bd70e3aa8ca0c331f8">getInnerRectClipper_impl</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Default implementation of function to return <a class="el" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a> inner clipper area. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a330caeace2d97e987184504bc65245e6"></a><!-- doxytag: member="CEGUI::ScrolledContainer::getNonClientChildWindowContentArea_impl" ref="a330caeace2d97e987184504bc65245e6" args="() const " -->
<a class="el" href="classCEGUI_1_1Rect.html">Rect</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrolledContainer.html#a330caeace2d97e987184504bc65245e6">getNonClientChildWindowContentArea_impl</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Default implementation of function to return non-client content area. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a4ccb923a4d259c801c138c426204e739"></a><!-- doxytag: member="CEGUI::ScrolledContainer::getClientChildWindowContentArea_impl" ref="a4ccb923a4d259c801c138c426204e739" args="() const " -->
<a class="el" href="classCEGUI_1_1Rect.html">Rect</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrolledContainer.html#a4ccb923a4d259c801c138c426204e739">getClientChildWindowContentArea_impl</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Default implementation of function to return client content area. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a1e5ab5afbe02d2163310cc46b1361b60"></a><!-- doxytag: member="CEGUI::ScrolledContainer::getHitTestRect_impl" ref="a1e5ab5afbe02d2163310cc46b1361b60" args="() const " -->
<a class="el" href="classCEGUI_1_1Rect.html">Rect</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrolledContainer.html#a1e5ab5afbe02d2163310cc46b1361b60">getHitTestRect_impl</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Default implementation of function to return <a class="el" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a> hit-test area. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrolledContainer.html#af2cb466f565f777cbca50a186bb9a8a4">onChildAdded</a> (<a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> &e)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Handler called when a child window is added to this window. <a href="#af2cb466f565f777cbca50a186bb9a8a4"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrolledContainer.html#aedbc2a8fa35438c92608ff648fbdf7ad">onChildRemoved</a> (<a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> &e)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Handler called when a child window is removed from this window. <a href="#aedbc2a8fa35438c92608ff648fbdf7ad"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrolledContainer.html#ae19ba6819703ad1515ff09fe819a7c65">onParentSized</a> (<a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> &e)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Handler called when this window's parent window has been resized. If this window is the root / GUI Sheet window, this call will be made when the display size changes. <a href="#ae19ba6819703ad1515ff09fe819a7c65"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="pro-attribs"></a>
Protected Attributes</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a3622451b23341532e28f252b49080d76"></a><!-- doxytag: member="CEGUI::ScrolledContainer::d_eventConnections" ref="a3622451b23341532e28f252b49080d76" args="" -->
<a class="el" href="classCEGUI_1_1ScrolledContainer.html#a0117cd625fa1cf615b6d2cb36c5c50db">ConnectionTracker</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrolledContainer.html#a3622451b23341532e28f252b49080d76">d_eventConnections</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Tracks event connections we make. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a1eff03732b44f5f411a438b3dcad08a1"></a><!-- doxytag: member="CEGUI::ScrolledContainer::d_contentArea" ref="a1eff03732b44f5f411a438b3dcad08a1" args="" -->
<a class="el" href="classCEGUI_1_1Rect.html">Rect</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrolledContainer.html#a1eff03732b44f5f411a438b3dcad08a1">d_contentArea</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Holds extents of the content pane. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a55028171a7c505b7a380afb7da809f6c"></a><!-- doxytag: member="CEGUI::ScrolledContainer::d_autosizePane" ref="a55028171a7c505b7a380afb7da809f6c" args="" -->
bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1ScrolledContainer.html#a55028171a7c505b7a380afb7da809f6c">d_autosizePane</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">true if the pane auto-sizes itself. <br/></td></tr>
</table>
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
<div class="textblock"><p>Helper container window class which is used in the implementation of the <a class="el" href="classCEGUI_1_1ScrollablePane.html" title="Base class for the ScrollablePane widget.">ScrollablePane</a> widget class. </p>
</div><hr/><h2>Member Function Documentation</h2>
<a class="anchor" id="ab2f606b06b1dc653d1c819679673839c"></a><!-- doxytag: member="CEGUI::ScrolledContainer::drawSelf" ref="ab2f606b06b1dc653d1c819679673839c" args="(const RenderingContext &)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::ScrolledContainer::drawSelf </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="structCEGUI_1_1RenderingContext.html">RenderingContext</a> & </td>
<td class="paramname"><em>ctx</em></td><td>)</td>
<td><code> [inline, protected, virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Perform the actual rendering for this <a class="el" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a>. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">ctx</td><td><a class="el" href="structCEGUI_1_1RenderingContext.html" title="struct that holds some context relating to a RenderingSurface object.">RenderingContext</a> holding the details of the <a class="el" href="classCEGUI_1_1RenderingSurface.html" title="Class that represents a surface that can have geometry based imagery drawn to it.">RenderingSurface</a> to be used for the <a class="el" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a> rendering operations.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing </dd></dl>
<p>Reimplemented from <a class="el" href="classCEGUI_1_1Window.html#a676371a74a6df576a1167480f25f61ca">CEGUI::Window</a>.</p>
</div>
</div>
<a class="anchor" id="a12cb4c9e712e1c1e43c11ffd44780142"></a><!-- doxytag: member="CEGUI::ScrolledContainer::getChildExtentsArea" ref="a12cb4c9e712e1c1e43c11ffd44780142" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classCEGUI_1_1Rect.html">Rect</a> CEGUI::ScrolledContainer::getChildExtentsArea </td>
<td>(</td>
<td class="paramtype">void </td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Return the current extents of the attached content. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><a class="el" href="classCEGUI_1_1Rect.html" title="Class encapsulating operations on a Rectangle.">Rect</a> object that describes the pixel extents of the attached child windows. This is effectively the smallest bounding box that could contain all the attached windows. </dd></dl>
</div>
</div>
<a class="anchor" id="a2b7711d64fc8714698b5a23b942b9a44"></a><!-- doxytag: member="CEGUI::ScrolledContainer::getContentArea" ref="a2b7711d64fc8714698b5a23b942b9a44" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">const <a class="el" href="classCEGUI_1_1Rect.html">Rect</a>& CEGUI::ScrolledContainer::getContentArea </td>
<td>(</td>
<td class="paramtype">void </td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Return the current content pane area for the <a class="el" href="classCEGUI_1_1ScrolledContainer.html" title="Helper container window class which is used in the implementation of the ScrollablePane widget class...">ScrolledContainer</a>. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><a class="el" href="classCEGUI_1_1Rect.html" title="Class encapsulating operations on a Rectangle.">Rect</a> object that details the current pixel extents of the content pane represented by this <a class="el" href="classCEGUI_1_1ScrolledContainer.html" title="Helper container window class which is used in the implementation of the ScrollablePane widget class...">ScrolledContainer</a>. </dd></dl>
</div>
</div>
<a class="anchor" id="aa4b2220f2739409908895b9c10cc4271"></a><!-- doxytag: member="CEGUI::ScrolledContainer::getUnclippedInnerRect_impl" ref="aa4b2220f2739409908895b9c10cc4271" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classCEGUI_1_1Rect.html">Rect</a> CEGUI::ScrolledContainer::getUnclippedInnerRect_impl </td>
<td>(</td>
<td class="paramtype">void </td>
<td class="paramname"></td><td>)</td>
<td> const<code> [virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Return a <a class="el" href="classCEGUI_1_1Rect.html" title="Class encapsulating operations on a Rectangle.">Rect</a> object that describes, unclipped, the inner rectangle for this window. The inner rectangle is typically an area that excludes some frame or other rendering that should not be touched by subsequent rendering. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><a class="el" href="classCEGUI_1_1Rect.html" title="Class encapsulating operations on a Rectangle.">Rect</a> object that describes, in unclipped screen pixel co-ordinates, the window object's inner rect area.</dd></dl>
<dl class="note"><dt><b>Note:</b></dt><dd>This function is going to change from public visibility to pretected. All code accessing the area rects via external code should be using the regular getUnclippedInnerRect function. </dd></dl>
<p>Reimplemented from <a class="el" href="classCEGUI_1_1Window.html#a8972787b088f97a76e00ca0113f3a7c9">CEGUI::Window</a>.</p>
</div>
</div>
<a class="anchor" id="ab97b345c8182cb6dd4bbd3f25ce18df0"></a><!-- doxytag: member="CEGUI::ScrolledContainer::isContentPaneAutoSized" ref="ab97b345c8182cb6dd4bbd3f25ce18df0" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool CEGUI::ScrolledContainer::isContentPaneAutoSized </td>
<td>(</td>
<td class="paramtype">void </td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Return whether the content pane is auto sized. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><ul>
<li>true to indicate the content pane will automatically resize itself.</li>
<li>false to indicate the content pane will not automatically resize itself. </li>
</ul>
</dd></dl>
</div>
</div>
<a class="anchor" id="a9bbe3d43738af49e2fb51176a6e8ce51"></a><!-- doxytag: member="CEGUI::ScrolledContainer::onAutoSizeSettingChanged" ref="a9bbe3d43738af49e2fb51176a6e8ce51" args="(WindowEventArgs &e)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void CEGUI::ScrolledContainer::onAutoSizeSettingChanged </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> & </td>
<td class="paramname"><em>e</em></td><td>)</td>
<td><code> [protected, virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Notification method called whenever the setting that controls whether the content pane is automatically sized is changed. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">e</td><td><a class="el" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a> object.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>
</div>
</div>
<a class="anchor" id="af2cb466f565f777cbca50a186bb9a8a4"></a><!-- doxytag: member="CEGUI::ScrolledContainer::onChildAdded" ref="af2cb466f565f777cbca50a186bb9a8a4" args="(WindowEventArgs &e)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::ScrolledContainer::onChildAdded </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> & </td>
<td class="paramname"><em>e</em></td><td>)</td>
<td><code> [protected, virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Handler called when a child window is added to this window. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">e</td><td><a class="el" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a> object whose 'window' pointer field is set to the window that has been added. </td></tr>
</table>
</dd>
</dl>
<p>Reimplemented from <a class="el" href="classCEGUI_1_1Window.html#a3be28569138ecd4ff479010d33eb248e">CEGUI::Window</a>.</p>
</div>
</div>
<a class="anchor" id="aedbc2a8fa35438c92608ff648fbdf7ad"></a><!-- doxytag: member="CEGUI::ScrolledContainer::onChildRemoved" ref="aedbc2a8fa35438c92608ff648fbdf7ad" args="(WindowEventArgs &e)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::ScrolledContainer::onChildRemoved </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> & </td>
<td class="paramname"><em>e</em></td><td>)</td>
<td><code> [protected, virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Handler called when a child window is removed from this window. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">e</td><td><a class="el" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a> object whose 'window' pointer field is set the window that has been removed. </td></tr>
</table>
</dd>
</dl>
<p>Reimplemented from <a class="el" href="classCEGUI_1_1Window.html#aec8b76723433b87ae5b8cef0be76ae1f">CEGUI::Window</a>.</p>
</div>
</div>
<a class="anchor" id="a8e9d63a337031cf0d5446da8e8807b3e"></a><!-- doxytag: member="CEGUI::ScrolledContainer::onContentChanged" ref="a8e9d63a337031cf0d5446da8e8807b3e" args="(WindowEventArgs &e)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void CEGUI::ScrolledContainer::onContentChanged </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> & </td>
<td class="paramname"><em>e</em></td><td>)</td>
<td><code> [protected, virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Notification method called whenever the content size may have changed. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">e</td><td><a class="el" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a> object.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>
</div>
</div>
<a class="anchor" id="ae19ba6819703ad1515ff09fe819a7c65"></a><!-- doxytag: member="CEGUI::ScrolledContainer::onParentSized" ref="ae19ba6819703ad1515ff09fe819a7c65" args="(WindowEventArgs &e)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::ScrolledContainer::onParentSized </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> & </td>
<td class="paramname"><em>e</em></td><td>)</td>
<td><code> [protected, virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Handler called when this window's parent window has been resized. If this window is the root / GUI Sheet window, this call will be made when the display size changes. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">e</td><td><a class="el" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a> object whose 'window' pointer field is set the the window that caused the event; this is typically either this window's parent window, or NULL to indicate the screen size has changed. </td></tr>
</table>
</dd>
</dl>
<p>Reimplemented from <a class="el" href="classCEGUI_1_1Window.html#ae60146da602ae57482380def270dc283">CEGUI::Window</a>.</p>
</div>
</div>
<a class="anchor" id="a87ea10d0e62f942c98f6016e98c67420"></a><!-- doxytag: member="CEGUI::ScrolledContainer::setContentArea" ref="a87ea10d0e62f942c98f6016e98c67420" args="(const Rect &area)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::ScrolledContainer::setContentArea </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classCEGUI_1_1Rect.html">Rect</a> & </td>
<td class="paramname"><em>area</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Set the current content pane area for the <a class="el" href="classCEGUI_1_1ScrolledContainer.html" title="Helper container window class which is used in the implementation of the ScrollablePane widget class...">ScrolledContainer</a>. </p>
<dl class="note"><dt><b>Note:</b></dt><dd>If the <a class="el" href="classCEGUI_1_1ScrolledContainer.html" title="Helper container window class which is used in the implementation of the ScrollablePane widget class...">ScrolledContainer</a> is configured to auto-size the content pane this call will have no effect.</dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">area</td><td><a class="el" href="classCEGUI_1_1Rect.html" title="Class encapsulating operations on a Rectangle.">Rect</a> object that details the pixel extents to use for the content pane represented by this <a class="el" href="classCEGUI_1_1ScrolledContainer.html" title="Helper container window class which is used in the implementation of the ScrollablePane widget class...">ScrolledContainer</a>.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>
</div>
</div>
<a class="anchor" id="a8c1f2d32d965438e9284046d1d28a425"></a><!-- doxytag: member="CEGUI::ScrolledContainer::setContentPaneAutoSized" ref="a8c1f2d32d965438e9284046d1d28a425" args="(bool setting)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::ScrolledContainer::setContentPaneAutoSized </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>setting</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Set whether the content pane should be auto-sized. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">setting</td><td><ul>
<li>true to indicate the content pane should automatically resize itself.</li>
<li>false to indicate the content pane should not automatically resize itself.</li>
</ul>
</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>
</div>
</div>
<a class="anchor" id="a0b367d866269350b4994a1ba3e4d4926"></a><!-- doxytag: member="CEGUI::ScrolledContainer::testClassName_impl" ref="a0b367d866269350b4994a1ba3e4d4926" args="(const String &class_name) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual bool CEGUI::ScrolledContainer::testClassName_impl </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classCEGUI_1_1String.html">String</a> & </td>
<td class="paramname"><em>class_name</em></td><td>)</td>
<td> const<code> [inline, protected, virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Return whether this window was inherited from the given class name at some point in the inheritance hierarchy. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">class_name</td><td>The class name that is to be checked.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>true if this window was inherited from <em>class_name</em>. false if not. </dd></dl>
<p>Reimplemented from <a class="el" href="classCEGUI_1_1Window.html#a2b58cf00b4790c9cb08acfc18d5d3b0b">CEGUI::Window</a>.</p>
<p>References <a class="el" href="classCEGUI_1_1Window.html#a2b58cf00b4790c9cb08acfc18d5d3b0b">CEGUI::Window::testClassName_impl()</a>.</p>
</div>
</div>
<hr/><h2>Member Data Documentation</h2>
<a class="anchor" id="ae7632290ee3983df2fcf3878ab144d62"></a><!-- doxytag: member="CEGUI::ScrolledContainer::EventAutoSizeSettingChanged" ref="ae7632290ee3983df2fcf3878ab144d62" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">const <a class="el" href="classCEGUI_1_1String.html">String</a> <a class="el" href="classCEGUI_1_1ScrolledContainer.html#ae7632290ee3983df2fcf3878ab144d62">CEGUI::ScrolledContainer::EventAutoSizeSettingChanged</a><code> [static]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p><a class="el" href="classCEGUI_1_1Event.html" title="Defines an 'event' which can be subscribed to by interested parties.">Event</a> fired when the autosize setting changes. Handlers are passed a const <a class="el" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a> reference with <a class="el" href="classCEGUI_1_1WindowEventArgs.html#a5817b522882b9648d445a20b8c354966" title="pointer to a Window object of relevance to the event.">WindowEventArgs::window</a> set to the <a class="el" href="classCEGUI_1_1ScrolledContainer.html" title="Helper container window class which is used in the implementation of the ScrollablePane widget class...">ScrolledContainer</a> whose auto size setting has been changed. </p>
</div>
</div>
<a class="anchor" id="a73f8c9e93aa9e9c6018e3d550ba96ece"></a><!-- doxytag: member="CEGUI::ScrolledContainer::EventContentChanged" ref="a73f8c9e93aa9e9c6018e3d550ba96ece" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">const <a class="el" href="classCEGUI_1_1String.html">String</a> <a class="el" href="classCEGUI_1_1ScrolledContainer.html#a73f8c9e93aa9e9c6018e3d550ba96ece">CEGUI::ScrolledContainer::EventContentChanged</a><code> [static]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p><a class="el" href="classCEGUI_1_1Event.html" title="Defines an 'event' which can be subscribed to by interested parties.">Event</a> fired whenever some child changes. Handlers are passed a const <a class="el" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a> reference with <a class="el" href="classCEGUI_1_1WindowEventArgs.html#a5817b522882b9648d445a20b8c354966" title="pointer to a Window object of relevance to the event.">WindowEventArgs::window</a> set to the <a class="el" href="classCEGUI_1_1ScrolledContainer.html" title="Helper container window class which is used in the implementation of the ScrollablePane widget class...">ScrolledContainer</a> for which a child window has changed. </p>
</div>
</div>
</div>
<hr class="footer"/><address class="footer"><small>Generated on Sun Jan 22 2012 16:07:41 for Crazy Eddies GUI System by 
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.4 </small></address>
</body>
</html>
|