1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419
|
<!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::DragContainer 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_1DragContainer.html">DragContainer</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::DragContainer Class Reference</div> </div>
</div>
<div class="contents">
<!-- doxytag: class="CEGUI::DragContainer" --><!-- doxytag: inherits="CEGUI::Window" -->
<p>Generic drag & drop enabled window class.
<a href="classCEGUI_1_1DragContainer.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::DragContainer:</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_1DragContainer__inherit__graph.gif" border="0" usemap="#CEGUI_1_1DragContainer_inherit__map" alt="Inheritance graph"/></div>
<map name="CEGUI_1_1DragContainer_inherit__map" id="CEGUI_1_1DragContainer_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="24,83,144,112"/><area shape="rect" id="node4" href="classCEGUI_1_1PropertySet.html" title="Class that contains a collection of Property objects." alt="" coords="13,5,155,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::DragContainer:</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_1DragContainer__coll__graph.gif" border="0" usemap="#CEGUI_1_1DragContainer_coll__map" alt="Collaboration graph"/></div>
<map name="CEGUI_1_1DragContainer_coll__map" id="CEGUI_1_1DragContainer_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="109,81,229,111"/><area shape="rect" id="node5" href="classCEGUI_1_1DragContainerProperties_1_1FixedDragOffset.html" title="Property to access the state of the fixed dragging offset setting." alt="" coords="9,151,329,180"/><area shape="rect" id="node7" href="classCEGUI_1_1DragContainerProperties_1_1DragCursorImage.html" title="Property to access the dragging mouse cursor setting." alt="" coords="7,204,332,233"/></map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>
<p><a href="classCEGUI_1_1DragContainer-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="af4d5c96357d6557c5da1d58811674a14"></a><!-- doxytag: member="CEGUI::DragContainer::DragContainer" ref="af4d5c96357d6557c5da1d58811674a14" args="(const String &type, const String &name)" -->
 </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1DragContainer.html#af4d5c96357d6557c5da1d58811674a14">DragContainer</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_1DragContainer.html" title="Generic drag & drop enabled window class.">DragContainer</a> objects. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ae411e835bf3e5e9469a27ed3868efff7"></a><!-- doxytag: member="CEGUI::DragContainer::~DragContainer" ref="ae411e835bf3e5e9469a27ed3868efff7" args="(void)" -->
