Updated wrappers

This commit is contained in:
Robert Osfield
2008-12-12 10:20:05 +00:00
parent b038baf676
commit 388531e834
6 changed files with 111 additions and 16 deletions

View File

@@ -380,16 +380,16 @@ BEGIN_OBJECT_REFLECTOR(osg::Image)
__void__update__NodeVisitor_P1,
"",
"");
I_Method3(void, sendPointerEvent, IN, int, x, IN, int, y, IN, int, buttonMask,
I_Method3(bool, sendPointerEvent, IN, int, x, IN, int, y, IN, int, buttonMask,
Properties::VIRTUAL,
__void__sendPointerEvent__int__int__int,
__bool__sendPointerEvent__int__int__int,
"method for sending pointer events to images that are acting as front ends to interactive surfaces such as a vnc or browser window. ",
"");
I_Method2(void, sendKeyEvent, IN, int, key, IN, bool, keyDown,
"Return true if handled. ");
I_Method2(bool, sendKeyEvent, IN, int, key, IN, bool, keyDown,
Properties::VIRTUAL,
__void__sendKeyEvent__int__bool,
__bool__sendKeyEvent__int__bool,
"method for sending key events to images that are acting as front ends to interactive surfaces such as a vnc or browser window. ",
"");
"Return true if handled. ");
I_Method1(void, setFrameLastRendered, IN, const osg::FrameStamp *, frameStamp,
Properties::VIRTUAL,
__void__setFrameLastRendered__C5_osg_FrameStamp_P1,