Updated wrappers

This commit is contained in:
Robert Osfield
2007-01-08 19:33:31 +00:00
parent 16d1c00a3d
commit 536f9d65b1
6 changed files with 91 additions and 23 deletions

View File

@@ -154,6 +154,22 @@ BEGIN_OBJECT_REFLECTOR(osgGA::EventQueue)
__void__keyRelease__int__double,
"Method for adapting keyboard press events. ",
"Note, special keys such as Ctrl/Function keys should be adapted to GUIEventAdapter::KeySymbol mappings, with specified time. ");
I_Method0(void, closeWindow,
__void__closeWindow,
"Method for adapting close window events. ",
"");
I_Method1(void, closeWindow, IN, double, time,
__void__closeWindow__double,
"Method for adapting close window event with specified event time. ",
"");
I_Method0(void, quitApplication,
__void__quitApplication,
"Method for adapting application quit events. ",
"");
I_Method1(void, quitApplication, IN, double, time,
__void__quitApplication__double,
"Method for adapting application quit events with specified event time. ",
"");
I_Method1(void, frame, IN, double, time,
__void__frame__double,
"Method for adapting frame events. ",