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
|
<!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::Slider 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_1Slider.html">Slider</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> |
<a href="#pub-static-attribs">Static Public Attributes</a> |
<a href="#pro-methods">Protected Member Functions</a> |
<a href="#pro-attribs">Protected Attributes</a> </div>
<div class="headertitle">
<div class="title">CEGUI::Slider Class Reference</div> </div>
</div>
<div class="contents">
<!-- doxytag: class="CEGUI::Slider" --><!-- doxytag: inherits="CEGUI::Window" -->
<p>Base class for <a class="el" href="classCEGUI_1_1Slider.html" title="Base class for Slider widgets.">Slider</a> widgets.
<a href="classCEGUI_1_1Slider.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::Slider:</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_1Slider__inherit__graph.gif" border="0" usemap="#CEGUI_1_1Slider_inherit__map" alt="Inheritance graph"/></div>
<map name="CEGUI_1_1Slider_inherit__map" id="CEGUI_1_1Slider_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="16,83,136,112"/><area shape="rect" id="node4" href="classCEGUI_1_1PropertySet.html" title="Class that contains a collection of Property objects." alt="" coords="5,5,147,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::Slider:</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_1Slider__coll__graph.gif" border="0" usemap="#CEGUI_1_1Slider_coll__map" alt="Collaboration graph"/></div>
<map name="CEGUI_1_1Slider_coll__map" id="CEGUI_1_1Slider_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="73,81,193,111"/><area shape="rect" id="node5" href="classCEGUI_1_1SliderProperties_1_1ClickStepSize.html" title="Property to access the click-step size for the slider." alt="" coords="5,135,261,164"/><area shape="rect" id="node7" href="classCEGUI_1_1SliderProperties_1_1CurrentValue.html" title="Property to access the current value of the slider." alt="" coords="9,188,257,217"/></map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>
<p><a href="classCEGUI_1_1Slider-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">float </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Slider.html#ac043db539507eafd70c9ff56bf07cb2b">getCurrentValue</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">return the current slider value. <a href="#ac043db539507eafd70c9ff56bf07cb2b"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">float </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Slider.html#aa48f89410bc33ecb8585fe9eaf7a0592">getMaxValue</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">return the maximum value set for this widget <a href="#aa48f89410bc33ecb8585fe9eaf7a0592"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">float </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Slider.html#a45b82334ada536ef80aae11680dfb7e1">getClickStep</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">return the current click step setting for the slider. <a href="#a45b82334ada536ef80aae11680dfb7e1"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classCEGUI_1_1Thumb.html">Thumb</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Slider.html#a0b8e571c988fdf859cf54eb6506eb60c">getThumb</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return a pointer to the <a class="el" href="classCEGUI_1_1Thumb.html" title="Base class for Thumb widget.">Thumb</a> component widget for this <a class="el" href="classCEGUI_1_1Slider.html" title="Base class for Slider widgets.">Slider</a>. <a href="#a0b8e571c988fdf859cf54eb6506eb60c"></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_1Slider.html#a4b0de0047333778ea63b81c29896c5ac">initialiseComponents</a> (void)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Initialises the <a class="el" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a> based object ready for use. <a href="#a4b0de0047333778ea63b81c29896c5ac"></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_1Slider.html#aca65f3215c9e084742f438ef7258bcc4">setMaxValue</a> (float maxVal)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">set the maximum value for the slider. Note that the minimum value is fixed at 0. <a href="#aca65f3215c9e084742f438ef7258bcc4"></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_1Slider.html#af80598d5717d194ac9fc97119136963f">setCurrentValue</a> (float value)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">set the current slider value. <a href="#af80598d5717d194ac9fc97119136963f"></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_1Slider.html#ab89343abcbe28316d87db95b4938a1c4">setClickStep</a> (float step)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">set the current click step setting for the slider. <a href="#ab89343abcbe28316d87db95b4938a1c4"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a5e93c43b56137abce9dac97b20359661"></a><!-- doxytag: member="CEGUI::Slider::Slider" ref="a5e93c43b56137abce9dac97b20359661" args="(const String &type, const String &name)" -->
 </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Slider.html#a5e93c43b56137abce9dac97b20359661">Slider</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"><a class="el" href="classCEGUI_1_1Slider.html" title="Base class for Slider widgets.">Slider</a> base class constructor. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a63c413555f18afe21668815efe7e0ffe"></a><!-- doxytag: member="CEGUI::Slider::~Slider" ref="a63c413555f18afe21668815efe7e0ffe" args="(void)" -->
