- Timestamp:
- 03/05/10 13:55:08 (3 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/src/osgWrappers/introspection/osgGA/GUIEventAdapter.cpp
r10967 r11164 418 418 "get mouse-Y orientation (mouse-Y increases upwards or downwards). ", 419 419 ""); 420 I_Method1(void, setButtonMask, IN, unsignedint, mask,421 Properties::NON_VIRTUAL, 422 __void__setButtonMask__ unsigned_int,420 I_Method1(void, setButtonMask, IN, int, mask, 421 Properties::NON_VIRTUAL, 422 __void__setButtonMask__int, 423 423 "set current mouse button state. ", 424 424 ""); 425 I_Method0( unsignedint, getButtonMask,426 Properties::NON_VIRTUAL, 427 __ unsigned_int__getButtonMask,425 I_Method0(int, getButtonMask, 426 Properties::NON_VIRTUAL, 427 __int__getButtonMask, 428 428 "get current mouse button state. ", 429 429 ""); 430 I_Method1(void, setModKeyMask, IN, unsignedint, mask,431 Properties::NON_VIRTUAL, 432 __void__setModKeyMask__ unsigned_int,430 I_Method1(void, setModKeyMask, IN, int, mask, 431 Properties::NON_VIRTUAL, 432 __void__setModKeyMask__int, 433 433 "set modifier key mask. ", 434 434 ""); 435 I_Method0( unsignedint, getModKeyMask,436 Properties::NON_VIRTUAL, 437 __ unsigned_int__getModKeyMask,435 I_Method0(int, getModKeyMask, 436 Properties::NON_VIRTUAL, 437 __int__getModKeyMask, 438 438 "get modifier key mask. ", 439 439 ""); … … 525 525 __int__getButton, 526 526 __void__setButton__int); 527 I_SimpleProperty( unsignedint, ButtonMask,528 __ unsigned_int__getButtonMask,529 __void__setButtonMask__ unsigned_int);527 I_SimpleProperty(int, ButtonMask, 528 __int__getButtonMask, 529 __void__setButtonMask__int); 530 530 I_SimpleProperty(osgGA::GUIEventAdapter::EventType, EventType, 531 531 __EventType__getEventType, … … 540 540 __int__getKey, 541 541 __void__setKey__int); 542 I_SimpleProperty( unsignedint, ModKeyMask,543 __ unsigned_int__getModKeyMask,544 __void__setModKeyMask__ unsigned_int);542 I_SimpleProperty(int, ModKeyMask, 543 __int__getModKeyMask, 544 __void__setModKeyMask__int); 545 545 I_SimpleProperty(osgGA::GUIEventAdapter::MouseYOrientation, MouseYOrientation, 546 546 __MouseYOrientation__getMouseYOrientation,
