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
|
<!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"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<title>wxWidgets: wxMouseEvent Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
<link href="extra_stylesheet.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<div id="page_container">
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0" style="width: 100%;">
<tbody>
<tr>
<td id="projectlogo">
<a href="http://www.wxwidgets.org/" target="_new">
<img alt="wxWidgets" src="logo.png"/>
</a>
</td>
<td style="padding-left: 0.5em; text-align: right;">
<span id="projectnumber">Version: 3.0.2</span>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.8.2 -->
<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="modules.html"><span>Categories</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="hierarchy.html"><span>Class Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class Members</span></a></li>
</ul>
</div>
</div><!-- top -->
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> |
<a href="classwx_mouse_event-members.html">List of all members</a> </div>
<div class="headertitle">
<div class="title">wxMouseEvent Class Reference<div class="ingroups"><a class="el" href="group__group__class__events.html">Events</a></div></div> </div>
</div><!--header-->
<div class="contents">
<p><code>#include <wx/event.h></code></p>
<div id="dynsection-0" onclick="return toggleVisibility(this)" class="dynheader closed" style="cursor:pointer;">
<img id="dynsection-0-trigger" src="closed.png" alt="+"/> Inheritance diagram for wxMouseEvent:</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="classwx_mouse_event__inherit__graph.png" border="0" usemap="#wx_mouse_event_inherit__map" alt="Inheritance graph"/></div>
<map name="wx_mouse_event_inherit__map" id="wx_mouse_event_inherit__map">
<area shape="rect" id="node2" href="classwx_event.html" title="An event is a structure holding information about an event passed to a callback or member function..." alt="" coords="11,83,80,111"/><area shape="rect" id="node4" href="classwx_object.html" title="This is the root class of many of the wxWidgets classes." alt="" coords="5,6,80,34"/><area shape="rect" id="node6" href="classwx_mouse_state.html" title="Represents the mouse state." alt="" coords="109,83,216,111"/><area shape="rect" id="node8" href="classwx_keyboard_state.html" title="Provides methods for testing the state of the keyboard modifier keys." alt="" coords="104,6,227,34"/></map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
<div class="textblock"><p>This event class contains information about the events generated by the mouse: they include mouse buttons press and release events and mouse move events. </p>
<p>All mouse events involving the buttons use <code>wxMOUSE_BTN_LEFT</code> for the left mouse button, <code>wxMOUSE_BTN_MIDDLE</code> for the middle one and <code>wxMOUSE_BTN_RIGHT</code> for the right one. And if the system supports more buttons, the <code>wxMOUSE_BTN_AUX1</code> and <code>wxMOUSE_BTN_AUX2</code> events can also be generated. Note that not all mice have even a middle button so a portable application should avoid relying on the events from it (but the right button click can be emulated using the left mouse button with the control key under Mac platforms with a single button mouse).</p>
<p>For the <code>wxEVT_ENTER_WINDOW</code> and <code>wxEVT_LEAVE_WINDOW</code> events purposes, the mouse is considered to be inside the window if it is in the window client area and not inside one of its children. In other words, the parent window receives <code>wxEVT_LEAVE_WINDOW</code> event not only when the mouse leaves the window entirely but also when it enters one of its children.</p>
<p>The position associated with a mouse event is expressed in the window coordinates of the window which generated the event, you can use <a class="el" href="classwx_window.html#a29eac611e5f6b47db82bb4dd5450ba3d" title="Converts to screen coordinates from coordinates relative to this window.">wxWindow::ClientToScreen()</a> to convert it to screen coordinates and possibly call <a class="el" href="classwx_window.html#a65531bbc52f9508b0e31a9c08c97bd31" title="Converts from screen to client window coordinates.">wxWindow::ScreenToClient()</a> next to convert it to window coordinates of another window.</p>
<dl class="section note"><dt>Note</dt><dd>Note that under Windows CE mouse enter and leave events are not natively supported by the system but are generated by wxWidgets itself. This has several drawbacks: the LEAVE_WINDOW event might be received some time after the mouse left the window and the state variables for it may have changed during this time.</dd>
<dd>
Note the difference between methods like <a class="el" href="classwx_mouse_event.html#ae32a96eaf5b84dc2d36341169dcd19c7" title="Returns true if the left mouse button changed to down.">wxMouseEvent::LeftDown</a> and the inherited <a class="el" href="classwx_mouse_state.html#a7c1a0c5dd4b603a8acf060e9b62e4c1a" title="Returns true if the left mouse button is currently down.">wxMouseState::LeftIsDown</a>: the former returns <span class="literal">true</span> when the event corresponds to the left mouse button click while the latter returns <span class="literal">true</span> if the left mouse button is currently being pressed. For example, when the user is dragging the mouse you can use <a class="el" href="classwx_mouse_state.html#a7c1a0c5dd4b603a8acf060e9b62e4c1a" title="Returns true if the left mouse button is currently down.">wxMouseEvent::LeftIsDown</a> to test whether the left mouse button is (still) depressed. Also, by convention, if <a class="el" href="classwx_mouse_event.html#ae32a96eaf5b84dc2d36341169dcd19c7" title="Returns true if the left mouse button changed to down.">wxMouseEvent::LeftDown</a> returns <span class="literal">true</span>, <a class="el" href="classwx_mouse_state.html#a7c1a0c5dd4b603a8acf060e9b62e4c1a" title="Returns true if the left mouse button is currently down.">wxMouseEvent::LeftIsDown</a> will also return <span class="literal">true</span> in wxWidgets whatever the underlying GUI behaviour is (which is platform-dependent). The same applies, of course, to other mouse buttons as well.</dd></dl>
<h2>Events using this class</h2>
<p>The following event handler macros redirect the events to member function handlers '<b>func</b>' with prototypes like: </p>
<div class="eventHandler"><span>void handlerFuncName(<a class="el" href="classwx_mouse_event.html" title="This event class contains information about the events generated by the mouse: they include mouse but...">wxMouseEvent</a>& event)</span></div><p>Event macros:</p>
<div> </div><ul>
<li><span class="event">EVT_LEFT_DOWN(func)</span>:<div class="eventDesc"> Process a <code>wxEVT_LEFT_DOWN</code> event. The handler of this event should normally call event.Skip() to allow the default processing to take place as otherwise the window under mouse wouldn't get the focus. </div></li>
<li><span class="event">EVT_LEFT_UP(func)</span>:<div class="eventDesc"> Process a <code>wxEVT_LEFT_UP</code> event. </div></li>
<li><span class="event">EVT_LEFT_DCLICK(func)</span>:<div class="eventDesc"> Process a <code>wxEVT_LEFT_DCLICK</code> event. </div></li>
<li><span class="event">EVT_MIDDLE_DOWN(func)</span>:<div class="eventDesc"> Process a <code>wxEVT_MIDDLE_DOWN</code> event. </div></li>
<li><span class="event">EVT_MIDDLE_UP(func)</span>:<div class="eventDesc"> Process a <code>wxEVT_MIDDLE_UP</code> event. </div></li>
<li><span class="event">EVT_MIDDLE_DCLICK(func)</span>:<div class="eventDesc"> Process a <code>wxEVT_MIDDLE_DCLICK</code> event. </div></li>
<li><span class="event">EVT_RIGHT_DOWN(func)</span>:<div class="eventDesc"> Process a <code>wxEVT_RIGHT_DOWN</code> event. </div></li>
<li><span class="event">EVT_RIGHT_UP(func)</span>:<div class="eventDesc"> Process a <code>wxEVT_RIGHT_UP</code> event. </div></li>
<li><span class="event">EVT_RIGHT_DCLICK(func)</span>:<div class="eventDesc"> Process a <code>wxEVT_RIGHT_DCLICK</code> event. </div></li>
<li><span class="event">EVT_MOUSE_AUX1_DOWN(func)</span>:<div class="eventDesc"> Process a <code>wxEVT_AUX1_DOWN</code> event. </div></li>
<li><span class="event">EVT_MOUSE_AUX1_UP(func)</span>:<div class="eventDesc"> Process a <code>wxEVT_AUX1_UP</code> event. </div></li>
<li><span class="event">EVT_MOUSE_AUX1_DCLICK(func)</span>:<div class="eventDesc"> Process a <code>wxEVT_AUX1_DCLICK</code> event. </div></li>
<li><span class="event">EVT_MOUSE_AUX2_DOWN(func)</span>:<div class="eventDesc"> Process a <code>wxEVT_AUX2_DOWN</code> event. </div></li>
<li><span class="event">EVT_MOUSE_AUX2_UP(func)</span>:<div class="eventDesc"> Process a <code>wxEVT_AUX2_UP</code> event. </div></li>
<li><span class="event">EVT_MOUSE_AUX2_DCLICK(func)</span>:<div class="eventDesc"> Process a <code>wxEVT_AUX2_DCLICK</code> event. </div></li>
<li><span class="event">EVT_MOTION(func)</span>:<div class="eventDesc"> Process a <code>wxEVT_MOTION</code> event. </div></li>
<li><span class="event">EVT_ENTER_WINDOW(func)</span>:<div class="eventDesc"> Process a <code>wxEVT_ENTER_WINDOW</code> event. </div></li>
<li><span class="event">EVT_LEAVE_WINDOW(func)</span>:<div class="eventDesc"> Process a <code>wxEVT_LEAVE_WINDOW</code> event. </div></li>
<li><span class="event">EVT_MOUSEWHEEL(func)</span>:<div class="eventDesc"> Process a <code>wxEVT_MOUSEWHEEL</code> event. </div></li>
<li><span class="event">EVT_MOUSE_EVENTS(func)</span>:<div class="eventDesc"> Process all mouse events. </div></li>
</ul>
<h2></h2>
<div><span class="lib">Library:</span>  <span class="lib_text"><a class="el" href="page_libs.html#page_libs_wxcore">wxCore</a></span></div><div><span class="category">Category:</span>  <span class="category_text"><a class="el" href="group__group__class__events.html">Events</a></span></div><dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_key_event.html" title="This event class contains information about key press and release events.">wxKeyEvent</a> </dd></dl>
</div><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr class="memitem:acefb7a03efc09f774bdb03b497d86bb4"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_mouse_event.html#acefb7a03efc09f774bdb03b497d86bb4">wxMouseEvent</a> (<a class="el" href="group__group__funcmacro__events.html#ga6a7fd172612c0d6d9029bfa3aa91aca0">wxEventType</a> mouseEventType=<a class="el" href="group__group__funcmacro__events.html#ga310bc3f7977ae79ac1198c7a287dbffe">wxEVT_NULL</a>)</td></tr>
<tr class="memdesc:acefb7a03efc09f774bdb03b497d86bb4"><td class="mdescLeft"> </td><td class="mdescRight">Constructor. <a href="#acefb7a03efc09f774bdb03b497d86bb4"></a><br/></td></tr>
<tr class="separator:acefb7a03efc09f774bdb03b497d86bb4"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aed173e6979ad43305abb006af1ed22a7"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_mouse_event.html#aed173e6979ad43305abb006af1ed22a7">Aux1DClick</a> () const </td></tr>
<tr class="memdesc:aed173e6979ad43305abb006af1ed22a7"><td class="mdescLeft"> </td><td class="mdescRight">Returns <span class="literal">true</span> if the event was a first extra button double click. <a href="#aed173e6979ad43305abb006af1ed22a7"></a><br/></td></tr>
<tr class="separator:aed173e6979ad43305abb006af1ed22a7"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a878673fb8c9cc071288bf44725497d0c"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_mouse_event.html#a878673fb8c9cc071288bf44725497d0c">Aux1Down</a> () const </td></tr>
<tr class="memdesc:a878673fb8c9cc071288bf44725497d0c"><td class="mdescLeft"> </td><td class="mdescRight">Returns <span class="literal">true</span> if the first extra button mouse button changed to down. <a href="#a878673fb8c9cc071288bf44725497d0c"></a><br/></td></tr>
<tr class="separator:a878673fb8c9cc071288bf44725497d0c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a15678b38dd0da742187e01594eec51fb"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_mouse_event.html#a15678b38dd0da742187e01594eec51fb">Aux1Up</a> () const </td></tr>
<tr class="memdesc:a15678b38dd0da742187e01594eec51fb"><td class="mdescLeft"> </td><td class="mdescRight">Returns <span class="literal">true</span> if the first extra button mouse button changed to up. <a href="#a15678b38dd0da742187e01594eec51fb"></a><br/></td></tr>
<tr class="separator:a15678b38dd0da742187e01594eec51fb"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8f3a20465afce26b971dd88753dd9382"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_mouse_event.html#a8f3a20465afce26b971dd88753dd9382">Aux2DClick</a> () const </td></tr>
<tr class="memdesc:a8f3a20465afce26b971dd88753dd9382"><td class="mdescLeft"> </td><td class="mdescRight">Returns <span class="literal">true</span> if the event was a second extra button double click. <a href="#a8f3a20465afce26b971dd88753dd9382"></a><br/></td></tr>
<tr class="separator:a8f3a20465afce26b971dd88753dd9382"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a75ab0d1156716ad6512ccd77756221c2"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_mouse_event.html#a75ab0d1156716ad6512ccd77756221c2">Aux2Down</a> () const </td></tr>
<tr class="memdesc:a75ab0d1156716ad6512ccd77756221c2"><td class="mdescLeft"> </td><td class="mdescRight">Returns <span class="literal">true</span> if the second extra button mouse button changed to down. <a href="#a75ab0d1156716ad6512ccd77756221c2"></a><br/></td></tr>
<tr class="separator:a75ab0d1156716ad6512ccd77756221c2"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3bd23e1874ec7feaa385ceed2038e57f"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_mouse_event.html#a3bd23e1874ec7feaa385ceed2038e57f">Aux2Up</a> () const </td></tr>
<tr class="memdesc:a3bd23e1874ec7feaa385ceed2038e57f"><td class="mdescLeft"> </td><td class="mdescRight">Returns <span class="literal">true</span> if the second extra button mouse button changed to up. <a href="#a3bd23e1874ec7feaa385ceed2038e57f"></a><br/></td></tr>
<tr class="separator:a3bd23e1874ec7feaa385ceed2038e57f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0fc7793b2a41f16c239e6d806869c70d"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_mouse_event.html#a0fc7793b2a41f16c239e6d806869c70d">Button</a> (<a class="el" href="mousestate_8h.html#afb918542b7b2b8f0fa28a483ad95de49">wxMouseButton</a> but) const </td></tr>
<tr class="memdesc:a0fc7793b2a41f16c239e6d806869c70d"><td class="mdescLeft"> </td><td class="mdescRight">Returns <span class="literal">true</span> if the event was generated by the specified button. <a href="#a0fc7793b2a41f16c239e6d806869c70d"></a><br/></td></tr>
<tr class="separator:a0fc7793b2a41f16c239e6d806869c70d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2c2128af7083cec4c5d64c05bd2a2bc0"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_mouse_event.html#a2c2128af7083cec4c5d64c05bd2a2bc0">ButtonDClick</a> (<a class="el" href="mousestate_8h.html#afb918542b7b2b8f0fa28a483ad95de49">wxMouseButton</a> but=<a class="el" href="mousestate_8h.html#afb918542b7b2b8f0fa28a483ad95de49a8645ddd8ed04060c86c8382a7839fcb9">wxMOUSE_BTN_ANY</a>) const </td></tr>
<tr class="memdesc:a2c2128af7083cec4c5d64c05bd2a2bc0"><td class="mdescLeft"> </td><td class="mdescRight">If the argument is omitted, this returns <span class="literal">true</span> if the event was a mouse double click event. <a href="#a2c2128af7083cec4c5d64c05bd2a2bc0"></a><br/></td></tr>
<tr class="separator:a2c2128af7083cec4c5d64c05bd2a2bc0"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af431ddddb0db9978b852285fd620aa1f"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_mouse_event.html#af431ddddb0db9978b852285fd620aa1f">ButtonDown</a> (<a class="el" href="mousestate_8h.html#afb918542b7b2b8f0fa28a483ad95de49">wxMouseButton</a> but=<a class="el" href="mousestate_8h.html#afb918542b7b2b8f0fa28a483ad95de49a8645ddd8ed04060c86c8382a7839fcb9">wxMOUSE_BTN_ANY</a>) const </td></tr>
<tr class="memdesc:af431ddddb0db9978b852285fd620aa1f"><td class="mdescLeft"> </td><td class="mdescRight">If the argument is omitted, this returns <span class="literal">true</span> if the event was a mouse button down event. <a href="#af431ddddb0db9978b852285fd620aa1f"></a><br/></td></tr>
<tr class="separator:af431ddddb0db9978b852285fd620aa1f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9a40c5a070c444bd480a029da0ce0284"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_mouse_event.html#a9a40c5a070c444bd480a029da0ce0284">ButtonUp</a> (<a class="el" href="mousestate_8h.html#afb918542b7b2b8f0fa28a483ad95de49">wxMouseButton</a> but=<a class="el" href="mousestate_8h.html#afb918542b7b2b8f0fa28a483ad95de49a8645ddd8ed04060c86c8382a7839fcb9">wxMOUSE_BTN_ANY</a>) const </td></tr>
<tr class="memdesc:a9a40c5a070c444bd480a029da0ce0284"><td class="mdescLeft"> </td><td class="mdescRight">If the argument is omitted, this returns <span class="literal">true</span> if the event was a mouse button up event. <a href="#a9a40c5a070c444bd480a029da0ce0284"></a><br/></td></tr>
<tr class="separator:a9a40c5a070c444bd480a029da0ce0284"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aaf32bfc85d51a565b1a9b89189292325"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_mouse_event.html#aaf32bfc85d51a565b1a9b89189292325">Dragging</a> () const </td></tr>
<tr class="memdesc:aaf32bfc85d51a565b1a9b89189292325"><td class="mdescLeft"> </td><td class="mdescRight">Returns <span class="literal">true</span> if this was a dragging event (motion while a button is depressed). <a href="#aaf32bfc85d51a565b1a9b89189292325"></a><br/></td></tr>
<tr class="separator:aaf32bfc85d51a565b1a9b89189292325"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a58b95f69ebe3207852e7c48715797d83"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_mouse_event.html#a58b95f69ebe3207852e7c48715797d83">Entering</a> () const </td></tr>
<tr class="memdesc:a58b95f69ebe3207852e7c48715797d83"><td class="mdescLeft"> </td><td class="mdescRight">Returns <span class="literal">true</span> if the mouse was entering the window. <a href="#a58b95f69ebe3207852e7c48715797d83"></a><br/></td></tr>
<tr class="separator:a58b95f69ebe3207852e7c48715797d83"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab0f13904b1e38799f357eed6231b5a48"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_mouse_event.html#ab0f13904b1e38799f357eed6231b5a48">GetButton</a> () const </td></tr>
<tr class="memdesc:ab0f13904b1e38799f357eed6231b5a48"><td class="mdescLeft"> </td><td class="mdescRight">Returns the mouse button which generated this event or <code>wxMOUSE_BTN_NONE</code> if no button is involved (for mouse move, enter or leave event, for example). <a href="#ab0f13904b1e38799f357eed6231b5a48"></a><br/></td></tr>
<tr class="separator:ab0f13904b1e38799f357eed6231b5a48"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:adc4d39b626fcc62e93d9356a32003273"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_mouse_event.html#adc4d39b626fcc62e93d9356a32003273">GetClickCount</a> () const </td></tr>
<tr class="memdesc:adc4d39b626fcc62e93d9356a32003273"><td class="mdescLeft"> </td><td class="mdescRight">Returns the number of mouse clicks for this event: 1 for a simple click, 2 for a double-click, 3 for a triple-click and so on. <a href="#adc4d39b626fcc62e93d9356a32003273"></a><br/></td></tr>
<tr class="separator:adc4d39b626fcc62e93d9356a32003273"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a427758709c1e11f9e5e483f05bb991c7"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_mouse_event.html#a427758709c1e11f9e5e483f05bb991c7">GetLinesPerAction</a> () const </td></tr>
<tr class="memdesc:a427758709c1e11f9e5e483f05bb991c7"><td class="mdescLeft"> </td><td class="mdescRight">Returns the configured number of lines (or whatever) to be scrolled per wheel action. <a href="#a427758709c1e11f9e5e483f05bb991c7"></a><br/></td></tr>
<tr class="separator:a427758709c1e11f9e5e483f05bb991c7"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa190ab6efb57348ca66ef4232eae4e36"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_mouse_event.html#aa190ab6efb57348ca66ef4232eae4e36">GetColumnsPerAction</a> () const </td></tr>
<tr class="memdesc:aa190ab6efb57348ca66ef4232eae4e36"><td class="mdescLeft"> </td><td class="mdescRight">Returns the configured number of columns (or whatever) to be scrolled per wheel action. <a href="#aa190ab6efb57348ca66ef4232eae4e36"></a><br/></td></tr>
<tr class="separator:aa190ab6efb57348ca66ef4232eae4e36"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa45b2a04b77da6720c48c5b461eb8d98"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_point.html">wxPoint</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_mouse_event.html#aa45b2a04b77da6720c48c5b461eb8d98">GetLogicalPosition</a> (const <a class="el" href="classwx_d_c.html">wxDC</a> &dc) const </td></tr>
<tr class="memdesc:aa45b2a04b77da6720c48c5b461eb8d98"><td class="mdescLeft"> </td><td class="mdescRight">Returns the logical mouse position in pixels (i.e. translated according to the translation set for the DC, which usually indicates that the window has been scrolled). <a href="#aa45b2a04b77da6720c48c5b461eb8d98"></a><br/></td></tr>
<tr class="separator:aa45b2a04b77da6720c48c5b461eb8d98"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3f53becddee2e82c5b934585b32b48b4"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_mouse_event.html#a3f53becddee2e82c5b934585b32b48b4">GetWheelDelta</a> () const </td></tr>
<tr class="memdesc:a3f53becddee2e82c5b934585b32b48b4"><td class="mdescLeft"> </td><td class="mdescRight">Get wheel delta, normally 120. <a href="#a3f53becddee2e82c5b934585b32b48b4"></a><br/></td></tr>
<tr class="separator:a3f53becddee2e82c5b934585b32b48b4"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0bb1e43dbaa5b1185cdff155e0edf1a2"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_mouse_event.html#a0bb1e43dbaa5b1185cdff155e0edf1a2">GetWheelRotation</a> () const </td></tr>
<tr class="memdesc:a0bb1e43dbaa5b1185cdff155e0edf1a2"><td class="mdescLeft"> </td><td class="mdescRight">Get wheel rotation, positive or negative indicates direction of rotation. <a href="#a0bb1e43dbaa5b1185cdff155e0edf1a2"></a><br/></td></tr>
<tr class="separator:a0bb1e43dbaa5b1185cdff155e0edf1a2"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6e455a3fa3708031d8571e42489d453e"><td class="memItemLeft" align="right" valign="top"><a class="el" href="event_8h.html#a198c1db521935c03fbd89959c951215b">wxMouseWheelAxis</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_mouse_event.html#a6e455a3fa3708031d8571e42489d453e">GetWheelAxis</a> () const </td></tr>
<tr class="memdesc:a6e455a3fa3708031d8571e42489d453e"><td class="mdescLeft"> </td><td class="mdescRight">Gets the axis the wheel operation concerns. <a href="#a6e455a3fa3708031d8571e42489d453e"></a><br/></td></tr>
<tr class="separator:a6e455a3fa3708031d8571e42489d453e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a71c3e4dd2b3ef72fe646e83fd494c669"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_mouse_event.html#a71c3e4dd2b3ef72fe646e83fd494c669">IsButton</a> () const </td></tr>
<tr class="memdesc:a71c3e4dd2b3ef72fe646e83fd494c669"><td class="mdescLeft"> </td><td class="mdescRight">Returns <span class="literal">true</span> if the event was a mouse button event (not necessarily a button down event - that may be tested using <a class="el" href="classwx_mouse_event.html#af431ddddb0db9978b852285fd620aa1f" title="If the argument is omitted, this returns true if the event was a mouse button down event...">ButtonDown()</a>). <a href="#a71c3e4dd2b3ef72fe646e83fd494c669"></a><br/></td></tr>
<tr class="separator:a71c3e4dd2b3ef72fe646e83fd494c669"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a43310add07362bb6737ebb7a91de622a"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_mouse_event.html#a43310add07362bb6737ebb7a91de622a">IsPageScroll</a> () const </td></tr>
<tr class="memdesc:a43310add07362bb6737ebb7a91de622a"><td class="mdescLeft"> </td><td class="mdescRight">Returns <span class="literal">true</span> if the system has been setup to do page scrolling with the mouse wheel instead of line scrolling. <a href="#a43310add07362bb6737ebb7a91de622a"></a><br/></td></tr>
<tr class="separator:a43310add07362bb6737ebb7a91de622a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad01dba5513421594d0de8d4ad3d5d3af"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_mouse_event.html#ad01dba5513421594d0de8d4ad3d5d3af">Leaving</a> () const </td></tr>
<tr class="memdesc:ad01dba5513421594d0de8d4ad3d5d3af"><td class="mdescLeft"> </td><td class="mdescRight">Returns <span class="literal">true</span> if the mouse was leaving the window. <a href="#ad01dba5513421594d0de8d4ad3d5d3af"></a><br/></td></tr>
<tr class="separator:ad01dba5513421594d0de8d4ad3d5d3af"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8d9388fa3c6d6a705dfa35747a77f917"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_mouse_event.html#a8d9388fa3c6d6a705dfa35747a77f917">LeftDClick</a> () const </td></tr>
<tr class="memdesc:a8d9388fa3c6d6a705dfa35747a77f917"><td class="mdescLeft"> </td><td class="mdescRight">Returns <span class="literal">true</span> if the event was a left double click. <a href="#a8d9388fa3c6d6a705dfa35747a77f917"></a><br/></td></tr>
<tr class="separator:a8d9388fa3c6d6a705dfa35747a77f917"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae32a96eaf5b84dc2d36341169dcd19c7"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_mouse_event.html#ae32a96eaf5b84dc2d36341169dcd19c7">LeftDown</a> () const </td></tr>
<tr class="memdesc:ae32a96eaf5b84dc2d36341169dcd19c7"><td class="mdescLeft"> </td><td class="mdescRight">Returns <span class="literal">true</span> if the left mouse button changed to down. <a href="#ae32a96eaf5b84dc2d36341169dcd19c7"></a><br/></td></tr>
<tr class="separator:ae32a96eaf5b84dc2d36341169dcd19c7"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab56dcb63ca6b35b3fe2c55d3945ee9e3"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_mouse_event.html#ab56dcb63ca6b35b3fe2c55d3945ee9e3">LeftUp</a> () const </td></tr>
<tr class="memdesc:ab56dcb63ca6b35b3fe2c55d3945ee9e3"><td class="mdescLeft"> </td><td class="mdescRight">Returns <span class="literal">true</span> if the left mouse button changed to up. <a href="#ab56dcb63ca6b35b3fe2c55d3945ee9e3"></a><br/></td></tr>
<tr class="separator:ab56dcb63ca6b35b3fe2c55d3945ee9e3"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac54b0063ff887f434fee23b5b1d4b518"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_mouse_event.html#ac54b0063ff887f434fee23b5b1d4b518">MetaDown</a> () const </td></tr>
<tr class="memdesc:ac54b0063ff887f434fee23b5b1d4b518"><td class="mdescLeft"> </td><td class="mdescRight">Returns <span class="literal">true</span> if the Meta key was down at the time of the event. <a href="#ac54b0063ff887f434fee23b5b1d4b518"></a><br/></td></tr>
<tr class="separator:ac54b0063ff887f434fee23b5b1d4b518"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7b72bd9b0aa9e735a14a91b8ff0464cb"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_mouse_event.html#a7b72bd9b0aa9e735a14a91b8ff0464cb">MiddleDClick</a> () const </td></tr>
<tr class="memdesc:a7b72bd9b0aa9e735a14a91b8ff0464cb"><td class="mdescLeft"> </td><td class="mdescRight">Returns <span class="literal">true</span> if the event was a middle double click. <a href="#a7b72bd9b0aa9e735a14a91b8ff0464cb"></a><br/></td></tr>
<tr class="separator:a7b72bd9b0aa9e735a14a91b8ff0464cb"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aaf49416df9acaea3bb71470b753a1b18"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_mouse_event.html#aaf49416df9acaea3bb71470b753a1b18">MiddleDown</a> () const </td></tr>
<tr class="memdesc:aaf49416df9acaea3bb71470b753a1b18"><td class="mdescLeft"> </td><td class="mdescRight">Returns <span class="literal">true</span> if the middle mouse button changed to down. <a href="#aaf49416df9acaea3bb71470b753a1b18"></a><br/></td></tr>
<tr class="separator:aaf49416df9acaea3bb71470b753a1b18"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac54542740e9bac83c4446846782d7733"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_mouse_event.html#ac54542740e9bac83c4446846782d7733">MiddleUp</a> () const </td></tr>
<tr class="memdesc:ac54542740e9bac83c4446846782d7733"><td class="mdescLeft"> </td><td class="mdescRight">Returns <span class="literal">true</span> if the middle mouse button changed to up. <a href="#ac54542740e9bac83c4446846782d7733"></a><br/></td></tr>
<tr class="separator:ac54542740e9bac83c4446846782d7733"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4ba54065ea560c30d59fc38cec077c1f"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_mouse_event.html#a4ba54065ea560c30d59fc38cec077c1f">Moving</a> () const </td></tr>
<tr class="memdesc:a4ba54065ea560c30d59fc38cec077c1f"><td class="mdescLeft"> </td><td class="mdescRight">Returns <span class="literal">true</span> if this was a motion event and no mouse buttons were pressed. <a href="#a4ba54065ea560c30d59fc38cec077c1f"></a><br/></td></tr>
<tr class="separator:a4ba54065ea560c30d59fc38cec077c1f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae8e105ed730062c87ec41727f41e0b79"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_mouse_event.html#ae8e105ed730062c87ec41727f41e0b79">RightDClick</a> () const </td></tr>
<tr class="memdesc:ae8e105ed730062c87ec41727f41e0b79"><td class="mdescLeft"> </td><td class="mdescRight">Returns <span class="literal">true</span> if the event was a right double click. <a href="#ae8e105ed730062c87ec41727f41e0b79"></a><br/></td></tr>
<tr class="separator:ae8e105ed730062c87ec41727f41e0b79"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a657461cc8afd3692141d5364a430edbf"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_mouse_event.html#a657461cc8afd3692141d5364a430edbf">RightDown</a> () const </td></tr>
<tr class="memdesc:a657461cc8afd3692141d5364a430edbf"><td class="mdescLeft"> </td><td class="mdescRight">Returns <span class="literal">true</span> if the right mouse button changed to down. <a href="#a657461cc8afd3692141d5364a430edbf"></a><br/></td></tr>
<tr class="separator:a657461cc8afd3692141d5364a430edbf"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af56e4a8688218895336ce9829ed3e35e"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_mouse_event.html#af56e4a8688218895336ce9829ed3e35e">RightUp</a> () const </td></tr>
<tr class="memdesc:af56e4a8688218895336ce9829ed3e35e"><td class="mdescLeft"> </td><td class="mdescRight">Returns <span class="literal">true</span> if the right mouse button changed to up. <a href="#af56e4a8688218895336ce9829ed3e35e"></a><br/></td></tr>
<tr class="separator:af56e4a8688218895336ce9829ed3e35e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_methods_classwx_event"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classwx_event')"><img src="closed.png" alt="-"/> Public Member Functions inherited from <a class="el" href="classwx_event.html">wxEvent</a></td></tr>
<tr class="memitem:aaf2a5cf056d006859cea36689ba13d36 inherit pub_methods_classwx_event"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_event.html#aaf2a5cf056d006859cea36689ba13d36">wxEvent</a> (int id=0, <a class="el" href="group__group__funcmacro__events.html#ga6a7fd172612c0d6d9029bfa3aa91aca0">wxEventType</a> eventType=<a class="el" href="group__group__funcmacro__events.html#ga310bc3f7977ae79ac1198c7a287dbffe">wxEVT_NULL</a>)</td></tr>
<tr class="memdesc:aaf2a5cf056d006859cea36689ba13d36 inherit pub_methods_classwx_event"><td class="mdescLeft"> </td><td class="mdescRight">Constructor. <a href="#aaf2a5cf056d006859cea36689ba13d36"></a><br/></td></tr>
<tr class="separator:aaf2a5cf056d006859cea36689ba13d36 inherit pub_methods_classwx_event"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a26878097a702e8d0368da150125d4158 inherit pub_methods_classwx_event"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classwx_event.html">wxEvent</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_event.html#a26878097a702e8d0368da150125d4158">Clone</a> () const =0</td></tr>
<tr class="memdesc:a26878097a702e8d0368da150125d4158 inherit pub_methods_classwx_event"><td class="mdescLeft"> </td><td class="mdescRight">Returns a copy of the event. <a href="#a26878097a702e8d0368da150125d4158"></a><br/></td></tr>
<tr class="separator:a26878097a702e8d0368da150125d4158 inherit pub_methods_classwx_event"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:abdc74e95c8c2f32f2cc2bd84b88985ee inherit pub_methods_classwx_event"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_object.html">wxObject</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_event.html#abdc74e95c8c2f32f2cc2bd84b88985ee">GetEventObject</a> () const </td></tr>
<tr class="memdesc:abdc74e95c8c2f32f2cc2bd84b88985ee inherit pub_methods_classwx_event"><td class="mdescLeft"> </td><td class="mdescRight">Returns the object (usually a window) associated with the event, if any. <a href="#abdc74e95c8c2f32f2cc2bd84b88985ee"></a><br/></td></tr>
<tr class="separator:abdc74e95c8c2f32f2cc2bd84b88985ee inherit pub_methods_classwx_event"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac1e62dc3000d4bff0ebbd90a3d290695 inherit pub_methods_classwx_event"><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__group__funcmacro__events.html#ga6a7fd172612c0d6d9029bfa3aa91aca0">wxEventType</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_event.html#ac1e62dc3000d4bff0ebbd90a3d290695">GetEventType</a> () const </td></tr>
<tr class="memdesc:ac1e62dc3000d4bff0ebbd90a3d290695 inherit pub_methods_classwx_event"><td class="mdescLeft"> </td><td class="mdescRight">Returns the identifier of the given event type, such as <code>wxEVT_BUTTON</code>. <a href="#ac1e62dc3000d4bff0ebbd90a3d290695"></a><br/></td></tr>
<tr class="separator:ac1e62dc3000d4bff0ebbd90a3d290695 inherit pub_methods_classwx_event"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a525e5c576e64090af493cb81db2da59b inherit pub_methods_classwx_event"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="event_8h.html#a685cc8dc6176be3ab0d40e3f72719e7d">wxEventCategory</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_event.html#a525e5c576e64090af493cb81db2da59b">GetEventCategory</a> () const </td></tr>
<tr class="memdesc:a525e5c576e64090af493cb81db2da59b inherit pub_methods_classwx_event"><td class="mdescLeft"> </td><td class="mdescRight">Returns a generic category for this event. <a href="#a525e5c576e64090af493cb81db2da59b"></a><br/></td></tr>
<tr class="separator:a525e5c576e64090af493cb81db2da59b inherit pub_methods_classwx_event"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac732828ac14cfc289d798a4fea437246 inherit pub_methods_classwx_event"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_event.html#ac732828ac14cfc289d798a4fea437246">GetId</a> () const </td></tr>
<tr class="memdesc:ac732828ac14cfc289d798a4fea437246 inherit pub_methods_classwx_event"><td class="mdescLeft"> </td><td class="mdescRight">Returns the identifier associated with this event, such as a button command id. <a href="#ac732828ac14cfc289d798a4fea437246"></a><br/></td></tr>
<tr class="separator:ac732828ac14cfc289d798a4fea437246 inherit pub_methods_classwx_event"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae634c2eeaa94224a473de9dceb269eae inherit pub_methods_classwx_event"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_object.html">wxObject</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_event.html#ae634c2eeaa94224a473de9dceb269eae">GetEventUserData</a> () const </td></tr>
<tr class="memdesc:ae634c2eeaa94224a473de9dceb269eae inherit pub_methods_classwx_event"><td class="mdescLeft"> </td><td class="mdescRight">Return the user data associated with a dynamically connected event handler. <a href="#ae634c2eeaa94224a473de9dceb269eae"></a><br/></td></tr>
<tr class="separator:ae634c2eeaa94224a473de9dceb269eae inherit pub_methods_classwx_event"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a448d5ef08f617a3ae316235fcf804377 inherit pub_methods_classwx_event"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_event.html#a448d5ef08f617a3ae316235fcf804377">GetSkipped</a> () const </td></tr>
<tr class="memdesc:a448d5ef08f617a3ae316235fcf804377 inherit pub_methods_classwx_event"><td class="mdescLeft"> </td><td class="mdescRight">Returns <span class="literal">true</span> if the event handler should be skipped, <span class="literal">false</span> otherwise. <a href="#a448d5ef08f617a3ae316235fcf804377"></a><br/></td></tr>
<tr class="separator:a448d5ef08f617a3ae316235fcf804377 inherit pub_methods_classwx_event"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8a42d5b35d442052b58c53077ff4ae60 inherit pub_methods_classwx_event"><td class="memItemLeft" align="right" valign="top">long </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_event.html#a8a42d5b35d442052b58c53077ff4ae60">GetTimestamp</a> () const </td></tr>
<tr class="memdesc:a8a42d5b35d442052b58c53077ff4ae60 inherit pub_methods_classwx_event"><td class="mdescLeft"> </td><td class="mdescRight">Gets the timestamp for the event. <a href="#a8a42d5b35d442052b58c53077ff4ae60"></a><br/></td></tr>
<tr class="separator:a8a42d5b35d442052b58c53077ff4ae60 inherit pub_methods_classwx_event"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad70c9cfaf0d626c1115b2d42ea047c2d inherit pub_methods_classwx_event"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_event.html#ad70c9cfaf0d626c1115b2d42ea047c2d">IsCommandEvent</a> () const </td></tr>
<tr class="memdesc:ad70c9cfaf0d626c1115b2d42ea047c2d inherit pub_methods_classwx_event"><td class="mdescLeft"> </td><td class="mdescRight">Returns <span class="literal">true</span> if the event is or is derived from <a class="el" href="classwx_command_event.html" title="This event class contains information about command events, which originate from a variety of simple ...">wxCommandEvent</a> else it returns <span class="literal">false</span>. <a href="#ad70c9cfaf0d626c1115b2d42ea047c2d"></a><br/></td></tr>
<tr class="separator:ad70c9cfaf0d626c1115b2d42ea047c2d inherit pub_methods_classwx_event"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0acb5c75f6e67b8822ad8ba3c5bdc4fe inherit pub_methods_classwx_event"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_event.html#a0acb5c75f6e67b8822ad8ba3c5bdc4fe">ResumePropagation</a> (int propagationLevel)</td></tr>
<tr class="memdesc:a0acb5c75f6e67b8822ad8ba3c5bdc4fe inherit pub_methods_classwx_event"><td class="mdescLeft"> </td><td class="mdescRight">Sets the propagation level to the given value (for example returned from an earlier call to <a class="el" href="classwx_event.html#a060a7d222404daff4d3cef30cddeaae3" title="Stop the event from propagating to its parent window.">wxEvent::StopPropagation</a>). <a href="#a0acb5c75f6e67b8822ad8ba3c5bdc4fe"></a><br/></td></tr>
<tr class="separator:a0acb5c75f6e67b8822ad8ba3c5bdc4fe inherit pub_methods_classwx_event"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3460217d04c36393ab868ba453fde13d inherit pub_methods_classwx_event"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_event.html#a3460217d04c36393ab868ba453fde13d">SetEventObject</a> (<a class="el" href="classwx_object.html">wxObject</a> *object)</td></tr>
<tr class="memdesc:a3460217d04c36393ab868ba453fde13d inherit pub_methods_classwx_event"><td class="mdescLeft"> </td><td class="mdescRight">Sets the originating object. <a href="#a3460217d04c36393ab868ba453fde13d"></a><br/></td></tr>
<tr class="separator:a3460217d04c36393ab868ba453fde13d inherit pub_methods_classwx_event"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa29fb7459d64602e09837fea1e516d27 inherit pub_methods_classwx_event"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_event.html#aa29fb7459d64602e09837fea1e516d27">SetEventType</a> (<a class="el" href="group__group__funcmacro__events.html#ga6a7fd172612c0d6d9029bfa3aa91aca0">wxEventType</a> type)</td></tr>
<tr class="memdesc:aa29fb7459d64602e09837fea1e516d27 inherit pub_methods_classwx_event"><td class="mdescLeft"> </td><td class="mdescRight">Sets the event type. <a href="#aa29fb7459d64602e09837fea1e516d27"></a><br/></td></tr>
<tr class="separator:aa29fb7459d64602e09837fea1e516d27 inherit pub_methods_classwx_event"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab9973f687bfa8a60318d8d9bd629d0d4 inherit pub_methods_classwx_event"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_event.html#ab9973f687bfa8a60318d8d9bd629d0d4">SetId</a> (int id)</td></tr>
<tr class="memdesc:ab9973f687bfa8a60318d8d9bd629d0d4 inherit pub_methods_classwx_event"><td class="mdescLeft"> </td><td class="mdescRight">Sets the identifier associated with this event, such as a button command id. <a href="#ab9973f687bfa8a60318d8d9bd629d0d4"></a><br/></td></tr>
<tr class="separator:ab9973f687bfa8a60318d8d9bd629d0d4 inherit pub_methods_classwx_event"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad4380dff3144a986cb960473051a1d8d inherit pub_methods_classwx_event"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_event.html#ad4380dff3144a986cb960473051a1d8d">SetTimestamp</a> (long timeStamp=0)</td></tr>
<tr class="memdesc:ad4380dff3144a986cb960473051a1d8d inherit pub_methods_classwx_event"><td class="mdescLeft"> </td><td class="mdescRight">Sets the timestamp for the event. <a href="#ad4380dff3144a986cb960473051a1d8d"></a><br/></td></tr>
<tr class="separator:ad4380dff3144a986cb960473051a1d8d inherit pub_methods_classwx_event"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad265ef226445cb6b72a2697dd9d3b406 inherit pub_methods_classwx_event"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_event.html#ad265ef226445cb6b72a2697dd9d3b406">ShouldPropagate</a> () const </td></tr>
<tr class="memdesc:ad265ef226445cb6b72a2697dd9d3b406 inherit pub_methods_classwx_event"><td class="mdescLeft"> </td><td class="mdescRight">Test if this event should be propagated or not, i.e. if the propagation level is currently greater than 0. <a href="#ad265ef226445cb6b72a2697dd9d3b406"></a><br/></td></tr>
<tr class="separator:ad265ef226445cb6b72a2697dd9d3b406 inherit pub_methods_classwx_event"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a98eb20b76106f9a933c2eb3ee119f66c inherit pub_methods_classwx_event"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_event.html#a98eb20b76106f9a933c2eb3ee119f66c">Skip</a> (bool skip=true)</td></tr>
<tr class="memdesc:a98eb20b76106f9a933c2eb3ee119f66c inherit pub_methods_classwx_event"><td class="mdescLeft"> </td><td class="mdescRight">This method can be used inside an event handler to control whether further event handlers bound to this event will be called after the current one returns. <a href="#a98eb20b76106f9a933c2eb3ee119f66c"></a><br/></td></tr>
<tr class="separator:a98eb20b76106f9a933c2eb3ee119f66c inherit pub_methods_classwx_event"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a060a7d222404daff4d3cef30cddeaae3 inherit pub_methods_classwx_event"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_event.html#a060a7d222404daff4d3cef30cddeaae3">StopPropagation</a> ()</td></tr>
<tr class="memdesc:a060a7d222404daff4d3cef30cddeaae3 inherit pub_methods_classwx_event"><td class="mdescLeft"> </td><td class="mdescRight">Stop the event from propagating to its parent window. <a href="#a060a7d222404daff4d3cef30cddeaae3"></a><br/></td></tr>
<tr class="separator:a060a7d222404daff4d3cef30cddeaae3 inherit pub_methods_classwx_event"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_methods_classwx_object"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classwx_object')"><img src="closed.png" alt="-"/> Public Member Functions inherited from <a class="el" href="classwx_object.html">wxObject</a></td></tr>
<tr class="memitem:acaa378363a28af421ab56ad7b46eadf0 inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_object.html#acaa378363a28af421ab56ad7b46eadf0">wxObject</a> ()</td></tr>
<tr class="memdesc:acaa378363a28af421ab56ad7b46eadf0 inherit pub_methods_classwx_object"><td class="mdescLeft"> </td><td class="mdescRight">Default ctor; initializes to <span class="literal">NULL</span> the internal reference data. <a href="#acaa378363a28af421ab56ad7b46eadf0"></a><br/></td></tr>
<tr class="separator:acaa378363a28af421ab56ad7b46eadf0 inherit pub_methods_classwx_object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4721b4dc9b7aff0f30904ba2ea3954cf inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_object.html#a4721b4dc9b7aff0f30904ba2ea3954cf">wxObject</a> (const <a class="el" href="classwx_object.html">wxObject</a> &other)</td></tr>
<tr class="memdesc:a4721b4dc9b7aff0f30904ba2ea3954cf inherit pub_methods_classwx_object"><td class="mdescLeft"> </td><td class="mdescRight">Copy ctor. <a href="#a4721b4dc9b7aff0f30904ba2ea3954cf"></a><br/></td></tr>
<tr class="separator:a4721b4dc9b7aff0f30904ba2ea3954cf inherit pub_methods_classwx_object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2a51aa8bfbab47ca2f051bcf84b3f35b inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top">virtual </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_object.html#a2a51aa8bfbab47ca2f051bcf84b3f35b">~wxObject</a> ()</td></tr>
<tr class="memdesc:a2a51aa8bfbab47ca2f051bcf84b3f35b inherit pub_methods_classwx_object"><td class="mdescLeft"> </td><td class="mdescRight">Destructor. <a href="#a2a51aa8bfbab47ca2f051bcf84b3f35b"></a><br/></td></tr>
<tr class="separator:a2a51aa8bfbab47ca2f051bcf84b3f35b inherit pub_methods_classwx_object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab3a0c6f723cbaddb47be4e8dd98cc8e2 inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classwx_class_info.html">wxClassInfo</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_object.html#ab3a0c6f723cbaddb47be4e8dd98cc8e2">GetClassInfo</a> () const </td></tr>
<tr class="memdesc:ab3a0c6f723cbaddb47be4e8dd98cc8e2 inherit pub_methods_classwx_object"><td class="mdescLeft"> </td><td class="mdescRight">This virtual function is redefined for every class that requires run-time type information, when using the <a class="el" href="group__group__funcmacro__rtti.html#ga20465fc7e022e29a5dacfad46e152e75" title="Used inside a class declaration to declare that the class should be made known to the class hierarchy...">wxDECLARE_CLASS</a> macro (or similar). <a href="#ab3a0c6f723cbaddb47be4e8dd98cc8e2"></a><br/></td></tr>
<tr class="separator:ab3a0c6f723cbaddb47be4e8dd98cc8e2 inherit pub_methods_classwx_object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aabdb4fc957226544a8408167844e4f42 inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_object_ref_data.html">wxObjectRefData</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_object.html#aabdb4fc957226544a8408167844e4f42">GetRefData</a> () const </td></tr>
<tr class="memdesc:aabdb4fc957226544a8408167844e4f42 inherit pub_methods_classwx_object"><td class="mdescLeft"> </td><td class="mdescRight">Returns the <a class="el" href="classwx_object.html#a9e31954530a0abd54982effc443ed2b8" title="Pointer to an object which is the object's reference-counted data.">wxObject::m_refData</a> pointer, i.e. the data referenced by this object. <a href="#aabdb4fc957226544a8408167844e4f42"></a><br/></td></tr>
<tr class="separator:aabdb4fc957226544a8408167844e4f42 inherit pub_methods_classwx_object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af40d580385cf4f8112fae7713404b01e inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_object.html#af40d580385cf4f8112fae7713404b01e">IsKindOf</a> (const <a class="el" href="classwx_class_info.html">wxClassInfo</a> *info) const </td></tr>
<tr class="memdesc:af40d580385cf4f8112fae7713404b01e inherit pub_methods_classwx_object"><td class="mdescLeft"> </td><td class="mdescRight">Determines whether this class is a subclass of (or the same class as) the given class. <a href="#af40d580385cf4f8112fae7713404b01e"></a><br/></td></tr>
<tr class="separator:af40d580385cf4f8112fae7713404b01e inherit pub_methods_classwx_object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a80a1a3fda7b14396a9ddd3d7a46a88bd inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_object.html#a80a1a3fda7b14396a9ddd3d7a46a88bd">IsSameAs</a> (const <a class="el" href="classwx_object.html">wxObject</a> &obj) const </td></tr>
<tr class="memdesc:a80a1a3fda7b14396a9ddd3d7a46a88bd inherit pub_methods_classwx_object"><td class="mdescLeft"> </td><td class="mdescRight">Returns <span class="literal">true</span> if this object has the same data pointer as <em>obj</em>. <a href="#a80a1a3fda7b14396a9ddd3d7a46a88bd"></a><br/></td></tr>
<tr class="separator:a80a1a3fda7b14396a9ddd3d7a46a88bd inherit pub_methods_classwx_object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2f6f1aa51fe9fc2b1415ca4211a90e9e inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_object.html#a2f6f1aa51fe9fc2b1415ca4211a90e9e">Ref</a> (const <a class="el" href="classwx_object.html">wxObject</a> &clone)</td></tr>
<tr class="memdesc:a2f6f1aa51fe9fc2b1415ca4211a90e9e inherit pub_methods_classwx_object"><td class="mdescLeft"> </td><td class="mdescRight">Makes this object refer to the data in <em>clone</em>. <a href="#a2f6f1aa51fe9fc2b1415ca4211a90e9e"></a><br/></td></tr>
<tr class="separator:a2f6f1aa51fe9fc2b1415ca4211a90e9e inherit pub_methods_classwx_object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:afab780710f2adc1bb33310e27590140b inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_object.html#afab780710f2adc1bb33310e27590140b">SetRefData</a> (<a class="el" href="classwx_object_ref_data.html">wxObjectRefData</a> *data)</td></tr>
<tr class="memdesc:afab780710f2adc1bb33310e27590140b inherit pub_methods_classwx_object"><td class="mdescLeft"> </td><td class="mdescRight">Sets the <a class="el" href="classwx_object.html#a9e31954530a0abd54982effc443ed2b8" title="Pointer to an object which is the object's reference-counted data.">wxObject::m_refData</a> pointer. <a href="#afab780710f2adc1bb33310e27590140b"></a><br/></td></tr>
<tr class="separator:afab780710f2adc1bb33310e27590140b inherit pub_methods_classwx_object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af51efc6b1ae632fc7f0cd7ebbce9fa36 inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_object.html#af51efc6b1ae632fc7f0cd7ebbce9fa36">UnRef</a> ()</td></tr>
<tr class="memdesc:af51efc6b1ae632fc7f0cd7ebbce9fa36 inherit pub_methods_classwx_object"><td class="mdescLeft"> </td><td class="mdescRight">Decrements the reference count in the associated data, and if it is zero, deletes the data. <a href="#af51efc6b1ae632fc7f0cd7ebbce9fa36"></a><br/></td></tr>
<tr class="separator:af51efc6b1ae632fc7f0cd7ebbce9fa36 inherit pub_methods_classwx_object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a74b40e42d19a4b9e9bec0b57d62a5725 inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_object.html#a74b40e42d19a4b9e9bec0b57d62a5725">UnShare</a> ()</td></tr>
<tr class="memdesc:a74b40e42d19a4b9e9bec0b57d62a5725 inherit pub_methods_classwx_object"><td class="mdescLeft"> </td><td class="mdescRight">This is the same of <a class="el" href="classwx_object.html#a60204063f3cc3aa2fa1c7ff5bda9eb13" title="Ensure that this object's data is not shared with any other object.">AllocExclusive()</a> but this method is public. <a href="#a74b40e42d19a4b9e9bec0b57d62a5725"></a><br/></td></tr>
<tr class="separator:a74b40e42d19a4b9e9bec0b57d62a5725 inherit pub_methods_classwx_object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a07b8f34f5afc5743195c5fed052f55d3 inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_object.html#a07b8f34f5afc5743195c5fed052f55d3">operator delete</a> (void *buf)</td></tr>
<tr class="memdesc:a07b8f34f5afc5743195c5fed052f55d3 inherit pub_methods_classwx_object"><td class="mdescLeft"> </td><td class="mdescRight">The <em>delete</em> operator is defined for debugging versions of the library only, when the identifier <code><b>WXDEBUG</b></code> is defined. <a href="#a07b8f34f5afc5743195c5fed052f55d3"></a><br/></td></tr>
<tr class="separator:a07b8f34f5afc5743195c5fed052f55d3 inherit pub_methods_classwx_object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a96fa423a1dbc212c8227a5d83825971f inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top">void * </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_object.html#a96fa423a1dbc212c8227a5d83825971f">operator new</a> (size_t size, const <a class="el" href="classwx_string.html">wxString</a> &filename=NULL, int lineNum=0)</td></tr>
<tr class="memdesc:a96fa423a1dbc212c8227a5d83825971f inherit pub_methods_classwx_object"><td class="mdescLeft"> </td><td class="mdescRight">The <em>new</em> operator is defined for debugging versions of the library only, when the identifier <code><b>WXDEBUG</b></code> is defined. <a href="#a96fa423a1dbc212c8227a5d83825971f"></a><br/></td></tr>
<tr class="separator:a96fa423a1dbc212c8227a5d83825971f inherit pub_methods_classwx_object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_methods_classwx_mouse_state"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classwx_mouse_state')"><img src="closed.png" alt="-"/> Public Member Functions inherited from <a class="el" href="classwx_mouse_state.html">wxMouseState</a></td></tr>
<tr class="memitem:a96a28a4a38917b132ea51bef03955b28 inherit pub_methods_classwx_mouse_state"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_mouse_state.html#a96a28a4a38917b132ea51bef03955b28">wxMouseState</a> ()</td></tr>
<tr class="memdesc:a96a28a4a38917b132ea51bef03955b28 inherit pub_methods_classwx_mouse_state"><td class="mdescLeft"> </td><td class="mdescRight">Default constructor. <a href="#a96a28a4a38917b132ea51bef03955b28"></a><br/></td></tr>
<tr class="separator:a96a28a4a38917b132ea51bef03955b28 inherit pub_methods_classwx_mouse_state"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a55fe9f10344704c1e146d45ee556beec inherit pub_methods_classwx_mouse_state"><td class="memItemLeft" align="right" valign="top"><a class="el" href="defs_8h.html#a11f6efc0e8d8d680f3ec8e82aa4f1770">wxCoord</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_mouse_state.html#a55fe9f10344704c1e146d45ee556beec">GetX</a> () const </td></tr>
<tr class="memdesc:a55fe9f10344704c1e146d45ee556beec inherit pub_methods_classwx_mouse_state"><td class="mdescLeft"> </td><td class="mdescRight">Returns X coordinate of the physical mouse event position. <a href="#a55fe9f10344704c1e146d45ee556beec"></a><br/></td></tr>
<tr class="separator:a55fe9f10344704c1e146d45ee556beec inherit pub_methods_classwx_mouse_state"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a877349a678a1f8dbc349975657146f18 inherit pub_methods_classwx_mouse_state"><td class="memItemLeft" align="right" valign="top"><a class="el" href="defs_8h.html#a11f6efc0e8d8d680f3ec8e82aa4f1770">wxCoord</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_mouse_state.html#a877349a678a1f8dbc349975657146f18">GetY</a> () const </td></tr>
<tr class="memdesc:a877349a678a1f8dbc349975657146f18 inherit pub_methods_classwx_mouse_state"><td class="mdescLeft"> </td><td class="mdescRight">Returns Y coordinate of the physical mouse event position. <a href="#a877349a678a1f8dbc349975657146f18"></a><br/></td></tr>
<tr class="separator:a877349a678a1f8dbc349975657146f18 inherit pub_methods_classwx_mouse_state"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7c1a0c5dd4b603a8acf060e9b62e4c1a inherit pub_methods_classwx_mouse_state"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_mouse_state.html#a7c1a0c5dd4b603a8acf060e9b62e4c1a">LeftIsDown</a> () const </td></tr>
<tr class="memdesc:a7c1a0c5dd4b603a8acf060e9b62e4c1a inherit pub_methods_classwx_mouse_state"><td class="mdescLeft"> </td><td class="mdescRight">Returns <span class="literal">true</span> if the left mouse button is currently down. <a href="#a7c1a0c5dd4b603a8acf060e9b62e4c1a"></a><br/></td></tr>
<tr class="separator:a7c1a0c5dd4b603a8acf060e9b62e4c1a inherit pub_methods_classwx_mouse_state"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad6ddb394c20f1a826043dea8032e6845 inherit pub_methods_classwx_mouse_state"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_mouse_state.html#ad6ddb394c20f1a826043dea8032e6845">MiddleIsDown</a> () const </td></tr>
<tr class="memdesc:ad6ddb394c20f1a826043dea8032e6845 inherit pub_methods_classwx_mouse_state"><td class="mdescLeft"> </td><td class="mdescRight">Returns <span class="literal">true</span> if the middle mouse button is currently down. <a href="#ad6ddb394c20f1a826043dea8032e6845"></a><br/></td></tr>
<tr class="separator:ad6ddb394c20f1a826043dea8032e6845 inherit pub_methods_classwx_mouse_state"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0ead92ed0f5fd12a40d98366933a646f inherit pub_methods_classwx_mouse_state"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_mouse_state.html#a0ead92ed0f5fd12a40d98366933a646f">RightIsDown</a> () const </td></tr>
<tr class="memdesc:a0ead92ed0f5fd12a40d98366933a646f inherit pub_methods_classwx_mouse_state"><td class="mdescLeft"> </td><td class="mdescRight">Returns <span class="literal">true</span> if the right mouse button is currently down. <a href="#a0ead92ed0f5fd12a40d98366933a646f"></a><br/></td></tr>
<tr class="separator:a0ead92ed0f5fd12a40d98366933a646f inherit pub_methods_classwx_mouse_state"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1fda1794b5f7c35c7b41bfc216516ea7 inherit pub_methods_classwx_mouse_state"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_mouse_state.html#a1fda1794b5f7c35c7b41bfc216516ea7">Aux1IsDown</a> () const </td></tr>
<tr class="memdesc:a1fda1794b5f7c35c7b41bfc216516ea7 inherit pub_methods_classwx_mouse_state"><td class="mdescLeft"> </td><td class="mdescRight">Returns <span class="literal">true</span> if the first extra button mouse button is currently down. <a href="#a1fda1794b5f7c35c7b41bfc216516ea7"></a><br/></td></tr>
<tr class="separator:a1fda1794b5f7c35c7b41bfc216516ea7 inherit pub_methods_classwx_mouse_state"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae1ad1e41d58a0763e406a3cb7e65a251 inherit pub_methods_classwx_mouse_state"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_mouse_state.html#ae1ad1e41d58a0763e406a3cb7e65a251">Aux2IsDown</a> () const </td></tr>
<tr class="memdesc:ae1ad1e41d58a0763e406a3cb7e65a251 inherit pub_methods_classwx_mouse_state"><td class="mdescLeft"> </td><td class="mdescRight">Returns <span class="literal">true</span> if the second extra button mouse button is currently down. <a href="#ae1ad1e41d58a0763e406a3cb7e65a251"></a><br/></td></tr>
<tr class="separator:ae1ad1e41d58a0763e406a3cb7e65a251 inherit pub_methods_classwx_mouse_state"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a095c9989c4fc607295683882f9d94efa inherit pub_methods_classwx_mouse_state"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_mouse_state.html#a095c9989c4fc607295683882f9d94efa">SetX</a> (<a class="el" href="defs_8h.html#a11f6efc0e8d8d680f3ec8e82aa4f1770">wxCoord</a> x)</td></tr>
<tr class="separator:a095c9989c4fc607295683882f9d94efa inherit pub_methods_classwx_mouse_state"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad67621bb4a134ec32c0a5419474714e4 inherit pub_methods_classwx_mouse_state"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_mouse_state.html#ad67621bb4a134ec32c0a5419474714e4">SetY</a> (<a class="el" href="defs_8h.html#a11f6efc0e8d8d680f3ec8e82aa4f1770">wxCoord</a> y)</td></tr>
<tr class="separator:ad67621bb4a134ec32c0a5419474714e4 inherit pub_methods_classwx_mouse_state"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3af09115e9db255f820b54077da51cfc inherit pub_methods_classwx_mouse_state"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_mouse_state.html#a3af09115e9db255f820b54077da51cfc">SetPosition</a> (<a class="el" href="classwx_point.html">wxPoint</a> pos)</td></tr>
<tr class="separator:a3af09115e9db255f820b54077da51cfc inherit pub_methods_classwx_mouse_state"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab7f0e3c1b439df3069b9ed2438ab3fb6 inherit pub_methods_classwx_mouse_state"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_mouse_state.html#ab7f0e3c1b439df3069b9ed2438ab3fb6">SetLeftDown</a> (bool down)</td></tr>
<tr class="separator:ab7f0e3c1b439df3069b9ed2438ab3fb6 inherit pub_methods_classwx_mouse_state"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a642c369edc8cc256898684b9ffe47c2c inherit pub_methods_classwx_mouse_state"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_mouse_state.html#a642c369edc8cc256898684b9ffe47c2c">SetMiddleDown</a> (bool down)</td></tr>
<tr class="separator:a642c369edc8cc256898684b9ffe47c2c inherit pub_methods_classwx_mouse_state"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3dcc8691d8b73a015768ec5472346ce9 inherit pub_methods_classwx_mouse_state"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_mouse_state.html#a3dcc8691d8b73a015768ec5472346ce9">SetRightDown</a> (bool down)</td></tr>
<tr class="separator:a3dcc8691d8b73a015768ec5472346ce9 inherit pub_methods_classwx_mouse_state"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9f87d1187687b2e8d96ea14a93fdc397 inherit pub_methods_classwx_mouse_state"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_mouse_state.html#a9f87d1187687b2e8d96ea14a93fdc397">SetAux1Down</a> (bool down)</td></tr>
<tr class="separator:a9f87d1187687b2e8d96ea14a93fdc397 inherit pub_methods_classwx_mouse_state"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab0f55cf7fb235c4bb1bcd6dc4fd27cbd inherit pub_methods_classwx_mouse_state"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_mouse_state.html#ab0f55cf7fb235c4bb1bcd6dc4fd27cbd">SetAux2Down</a> (bool down)</td></tr>
<tr class="separator:ab0f55cf7fb235c4bb1bcd6dc4fd27cbd inherit pub_methods_classwx_mouse_state"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a59d981aa6726c5f7312b558159f25ced inherit pub_methods_classwx_mouse_state"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_mouse_state.html#a59d981aa6726c5f7312b558159f25ced">SetState</a> (const <a class="el" href="classwx_mouse_state.html">wxMouseState</a> &state)</td></tr>
<tr class="separator:a59d981aa6726c5f7312b558159f25ced inherit pub_methods_classwx_mouse_state"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa3eff164b6e5407a6185e051ab26ac52 inherit pub_methods_classwx_mouse_state"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_point.html">wxPoint</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_mouse_state.html#aa3eff164b6e5407a6185e051ab26ac52">GetPosition</a> () const </td></tr>
<tr class="memdesc:aa3eff164b6e5407a6185e051ab26ac52 inherit pub_methods_classwx_mouse_state"><td class="mdescLeft"> </td><td class="mdescRight">Returns the physical mouse position. <a href="#aa3eff164b6e5407a6185e051ab26ac52"></a><br/></td></tr>
<tr class="separator:aa3eff164b6e5407a6185e051ab26ac52 inherit pub_methods_classwx_mouse_state"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa7eb40470d873e107e4e974c680e7fac inherit pub_methods_classwx_mouse_state"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_mouse_state.html#aa7eb40470d873e107e4e974c680e7fac">GetPosition</a> (int *x, int *y) const </td></tr>
<tr class="memdesc:aa7eb40470d873e107e4e974c680e7fac inherit pub_methods_classwx_mouse_state"><td class="mdescLeft"> </td><td class="mdescRight">Returns the physical mouse position. <a href="#aa7eb40470d873e107e4e974c680e7fac"></a><br/></td></tr>
<tr class="separator:aa7eb40470d873e107e4e974c680e7fac inherit pub_methods_classwx_mouse_state"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_methods_classwx_keyboard_state"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classwx_keyboard_state')"><img src="closed.png" alt="-"/> Public Member Functions inherited from <a class="el" href="classwx_keyboard_state.html">wxKeyboardState</a></td></tr>
<tr class="memitem:aabf0c85adc4d56ca6364694eb26e55a8 inherit pub_methods_classwx_keyboard_state"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_keyboard_state.html#aabf0c85adc4d56ca6364694eb26e55a8">wxKeyboardState</a> (bool controlDown=false, bool shiftDown=false, bool altDown=false, bool metaDown=false)</td></tr>
<tr class="memdesc:aabf0c85adc4d56ca6364694eb26e55a8 inherit pub_methods_classwx_keyboard_state"><td class="mdescLeft"> </td><td class="mdescRight">Constructor initializes the modifier key settings. <a href="#aabf0c85adc4d56ca6364694eb26e55a8"></a><br/></td></tr>
<tr class="separator:aabf0c85adc4d56ca6364694eb26e55a8 inherit pub_methods_classwx_keyboard_state"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a44b1e849563ebf43e073915a447e4aa5 inherit pub_methods_classwx_keyboard_state"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_keyboard_state.html#a44b1e849563ebf43e073915a447e4aa5">GetModifiers</a> () const </td></tr>
<tr class="memdesc:a44b1e849563ebf43e073915a447e4aa5 inherit pub_methods_classwx_keyboard_state"><td class="mdescLeft"> </td><td class="mdescRight">Return the bit mask of all pressed modifier keys. <a href="#a44b1e849563ebf43e073915a447e4aa5"></a><br/></td></tr>
<tr class="separator:a44b1e849563ebf43e073915a447e4aa5 inherit pub_methods_classwx_keyboard_state"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5a25ea99b0e7d1e8325cbe39c931e367 inherit pub_methods_classwx_keyboard_state"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_keyboard_state.html#a5a25ea99b0e7d1e8325cbe39c931e367">HasAnyModifiers</a> () const </td></tr>
<tr class="memdesc:a5a25ea99b0e7d1e8325cbe39c931e367 inherit pub_methods_classwx_keyboard_state"><td class="mdescLeft"> </td><td class="mdescRight">Returns true if any modifiers at all are pressed. <a href="#a5a25ea99b0e7d1e8325cbe39c931e367"></a><br/></td></tr>
<tr class="separator:a5a25ea99b0e7d1e8325cbe39c931e367 inherit pub_methods_classwx_keyboard_state"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a85ae7433cada04555d88704066a2f4fb inherit pub_methods_classwx_keyboard_state"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_keyboard_state.html#a85ae7433cada04555d88704066a2f4fb">HasModifiers</a> () const </td></tr>
<tr class="memdesc:a85ae7433cada04555d88704066a2f4fb inherit pub_methods_classwx_keyboard_state"><td class="mdescLeft"> </td><td class="mdescRight">Returns true if Control or Alt are pressed. <a href="#a85ae7433cada04555d88704066a2f4fb"></a><br/></td></tr>
<tr class="separator:a85ae7433cada04555d88704066a2f4fb inherit pub_methods_classwx_keyboard_state"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae25436ceab56c88411dac479106b18dd inherit pub_methods_classwx_keyboard_state"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_keyboard_state.html#ae25436ceab56c88411dac479106b18dd">ControlDown</a> () const </td></tr>
<tr class="memdesc:ae25436ceab56c88411dac479106b18dd inherit pub_methods_classwx_keyboard_state"><td class="mdescLeft"> </td><td class="mdescRight">Returns true if the Control key or Apple/Command key under OS X is pressed. <a href="#ae25436ceab56c88411dac479106b18dd"></a><br/></td></tr>
<tr class="separator:ae25436ceab56c88411dac479106b18dd inherit pub_methods_classwx_keyboard_state"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab0488a268111109cb6ff0ebd09e91ad1 inherit pub_methods_classwx_keyboard_state"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_keyboard_state.html#ab0488a268111109cb6ff0ebd09e91ad1">RawControlDown</a> () const </td></tr>
<tr class="memdesc:ab0488a268111109cb6ff0ebd09e91ad1 inherit pub_methods_classwx_keyboard_state"><td class="mdescLeft"> </td><td class="mdescRight">Returns true if the Control key (also under OS X). <a href="#ab0488a268111109cb6ff0ebd09e91ad1"></a><br/></td></tr>
<tr class="separator:ab0488a268111109cb6ff0ebd09e91ad1 inherit pub_methods_classwx_keyboard_state"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a63b9ec3a2f30011471a7036853fc38f3 inherit pub_methods_classwx_keyboard_state"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_keyboard_state.html#a63b9ec3a2f30011471a7036853fc38f3">ShiftDown</a> () const </td></tr>
<tr class="memdesc:a63b9ec3a2f30011471a7036853fc38f3 inherit pub_methods_classwx_keyboard_state"><td class="mdescLeft"> </td><td class="mdescRight">Returns true if the Shift key is pressed. <a href="#a63b9ec3a2f30011471a7036853fc38f3"></a><br/></td></tr>
<tr class="separator:a63b9ec3a2f30011471a7036853fc38f3 inherit pub_methods_classwx_keyboard_state"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8875366f7792d7fd5308cc240f5f0c5f inherit pub_methods_classwx_keyboard_state"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_keyboard_state.html#a8875366f7792d7fd5308cc240f5f0c5f">MetaDown</a> () const </td></tr>
<tr class="memdesc:a8875366f7792d7fd5308cc240f5f0c5f inherit pub_methods_classwx_keyboard_state"><td class="mdescLeft"> </td><td class="mdescRight">Returns true if the Meta/Windows/Apple key is pressed. <a href="#a8875366f7792d7fd5308cc240f5f0c5f"></a><br/></td></tr>
<tr class="separator:a8875366f7792d7fd5308cc240f5f0c5f inherit pub_methods_classwx_keyboard_state"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af71012a9fdbd32bbdc391c984ec5a588 inherit pub_methods_classwx_keyboard_state"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_keyboard_state.html#af71012a9fdbd32bbdc391c984ec5a588">AltDown</a> () const </td></tr>
<tr class="memdesc:af71012a9fdbd32bbdc391c984ec5a588 inherit pub_methods_classwx_keyboard_state"><td class="mdescLeft"> </td><td class="mdescRight">Returns true if the Alt key is pressed. <a href="#af71012a9fdbd32bbdc391c984ec5a588"></a><br/></td></tr>
<tr class="separator:af71012a9fdbd32bbdc391c984ec5a588 inherit pub_methods_classwx_keyboard_state"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a05240fdaf0b5cc9db5f8207d0b8062de inherit pub_methods_classwx_keyboard_state"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_keyboard_state.html#a05240fdaf0b5cc9db5f8207d0b8062de">CmdDown</a> () const </td></tr>
<tr class="memdesc:a05240fdaf0b5cc9db5f8207d0b8062de inherit pub_methods_classwx_keyboard_state"><td class="mdescLeft"> </td><td class="mdescRight">Returns true if the key used for command accelerators is pressed. <a href="#a05240fdaf0b5cc9db5f8207d0b8062de"></a><br/></td></tr>
<tr class="separator:a05240fdaf0b5cc9db5f8207d0b8062de inherit pub_methods_classwx_keyboard_state"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac9e9f195b68f79f4aac683bb7eb620dd inherit pub_methods_classwx_keyboard_state"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_keyboard_state.html#ac9e9f195b68f79f4aac683bb7eb620dd">SetControlDown</a> (bool down)</td></tr>
<tr class="separator:ac9e9f195b68f79f4aac683bb7eb620dd inherit pub_methods_classwx_keyboard_state"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3a200bfbfaa31597f791e5bd57b99db6 inherit pub_methods_classwx_keyboard_state"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_keyboard_state.html#a3a200bfbfaa31597f791e5bd57b99db6">SetRawControlDown</a> (bool down)</td></tr>
<tr class="separator:a3a200bfbfaa31597f791e5bd57b99db6 inherit pub_methods_classwx_keyboard_state"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5a8f8337c65248310363aedf228303e9 inherit pub_methods_classwx_keyboard_state"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_keyboard_state.html#a5a8f8337c65248310363aedf228303e9">SetShiftDown</a> (bool down)</td></tr>
<tr class="separator:a5a8f8337c65248310363aedf228303e9 inherit pub_methods_classwx_keyboard_state"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6ba12f87c2c95364528ab152fa813de0 inherit pub_methods_classwx_keyboard_state"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_keyboard_state.html#a6ba12f87c2c95364528ab152fa813de0">SetAltDown</a> (bool down)</td></tr>
<tr class="separator:a6ba12f87c2c95364528ab152fa813de0 inherit pub_methods_classwx_keyboard_state"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:adb5578cce4dce054cd24c7eb3cd650e7 inherit pub_methods_classwx_keyboard_state"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_keyboard_state.html#adb5578cce4dce054cd24c7eb3cd650e7">SetMetaDown</a> (bool down)</td></tr>
<tr class="separator:adb5578cce4dce054cd24c7eb3cd650e7 inherit pub_methods_classwx_keyboard_state"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="inherited"></a>
Additional Inherited Members</h2></td></tr>
<tr class="inherit_header pro_methods_classwx_object"><td colspan="2" onclick="javascript:toggleInherit('pro_methods_classwx_object')"><img src="closed.png" alt="-"/> Protected Member Functions inherited from <a class="el" href="classwx_object.html">wxObject</a></td></tr>
<tr class="memitem:a60204063f3cc3aa2fa1c7ff5bda9eb13 inherit pro_methods_classwx_object"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_object.html#a60204063f3cc3aa2fa1c7ff5bda9eb13">AllocExclusive</a> ()</td></tr>
<tr class="memdesc:a60204063f3cc3aa2fa1c7ff5bda9eb13 inherit pro_methods_classwx_object"><td class="mdescLeft"> </td><td class="mdescRight">Ensure that this object's data is not shared with any other object. <a href="#a60204063f3cc3aa2fa1c7ff5bda9eb13"></a><br/></td></tr>
<tr class="separator:a60204063f3cc3aa2fa1c7ff5bda9eb13 inherit pro_methods_classwx_object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a95c6a5e4e1e03ff23c7b9efe4cff0c1a inherit pro_methods_classwx_object"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classwx_object_ref_data.html">wxObjectRefData</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_object.html#a95c6a5e4e1e03ff23c7b9efe4cff0c1a">CreateRefData</a> () const </td></tr>
<tr class="memdesc:a95c6a5e4e1e03ff23c7b9efe4cff0c1a inherit pro_methods_classwx_object"><td class="mdescLeft"> </td><td class="mdescRight">Creates a new instance of the wxObjectRefData-derived class specific to this object and returns it. <a href="#a95c6a5e4e1e03ff23c7b9efe4cff0c1a"></a><br/></td></tr>
<tr class="separator:a95c6a5e4e1e03ff23c7b9efe4cff0c1a inherit pro_methods_classwx_object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1d39f1d3650fe0982c9a1abe7f9fe7b7 inherit pro_methods_classwx_object"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classwx_object_ref_data.html">wxObjectRefData</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_object.html#a1d39f1d3650fe0982c9a1abe7f9fe7b7">CloneRefData</a> (const <a class="el" href="classwx_object_ref_data.html">wxObjectRefData</a> *data) const </td></tr>
<tr class="memdesc:a1d39f1d3650fe0982c9a1abe7f9fe7b7 inherit pro_methods_classwx_object"><td class="mdescLeft"> </td><td class="mdescRight">Creates a new instance of the wxObjectRefData-derived class specific to this object and initializes it copying <em>data</em>. <a href="#a1d39f1d3650fe0982c9a1abe7f9fe7b7"></a><br/></td></tr>
<tr class="separator:a1d39f1d3650fe0982c9a1abe7f9fe7b7 inherit pro_methods_classwx_object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pro_attribs_classwx_event"><td colspan="2" onclick="javascript:toggleInherit('pro_attribs_classwx_event')"><img src="closed.png" alt="-"/> Protected Attributes inherited from <a class="el" href="classwx_event.html">wxEvent</a></td></tr>
<tr class="memitem:ac81911194f1f59e1454c0397b87975d4 inherit pro_attribs_classwx_event"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_event.html#ac81911194f1f59e1454c0397b87975d4">m_propagationLevel</a></td></tr>
<tr class="memdesc:ac81911194f1f59e1454c0397b87975d4 inherit pro_attribs_classwx_event"><td class="mdescLeft"> </td><td class="mdescRight">Indicates how many levels the event can propagate. <a href="#ac81911194f1f59e1454c0397b87975d4"></a><br/></td></tr>
<tr class="separator:ac81911194f1f59e1454c0397b87975d4 inherit pro_attribs_classwx_event"><td class="memSeparator" colspan="2"> </td></tr>
</table>
<h2 class="groupheader">Constructor & Destructor Documentation</h2>
<a class="anchor" id="acefb7a03efc09f774bdb03b497d86bb4"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">wxMouseEvent::wxMouseEvent </td>
<td>(</td>
<td class="paramtype"><a class="el" href="group__group__funcmacro__events.html#ga6a7fd172612c0d6d9029bfa3aa91aca0">wxEventType</a> </td>
<td class="paramname"><em>mouseEventType</em> = <code><a class="el" href="group__group__funcmacro__events.html#ga310bc3f7977ae79ac1198c7a287dbffe">wxEVT_NULL</a></code></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Constructor. </p>
<p>Valid event types are:</p>
<ul>
<li><code>wxEVT_ENTER_WINDOW</code> </li>
<li><code>wxEVT_LEAVE_WINDOW</code> </li>
<li><code>wxEVT_LEFT_DOWN</code> </li>
<li><code>wxEVT_LEFT_UP</code> </li>
<li><code>wxEVT_LEFT_DCLICK</code> </li>
<li><code>wxEVT_MIDDLE_DOWN</code> </li>
<li><code>wxEVT_MIDDLE_UP</code> </li>
<li><code>wxEVT_MIDDLE_DCLICK</code> </li>
<li><code>wxEVT_RIGHT_DOWN</code> </li>
<li><code>wxEVT_RIGHT_UP</code> </li>
<li><code>wxEVT_RIGHT_DCLICK</code> </li>
<li><code>wxEVT_AUX1_DOWN</code> </li>
<li><code>wxEVT_AUX1_UP</code> </li>
<li><code>wxEVT_AUX1_DCLICK</code> </li>
<li><code>wxEVT_AUX2_DOWN</code> </li>
<li><code>wxEVT_AUX2_UP</code> </li>
<li><code>wxEVT_AUX2_DCLICK</code> </li>
<li><code>wxEVT_MOTION</code> </li>
<li><code>wxEVT_MOUSEWHEEL</code> </li>
</ul>
</div>
</div>
<h2 class="groupheader">Member Function Documentation</h2>
<a class="anchor" id="aed173e6979ad43305abb006af1ed22a7"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool wxMouseEvent::Aux1DClick </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns <span class="literal">true</span> if the event was a first extra button double click. </p>
</div>
</div>
<a class="anchor" id="a878673fb8c9cc071288bf44725497d0c"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool wxMouseEvent::Aux1Down </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns <span class="literal">true</span> if the first extra button mouse button changed to down. </p>
</div>
</div>
<a class="anchor" id="a15678b38dd0da742187e01594eec51fb"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool wxMouseEvent::Aux1Up </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns <span class="literal">true</span> if the first extra button mouse button changed to up. </p>
</div>
</div>
<a class="anchor" id="a8f3a20465afce26b971dd88753dd9382"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool wxMouseEvent::Aux2DClick </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns <span class="literal">true</span> if the event was a second extra button double click. </p>
</div>
</div>
<a class="anchor" id="a75ab0d1156716ad6512ccd77756221c2"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool wxMouseEvent::Aux2Down </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns <span class="literal">true</span> if the second extra button mouse button changed to down. </p>
</div>
</div>
<a class="anchor" id="a3bd23e1874ec7feaa385ceed2038e57f"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool wxMouseEvent::Aux2Up </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns <span class="literal">true</span> if the second extra button mouse button changed to up. </p>
</div>
</div>
<a class="anchor" id="a0fc7793b2a41f16c239e6d806869c70d"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool wxMouseEvent::Button </td>
<td>(</td>
<td class="paramtype"><a class="el" href="mousestate_8h.html#afb918542b7b2b8f0fa28a483ad95de49">wxMouseButton</a> </td>
<td class="paramname"><em>but</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns <span class="literal">true</span> if the event was generated by the specified button. </p>
<dl class="section see"><dt>See Also</dt><dd>wxMouseState::ButtoinIsDown() </dd></dl>
</div>
</div>
<a class="anchor" id="a2c2128af7083cec4c5d64c05bd2a2bc0"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool wxMouseEvent::ButtonDClick </td>
<td>(</td>
<td class="paramtype"><a class="el" href="mousestate_8h.html#afb918542b7b2b8f0fa28a483ad95de49">wxMouseButton</a> </td>
<td class="paramname"><em>but</em> = <code><a class="el" href="mousestate_8h.html#afb918542b7b2b8f0fa28a483ad95de49a8645ddd8ed04060c86c8382a7839fcb9">wxMOUSE_BTN_ANY</a></code></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>If the argument is omitted, this returns <span class="literal">true</span> if the event was a mouse double click event. </p>
<p>Otherwise the argument specifies which double click event was generated (see <a class="el" href="classwx_mouse_event.html#a0fc7793b2a41f16c239e6d806869c70d" title="Returns true if the event was generated by the specified button.">Button()</a> for the possible values). </p>
</div>
</div>
<a class="anchor" id="af431ddddb0db9978b852285fd620aa1f"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool wxMouseEvent::ButtonDown </td>
<td>(</td>
<td class="paramtype"><a class="el" href="mousestate_8h.html#afb918542b7b2b8f0fa28a483ad95de49">wxMouseButton</a> </td>
<td class="paramname"><em>but</em> = <code><a class="el" href="mousestate_8h.html#afb918542b7b2b8f0fa28a483ad95de49a8645ddd8ed04060c86c8382a7839fcb9">wxMOUSE_BTN_ANY</a></code></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>If the argument is omitted, this returns <span class="literal">true</span> if the event was a mouse button down event. </p>
<p>Otherwise the argument specifies which button-down event was generated (see <a class="el" href="classwx_mouse_event.html#a0fc7793b2a41f16c239e6d806869c70d" title="Returns true if the event was generated by the specified button.">Button()</a> for the possible values). </p>
</div>
</div>
<a class="anchor" id="a9a40c5a070c444bd480a029da0ce0284"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool wxMouseEvent::ButtonUp </td>
<td>(</td>
<td class="paramtype"><a class="el" href="mousestate_8h.html#afb918542b7b2b8f0fa28a483ad95de49">wxMouseButton</a> </td>
<td class="paramname"><em>but</em> = <code><a class="el" href="mousestate_8h.html#afb918542b7b2b8f0fa28a483ad95de49a8645ddd8ed04060c86c8382a7839fcb9">wxMOUSE_BTN_ANY</a></code></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>If the argument is omitted, this returns <span class="literal">true</span> if the event was a mouse button up event. </p>
<p>Otherwise the argument specifies which button-up event was generated (see <a class="el" href="classwx_mouse_event.html#a0fc7793b2a41f16c239e6d806869c70d" title="Returns true if the event was generated by the specified button.">Button()</a> for the possible values). </p>
</div>
</div>
<a class="anchor" id="aaf32bfc85d51a565b1a9b89189292325"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool wxMouseEvent::Dragging </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns <span class="literal">true</span> if this was a dragging event (motion while a button is depressed). </p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_mouse_event.html#a4ba54065ea560c30d59fc38cec077c1f" title="Returns true if this was a motion event and no mouse buttons were pressed.">Moving()</a> </dd></dl>
</div>
</div>
<a class="anchor" id="a58b95f69ebe3207852e7c48715797d83"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool wxMouseEvent::Entering </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns <span class="literal">true</span> if the mouse was entering the window. </p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_mouse_event.html#ad01dba5513421594d0de8d4ad3d5d3af" title="Returns true if the mouse was leaving the window.">Leaving()</a> </dd></dl>
</div>
</div>
<a class="anchor" id="ab0f13904b1e38799f357eed6231b5a48"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">int wxMouseEvent::GetButton </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns the mouse button which generated this event or <code>wxMOUSE_BTN_NONE</code> if no button is involved (for mouse move, enter or leave event, for example). </p>
<p>Otherwise <code>wxMOUSE_BTN_LEFT</code> is returned for the left button down, up and double click events, <code>wxMOUSE_BTN_MIDDLE</code> and <code>wxMOUSE_BTN_RIGHT</code> for the same events for the middle and the right buttons respectively. </p>
</div>
</div>
<a class="anchor" id="adc4d39b626fcc62e93d9356a32003273"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">int wxMouseEvent::GetClickCount </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns the number of mouse clicks for this event: 1 for a simple click, 2 for a double-click, 3 for a triple-click and so on. </p>
<p>Currently this function is implemented only in wxMac and returns -1 for the other platforms (you can still distinguish simple clicks from double-clicks as they generate different kinds of events however).</p>
<dl class="section since"><dt>Since</dt><dd>2.9.0 </dd></dl>
</div>
</div>
<a class="anchor" id="aa190ab6efb57348ca66ef4232eae4e36"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">int wxMouseEvent::GetColumnsPerAction </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns the configured number of columns (or whatever) to be scrolled per wheel action. </p>
<p>Default value under most platforms is three.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_mouse_event.html#a427758709c1e11f9e5e483f05bb991c7" title="Returns the configured number of lines (or whatever) to be scrolled per wheel action.">GetLinesPerAction()</a></dd></dl>
<dl class="section since"><dt>Since</dt><dd>2.9.5 </dd></dl>
</div>
</div>
<a class="anchor" id="a427758709c1e11f9e5e483f05bb991c7"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">int wxMouseEvent::GetLinesPerAction </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns the configured number of lines (or whatever) to be scrolled per wheel action. </p>
<p>Default value under most platforms is three.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_mouse_event.html#aa190ab6efb57348ca66ef4232eae4e36" title="Returns the configured number of columns (or whatever) to be scrolled per wheel action.">GetColumnsPerAction()</a> </dd></dl>
</div>
</div>
<a class="anchor" id="aa45b2a04b77da6720c48c5b461eb8d98"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classwx_point.html">wxPoint</a> wxMouseEvent::GetLogicalPosition </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classwx_d_c.html">wxDC</a> & </td>
<td class="paramname"><em>dc</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns the logical mouse position in pixels (i.e. translated according to the translation set for the DC, which usually indicates that the window has been scrolled). </p>
</div>
</div>
<a class="anchor" id="a6e455a3fa3708031d8571e42489d453e"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="event_8h.html#a198c1db521935c03fbd89959c951215b">wxMouseWheelAxis</a> wxMouseEvent::GetWheelAxis </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Gets the axis the wheel operation concerns. </p>
<p>Usually the mouse wheel is used to scroll vertically so <code>wxMOUSE_WHEEL_VERTICAL</code> is returned but some mice (and most trackpads) also allow to use the wheel to scroll horizontally in which case <code>wxMOUSE_WHEEL_HORIZONTAL</code> is returned.</p>
<p>Notice that before wxWidgets 2.9.4 this method returned <code>int</code>. </p>
</div>
</div>
<a class="anchor" id="a3f53becddee2e82c5b934585b32b48b4"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">int wxMouseEvent::GetWheelDelta </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Get wheel delta, normally 120. </p>
<p>This is the threshold for action to be taken, and one such action (for example, scrolling one increment) should occur for each delta. </p>
</div>
</div>
<a class="anchor" id="a0bb1e43dbaa5b1185cdff155e0edf1a2"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">int wxMouseEvent::GetWheelRotation </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Get wheel rotation, positive or negative indicates direction of rotation. </p>
<p>Current devices all send an event when rotation is at least +/-WheelDelta, but finer resolution devices can be created in the future.</p>
<p>Because of this you shouldn't assume that one event is equal to 1 line, but you should be able to either do partial line scrolling or wait until several events accumulate before scrolling. </p>
</div>
</div>
<a class="anchor" id="a71c3e4dd2b3ef72fe646e83fd494c669"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool wxMouseEvent::IsButton </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns <span class="literal">true</span> if the event was a mouse button event (not necessarily a button down event - that may be tested using <a class="el" href="classwx_mouse_event.html#af431ddddb0db9978b852285fd620aa1f" title="If the argument is omitted, this returns true if the event was a mouse button down event...">ButtonDown()</a>). </p>
</div>
</div>
<a class="anchor" id="a43310add07362bb6737ebb7a91de622a"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool wxMouseEvent::IsPageScroll </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns <span class="literal">true</span> if the system has been setup to do page scrolling with the mouse wheel instead of line scrolling. </p>
</div>
</div>
<a class="anchor" id="ad01dba5513421594d0de8d4ad3d5d3af"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool wxMouseEvent::Leaving </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns <span class="literal">true</span> if the mouse was leaving the window. </p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_mouse_event.html#a58b95f69ebe3207852e7c48715797d83" title="Returns true if the mouse was entering the window.">Entering()</a>. </dd></dl>
</div>
</div>
<a class="anchor" id="a8d9388fa3c6d6a705dfa35747a77f917"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool wxMouseEvent::LeftDClick </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns <span class="literal">true</span> if the event was a left double click. </p>
</div>
</div>
<a class="anchor" id="ae32a96eaf5b84dc2d36341169dcd19c7"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool wxMouseEvent::LeftDown </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns <span class="literal">true</span> if the left mouse button changed to down. </p>
</div>
</div>
<a class="anchor" id="ab56dcb63ca6b35b3fe2c55d3945ee9e3"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool wxMouseEvent::LeftUp </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns <span class="literal">true</span> if the left mouse button changed to up. </p>
</div>
</div>
<a class="anchor" id="ac54b0063ff887f434fee23b5b1d4b518"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool wxMouseEvent::MetaDown </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns <span class="literal">true</span> if the Meta key was down at the time of the event. </p>
</div>
</div>
<a class="anchor" id="a7b72bd9b0aa9e735a14a91b8ff0464cb"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool wxMouseEvent::MiddleDClick </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns <span class="literal">true</span> if the event was a middle double click. </p>
</div>
</div>
<a class="anchor" id="aaf49416df9acaea3bb71470b753a1b18"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool wxMouseEvent::MiddleDown </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns <span class="literal">true</span> if the middle mouse button changed to down. </p>
</div>
</div>
<a class="anchor" id="ac54542740e9bac83c4446846782d7733"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool wxMouseEvent::MiddleUp </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns <span class="literal">true</span> if the middle mouse button changed to up. </p>
</div>
</div>
<a class="anchor" id="a4ba54065ea560c30d59fc38cec077c1f"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool wxMouseEvent::Moving </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns <span class="literal">true</span> if this was a motion event and no mouse buttons were pressed. </p>
<p>If any mouse button is held pressed, then this method returns <span class="literal">false</span> and <a class="el" href="classwx_mouse_event.html#aaf32bfc85d51a565b1a9b89189292325" title="Returns true if this was a dragging event (motion while a button is depressed).">Dragging()</a> returns <span class="literal">true</span>. </p>
</div>
</div>
<a class="anchor" id="ae8e105ed730062c87ec41727f41e0b79"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool wxMouseEvent::RightDClick </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns <span class="literal">true</span> if the event was a right double click. </p>
</div>
</div>
<a class="anchor" id="a657461cc8afd3692141d5364a430edbf"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool wxMouseEvent::RightDown </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns <span class="literal">true</span> if the right mouse button changed to down. </p>
</div>
</div>
<a class="anchor" id="af56e4a8688218895336ce9829ed3e35e"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool wxMouseEvent::RightUp </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns <span class="literal">true</span> if the right mouse button changed to up. </p>
</div>
</div>
</div><!-- contents -->
<address class="footer">
<small>
Generated on Thu Nov 27 2014 13:46:51 for wxWidgets by <a href="http://www.doxygen.org/index.html" target="_new">Doxygen</a> 1.8.2
</small>
</address>
<script src="wxwidgets.js" type="text/javascript"></script>
</div><!-- #page_container -->
</body>
</html>
|