virtual </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Slider.html#a63c413555f18afe21668815efe7e0ffe">~Slider</a> (void)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight"><a class="el" href="classCEGUI_1_1Slider.html" title="Base class for Slider widgets.">Slider</a> base class destructor. <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="a735d4f9e55f3e0c83370b8f5751e4f41"></a><!-- doxytag: member="CEGUI::Slider::EventNamespace" ref="a735d4f9e55f3e0c83370b8f5751e4f41" 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_1Slider.html#a735d4f9e55f3e0c83370b8f5751e4f41">EventNamespace</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Namespace for global events. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a6e1bcca00116d28e21cb6e04c1779298"></a><!-- doxytag: member="CEGUI::Slider::WidgetTypeName" ref="a6e1bcca00116d28e21cb6e04c1779298" 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_1Slider.html#a6e1bcca00116d28e21cb6e04c1779298">WidgetTypeName</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight"><a class="el" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a> factory name. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="classCEGUI_1_1String.html">String</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Slider.html#a7bb0dfbc519fa5e09f0b6189c67323cf">EventValueChanged</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_1Slider.html#adf14a2f9ee2db5491a4b11d74f13069c">EventThumbTrackStarted</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_1Slider.html#a821cd7e4d59fd14152c9a64868883483">EventThumbTrackEnded</a></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aa9cfbe92fac293d5a6cc262ae3ac813d"></a><!-- doxytag: member="CEGUI::Slider::ThumbNameSuffix" ref="aa9cfbe92fac293d5a6cc262ae3ac813d" 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_1Slider.html#aa9cfbe92fac293d5a6cc262ae3ac813d">ThumbNameSuffix</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Widget name suffix for the thumb component. <br/></td></tr>
<tr><td colspan="2"><h2><a name="pro-methods"></a>
Protected Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a015906ba5adeb7b6c23145274ab6da23"></a><!-- doxytag: member="CEGUI::Slider::updateThumb" ref="a015906ba5adeb7b6c23145274ab6da23" args="(void)" -->
virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Slider.html#a015906ba5adeb7b6c23145274ab6da23">updateThumb</a> (void)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">update the size and location of the thumb to properly represent the current state of the slider <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual float </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Slider.html#a6e23cc6639d0f90972fe7ffd98ae6a07">getValueFromThumb</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">return value that best represents current slider value given the current location of the thumb. <a href="#a6e23cc6639d0f90972fe7ffd98ae6a07"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual float </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Slider.html#a67b5e8e7a4c5b4586163ba9bd6318a04">getAdjustDirectionFromPoint</a> (const <a class="el" href="classCEGUI_1_1Vector2.html">Point</a> &pt) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Given window location <em>pt</em>, return a value indicating what change should be made to the slider. <a href="#a67b5e8e7a4c5b4586163ba9bd6318a04"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Slider.html#a2d64a24759d53e2f3be4023b26930d3d">handleThumbMoved</a> (const <a class="el" href="classCEGUI_1_1EventArgs.html">EventArgs</a> &e)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">update the size and location of the thumb to properly represent the current state of the slider <a href="#a2d64a24759d53e2f3be4023b26930d3d"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="acb2a04185f113f3f700539b26e69d8a2"></a><!-- doxytag: member="CEGUI::Slider::handleThumbTrackStarted" ref="acb2a04185f113f3f700539b26e69d8a2" args="(const EventArgs &e)" -->
bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Slider.html#acb2a04185f113f3f700539b26e69d8a2">handleThumbTrackStarted</a> (const <a class="el" href="classCEGUI_1_1EventArgs.html">EventArgs</a> &e)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">handler function for when thumb tracking begins <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a37be8741964510f2885e6f41ac1d3bce"></a><!-- doxytag: member="CEGUI::Slider::handleThumbTrackEnded" ref="a37be8741964510f2885e6f41ac1d3bce" args="(const EventArgs &e)" -->
bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Slider.html#a37be8741964510f2885e6f41ac1d3bce">handleThumbTrackEnded</a> (const <a class="el" href="classCEGUI_1_1EventArgs.html">EventArgs</a> &e)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">handler function for when thumb tracking begins <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Slider.html#a70879119d6d7c8fc06caca403b0d4d1e">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="#a70879119d6d7c8fc06caca403b0d4d1e"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Slider.html#a554cc5290417d49ab17aeb86292885a7">validateWindowRenderer</a> (const <a class="el" href="classCEGUI_1_1String.html">String</a> &name) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Function used in checking if a <a class="el" href="classCEGUI_1_1WindowRenderer.html" title="Base-class for the assignable WindowRenderer object.">WindowRenderer</a> is valid for this window. <a href="#a554cc5290417d49ab17aeb86292885a7"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="acc20d813a0f8dfe82a107c4a7f941b4f"></a><!-- doxytag: member="CEGUI::Slider::onValueChanged" ref="acc20d813a0f8dfe82a107c4a7f941b4f" args="(WindowEventArgs &e)" -->
virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Slider.html#acc20d813a0f8dfe82a107c4a7f941b4f">onValueChanged</a> (<a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> &e)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Handler triggered when the slider value changes. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a9c22f557c182638acb66ae7000647242"></a><!-- doxytag: member="CEGUI::Slider::onThumbTrackStarted" ref="a9c22f557c182638acb66ae7000647242" args="(WindowEventArgs &e)" -->
virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Slider.html#a9c22f557c182638acb66ae7000647242">onThumbTrackStarted</a> (<a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> &e)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Handler triggered when the user begins to drag the slider thumb. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a7490454a36bb3ef9ef9ac2c64380cacd"></a><!-- doxytag: member="CEGUI::Slider::onThumbTrackEnded" ref="a7490454a36bb3ef9ef9ac2c64380cacd" args="(WindowEventArgs &e)" -->
virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Slider.html#a7490454a36bb3ef9ef9ac2c64380cacd">onThumbTrackEnded</a> (<a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> &e)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Handler triggered when the slider thumb is released. <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_1Slider.html#af71dba40b1f4227c810157ec7add59f7">onMouseButtonDown</a> (<a class="el" href="classCEGUI_1_1MouseEventArgs.html">MouseEventArgs</a> &e)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Handler called when a mouse button has been depressed within this window's area. <a href="#af71dba40b1f4227c810157ec7add59f7"></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_1Slider.html#ae867929414c1ba604cf29babbe6cf2ae">onMouseWheel</a> (<a class="el" href="classCEGUI_1_1MouseEventArgs.html">MouseEventArgs</a> &e)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Handler called when the mouse wheel (z-axis) position changes within this window's area. <a href="#ae867929414c1ba604cf29babbe6cf2ae"></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="af4b768d14cb4125fc9039712b5634e1f"></a><!-- doxytag: member="CEGUI::Slider::d_value" ref="af4b768d14cb4125fc9039712b5634e1f" args="" -->
float </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Slider.html#af4b768d14cb4125fc9039712b5634e1f">d_value</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">current slider value <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a8ff123181c9e36f9afe53b3ceb2e1d1e"></a><!-- doxytag: member="CEGUI::Slider::d_maxValue" ref="a8ff123181c9e36f9afe53b3ceb2e1d1e" args="" -->
float </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Slider.html#a8ff123181c9e36f9afe53b3ceb2e1d1e">d_maxValue</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">slider maximum value (minimum is fixed at 0) <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ab41072beb5b27aa424047baaca82f380"></a><!-- doxytag: member="CEGUI::Slider::d_step" ref="ab41072beb5b27aa424047baaca82f380" args="" -->
float </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1Slider.html#ab41072beb5b27aa424047baaca82f380">d_step</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">amount to adjust slider by when clicked (and not dragged). <br/></td></tr>
</table>
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
<div class="textblock"><p>Base class for <a class="el" href="classCEGUI_1_1Slider.html" title="Base class for Slider widgets.">Slider</a> widgets. </p>
<p>The slider widget has a default range of 0.0f - 1.0f. This enables use of the slider value to scale any value needed by way of a simple multiplication. </p>
</div><hr/><h2>Member Function Documentation</h2>
<a class="anchor" id="a67b5e8e7a4c5b4586163ba9bd6318a04"></a><!-- doxytag: member="CEGUI::Slider::getAdjustDirectionFromPoint" ref="a67b5e8e7a4c5b4586163ba9bd6318a04" args="(const Point &pt) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual float CEGUI::Slider::getAdjustDirectionFromPoint </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classCEGUI_1_1Vector2.html">Point</a> & </td>
<td class="paramname"><em>pt</em></td><td>)</td>
<td> const<code> [protected, virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Given window location <em>pt</em>, return a value indicating what change should be made to the slider. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">pt</td><td>Point object describing a pixel position in window space.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd><ul>
<li>-1 to indicate slider should be moved to a lower setting.</li>
<li>0 to indicate slider should not be moved.</li>
<li>+1 to indicate slider should be moved to a higher setting. </li>
</ul>
</dd></dl>
</div>
</div>
<a class="anchor" id="a45b82334ada536ef80aae11680dfb7e1"></a><!-- doxytag: member="CEGUI::Slider::getClickStep" ref="a45b82334ada536ef80aae11680dfb7e1" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">float CEGUI::Slider::getClickStep </td>
<td>(</td>
<td class="paramtype">void </td>
<td class="paramname"></td><td>)</td>
<td> const<code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>return the current click step setting for the slider. </p>
<p>The click step size is the amount the slider value will be adjusted when the widget is clicked wither side of the slider thumb.</p>
<dl class="return"><dt><b>Returns:</b></dt><dd>float value representing the current click step setting. </dd></dl>
</div>
</div>
<a class="anchor" id="ac043db539507eafd70c9ff56bf07cb2b"></a><!-- doxytag: member="CEGUI::Slider::getCurrentValue" ref="ac043db539507eafd70c9ff56bf07cb2b" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">float CEGUI::Slider::getCurrentValue </td>
<td>(</td>
<td class="paramtype">void </td>
<td class="paramname"></td><td>)</td>
<td> const<code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>return the current slider value. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>float value equal to the sliders current value. </dd></dl>
</div>
</div>
<a class="anchor" id="aa48f89410bc33ecb8585fe9eaf7a0592"></a><!-- doxytag: member="CEGUI::Slider::getMaxValue" ref="aa48f89410bc33ecb8585fe9eaf7a0592" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">float CEGUI::Slider::getMaxValue </td>
<td>(</td>
<td class="paramtype">void </td>
<td class="paramname"></td><td>)</td>
<td> const<code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>return the maximum value set for this widget </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>float value equal to the currently set maximum value for this slider. </dd></dl>
</div>
</div>
<a class="anchor" id="a0b8e571c988fdf859cf54eb6506eb60c"></a><!-- doxytag: member="CEGUI::Slider::getThumb" ref="a0b8e571c988fdf859cf54eb6506eb60c" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classCEGUI_1_1Thumb.html">Thumb</a>* CEGUI::Slider::getThumb </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Return a pointer to the <a class="el" href="classCEGUI_1_1Thumb.html" title="Base class for Thumb widget.">Thumb</a> component widget for this <a class="el" href="classCEGUI_1_1Slider.html" title="Base class for Slider widgets.">Slider</a>. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Pointer to a <a class="el" href="classCEGUI_1_1Thumb.html" title="Base class for Thumb widget.">Thumb</a> object.</dd></dl>
<dl><dt><b>Exceptions:</b></dt><dd>
<table class="exception">
<tr><td class="paramname"><a class="el" href="classCEGUI_1_1UnknownObjectException.html" title="Exception class used when a request was made for an unknown object.">UnknownObjectException</a></td><td>Thrown if the <a class="el" href="classCEGUI_1_1Thumb.html" title="Base class for Thumb widget.">Thumb</a> component does not exist. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a6e23cc6639d0f90972fe7ffd98ae6a07"></a><!-- doxytag: member="CEGUI::Slider::getValueFromThumb" ref="a6e23cc6639d0f90972fe7ffd98ae6a07" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual float CEGUI::Slider::getValueFromThumb </td>
<td>(</td>
<td class="paramtype">void </td>
<td class="paramname"></td><td>)</td>
<td> const<code> [protected, virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>return value that best represents current slider value given the current location of the thumb. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>float value that, given the thumb widget position, best represents the current value for the slider. </dd></dl>
</div>
</div>
<a class="anchor" id="a2d64a24759d53e2f3be4023b26930d3d"></a><!-- doxytag: member="CEGUI::Slider::handleThumbMoved" ref="a2d64a24759d53e2f3be4023b26930d3d" args="(const EventArgs &e)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool CEGUI::Slider::handleThumbMoved </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classCEGUI_1_1EventArgs.html">EventArgs</a> & </td>
<td class="paramname"><em>e</em></td><td>)</td>
<td><code> [protected]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>update the size and location of the thumb to properly represent the current state of the slider </p>
<p>return value that best represents current slider value given the current location of the thumb.</p>
<dl class="return"><dt><b>Returns:</b></dt><dd>float value that, given the thumb widget position, best represents the current value for the slider.</dd></dl>
<p>Given window location <em>pt</em>, return a value indicating what change should be made to the slider.</p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">pt</td><td>Point object describing a pixel position in window space.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd><ul>
<li>-1 to indicate slider should be moved to a lower setting.</li>
<li>0 to indicate slider should not be moved.</li>
<li>+1 to indicate slider should be moved to a higher setting.</li>
</ul>
</dd></dl>
<p>handler function for when thumb moves. </p>
</div>
</div>
<a class="anchor" id="a4b0de0047333778ea63b81c29896c5ac"></a><!-- doxytag: member="CEGUI::Slider::initialiseComponents" ref="a4b0de0047333778ea63b81c29896c5ac" args="(void)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void CEGUI::Slider::initialiseComponents </td>
<td>(</td>
<td class="paramtype">void </td>
<td class="paramname"></td><td>)</td>
<td><code> [virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Initialises the <a class="el" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a> based object ready for use. </p>
<dl class="note"><dt><b>Note:</b></dt><dd>This must be called for every window created. Normally this is handled automatically by the <a class="el" href="classCEGUI_1_1WindowFactory.html" title="Abstract class that defines the required interface for all WindowFactory objects.">WindowFactory</a> for each <a class="el" href="classCEGUI_1_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a> type.</dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing </dd></dl>
<p>Reimplemented from <a class="el" href="classCEGUI_1_1Window.html#a15d1b3c2be063277773eb28e33a2ee84">CEGUI::Window</a>.</p>
</div>
</div>
<a class="anchor" id="af71dba40b1f4227c810157ec7add59f7"></a><!-- doxytag: member="CEGUI::Slider::onMouseButtonDown" ref="af71dba40b1f4227c810157ec7add59f7" args="(MouseEventArgs &e)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void CEGUI::Slider::onMouseButtonDown </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classCEGUI_1_1MouseEventArgs.html">MouseEventArgs</a> & </td>
<td class="paramname"><em>e</em></td><td>)</td>
<td><code> [protected, virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Handler called when a mouse button has been depressed within this window's area. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">e</td><td><a class="el" href="classCEGUI_1_1MouseEventArgs.html" title="EventArgs based class that is used for objects passed to input event handlers concerning mouse input...">MouseEventArgs</a> object. All fields are valid. </td></tr>
</table>
</dd>
</dl>
<p>Reimplemented from <a class="el" href="classCEGUI_1_1Window.html#abb30780cd259d8328df6ff0809f8ce4a">CEGUI::Window</a>.</p>
</div>
</div>
<a class="anchor" id="ae867929414c1ba604cf29babbe6cf2ae"></a><!-- doxytag: member="CEGUI::Slider::onMouseWheel" ref="ae867929414c1ba604cf29babbe6cf2ae" args="(MouseEventArgs &e)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void CEGUI::Slider::onMouseWheel </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classCEGUI_1_1MouseEventArgs.html">MouseEventArgs</a> & </td>
<td class="paramname"><em>e</em></td><td>)</td>
<td><code> [protected, virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Handler called when the mouse wheel (z-axis) position changes within this window's area. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">e</td><td><a class="el" href="classCEGUI_1_1MouseEventArgs.html" title="EventArgs based class that is used for objects passed to input event handlers concerning mouse input...">MouseEventArgs</a> object. All fields are valid. </td></tr>
</table>
</dd>
</dl>
<p>Reimplemented from <a class="el" href="classCEGUI_1_1Window.html#a56aa0b4041705f88b3191c2d5adac79b">CEGUI::Window</a>.</p>
</div>
</div>
<a class="anchor" id="ab89343abcbe28316d87db95b4938a1c4"></a><!-- doxytag: member="CEGUI::Slider::setClickStep" ref="ab89343abcbe28316d87db95b4938a1c4" args="(float step)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::Slider::setClickStep </td>
<td>(</td>
<td class="paramtype">float </td>
<td class="paramname"><em>step</em></td><td>)</td>
<td><code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>set the current click step setting for the slider. </p>
<p>The click step size is the amount the slider value will be adjusted when the widget is clicked wither side of the slider thumb.</p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">step</td><td>float value representing the click step setting to use.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>
</div>
</div>
<a class="anchor" id="af80598d5717d194ac9fc97119136963f"></a><!-- doxytag: member="CEGUI::Slider::setCurrentValue" ref="af80598d5717d194ac9fc97119136963f" args="(float value)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::Slider::setCurrentValue </td>
<td>(</td>
<td class="paramtype">float </td>
<td class="paramname"><em>value</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>set the current slider value. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">value</td><td>float value specifying the new value for this slider widget.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>
</div>
</div>
<a class="anchor" id="aca65f3215c9e084742f438ef7258bcc4"></a><!-- doxytag: member="CEGUI::Slider::setMaxValue" ref="aca65f3215c9e084742f438ef7258bcc4" args="(float maxVal)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::Slider::setMaxValue </td>
<td>(</td>
<td class="paramtype">float </td>
<td class="paramname"><em>maxVal</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>set the maximum value for the slider. Note that the minimum value is fixed at 0. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">maxVal</td><td>float value specifying the maximum value for this slider widget.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>
</div>
</div>
<a class="anchor" id="a70879119d6d7c8fc06caca403b0d4d1e"></a><!-- doxytag: member="CEGUI::Slider::testClassName_impl" ref="a70879119d6d7c8fc06caca403b0d4d1e" args="(const String &class_name) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual bool CEGUI::Slider::testClassName_impl </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classCEGUI_1_1String.html">String</a> & </td>
<td class="paramname"><em>class_name</em></td><td>)</td>
<td> const<code> [inline, protected, virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Return whether this window was inherited from the given class name at some point in the inheritance hierarchy. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">class_name</td><td>The class name that is to be checked.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>true if this window was inherited from <em>class_name</em>. false if not. </dd></dl>
<p>Reimplemented from <a class="el" href="classCEGUI_1_1Window.html#a2b58cf00b4790c9cb08acfc18d5d3b0b">CEGUI::Window</a>.</p>
<p>References <a class="el" href="classCEGUI_1_1Window.html#a2b58cf00b4790c9cb08acfc18d5d3b0b">CEGUI::Window::testClassName_impl()</a>.</p>
</div>
</div>
<a class="anchor" id="a554cc5290417d49ab17aeb86292885a7"></a><!-- doxytag: member="CEGUI::Slider::validateWindowRenderer" ref="a554cc5290417d49ab17aeb86292885a7" args="(const String &name) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual bool CEGUI::Slider::validateWindowRenderer </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classCEGUI_1_1String.html">String</a> & </td>
<td class="paramname"><em>name</em></td><td>)</td>
<td> const<code> [inline, protected, virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Function used in checking if a <a class="el" href="classCEGUI_1_1WindowRenderer.html" title="Base-class for the assignable WindowRenderer object.">WindowRenderer</a> is valid for this window. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Returns true if the given <a class="el" href="classCEGUI_1_1WindowRenderer.html" title="Base-class for the assignable WindowRenderer object.">WindowRenderer</a> class name is valid for this window. False if not. </dd></dl>
<p>Reimplemented from <a class="el" href="classCEGUI_1_1Window.html#a27804e1e76bbbf4af45dfb23c24afa1a">CEGUI::Window</a>.</p>
</div>
</div>
<hr/><h2>Member Data Documentation</h2>
<a class="anchor" id="a821cd7e4d59fd14152c9a64868883483"></a><!-- doxytag: member="CEGUI::Slider::EventThumbTrackEnded" ref="a821cd7e4d59fd14152c9a64868883483" 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_1Slider.html#a821cd7e4d59fd14152c9a64868883483">CEGUI::Slider::EventThumbTrackEnded</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 user releases the thumb. 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_1Slider.html" title="Base class for Slider widgets.">Slider</a> whose thumb has been released. </p>
</div>
</div>
<a class="anchor" id="adf14a2f9ee2db5491a4b11d74f13069c"></a><!-- doxytag: member="CEGUI::Slider::EventThumbTrackStarted" ref="adf14a2f9ee2db5491a4b11d74f13069c" 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_1Slider.html#adf14a2f9ee2db5491a4b11d74f13069c">CEGUI::Slider::EventThumbTrackStarted</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 user begins dragging the thumb. 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_1Slider.html" title="Base class for Slider widgets.">Slider</a> whose thumb has started to be dragged. </p>
</div>
</div>
<a class="anchor" id="a7bb0dfbc519fa5e09f0b6189c67323cf"></a><!-- doxytag: member="CEGUI::Slider::EventValueChanged" ref="a7bb0dfbc519fa5e09f0b6189c67323cf" 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_1Slider.html#a7bb0dfbc519fa5e09f0b6189c67323cf">CEGUI::Slider::EventValueChanged</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 slider value 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_1Slider.html" title="Base class for Slider widgets.">Slider</a> whose value has changed. </p>
</div>
</div>
</div>
<hr class="footer"/><address class="footer"><small>Generated on Sun Jan 22 2012 16:07:42 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>
|