virtual </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1DragContainer.html#ae411e835bf3e5e9469a27ed3868efff7">~DragContainer</a> (void)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Destructor for <a class="el" href="classCEGUI_1_1DragContainer.html" title="Generic drag & drop enabled window class.">DragContainer</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_1DragContainer.html#ad01f6808a11cad26b0dc6e20977f1946">isDraggingEnabled</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return whether dragging is currently enabled for this <a class="el" href="classCEGUI_1_1DragContainer.html" title="Generic drag & drop enabled window class.">DragContainer</a>. <a href="#ad01f6808a11cad26b0dc6e20977f1946"></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_1DragContainer.html#a3455d2772ec2c8aed0457235654724ab">setDraggingEnabled</a> (bool setting)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Set whether dragging is currently enabled for this <a class="el" href="classCEGUI_1_1DragContainer.html" title="Generic drag & drop enabled window class.">DragContainer</a>. <a href="#a3455d2772ec2c8aed0457235654724ab"></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_1DragContainer.html#abeaaee9a0eb8044cf3e5cfcdba932155">isBeingDragged</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return whether the <a class="el" href="classCEGUI_1_1DragContainer.html" title="Generic drag & drop enabled window class.">DragContainer</a> is currently being dragged. <a href="#abeaaee9a0eb8044cf3e5cfcdba932155"></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_1DragContainer.html#a59a76597e4a7b78619bc63ac1f2c3d73">getPixelDragThreshold</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return the current drag threshold in pixels. <a href="#a59a76597e4a7b78619bc63ac1f2c3d73"></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_1DragContainer.html#aa5266d8ea03b5e6f840864e4c50ace50">setPixelDragThreshold</a> (float pixels)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Set the current drag threshold in pixels. <a href="#aa5266d8ea03b5e6f840864e4c50ace50"></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_1DragContainer.html#a78f6e79ba28a79bf5050e84eee409b87">getDragAlpha</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return the alpha value that will be set on the <a class="el" href="classCEGUI_1_1DragContainer.html" title="Generic drag & drop enabled window class.">DragContainer</a> while a drag operation is in progress. <a href="#a78f6e79ba28a79bf5050e84eee409b87"></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_1DragContainer.html#a1a78ba8d6c5d93fee5dd841bc1aad9b5">setDragAlpha</a> (float alpha)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Set the alpha value to be set on the <a class="el" href="classCEGUI_1_1DragContainer.html" title="Generic drag & drop enabled window class.">DragContainer</a> when a drag operation is in progress. <a href="#a1a78ba8d6c5d93fee5dd841bc1aad9b5"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classCEGUI_1_1Image.html">Image</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1DragContainer.html#a54268779d562c0fd23ca721c4fd42638">getDragCursorImage</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return the <a class="el" href="classCEGUI_1_1Image.html" title="Class that represents a single Image of an Imageset.">Image</a> currently set to be used for the mouse cursor when a drag operation is in progress. <a href="#a54268779d562c0fd23ca721c4fd42638"></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_1DragContainer.html#ab070eda563689cb6ea80af508e97c928">setDragCursorImage</a> (const <a class="el" href="classCEGUI_1_1Image.html">Image</a> *image)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Set the <a class="el" href="classCEGUI_1_1Image.html" title="Class that represents a single Image of an Imageset.">Image</a> to be used for the mouse cursor when a drag operation is in progress. <a href="#ab070eda563689cb6ea80af508e97c928"></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_1DragContainer.html#a49c964dcc00a8f5cf7a33991d3b41ceb">setDragCursorImage</a> (<a class="el" href="namespaceCEGUI.html#abceac8add620a21fa3ce491a51b7ecbb">MouseCursorImage</a> image)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Set the <a class="el" href="classCEGUI_1_1Image.html" title="Class that represents a single Image of an Imageset.">Image</a> to be used for the mouse cursor when a drag operation is in progress. <a href="#a49c964dcc00a8f5cf7a33991d3b41ceb"></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_1DragContainer.html#a0b9a38badcbc1afc9fbb9b303d4e925a">setDragCursorImage</a> (const <a class="el" href="classCEGUI_1_1String.html">String</a> &imageset, const <a class="el" href="classCEGUI_1_1String.html">String</a> &image)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Set the <a class="el" href="classCEGUI_1_1Image.html" title="Class that represents a single Image of an Imageset.">Image</a> to be used for the mouse cursor when a drag operation is in progress. <a href="#a0b9a38badcbc1afc9fbb9b303d4e925a"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classCEGUI_1_1Window.html">Window</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1DragContainer.html#a9899c3ec08fda6cd54ee7ee37b9ab148">getCurrentDropTarget</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return 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> object that is the current drop target for the <a class="el" href="classCEGUI_1_1DragContainer.html" title="Generic drag & drop enabled window class.">DragContainer</a>. <a href="#a9899c3ec08fda6cd54ee7ee37b9ab148"></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_1DragContainer.html#aef6e1f8ec3677de712dad4a83a929c5c">isStickyModeEnabled</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return whether sticky mode is enable or disabled. <a href="#aef6e1f8ec3677de712dad4a83a929c5c"></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_1DragContainer.html#a5456f44bf37aafa318f4ce2736bfde82">setStickyModeEnabled</a> (bool setting)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Enable or disable sticky mode. <a href="#a5456f44bf37aafa318f4ce2736bfde82"></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_1DragContainer.html#abdef565ad090c840a099c693f94f589c">pickUp</a> (const bool force_sticky=false)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Immediately pick up the <a class="el" href="classCEGUI_1_1DragContainer.html" title="Generic drag & drop enabled window class.">DragContainer</a> and optionally set the sticky mode in order to allow this to happen. Any current interaction (i.e. mouse capture) will be interrupted. <a href="#abdef565ad090c840a099c693f94f589c"></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_1DragContainer.html#ae7493e3fcc338a452f57f804defc483c">setFixedDragOffset</a> (const <a class="el" href="classCEGUI_1_1UVector2.html">UVector2</a> &offset)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Set the fixed mouse cursor dragging offset to be used for this <a class="el" href="classCEGUI_1_1DragContainer.html" title="Generic drag & drop enabled window class.">DragContainer</a>. <a href="#ae7493e3fcc338a452f57f804defc483c"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classCEGUI_1_1UVector2.html">UVector2</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1DragContainer.html#af1d4f7363935f9b41764ca04d05c2960">getFixedDragOffset</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return the fixed mouse cursor dragging offset to be used for this <a class="el" href="classCEGUI_1_1DragContainer.html" title="Generic drag & drop enabled window class.">DragContainer</a>. <a href="#af1d4f7363935f9b41764ca04d05c2960"></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_1DragContainer.html#a7f43637a9420d7323d684e9df3063b2b">setUsingFixedDragOffset</a> (const bool enable)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Set whether the fixed dragging offset - as set with the setFixedDragOffset - function will be used, or whether the built-in positioning will be used. <a href="#a7f43637a9420d7323d684e9df3063b2b"></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_1DragContainer.html#a504611d8c2841bd6f20a10f75a2a9de8">isUsingFixedDragOffset</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return whether the fixed dragging offset - as set with the setFixedDragOffset function - will be used, or whether the built-in positioning will be used. <a href="#a504611d8c2841bd6f20a10f75a2a9de8"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a34c1b8ee83b8ac370fdb79f5172a0df1"></a><!-- doxytag: member="CEGUI::DragContainer::getRenderingContext_impl" ref="a34c1b8ee83b8ac370fdb79f5172a0df1" args="(RenderingContext &ctx) const " -->
void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1DragContainer.html#a34c1b8ee83b8ac370fdb79f5172a0df1">getRenderingContext_impl</a> (<a class="el" href="structCEGUI_1_1RenderingContext.html">RenderingContext</a> &ctx) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">implementation of the default getRenderingContext logic. <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="a6864e4d9735231a7ab278966115cc03a"></a><!-- doxytag: member="CEGUI::DragContainer::WidgetTypeName" ref="a6864e4d9735231a7ab278966115cc03a" 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_1DragContainer.html#a6864e4d9735231a7ab278966115cc03a">WidgetTypeName</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Type name for <a class="el" href="classCEGUI_1_1DragContainer.html" title="Generic drag & drop enabled window class.">DragContainer</a>. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a5c25c6ac7d4312b4ef831ce195182e34"></a><!-- doxytag: member="CEGUI::DragContainer::EventNamespace" ref="a5c25c6ac7d4312b4ef831ce195182e34" 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_1DragContainer.html#a5c25c6ac7d4312b4ef831ce195182e34">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_1DragContainer.html#a1853c48ff4f83685e3a6f5a518ff5fc5">EventDragStarted</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_1DragContainer.html#a7edd74318ced00a4d06ba7dca3268df5">EventDragEnded</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_1DragContainer.html#a671d52ef11b86a48ab7367a8326ce78e">EventDragPositionChanged</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_1DragContainer.html#a3974b619b83ea20d952db3af77916f1c">EventDragEnabledChanged</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_1DragContainer.html#af6ed369ac5c32a488f8c3358f38ac292">EventDragAlphaChanged</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_1DragContainer.html#a0516316b36229b29f80f7f9f19a4c96b">EventDragMouseCursorChanged</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_1DragContainer.html#ac7812528b483852c6ead5586418d1ce1">EventDragThresholdChanged</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_1DragContainer.html#a17d1bca8ea524b1e7bb382ab209d4e01">EventDragDropTargetChanged</a></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">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1DragContainer.html#acf271def19de65da585c8b059e6401dd">isDraggingThresholdExceeded</a> (const <a class="el" href="classCEGUI_1_1Vector2.html">Point</a> &local_mouse)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return whether the required minimum movement threshold before initiating dragging has been exceeded. <a href="#acf271def19de65da585c8b059e6401dd"></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_1DragContainer.html#a35f094167a73a5e357a95eb7cfcba39a">initialiseDragging</a> (void)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Initialise the required states to put the window into dragging mode. <a href="#a35f094167a73a5e357a95eb7cfcba39a"></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_1DragContainer.html#a526b0f34f0597d1dd1eac5c80511f377">doDragging</a> (const <a class="el" href="classCEGUI_1_1Vector2.html">Point</a> &local_mouse)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Update state for window dragging. <a href="#a526b0f34f0597d1dd1eac5c80511f377"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a52899edc7413053652b915c40492188e"></a><!-- doxytag: member="CEGUI::DragContainer::updateActiveMouseCursor" ref="a52899edc7413053652b915c40492188e" args="(void) const " -->
void </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1DragContainer.html#a52899edc7413053652b915c40492188e">updateActiveMouseCursor</a> (void) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Method to update mouse cursor image. <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_1DragContainer.html#aa45304bae9b061d7041853b31f63d73d">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="#aa45304bae9b061d7041853b31f63d73d"></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_1DragContainer.html#aa099a36b7e161611a917f19377572f6c">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="#aa099a36b7e161611a917f19377572f6c"></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_1DragContainer.html#abb94bc80afb4675c74133c651d300980">onMouseButtonUp</a> (<a class="el" href="classCEGUI_1_1MouseEventArgs.html">MouseEventArgs</a> &e)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Handler called when a mouse button has been released within this window's area. <a href="#abb94bc80afb4675c74133c651d300980"></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_1DragContainer.html#a68ea97052953b21de1ae2548c4677773">onMouseMove</a> (<a class="el" href="classCEGUI_1_1MouseEventArgs.html">MouseEventArgs</a> &e)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Handler called when the mouse cursor has been moved within this window's area. <a href="#a68ea97052953b21de1ae2548c4677773"></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_1DragContainer.html#a20b842aaa2c2b1397c66431fa2a6c9d1">onCaptureLost</a> (<a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> &e)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Handler called when this window loses capture of mouse inputs. <a href="#a20b842aaa2c2b1397c66431fa2a6c9d1"></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_1DragContainer.html#a50655b6f3429f10a8c4a19cbf5adc87e">onAlphaChanged</a> (<a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> &e)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Handler called when the window's alpha blend value is changed. <a href="#a50655b6f3429f10a8c4a19cbf5adc87e"></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_1DragContainer.html#a4153e0e8b22a819951622b8ed140061e">onClippingChanged</a> (<a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> &e)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Handler called when the window's setting for being clipped by it's parent is changed. <a href="#a4153e0e8b22a819951622b8ed140061e"></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_1DragContainer.html#a6ca35c0a5db33bb816dd67460534bd8c">onMoved</a> (<a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> &e)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Handler called when the window's position changes. <a href="#a6ca35c0a5db33bb816dd67460534bd8c"></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_1DragContainer.html#a8c2f1be2018c3e975208e9ad1ffd0ed9">onDragStarted</a> (<a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> &e)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Method called when dragging commences. <a href="#a8c2f1be2018c3e975208e9ad1ffd0ed9"></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_1DragContainer.html#afc08391bf0ba4d6785a596be394364a1">onDragEnded</a> (<a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> &e)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Method called when dragging ends. <a href="#afc08391bf0ba4d6785a596be394364a1"></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_1DragContainer.html#a1a90d1289676d3b75d746eb2efebc57f">onDragPositionChanged</a> (<a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> &e)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Method called when the dragged object position is changed. <a href="#a1a90d1289676d3b75d746eb2efebc57f"></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_1DragContainer.html#a5fb1b3d767ce4ed4ebeb0ea4cd7499ba">onDragEnabledChanged</a> (<a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> &e)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Method called when the dragging state is enabled or disabled. <a href="#a5fb1b3d767ce4ed4ebeb0ea4cd7499ba"></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_1DragContainer.html#a463848a78d450364751dff628d3eeba6">onDragAlphaChanged</a> (<a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> &e)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Method called when the alpha value to use when dragging is changed. <a href="#a463848a78d450364751dff628d3eeba6"></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_1DragContainer.html#ad586881443e09c44e209c6288ba6bcdc">onDragMouseCursorChanged</a> (<a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> &e)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Method called when the mouse cursor to use when dragging is changed. <a href="#ad586881443e09c44e209c6288ba6bcdc"></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_1DragContainer.html#a8b4b4985bdf9d022699b5fa491b30b5c">onDragThresholdChanged</a> (<a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> &e)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Method called when the movement threshold required to trigger dragging is changed. <a href="#a8b4b4985bdf9d022699b5fa491b30b5c"></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_1DragContainer.html#a6482f5a93cf6dc8de26ca00951494fcd">onDragDropTargetChanged</a> (<a class="el" href="classCEGUI_1_1DragDropEventArgs.html">DragDropEventArgs</a> &e)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Method called when the current drop target of this <a class="el" href="classCEGUI_1_1DragContainer.html" title="Generic drag & drop enabled window class.">DragContainer</a> changes. <a href="#a6482f5a93cf6dc8de26ca00951494fcd"></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="abeedaf3f20cc7721b4f05b93bc7e3815"></a><!-- doxytag: member="CEGUI::DragContainer::d_draggingEnabled" ref="abeedaf3f20cc7721b4f05b93bc7e3815" args="" -->
bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1DragContainer.html#abeedaf3f20cc7721b4f05b93bc7e3815">d_draggingEnabled</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">True when dragging is enabled. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ab9ea08881e5cea1a8cf25a77ff4e6701"></a><!-- doxytag: member="CEGUI::DragContainer::d_leftMouseDown" ref="ab9ea08881e5cea1a8cf25a77ff4e6701" args="" -->
bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1DragContainer.html#ab9ea08881e5cea1a8cf25a77ff4e6701">d_leftMouseDown</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">True when left mouse button is down. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ad05084f8ab79f5ef8ee26f2b5ce16e89"></a><!-- doxytag: member="CEGUI::DragContainer::d_dragging" ref="ad05084f8ab79f5ef8ee26f2b5ce16e89" args="" -->
bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1DragContainer.html#ad05084f8ab79f5ef8ee26f2b5ce16e89">d_dragging</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">true when being dragged. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="afcf8a59108cfc78d6dade911ac71e69c"></a><!-- doxytag: member="CEGUI::DragContainer::d_dragPoint" ref="afcf8a59108cfc78d6dade911ac71e69c" args="" -->
<a class="el" href="classCEGUI_1_1UVector2.html">UVector2</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1DragContainer.html#afcf8a59108cfc78d6dade911ac71e69c">d_dragPoint</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">point we are being dragged at. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a7db715a864083c08dabf95b6b2e47448"></a><!-- doxytag: member="CEGUI::DragContainer::d_startPosition" ref="a7db715a864083c08dabf95b6b2e47448" args="" -->
<a class="el" href="classCEGUI_1_1UVector2.html">UVector2</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1DragContainer.html#a7db715a864083c08dabf95b6b2e47448">d_startPosition</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">position prior to dragging. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ae48460764f949debee51d2d373ed4cbd"></a><!-- doxytag: member="CEGUI::DragContainer::d_dragThreshold" ref="ae48460764f949debee51d2d373ed4cbd" args="" -->
float </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1DragContainer.html#ae48460764f949debee51d2d373ed4cbd">d_dragThreshold</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Pixels mouse must move before dragging commences. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ae06840d3e7e4953bbb8e0cae32d62819"></a><!-- doxytag: member="CEGUI::DragContainer::d_dragAlpha" ref="ae06840d3e7e4953bbb8e0cae32d62819" args="" -->
float </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1DragContainer.html#ae06840d3e7e4953bbb8e0cae32d62819">d_dragAlpha</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Alpha value to set when dragging. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ad7f36d5c6fa87410ead3c3ba0edf2892"></a><!-- doxytag: member="CEGUI::DragContainer::d_storedAlpha" ref="ad7f36d5c6fa87410ead3c3ba0edf2892" args="" -->
float </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1DragContainer.html#ad7f36d5c6fa87410ead3c3ba0edf2892">d_storedAlpha</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Alpha value to re-set when dragging ends. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a1ab7e601661d46879021d63695bdb96f"></a><!-- doxytag: member="CEGUI::DragContainer::d_storedClipState" ref="a1ab7e601661d46879021d63695bdb96f" args="" -->
bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1DragContainer.html#a1ab7e601661d46879021d63695bdb96f">d_storedClipState</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Parent clip state to re-set. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a1f3108634fc956470a67641b2eb28abd"></a><!-- doxytag: member="CEGUI::DragContainer::d_dropTarget" ref="a1f3108634fc956470a67641b2eb28abd" args="" -->
<a class="el" href="classCEGUI_1_1Window.html">Window</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1DragContainer.html#a1f3108634fc956470a67641b2eb28abd">d_dropTarget</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Target window for possible drop operation. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a09066da1c6298371ac0a1a2fcc2fb9c8"></a><!-- doxytag: member="CEGUI::DragContainer::d_dragCursorImage" ref="a09066da1c6298371ac0a1a2fcc2fb9c8" args="" -->
const <a class="el" href="classCEGUI_1_1Image.html">Image</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1DragContainer.html#a09066da1c6298371ac0a1a2fcc2fb9c8">d_dragCursorImage</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight"><a class="el" href="classCEGUI_1_1Image.html" title="Class that represents a single Image of an Imageset.">Image</a> to use for mouse cursor when dragging. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1DragContainer.html#a44dbcce3727a13e907a75e5190486adc">d_dropflag</a></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a2892e5818f139bcfbeefb81617b53caa"></a><!-- doxytag: member="CEGUI::DragContainer::d_stickyMode" ref="a2892e5818f139bcfbeefb81617b53caa" args="" -->
bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1DragContainer.html#a2892e5818f139bcfbeefb81617b53caa">d_stickyMode</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">true when we're in 'sticky' mode. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ae440e2c9c201fdd5fa699c0dead8610d"></a><!-- doxytag: member="CEGUI::DragContainer::d_pickedUp" ref="ae440e2c9c201fdd5fa699c0dead8610d" args="" -->
bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1DragContainer.html#ae440e2c9c201fdd5fa699c0dead8610d">d_pickedUp</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">true after been picked-up / dragged via sticky mode <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a69dafada3c62fae8bd3f69996bcb76a2"></a><!-- doxytag: member="CEGUI::DragContainer::d_usingFixedDragOffset" ref="a69dafada3c62fae8bd3f69996bcb76a2" args="" -->
bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1DragContainer.html#a69dafada3c62fae8bd3f69996bcb76a2">d_usingFixedDragOffset</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">true if fixed mouse offset is used for dragging position. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a48a8ccb11af605bf1490f4831e9ec01a"></a><!-- doxytag: member="CEGUI::DragContainer::d_fixedDragOffset" ref="a48a8ccb11af605bf1490f4831e9ec01a" args="" -->
<a class="el" href="classCEGUI_1_1UVector2.html">UVector2</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1DragContainer.html#a48a8ccb11af605bf1490f4831e9ec01a">d_fixedDragOffset</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">current fixed mouse offset value. <br/></td></tr>
</table>
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
<div class="textblock"><p>Generic drag & drop enabled window class. </p>
</div><hr/><h2>Member Function Documentation</h2>
<a class="anchor" id="a526b0f34f0597d1dd1eac5c80511f377"></a><!-- doxytag: member="CEGUI::DragContainer::doDragging" ref="a526b0f34f0597d1dd1eac5c80511f377" args="(const Point &local_mouse)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::DragContainer::doDragging </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classCEGUI_1_1Vector2.html">Point</a> & </td>
<td class="paramname"><em>local_mouse</em></td><td>)</td>
<td><code> [protected]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Update state for window dragging. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">local_mouse</td><td>Mouse position as a pixel offset from the top-left corner of this window.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>
</div>
</div>
<a class="anchor" id="a9899c3ec08fda6cd54ee7ee37b9ab148"></a><!-- doxytag: member="CEGUI::DragContainer::getCurrentDropTarget" ref="a9899c3ec08fda6cd54ee7ee37b9ab148" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classCEGUI_1_1Window.html">Window</a>* CEGUI::DragContainer::getCurrentDropTarget </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 <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> object that is the current drop target for the <a class="el" href="classCEGUI_1_1DragContainer.html" title="Generic drag & drop enabled window class.">DragContainer</a>. </p>
<p>The drop target for a <a class="el" href="classCEGUI_1_1DragContainer.html" title="Generic drag & drop enabled window class.">DragContainer</a> is basically 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> that the <a class="el" href="classCEGUI_1_1DragContainer.html" title="Generic drag & drop enabled window class.">DragContainer</a> is within while being dragged. The drop target may be 0 to indicate no target.</p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Pointer to a <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> object that contains the <a class="el" href="classCEGUI_1_1DragContainer.html" title="Generic drag & drop enabled window class.">DragContainer</a> whilst being dragged, or 0 to indicate no current target. </dd></dl>
</div>
</div>
<a class="anchor" id="a78f6e79ba28a79bf5050e84eee409b87"></a><!-- doxytag: member="CEGUI::DragContainer::getDragAlpha" ref="a78f6e79ba28a79bf5050e84eee409b87" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">float CEGUI::DragContainer::getDragAlpha </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 alpha value that will be set on the <a class="el" href="classCEGUI_1_1DragContainer.html" title="Generic drag & drop enabled window class.">DragContainer</a> while a drag operation is in progress. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Current alpha value to use whilst dragging. </dd></dl>
</div>
</div>
<a class="anchor" id="a54268779d562c0fd23ca721c4fd42638"></a><!-- doxytag: member="CEGUI::DragContainer::getDragCursorImage" ref="a54268779d562c0fd23ca721c4fd42638" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">const <a class="el" href="classCEGUI_1_1Image.html">Image</a>* CEGUI::DragContainer::getDragCursorImage </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 <a class="el" href="classCEGUI_1_1Image.html" title="Class that represents a single Image of an Imageset.">Image</a> currently set to be used for the mouse cursor when a drag operation is in progress. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><a class="el" href="classCEGUI_1_1Image.html" title="Class that represents a single Image of an Imageset.">Image</a> object currently set to be used as the mouse cursor when dragging. </dd></dl>
</div>
</div>
<a class="anchor" id="af1d4f7363935f9b41764ca04d05c2960"></a><!-- doxytag: member="CEGUI::DragContainer::getFixedDragOffset" ref="af1d4f7363935f9b41764ca04d05c2960" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">const <a class="el" href="classCEGUI_1_1UVector2.html">UVector2</a>& CEGUI::DragContainer::getFixedDragOffset </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Return the fixed mouse cursor dragging offset to be used for this <a class="el" href="classCEGUI_1_1DragContainer.html" title="Generic drag & drop enabled window class.">DragContainer</a>. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><a class="el" href="classCEGUI_1_1UVector2.html" title="Two dimensional vector class built using unified dimensions (UDims). The UVector2 class is used for r...">UVector2</a> describing the fixed offset used when dragging this <a class="el" href="classCEGUI_1_1DragContainer.html" title="Generic drag & drop enabled window class.">DragContainer</a>.</dd></dl>
<dl class="note"><dt><b>Note:</b></dt><dd>This offset is only used if it's use is enabled via the setUsingFixedDragOffset function. </dd></dl>
</div>
</div>
<a class="anchor" id="a59a76597e4a7b78619bc63ac1f2c3d73"></a><!-- doxytag: member="CEGUI::DragContainer::getPixelDragThreshold" ref="a59a76597e4a7b78619bc63ac1f2c3d73" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">float CEGUI::DragContainer::getPixelDragThreshold </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 drag threshold in pixels. </p>
<p>The drag threshold is the number of pixels that the mouse must be moved with the left button held down in order to commence a drag operation.</p>
<dl class="return"><dt><b>Returns:</b></dt><dd>float value indicating the current drag threshold value. </dd></dl>
</div>
</div>
<a class="anchor" id="a35f094167a73a5e357a95eb7cfcba39a"></a><!-- doxytag: member="CEGUI::DragContainer::initialiseDragging" ref="a35f094167a73a5e357a95eb7cfcba39a" args="(void)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::DragContainer::initialiseDragging </td>
<td>(</td>
<td class="paramtype">void </td>
<td class="paramname"></td><td>)</td>
<td><code> [protected]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Initialise the required states to put the window into dragging mode. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>
</div>
</div>
<a class="anchor" id="abeaaee9a0eb8044cf3e5cfcdba932155"></a><!-- doxytag: member="CEGUI::DragContainer::isBeingDragged" ref="abeaaee9a0eb8044cf3e5cfcdba932155" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool CEGUI::DragContainer::isBeingDragged </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 <a class="el" href="classCEGUI_1_1DragContainer.html" title="Generic drag & drop enabled window class.">DragContainer</a> is currently being dragged. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><ul>
<li>true if the <a class="el" href="classCEGUI_1_1DragContainer.html" title="Generic drag & drop enabled window class.">DragContainer</a> is being dragged.</li>
<li>false if te <a class="el" href="classCEGUI_1_1DragContainer.html" title="Generic drag & drop enabled window class.">DragContainer</a> is not being dragged. </li>
</ul>
</dd></dl>
</div>
</div>
<a class="anchor" id="ad01f6808a11cad26b0dc6e20977f1946"></a><!-- doxytag: member="CEGUI::DragContainer::isDraggingEnabled" ref="ad01f6808a11cad26b0dc6e20977f1946" args="(void) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool CEGUI::DragContainer::isDraggingEnabled </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 dragging is currently enabled for this <a class="el" href="classCEGUI_1_1DragContainer.html" title="Generic drag & drop enabled window class.">DragContainer</a>. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><ul>
<li>true if dragging is enabled and the <a class="el" href="classCEGUI_1_1DragContainer.html" title="Generic drag & drop enabled window class.">DragContainer</a> may be dragged.</li>
<li>false if dragging is disabled and the <a class="el" href="classCEGUI_1_1DragContainer.html" title="Generic drag & drop enabled window class.">DragContainer</a> may not be dragged. </li>
</ul>
</dd></dl>
</div>
</div>
<a class="anchor" id="acf271def19de65da585c8b059e6401dd"></a><!-- doxytag: member="CEGUI::DragContainer::isDraggingThresholdExceeded" ref="acf271def19de65da585c8b059e6401dd" args="(const Point &local_mouse)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool CEGUI::DragContainer::isDraggingThresholdExceeded </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classCEGUI_1_1Vector2.html">Point</a> & </td>
<td class="paramname"><em>local_mouse</em></td><td>)</td>
<td><code> [protected]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Return whether the required minimum movement threshold before initiating dragging has been exceeded. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">local_mouse</td><td>Mouse position as a pixel offset from the top-left corner of this window.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd><ul>
<li>true if the threshold has been exceeded and dragging should be initiated.</li>
<li>false if the threshold has not been exceeded. </li>
</ul>
</dd></dl>
</div>
</div>
<a class="anchor" id="aef6e1f8ec3677de712dad4a83a929c5c"></a><!-- doxytag: member="CEGUI::DragContainer::isStickyModeEnabled" ref="aef6e1f8ec3677de712dad4a83a929c5c" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool CEGUI::DragContainer::isStickyModeEnabled </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Return whether sticky mode is enable or disabled. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><ul>
<li>true if sticky mode is enabled.</li>
<li>false if sticky mode is disabled. </li>
</ul>
</dd></dl>
</div>
</div>
<a class="anchor" id="a504611d8c2841bd6f20a10f75a2a9de8"></a><!-- doxytag: member="CEGUI::DragContainer::isUsingFixedDragOffset" ref="a504611d8c2841bd6f20a10f75a2a9de8" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool CEGUI::DragContainer::isUsingFixedDragOffset </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Return whether the fixed dragging offset - as set with the setFixedDragOffset function - will be used, or whether the built-in positioning will be used. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">enable</td><td><ul>
<li>true to enabled the use of the fixed offset.</li>
<li>false to use the regular logic. </li>
</ul>
</td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a50655b6f3429f10a8c4a19cbf5adc87e"></a><!-- doxytag: member="CEGUI::DragContainer::onAlphaChanged" ref="a50655b6f3429f10a8c4a19cbf5adc87e" args="(WindowEventArgs &e)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void CEGUI::DragContainer::onAlphaChanged </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> & </td>
<td class="paramname"><em>e</em></td><td>)</td>
<td><code> [protected, virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Handler called when the window's alpha blend value is changed. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">e</td><td><a class="el" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a> object whose 'window' pointer field is set to the window that triggered the event. For this event the trigger window is always 'this'. </td></tr>
</table>
</dd>
</dl>
<p>Reimplemented from <a class="el" href="classCEGUI_1_1Window.html#ad67da98096a6e29dd2a029a7d90a1a11">CEGUI::Window</a>.</p>
</div>
</div>
<a class="anchor" id="a20b842aaa2c2b1397c66431fa2a6c9d1"></a><!-- doxytag: member="CEGUI::DragContainer::onCaptureLost" ref="a20b842aaa2c2b1397c66431fa2a6c9d1" args="(WindowEventArgs &e)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void CEGUI::DragContainer::onCaptureLost </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> & </td>
<td class="paramname"><em>e</em></td><td>)</td>
<td><code> [protected, virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Handler called when this window loses capture of mouse inputs. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">e</td><td><a class="el" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a> object whose 'window' pointer field is set to the window that triggered the event. For this event the trigger window is always 'this'. </td></tr>
</table>
</dd>
</dl>
<p>Reimplemented from <a class="el" href="classCEGUI_1_1Window.html#a14d613fe66ba50dacb9ee9490b64d26e">CEGUI::Window</a>.</p>
</div>
</div>
<a class="anchor" id="a4153e0e8b22a819951622b8ed140061e"></a><!-- doxytag: member="CEGUI::DragContainer::onClippingChanged" ref="a4153e0e8b22a819951622b8ed140061e" args="(WindowEventArgs &e)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void CEGUI::DragContainer::onClippingChanged </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> & </td>
<td class="paramname"><em>e</em></td><td>)</td>
<td><code> [protected, virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Handler called when the window's setting for being clipped by it's parent is changed. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">e</td><td><a class="el" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a> object whose 'window' pointer field is set to the window that triggered the event. For this event the trigger window is always 'this'. </td></tr>
</table>
</dd>
</dl>
<p>Reimplemented from <a class="el" href="classCEGUI_1_1Window.html#afcdc0e66086c28c2efc1ab82194c4f6f">CEGUI::Window</a>.</p>
</div>
</div>
<a class="anchor" id="a463848a78d450364751dff628d3eeba6"></a><!-- doxytag: member="CEGUI::DragContainer::onDragAlphaChanged" ref="a463848a78d450364751dff628d3eeba6" args="(WindowEventArgs &e)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void CEGUI::DragContainer::onDragAlphaChanged </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>Method called when the alpha value to use when dragging 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="a6482f5a93cf6dc8de26ca00951494fcd"></a><!-- doxytag: member="CEGUI::DragContainer::onDragDropTargetChanged" ref="a6482f5a93cf6dc8de26ca00951494fcd" args="(DragDropEventArgs &e)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void CEGUI::DragContainer::onDragDropTargetChanged </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classCEGUI_1_1DragDropEventArgs.html">DragDropEventArgs</a> & </td>
<td class="paramname"><em>e</em></td><td>)</td>
<td><code> [protected, virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Method called when the current drop target of this <a class="el" href="classCEGUI_1_1DragContainer.html" title="Generic drag & drop enabled window class.">DragContainer</a> changes. </p>
<dl class="note"><dt><b>Note:</b></dt><dd>This event fires just prior to the target field being changed. The default implementation changes the drop target, you can examine the old and new targets before calling the default implementation to make the actual change (and fire appropriate events 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> objects involved). </dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">e</td><td><a class="el" href="classCEGUI_1_1DragDropEventArgs.html" title="EventArgs based class used for certain drag/drop notifications.">DragDropEventArgs</a> object initialised as follows:<ul>
<li>dragDropItem is initialised to the <a class="el" href="classCEGUI_1_1DragContainer.html" title="Generic drag & drop enabled window class.">DragContainer</a> triggering the event (typically 'this').</li>
<li>window is initialised to point to 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> which will be the new drop target. </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="a5fb1b3d767ce4ed4ebeb0ea4cd7499ba"></a><!-- doxytag: member="CEGUI::DragContainer::onDragEnabledChanged" ref="a5fb1b3d767ce4ed4ebeb0ea4cd7499ba" args="(WindowEventArgs &e)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void CEGUI::DragContainer::onDragEnabledChanged </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>Method called when the dragging state is enabled or disabled. </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="afc08391bf0ba4d6785a596be394364a1"></a><!-- doxytag: member="CEGUI::DragContainer::onDragEnded" ref="afc08391bf0ba4d6785a596be394364a1" args="(WindowEventArgs &e)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void CEGUI::DragContainer::onDragEnded </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>Method called when dragging ends. </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 containing any relevant data.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>
</div>
</div>
<a class="anchor" id="ad586881443e09c44e209c6288ba6bcdc"></a><!-- doxytag: member="CEGUI::DragContainer::onDragMouseCursorChanged" ref="ad586881443e09c44e209c6288ba6bcdc" args="(WindowEventArgs &e)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void CEGUI::DragContainer::onDragMouseCursorChanged </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>Method called when the mouse cursor to use when dragging 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="a1a90d1289676d3b75d746eb2efebc57f"></a><!-- doxytag: member="CEGUI::DragContainer::onDragPositionChanged" ref="a1a90d1289676d3b75d746eb2efebc57f" args="(WindowEventArgs &e)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void CEGUI::DragContainer::onDragPositionChanged </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>Method called when the dragged object position 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 containing any relevant data.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>
</div>
</div>
<a class="anchor" id="a8c2f1be2018c3e975208e9ad1ffd0ed9"></a><!-- doxytag: member="CEGUI::DragContainer::onDragStarted" ref="a8c2f1be2018c3e975208e9ad1ffd0ed9" args="(WindowEventArgs &e)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void CEGUI::DragContainer::onDragStarted </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>Method called when dragging commences. </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 containing any relevant data.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>
</div>
</div>
<a class="anchor" id="a8b4b4985bdf9d022699b5fa491b30b5c"></a><!-- doxytag: member="CEGUI::DragContainer::onDragThresholdChanged" ref="a8b4b4985bdf9d022699b5fa491b30b5c" args="(WindowEventArgs &e)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void CEGUI::DragContainer::onDragThresholdChanged </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>Method called when the movement threshold required to trigger dragging 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="aa099a36b7e161611a917f19377572f6c"></a><!-- doxytag: member="CEGUI::DragContainer::onMouseButtonDown" ref="aa099a36b7e161611a917f19377572f6c" args="(MouseEventArgs &e)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void CEGUI::DragContainer::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="abb94bc80afb4675c74133c651d300980"></a><!-- doxytag: member="CEGUI::DragContainer::onMouseButtonUp" ref="abb94bc80afb4675c74133c651d300980" args="(MouseEventArgs &e)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void CEGUI::DragContainer::onMouseButtonUp </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classCEGUI_1_1MouseEventArgs.html">MouseEventArgs</a> & </td>
<td class="paramname"><em>e</em></td><td>)</td>
<td><code> [protected, virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Handler called when a mouse button has been released within this window's area. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">e</td><td><a class="el" href="classCEGUI_1_1MouseEventArgs.html" title="EventArgs based class that is used for objects passed to input event handlers concerning mouse input...">MouseEventArgs</a> object. All fields are valid. </td></tr>
</table>
</dd>
</dl>
<p>Reimplemented from <a class="el" href="classCEGUI_1_1Window.html#ac03b4971d121ff91d6fc771386029792">CEGUI::Window</a>.</p>
</div>
</div>
<a class="anchor" id="a68ea97052953b21de1ae2548c4677773"></a><!-- doxytag: member="CEGUI::DragContainer::onMouseMove" ref="a68ea97052953b21de1ae2548c4677773" args="(MouseEventArgs &e)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void CEGUI::DragContainer::onMouseMove </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classCEGUI_1_1MouseEventArgs.html">MouseEventArgs</a> & </td>
<td class="paramname"><em>e</em></td><td>)</td>
<td><code> [protected, virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Handler called when the mouse cursor has been moved within this window's area. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">e</td><td><a class="el" href="classCEGUI_1_1MouseEventArgs.html" title="EventArgs based class that is used for objects passed to input event handlers concerning mouse input...">MouseEventArgs</a> object. All fields are valid. </td></tr>
</table>
</dd>
</dl>
<p>Reimplemented from <a class="el" href="classCEGUI_1_1Window.html#a6ed7a299dff48cf855256983b86c971d">CEGUI::Window</a>.</p>
</div>
</div>
<a class="anchor" id="a6ca35c0a5db33bb816dd67460534bd8c"></a><!-- doxytag: member="CEGUI::DragContainer::onMoved" ref="a6ca35c0a5db33bb816dd67460534bd8c" args="(WindowEventArgs &e)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void CEGUI::DragContainer::onMoved </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classCEGUI_1_1WindowEventArgs.html">WindowEventArgs</a> & </td>
<td class="paramname"><em>e</em></td><td>)</td>
<td><code> [protected, virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Handler called when the window's position changes. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">e</td><td><a class="el" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a> object whose 'window' pointer field is set to the window that triggered the event. For this event the trigger window is always 'this'. </td></tr>
</table>
</dd>
</dl>
<p>Reimplemented from <a class="el" href="classCEGUI_1_1Window.html#a0eee181e23f6bfeda8ce8579e155328b">CEGUI::Window</a>.</p>
</div>
</div>
<a class="anchor" id="abdef565ad090c840a099c693f94f589c"></a><!-- doxytag: member="CEGUI::DragContainer::pickUp" ref="abdef565ad090c840a099c693f94f589c" args="(const bool force_sticky=false)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool CEGUI::DragContainer::pickUp </td>
<td>(</td>
<td class="paramtype">const bool </td>
<td class="paramname"><em>force_sticky</em> = <code>false</code></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Immediately pick up the <a class="el" href="classCEGUI_1_1DragContainer.html" title="Generic drag & drop enabled window class.">DragContainer</a> and optionally set the sticky mode in order to allow this to happen. Any current interaction (i.e. mouse capture) will be interrupted. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">force_sticky</td><td><ul>
<li>true to automatically enable the sticky mode in order to facilitate picking up the <a class="el" href="classCEGUI_1_1DragContainer.html" title="Generic drag & drop enabled window class.">DragContainer</a>.</li>
<li>false to ignore the pick up request if the sticky mode is not alraedy enabled (default).</li>
</ul>
</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd><ul>
<li>true if the <a class="el" href="classCEGUI_1_1DragContainer.html" title="Generic drag & drop enabled window class.">DragContainer</a> was successfully picked up.</li>
<li>false if the <a class="el" href="classCEGUI_1_1DragContainer.html" title="Generic drag & drop enabled window class.">DragContainer</a> was not picked up. </li>
</ul>
</dd></dl>
</div>
</div>
<a class="anchor" id="a1a78ba8d6c5d93fee5dd841bc1aad9b5"></a><!-- doxytag: member="CEGUI::DragContainer::setDragAlpha" ref="a1a78ba8d6c5d93fee5dd841bc1aad9b5" args="(float alpha)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::DragContainer::setDragAlpha </td>
<td>(</td>
<td class="paramtype">float </td>
<td class="paramname"><em>alpha</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Set the alpha value to be set on the <a class="el" href="classCEGUI_1_1DragContainer.html" title="Generic drag & drop enabled window class.">DragContainer</a> when a drag operation is in progress. </p>
<p>This method can be used while a drag is in progress to update the alpha. Note that the normal setAlpha method does not affect alpha while a drag is in progress, but once the drag operation has ended, any value set via setAlpha will be restored.</p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">alpha</td><td>Alpha value to use whilst dragging.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>
</div>
</div>
<a class="anchor" id="a0b9a38badcbc1afc9fbb9b303d4e925a"></a><!-- doxytag: member="CEGUI::DragContainer::setDragCursorImage" ref="a0b9a38badcbc1afc9fbb9b303d4e925a" args="(const String &imageset, const String &image)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::DragContainer::setDragCursorImage </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classCEGUI_1_1String.html">String</a> & </td>
<td class="paramname"><em>imageset</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classCEGUI_1_1String.html">String</a> & </td>
<td class="paramname"><em>image</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Set the <a class="el" href="classCEGUI_1_1Image.html" title="Class that represents a single Image of an Imageset.">Image</a> to be used for the mouse cursor when a drag operation is in progress. </p>
<p>This method may be used during a drag operation to update the current mouse cursor image.</p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">imageset</td><td><a class="el" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> holding the name of the <a class="el" href="classCEGUI_1_1Imageset.html" title="Offers functions to define, access, and draw, a set of image components on a single graphical surface...">Imageset</a> that contains the <a class="el" href="classCEGUI_1_1Image.html" title="Class that represents a single Image of an Imageset.">Image</a> to be used.</td></tr>
<tr><td class="paramname">image</td><td><a class="el" href="classCEGUI_1_1Image.html" title="Class that represents a single Image of an Imageset.">Image</a> defined for the <a class="el" href="classCEGUI_1_1Imageset.html" title="Offers functions to define, access, and draw, a set of image components on a single graphical surface...">Imageset</a> <em>imageset</em> to be used as the mouse cursor when dragging.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing.</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 either <em>imageset</em> or <em>image</em> are unknown. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a49c964dcc00a8f5cf7a33991d3b41ceb"></a><!-- doxytag: member="CEGUI::DragContainer::setDragCursorImage" ref="a49c964dcc00a8f5cf7a33991d3b41ceb" args="(MouseCursorImage image)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::DragContainer::setDragCursorImage </td>
<td>(</td>
<td class="paramtype"><a class="el" href="namespaceCEGUI.html#abceac8add620a21fa3ce491a51b7ecbb">MouseCursorImage</a> </td>
<td class="paramname"><em>image</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Set the <a class="el" href="classCEGUI_1_1Image.html" title="Class that represents a single Image of an Imageset.">Image</a> to be used for the mouse cursor when a drag operation is in progress. </p>
<p>This method may be used during a drag operation to update the current mouse cursor image.</p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">image</td><td>One of the MouseCursorImage enumerated values.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>
</div>
</div>
<a class="anchor" id="ab070eda563689cb6ea80af508e97c928"></a><!-- doxytag: member="CEGUI::DragContainer::setDragCursorImage" ref="ab070eda563689cb6ea80af508e97c928" args="(const Image *image)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::DragContainer::setDragCursorImage </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classCEGUI_1_1Image.html">Image</a> * </td>
<td class="paramname"><em>image</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Set the <a class="el" href="classCEGUI_1_1Image.html" title="Class that represents a single Image of an Imageset.">Image</a> to be used for the mouse cursor when a drag operation is in progress. </p>
<p>This method may be used during a drag operation to update the current mouse cursor image.</p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">image</td><td><a class="el" href="classCEGUI_1_1Image.html" title="Class that represents a single Image of an Imageset.">Image</a> object to be used as the mouse cursor while dragging.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>
</div>
</div>
<a class="anchor" id="a3455d2772ec2c8aed0457235654724ab"></a><!-- doxytag: member="CEGUI::DragContainer::setDraggingEnabled" ref="a3455d2772ec2c8aed0457235654724ab" args="(bool setting)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::DragContainer::setDraggingEnabled </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 dragging is currently enabled for this <a class="el" href="classCEGUI_1_1DragContainer.html" title="Generic drag & drop enabled window class.">DragContainer</a>. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">setting</td><td><ul>
<li>true to enable dragging so that the <a class="el" href="classCEGUI_1_1DragContainer.html" title="Generic drag & drop enabled window class.">DragContainer</a> may be dragged.</li>
<li>false to disabled dragging so that the <a class="el" href="classCEGUI_1_1DragContainer.html" title="Generic drag & drop enabled window class.">DragContainer</a> may not be dragged.</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="ae7493e3fcc338a452f57f804defc483c"></a><!-- doxytag: member="CEGUI::DragContainer::setFixedDragOffset" ref="ae7493e3fcc338a452f57f804defc483c" args="(const UVector2 &offset)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::DragContainer::setFixedDragOffset </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classCEGUI_1_1UVector2.html">UVector2</a> & </td>
<td class="paramname"><em>offset</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Set the fixed mouse cursor dragging offset to be used for this <a class="el" href="classCEGUI_1_1DragContainer.html" title="Generic drag & drop enabled window class.">DragContainer</a>. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">offset</td><td><a class="el" href="classCEGUI_1_1UVector2.html" title="Two dimensional vector class built using unified dimensions (UDims). The UVector2 class is used for r...">UVector2</a> describing the fixed offset to be used when dragging this <a class="el" href="classCEGUI_1_1DragContainer.html" title="Generic drag & drop enabled window class.">DragContainer</a>.</td></tr>
</table>
</dd>
</dl>
<dl class="note"><dt><b>Note:</b></dt><dd>This offset is only used if it's use is enabled via the setUsingFixedDragOffset function. </dd></dl>
</div>
</div>
<a class="anchor" id="aa5266d8ea03b5e6f840864e4c50ace50"></a><!-- doxytag: member="CEGUI::DragContainer::setPixelDragThreshold" ref="aa5266d8ea03b5e6f840864e4c50ace50" args="(float pixels)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::DragContainer::setPixelDragThreshold </td>
<td>(</td>
<td class="paramtype">float </td>
<td class="paramname"><em>pixels</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Set the current drag threshold in pixels. </p>
<p>The drag threshold is the number of pixels that the mouse must be moved with the left button held down in order to commence a drag operation.</p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">pixels</td><td>float value indicating the new drag threshold value.</td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Nothing. </dd></dl>
</div>
</div>
<a class="anchor" id="a5456f44bf37aafa318f4ce2736bfde82"></a><!-- doxytag: member="CEGUI::DragContainer::setStickyModeEnabled" ref="a5456f44bf37aafa318f4ce2736bfde82" args="(bool setting)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::DragContainer::setStickyModeEnabled </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>Enable or disable sticky mode. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">setting</td><td><ul>
<li>true to enable sticky mode.</li>
<li>false to disable sticky mode. </li>
</ul>
</td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a7f43637a9420d7323d684e9df3063b2b"></a><!-- doxytag: member="CEGUI::DragContainer::setUsingFixedDragOffset" ref="a7f43637a9420d7323d684e9df3063b2b" args="(const bool enable)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void CEGUI::DragContainer::setUsingFixedDragOffset </td>
<td>(</td>
<td class="paramtype">const bool </td>
<td class="paramname"><em>enable</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Set whether the fixed dragging offset - as set with the setFixedDragOffset - function will be used, or whether the built-in positioning will be used. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">enable</td><td><ul>
<li>true to enabled the use of the fixed offset.</li>
<li>false to use the regular logic. </li>
</ul>
</td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="aa45304bae9b061d7041853b31f63d73d"></a><!-- doxytag: member="CEGUI::DragContainer::testClassName_impl" ref="aa45304bae9b061d7041853b31f63d73d" args="(const String &class_name) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual bool CEGUI::DragContainer::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="a44dbcce3727a13e907a75e5190486adc"></a><!-- doxytag: member="CEGUI::DragContainer::d_dropflag" ref="a44dbcce3727a13e907a75e5190486adc" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool <a class="el" href="classCEGUI_1_1DragContainer.html#a44dbcce3727a13e907a75e5190486adc">CEGUI::DragContainer::d_dropflag</a><code> [protected]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>True when we're being dropped </p>
</div>
</div>
<a class="anchor" id="af6ed369ac5c32a488f8c3358f38ac292"></a><!-- doxytag: member="CEGUI::DragContainer::EventDragAlphaChanged" ref="af6ed369ac5c32a488f8c3358f38ac292" 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_1DragContainer.html#af6ed369ac5c32a488f8c3358f38ac292">CEGUI::DragContainer::EventDragAlphaChanged</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 alpha value used when dragging is changed. Handlers are passed a const <a class="el" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a> reference with <a class="el" href="classCEGUI_1_1WindowEventArgs.html#a5817b522882b9648d445a20b8c354966" title="pointer to a Window object of relevance to the event.">WindowEventArgs::window</a> set to the <a class="el" href="classCEGUI_1_1DragContainer.html" title="Generic drag & drop enabled window class.">DragContainer</a> whose drag alpha value has been changed. </p>
</div>
</div>
<a class="anchor" id="a17d1bca8ea524b1e7bb382ab209d4e01"></a><!-- doxytag: member="CEGUI::DragContainer::EventDragDropTargetChanged" ref="a17d1bca8ea524b1e7bb382ab209d4e01" 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_1DragContainer.html#a17d1bca8ea524b1e7bb382ab209d4e01">CEGUI::DragContainer::EventDragDropTargetChanged</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 drop target changes. Handlers are passed a const <a class="el" href="classCEGUI_1_1DragDropEventArgs.html" title="EventArgs based class used for certain drag/drop notifications.">DragDropEventArgs</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_1Window.html" title="An abstract base class providing common functionality and specifying the required interface for deriv...">Window</a> that is now the target window and DragDropEventArgs::dragDropItem set to the <a class="el" href="classCEGUI_1_1DragContainer.html" title="Generic drag & drop enabled window class.">DragContainer</a> whose target has changed. </p>
</div>
</div>
<a class="anchor" id="a3974b619b83ea20d952db3af77916f1c"></a><!-- doxytag: member="CEGUI::DragContainer::EventDragEnabledChanged" ref="a3974b619b83ea20d952db3af77916f1c" 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_1DragContainer.html#a3974b619b83ea20d952db3af77916f1c">CEGUI::DragContainer::EventDragEnabledChanged</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 dragging is enabled or disabled. 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_1DragContainer.html" title="Generic drag & drop enabled window class.">DragContainer</a> whose setting has been changed. </p>
</div>
</div>
<a class="anchor" id="a7edd74318ced00a4d06ba7dca3268df5"></a><!-- doxytag: member="CEGUI::DragContainer::EventDragEnded" ref="a7edd74318ced00a4d06ba7dca3268df5" 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_1DragContainer.html#a7edd74318ced00a4d06ba7dca3268df5">CEGUI::DragContainer::EventDragEnded</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 <a class="el" href="classCEGUI_1_1DragContainer.html" title="Generic drag & drop enabled window class.">DragContainer</a>. 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_1DragContainer.html" title="Generic drag & drop enabled window class.">DragContainer</a> that the user has released. </p>
</div>
</div>
<a class="anchor" id="a0516316b36229b29f80f7f9f19a4c96b"></a><!-- doxytag: member="CEGUI::DragContainer::EventDragMouseCursorChanged" ref="a0516316b36229b29f80f7f9f19a4c96b" 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_1DragContainer.html#a0516316b36229b29f80f7f9f19a4c96b">CEGUI::DragContainer::EventDragMouseCursorChanged</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 mouse cursor to used when dragging is changed. Handlers are passed a const <a class="el" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a> reference with <a class="el" href="classCEGUI_1_1WindowEventArgs.html#a5817b522882b9648d445a20b8c354966" title="pointer to a Window object of relevance to the event.">WindowEventArgs::window</a> set to the <a class="el" href="classCEGUI_1_1DragContainer.html" title="Generic drag & drop enabled window class.">DragContainer</a> whose dragging mouse cursor image has been changed. </p>
</div>
</div>
<a class="anchor" id="a671d52ef11b86a48ab7367a8326ce78e"></a><!-- doxytag: member="CEGUI::DragContainer::EventDragPositionChanged" ref="a671d52ef11b86a48ab7367a8326ce78e" 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_1DragContainer.html#a671d52ef11b86a48ab7367a8326ce78e">CEGUI::DragContainer::EventDragPositionChanged</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 drag position has changed. Handlers are passed a const <a class="el" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a> reference with <a class="el" href="classCEGUI_1_1WindowEventArgs.html#a5817b522882b9648d445a20b8c354966" title="pointer to a Window object of relevance to the event.">WindowEventArgs::window</a> set to the <a class="el" href="classCEGUI_1_1DragContainer.html" title="Generic drag & drop enabled window class.">DragContainer</a> whose position has changed due to the user dragging it. </p>
</div>
</div>
<a class="anchor" id="a1853c48ff4f83685e3a6f5a518ff5fc5"></a><!-- doxytag: member="CEGUI::DragContainer::EventDragStarted" ref="a1853c48ff4f83685e3a6f5a518ff5fc5" 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_1DragContainer.html#a1853c48ff4f83685e3a6f5a518ff5fc5">CEGUI::DragContainer::EventDragStarted</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 <a class="el" href="classCEGUI_1_1DragContainer.html" title="Generic drag & drop enabled window class.">DragContainer</a>. 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_1DragContainer.html" title="Generic drag & drop enabled window class.">DragContainer</a> that the user has started to drag. </p>
</div>
</div>
<a class="anchor" id="ac7812528b483852c6ead5586418d1ce1"></a><!-- doxytag: member="CEGUI::DragContainer::EventDragThresholdChanged" ref="ac7812528b483852c6ead5586418d1ce1" 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_1DragContainer.html#ac7812528b483852c6ead5586418d1ce1">CEGUI::DragContainer::EventDragThresholdChanged</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 drag pixel threshold is changed. Handlers are passed a const <a class="el" href="classCEGUI_1_1WindowEventArgs.html" title="EventArgs based class that is used for objects passed to handlers triggered for events concerning som...">WindowEventArgs</a> reference with <a class="el" href="classCEGUI_1_1WindowEventArgs.html#a5817b522882b9648d445a20b8c354966" title="pointer to a Window object of relevance to the event.">WindowEventArgs::window</a> set to the <a class="el" href="classCEGUI_1_1DragContainer.html" title="Generic drag & drop enabled window class.">DragContainer</a> whose dragging pixel threshold has been 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>
|