Added osgUtil, osgDB, osgFX, osgParticle, osgSim, osgTerrain, osgGA
and osgProducer to osgWrappers directory. Enabled the build of osgWrappers/osg, osgWrappers/osgPartile and osgWrappers/osgSim, but not osgUtil, osgDB, osgFX, osgTerrain, osgGA and osgProducer due to compile errors. I am assuming that these compilers are fixable so I'm checked all the source code so that members of the community can help fix them.
This commit is contained in:
51
src/osgWrappers/osgProducer/EventAdapter.cpp
Normal file
51
src/osgWrappers/osgProducer/EventAdapter.cpp
Normal file
@@ -0,0 +1,51 @@
|
||||
// ***************************************************************************
|
||||
//
|
||||
// Generated automatically by genwrapper.
|
||||
// Please DO NOT EDIT this file!
|
||||
//
|
||||
// ***************************************************************************
|
||||
|
||||
#include <osgIntrospection/ReflectionMacros>
|
||||
#include <osgIntrospection/TypedMethodInfo>
|
||||
#include <osgIntrospection/Attributes>
|
||||
|
||||
#include <osgGA/GUIEventAdapter>
|
||||
#include <osgProducer/EventAdapter>
|
||||
|
||||
BEGIN_VALUE_REFLECTOR(osgProducer::EventAdapter)
|
||||
BaseType(osgGA::GUIEventAdapter);
|
||||
Constructor0();
|
||||
Method0(osgGA::GUIEventAdapter::EventType, getEventType);
|
||||
Method0(int, getKey);
|
||||
Method0(int, getButton);
|
||||
Method0(float, getXmin);
|
||||
Method0(float, getXmax);
|
||||
Method0(float, getYmin);
|
||||
Method0(float, getYmax);
|
||||
Method0(float, getX);
|
||||
Method0(float, getY);
|
||||
Method0(unsigned int, getButtonMask);
|
||||
Method0(double, time);
|
||||
Method0(unsigned int, getModKeyMask);
|
||||
Method5(void, adaptResize, IN, double, t, IN, float, Xmin, IN, float, Ymin, IN, float, Xmax, IN, float, Ymax);
|
||||
Method2(void, adaptMouseScroll, IN, double, t, IN, Producer::KeyboardMouseCallback::ScrollingMotion, sm);
|
||||
Method3(void, adaptMouseMotion, IN, double, t, IN, float, x, IN, float, y);
|
||||
Method4(void, adaptButtonPress, IN, double, t, IN, float, x, IN, float, y, IN, unsigned int, button);
|
||||
Method4(void, adaptButtonRelease, IN, double, t, IN, float, x, IN, float, y, IN, unsigned int, button);
|
||||
Method2(void, adaptKeyPress, IN, double, t, IN, Producer::KeySymbol, key);
|
||||
Method2(void, adaptKeyRelease, IN, double, t, IN, Producer::KeySymbol, key);
|
||||
Method1(void, adaptFrame, IN, double, t);
|
||||
Method0(void, copyStaticVariables);
|
||||
ReadOnlyProperty(int, Button);
|
||||
ReadOnlyProperty(unsigned int, ButtonMask);
|
||||
ReadOnlyProperty(osgGA::GUIEventAdapter::EventType, EventType);
|
||||
ReadOnlyProperty(int, Key);
|
||||
ReadOnlyProperty(unsigned int, ModKeyMask);
|
||||
ReadOnlyProperty(float, X);
|
||||
ReadOnlyProperty(float, Xmax);
|
||||
ReadOnlyProperty(float, Xmin);
|
||||
ReadOnlyProperty(float, Y);
|
||||
ReadOnlyProperty(float, Ymax);
|
||||
ReadOnlyProperty(float, Ymin);
|
||||
END_REFLECTOR
|
||||
|
||||
Reference in New Issue
Block a user