Changeset 7423

Show
Ignore:
Timestamp:
09/14/07 13:02:06
Author:
robert
Message:

Updated wrappers

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • OpenSceneGraph/trunk/src/osgWrappers/osgGA/AnimationPathManipulator.cpp

    r7212 r7423  
    4242                  Properties::VIRTUAL, 
    4343                  __C5_char_P1__className, 
    44                   "return the name of the object's class type. ", 
    45                   "Must be defined by derived classes. "); 
     44                  "", 
     45                  ""); 
    4646        I_Method1(void, setPrintOutTimingInfo, IN, bool, printOutTimingInfo, 
    4747                  Properties::NON_VIRTUAL, 
  • OpenSceneGraph/trunk/src/osgWrappers/osgGA/DriveManipulator.cpp

    r7212 r7423  
    3535                  Properties::VIRTUAL, 
    3636                  __C5_char_P1__className, 
    37                   "return the name of the object's class type. ", 
    38                   "Must be defined by derived classes. "); 
     37                  "", 
     38                  ""); 
    3939        I_Method1(void, setByMatrix, IN, const osg::Matrixd &, matrix, 
    4040                  Properties::VIRTUAL, 
  • OpenSceneGraph/trunk/src/osgWrappers/osgGA/FlightManipulator.cpp

    r7212 r7423  
    4141                  Properties::VIRTUAL, 
    4242                  __C5_char_P1__className, 
    43                   "return the name of the object's class type. ", 
    44                   "Must be defined by derived classes. "); 
     43                  "", 
     44                  ""); 
    4545        I_Method1(void, setByMatrix, IN, const osg::Matrixd &, matrix, 
    4646                  Properties::VIRTUAL, 
  • OpenSceneGraph/trunk/src/osgWrappers/osgGA/GUIEventHandler.cpp

    r6903 r7423  
    1919#include <osgGA/GUIActionAdapter> 
    2020#include <osgGA/GUIEventAdapter> 
    21 #include <osgGA/GUIEventHandler
     21#include <osgGA/GUIEventHandler.bkp
    2222 
    2323// Must undefine IN and OUT macros defined in Windows headers 
     
    3030 
    3131BEGIN_OBJECT_REFLECTOR(osgGA::GUIEventHandler) 
    32         I_DeclaringFile("osgGA/GUIEventHandler"); 
     32        I_DeclaringFile("osgGA/GUIEventHandler.bkp"); 
     33        I_BaseType(osg::NodeCallback); 
     34        I_BaseType(osg::Drawable::EventCallback); 
    3335        I_BaseType(osg::NodeCallback); 
    3436        I_BaseType(osg::Drawable::EventCallback); 
     
    3638                       "", 
    3739                       ""); 
    38         I_Constructor2(IN, const osgGA::GUIEventHandler &, x, IN, const osg::CopyOp &, x, 
     40        I_Constructor2(IN, const osgGA::GUIEventHandler &, eh, IN, const osg::CopyOp &, x, 
    3941                       ____GUIEventHandler__C5_GUIEventHandler_R1__C5_osg_CopyOp_R1, 
    4042                       "", 
     
    7577                  "Handle events, return true if handled, false otherwise. ", 
    7678                  ""); 
     79        I_Method4(bool, handleWithCheckAgainstIgnoreHandledEventsMask, IN, const osgGA::GUIEventAdapter &, ea, IN, osgGA::GUIActionAdapter &, aa, IN, osg::Object *, object, IN, osg::NodeVisitor *, nv, 
     80                  Properties::NON_VIRTUAL, 
     81                  __bool__handleWithCheckAgainstIgnoreHandledEventsMask__C5_GUIEventAdapter_R1__GUIActionAdapter_R1__osg_Object_P1__osg_NodeVisitor_P1, 
     82                  "Convnience method that only passes on to the handle(,,,) method events that either haven't been handled yet, or have been handled but haven't be set to be ignored by the IgnoreHandledEventsMask. ", 
     83                  "Note, this method is an inline method, and not appropriate for users to override, override the handle(,,,) method instead. "); 
     84        I_Method2(bool, handle, IN, const osgGA::GUIEventAdapter &, x, IN, osgGA::GUIActionAdapter &, x, 
     85                  Properties::VIRTUAL, 
     86                  __bool__handle__C5_GUIEventAdapter_R1__GUIActionAdapter_R1, 
     87                  "Deprecated, Handle events, return true if handled, false otherwise. ", 
     88                  ""); 
     89        I_Method2(bool, handleWithCheckAgainstIgnoreHandledEventsMask, IN, const osgGA::GUIEventAdapter &, ea, IN, osgGA::GUIActionAdapter &, aa, 
     90                  Properties::NON_VIRTUAL, 
     91                  __bool__handleWithCheckAgainstIgnoreHandledEventsMask__C5_GUIEventAdapter_R1__GUIActionAdapter_R1, 
     92                  "Convnience method that only passes on to the handle(,) method events that either haven't been handled yet, or have been handled but haven't be set to be ignored by the IgnoreHandledEventsMask. ", 
     93                  "Note, this method is an inline method, and not appropriate for users to override, override the handle(,) method instead. "); 
     94        I_Method1(void, getUsage, IN, osg::ApplicationUsage &, x, 
     95                  Properties::VIRTUAL, 
     96                  __void__getUsage__osg_ApplicationUsage_R1, 
     97                  "Get the keyboard and mouse usage of this manipulator. ", 
     98                  ""); 
     99        I_Method1(void, setIgnoreHandledEventsMask, IN, unsigned int, mask, 
     100                  Properties::NON_VIRTUAL, 
     101                  __void__setIgnoreHandledEventsMask__unsigned_int, 
     102                  "Set a mask of osgGA::GUIEeventAdapter::Event to be ignored if marked as handled. ", 
     103                  ""); 
     104        I_Method0(unsigned int, getIgnoreHandledEventsMask, 
     105                  Properties::NON_VIRTUAL, 
     106                  __unsigned_int__getIgnoreHandledEventsMask, 
     107                  "Get the event mask of the osgGA::GUIEeventAdapter::Event to be ignored if marked as handled. ", 
     108                  ""); 
     109        I_Constructor0(____GUIEventHandler, 
     110                       "", 
     111                       ""); 
     112        I_Constructor2(IN, const osgGA::GUIEventHandler &, eh, IN, const osg::CopyOp &, x, 
     113                       ____GUIEventHandler__C5_GUIEventHandler_R1__C5_osg_CopyOp_R1, 
     114                       "", 
     115                       ""); 
     116        I_Method0(osg::Object *, cloneType, 
     117                  Properties::VIRTUAL, 
     118                  __osg_Object_P1__cloneType, 
     119                  "Clone the type of an object, with Object* return type. ", 
     120                  "Must be defined by derived classes. "); 
     121        I_Method1(osg::Object *, clone, IN, const osg::CopyOp &, copyop, 
     122                  Properties::VIRTUAL, 
     123                  __osg_Object_P1__clone__C5_osg_CopyOp_R1, 
     124                  "Clone an object, with Object* return type. ", 
     125                  "Must be defined by derived classes. "); 
     126        I_Method1(bool, isSameKindAs, IN, const osg::Object *, obj, 
     127                  Properties::VIRTUAL, 
     128                  __bool__isSameKindAs__C5_osg_Object_P1, 
     129                  "", 
     130                  ""); 
     131        I_Method0(const char *, libraryName, 
     132                  Properties::VIRTUAL, 
     133                  __C5_char_P1__libraryName, 
     134                  "return the name of the object's library. ", 
     135                  "Must be defined by derived classes. The OpenSceneGraph convention is that the namespace of a library is the same as the library name. "); 
     136        I_Method0(const char *, className, 
     137                  Properties::VIRTUAL, 
     138                  __C5_char_P1__className, 
     139                  "return the name of the object's class type. ", 
     140                  "Must be defined by derived classes. "); 
     141        I_Method2(void, event, IN, osg::NodeVisitor *, nv, IN, osg::Drawable *, drawable, 
     142                  Properties::VIRTUAL, 
     143                  __void__event__osg_NodeVisitor_P1__osg_Drawable_P1, 
     144                  "Event traversal drawable callback method. ", 
     145                  ""); 
     146        I_Method4(bool, handle, IN, const osgGA::GUIEventAdapter &, ea, IN, osgGA::GUIActionAdapter &, aa, IN, osg::Object *, x, IN, osg::NodeVisitor *, x, 
     147                  Properties::VIRTUAL, 
     148                  __bool__handle__C5_GUIEventAdapter_R1__GUIActionAdapter_R1__osg_Object_P1__osg_NodeVisitor_P1, 
     149                  "Handle events, return true if handled, false otherwise. ", 
     150                  ""); 
    77151        I_Method2(bool, handle, IN, const osgGA::GUIEventAdapter &, x, IN, osgGA::GUIActionAdapter &, x, 
    78152                  Properties::VIRTUAL, 
     
    80154                  "deprecated, Handle events, return true if handled, false otherwise. ", 
    81155                  ""); 
     156        I_Method2(bool, handleWithCheckAgainstIgnoreUsedEventsMask, IN, const osgGA::GUIEventAdapter &, ea, IN, osgGA::GUIActionAdapter &, aa, 
     157                  Properties::NON_VIRTUAL, 
     158                  __bool__handleWithCheckAgainstIgnoreUsedEventsMask__C5_GUIEventAdapter_R1__GUIActionAdapter_R1, 
     159                  "", 
     160                  ""); 
    82161        I_Method1(void, getUsage, IN, osg::ApplicationUsage &, x, 
    83162                  Properties::VIRTUAL, 
     
    85164                  "Get the keyboard and mouse usage of this manipulator. ", 
    86165                  ""); 
     166        I_Method1(void, setIgnoreUsedEventsMask, IN, unsigned int, mask, 
     167                  Properties::NON_VIRTUAL, 
     168                  __void__setIgnoreUsedEventsMask__unsigned_int, 
     169                  "Set a mask of osgGA::GUIEeventAdapter::Event to be ignored if marked as handled. ", 
     170                  ""); 
     171        I_Method0(unsigned int, getIgnoreUsedEventsMask, 
     172                  Properties::NON_VIRTUAL, 
     173                  __unsigned_int__getIgnoreUsedEventsMask, 
     174                  "Get the event mask of the osgGA::GUIEeventAdapter::Event to be ignored if marked as handled. ", 
     175                  ""); 
     176        I_SimpleProperty(unsigned int, IgnoreHandledEventsMask,  
     177                         __unsigned_int__getIgnoreHandledEventsMask,  
     178                         __void__setIgnoreHandledEventsMask__unsigned_int); 
     179        I_SimpleProperty(unsigned int, IgnoreUsedEventsMask,  
     180                         __unsigned_int__getIgnoreUsedEventsMask,  
     181                         __void__setIgnoreUsedEventsMask__unsigned_int); 
    87182END_REFLECTOR 
    88183 
     184BEGIN_OBJECT_REFLECTOR(osgGA::GUIEventHandler) 
     185        I_DeclaringFile("osgGA/GUIEventHandler.bkp"); 
     186        I_BaseType(osg::NodeCallback); 
     187        I_BaseType(osg::Drawable::EventCallback); 
     188        I_BaseType(osg::NodeCallback); 
     189        I_BaseType(osg::Drawable::EventCallback); 
     190        I_Constructor0(____GUIEventHandler, 
     191                       "", 
     192                       ""); 
     193        I_Constructor2(IN, const osgGA::GUIEventHandler &, eh, IN, const osg::CopyOp &, x, 
     194                       ____GUIEventHandler__C5_GUIEventHandler_R1__C5_osg_CopyOp_R1, 
     195                       "", 
     196                       ""); 
     197        I_Method0(osg::Object *, cloneType, 
     198                  Properties::VIRTUAL, 
     199                  __osg_Object_P1__cloneType, 
     200                  "Clone the type of an object, with Object* return type. ", 
     201                  "Must be defined by derived classes. "); 
     202        I_Method1(osg::Object *, clone, IN, const osg::CopyOp &, copyop, 
     203                  Properties::VIRTUAL, 
     204                  __osg_Object_P1__clone__C5_osg_CopyOp_R1, 
     205                  "Clone an object, with Object* return type. ", 
     206                  "Must be defined by derived classes. "); 
     207        I_Method1(bool, isSameKindAs, IN, const osg::Object *, obj, 
     208                  Properties::VIRTUAL, 
     209                  __bool__isSameKindAs__C5_osg_Object_P1, 
     210                  "", 
     211                  ""); 
     212        I_Method0(const char *, libraryName, 
     213                  Properties::VIRTUAL, 
     214                  __C5_char_P1__libraryName, 
     215                  "return the name of the object's library. ", 
     216                  "Must be defined by derived classes. The OpenSceneGraph convention is that the namespace of a library is the same as the library name. "); 
     217        I_Method0(const char *, className, 
     218                  Properties::VIRTUAL, 
     219                  __C5_char_P1__className, 
     220                  "return the name of the object's class type. ", 
     221                  "Must be defined by derived classes. "); 
     222        I_Method2(void, event, IN, osg::NodeVisitor *, nv, IN, osg::Drawable *, drawable, 
     223                  Properties::VIRTUAL, 
     224                  __void__event__osg_NodeVisitor_P1__osg_Drawable_P1, 
     225                  "Event traversal drawable callback method. ", 
     226                  ""); 
     227        I_Method4(bool, handle, IN, const osgGA::GUIEventAdapter &, ea, IN, osgGA::GUIActionAdapter &, aa, IN, osg::Object *, x, IN, osg::NodeVisitor *, x, 
     228                  Properties::VIRTUAL, 
     229                  __bool__handle__C5_GUIEventAdapter_R1__GUIActionAdapter_R1__osg_Object_P1__osg_NodeVisitor_P1, 
     230                  "Handle events, return true if handled, false otherwise. ", 
     231                  ""); 
     232        I_Method4(bool, handleWithCheckAgainstIgnoreHandledEventsMask, IN, const osgGA::GUIEventAdapter &, ea, IN, osgGA::GUIActionAdapter &, aa, IN, osg::Object *, object, IN, osg::NodeVisitor *, nv, 
     233                  Properties::NON_VIRTUAL, 
     234                  __bool__handleWithCheckAgainstIgnoreHandledEventsMask__C5_GUIEventAdapter_R1__GUIActionAdapter_R1__osg_Object_P1__osg_NodeVisitor_P1, 
     235                  "Convnience method that only passes on to the handle(,,,) method events that either haven't been handled yet, or have been handled but haven't be set to be ignored by the IgnoreHandledEventsMask. ", 
     236                  "Note, this method is an inline method, and not appropriate for users to override, override the handle(,,,) method instead. "); 
     237        I_Method2(bool, handle, IN, const osgGA::GUIEventAdapter &, x, IN, osgGA::GUIActionAdapter &, x, 
     238                  Properties::VIRTUAL, 
     239                  __bool__handle__C5_GUIEventAdapter_R1__GUIActionAdapter_R1, 
     240                  "Deprecated, Handle events, return true if handled, false otherwise. ", 
     241                  ""); 
     242        I_Method2(bool, handleWithCheckAgainstIgnoreHandledEventsMask, IN, const osgGA::GUIEventAdapter &, ea, IN, osgGA::GUIActionAdapter &, aa, 
     243                  Properties::NON_VIRTUAL, 
     244                  __bool__handleWithCheckAgainstIgnoreHandledEventsMask__C5_GUIEventAdapter_R1__GUIActionAdapter_R1, 
     245                  "Convnience method that only passes on to the handle(,) method events that either haven't been handled yet, or have been handled but haven't be set to be ignored by the IgnoreHandledEventsMask. ", 
     246                  "Note, this method is an inline method, and not appropriate for users to override, override the handle(,) method instead. "); 
     247        I_Method1(void, getUsage, IN, osg::ApplicationUsage &, x, 
     248                  Properties::VIRTUAL, 
     249                  __void__getUsage__osg_ApplicationUsage_R1, 
     250                  "Get the keyboard and mouse usage of this manipulator. ", 
     251                  ""); 
     252        I_Method1(void, setIgnoreHandledEventsMask, IN, unsigned int, mask, 
     253                  Properties::NON_VIRTUAL, 
     254                  __void__setIgnoreHandledEventsMask__unsigned_int, 
     255                  "Set a mask of osgGA::GUIEeventAdapter::Event to be ignored if marked as handled. ", 
     256                  ""); 
     257        I_Method0(unsigned int, getIgnoreHandledEventsMask, 
     258                  Properties::NON_VIRTUAL, 
     259                  __unsigned_int__getIgnoreHandledEventsMask, 
     260                  "Get the event mask of the osgGA::GUIEeventAdapter::Event to be ignored if marked as handled. ", 
     261                  ""); 
     262        I_Constructor0(____GUIEventHandler, 
     263                       "", 
     264                       ""); 
     265        I_Constructor2(IN, const osgGA::GUIEventHandler &, eh, IN, const osg::CopyOp &, x, 
     266                       ____GUIEventHandler__C5_GUIEventHandler_R1__C5_osg_CopyOp_R1, 
     267                       "", 
     268                       ""); 
     269        I_Method0(osg::Object *, cloneType, 
     270                  Properties::VIRTUAL, 
     271                  __osg_Object_P1__cloneType, 
     272                  "Clone the type of an object, with Object* return type. ", 
     273                  "Must be defined by derived classes. "); 
     274        I_Method1(osg::Object *, clone, IN, const osg::CopyOp &, copyop, 
     275                  Properties::VIRTUAL, 
     276                  __osg_Object_P1__clone__C5_osg_CopyOp_R1, 
     277                  "Clone an object, with Object* return type. ", 
     278                  "Must be defined by derived classes. "); 
     279        I_Method1(bool, isSameKindAs, IN, const osg::Object *, obj, 
     280                  Properties::VIRTUAL, 
     281                  __bool__isSameKindAs__C5_osg_Object_P1, 
     282                  "", 
     283                  ""); 
     284        I_Method0(const char *, libraryName, 
     285                  Properties::VIRTUAL, 
     286                  __C5_char_P1__libraryName, 
     287                  "return the name of the object's library. ", 
     288                  "Must be defined by derived classes. The OpenSceneGraph convention is that the namespace of a library is the same as the library name. "); 
     289        I_Method0(const char *, className, 
     290                  Properties::VIRTUAL, 
     291                  __C5_char_P1__className, 
     292                  "return the name of the object's class type. ", 
     293                  "Must be defined by derived classes. "); 
     294        I_Method2(void, event, IN, osg::NodeVisitor *, nv, IN, osg::Drawable *, drawable, 
     295                  Properties::VIRTUAL, 
     296                  __void__event__osg_NodeVisitor_P1__osg_Drawable_P1, 
     297                  "Event traversal drawable callback method. ", 
     298                  ""); 
     299        I_Method4(bool, handle, IN, const osgGA::GUIEventAdapter &, ea, IN, osgGA::GUIActionAdapter &, aa, IN, osg::Object *, x, IN, osg::NodeVisitor *, x, 
     300                  Properties::VIRTUAL, 
     301                  __bool__handle__C5_GUIEventAdapter_R1__GUIActionAdapter_R1__osg_Object_P1__osg_NodeVisitor_P1, 
     302                  "Handle events, return true if handled, false otherwise. ", 
     303                  ""); 
     304        I_Method2(bool, handle, IN, const osgGA::GUIEventAdapter &, x, IN, osgGA::GUIActionAdapter &, x, 
     305                  Properties::VIRTUAL, 
     306                  __bool__handle__C5_GUIEventAdapter_R1__GUIActionAdapter_R1, 
     307                  "deprecated, Handle events, return true if handled, false otherwise. ", 
     308                  ""); 
     309        I_Method2(bool, handleWithCheckAgainstIgnoreUsedEventsMask, IN, const osgGA::GUIEventAdapter &, ea, IN, osgGA::GUIActionAdapter &, aa, 
     310                  Properties::NON_VIRTUAL, 
     311                  __bool__handleWithCheckAgainstIgnoreUsedEventsMask__C5_GUIEventAdapter_R1__GUIActionAdapter_R1, 
     312                  "", 
     313                  ""); 
     314        I_Method1(void, getUsage, IN, osg::ApplicationUsage &, x, 
     315                  Properties::VIRTUAL, 
     316                  __void__getUsage__osg_ApplicationUsage_R1, 
     317                  "Get the keyboard and mouse usage of this manipulator. ", 
     318                  ""); 
     319        I_Method1(void, setIgnoreUsedEventsMask, IN, unsigned int, mask, 
     320                  Properties::NON_VIRTUAL, 
     321                  __void__setIgnoreUsedEventsMask__unsigned_int, 
     322                  "Set a mask of osgGA::GUIEeventAdapter::Event to be ignored if marked as handled. ", 
     323                  ""); 
     324        I_Method0(unsigned int, getIgnoreUsedEventsMask, 
     325                  Properties::NON_VIRTUAL, 
     326                  __unsigned_int__getIgnoreUsedEventsMask, 
     327                  "Get the event mask of the osgGA::GUIEeventAdapter::Event to be ignored if marked as handled. ", 
     328                  ""); 
     329        I_SimpleProperty(unsigned int, IgnoreHandledEventsMask,  
     330                         __unsigned_int__getIgnoreHandledEventsMask,  
     331                         __void__setIgnoreHandledEventsMask__unsigned_int); 
     332        I_SimpleProperty(unsigned int, IgnoreUsedEventsMask,  
     333                         __unsigned_int__getIgnoreUsedEventsMask,  
     334                         __void__setIgnoreUsedEventsMask__unsigned_int); 
     335END_REFLECTOR 
     336 
    89337BEGIN_VALUE_REFLECTOR(osgGA::GUIEventHandlerVisitor) 
    90         I_DeclaringFile("osgGA/GUIEventHandler"); 
     338        I_DeclaringFile("osgGA/GUIEventHandler.bkp"); 
    91339        I_Constructor0(____GUIEventHandlerVisitor, 
    92340                       "", 
     
    97345                  "", 
    98346                  ""); 
     347        I_Method1(void, visit, IN, osgGA::GUIEventHandler &, x, 
     348                  Properties::NON_VIRTUAL, 
     349                  __void__visit__GUIEventHandler_R1, 
     350                  "", 
     351                  ""); 
    99352END_REFLECTOR 
    100353 
     354BEGIN_VALUE_REFLECTOR(osgGA::GUIEventHandlerVisitor) 
     355        I_DeclaringFile("osgGA/GUIEventHandler.bkp"); 
     356        I_Constructor0(____GUIEventHandlerVisitor, 
     357                       "", 
     358                       ""); 
     359        I_Method1(void, visit, IN, osgGA::GUIEventHandler &, x, 
     360                  Properties::NON_VIRTUAL, 
     361                  __void__visit__GUIEventHandler_R1, 
     362                  "", 
     363                  ""); 
     364        I_Method1(void, visit, IN, osgGA::GUIEventHandler &, x, 
     365                  Properties::NON_VIRTUAL, 
     366                  __void__visit__GUIEventHandler_R1, 
     367                  "", 
     368                  ""); 
     369END_REFLECTOR 
     370 
  • OpenSceneGraph/trunk/src/osgWrappers/osgGA/KeySwitchMatrixManipulator.cpp

    r7212 r7423  
    4242                  Properties::VIRTUAL, 
    4343                  __C5_char_P1__className, 
    44                   "return the name of the object's class type. ", 
    45                   "Must be defined by derived classes. "); 
     44                  "", 
     45                  ""); 
    4646        I_Method3(void, addMatrixManipulator, IN, int, key, IN, std::string, name, IN, osgGA::MatrixManipulator *, cm, 
    4747                  Properties::NON_VIRTUAL, 
  • OpenSceneGraph/trunk/src/osgWrappers/osgGA/MatrixManipulator.cpp

    r7212 r7423  
    3434                  Properties::VIRTUAL, 
    3535                  __C5_char_P1__className, 
    36                   "return the name of the object's class type. ", 
    37                   "Must be defined by derived classes. "); 
     36                  "", 
     37                  ""); 
    3838        I_Method1(void, setMinimumDistance, IN, float, minimumDistance, 
    3939                  Properties::VIRTUAL, 
  • OpenSceneGraph/trunk/src/osgWrappers/osgGA/NodeTrackerManipulator.cpp

    r7103 r7423  
    5151                  Properties::VIRTUAL, 
    5252                  __C5_char_P1__className, 
    53                   "return the name of the object's class type. ", 
    54                   "Must be defined by derived classes. "); 
     53                  "", 
     54                  ""); 
    5555        I_Method1(void, setTrackNodePath, IN, const osg::NodePath &, nodePath, 
    5656                  Properties::NON_VIRTUAL, 
  • OpenSceneGraph/trunk/src/osgWrappers/osgGA/StateSetManipulator.cpp

    r6903 r7423  
    3737                  Properties::VIRTUAL, 
    3838                  __C5_char_P1__className, 
    39                   "return the name of the object's class type. ", 
    40                   "Must be defined by derived classes. "); 
     39                  "", 
     40                  ""); 
    4141        I_Method1(void, setStateSet, IN, osg::StateSet *, x, 
    4242                  Properties::VIRTUAL, 
  • OpenSceneGraph/trunk/src/osgWrappers/osgGA/TerrainManipulator.cpp

    r6903 r7423  
    4242                  Properties::VIRTUAL, 
    4343                  __C5_char_P1__className, 
    44                   "return the name of the object's class type. ", 
    45                   "Must be defined by derived classes. "); 
     44                  "", 
     45                  ""); 
    4646        I_Method1(void, setRotationMode, IN, osgGA::TerrainManipulator::RotationMode, mode, 
    4747                  Properties::NON_VIRTUAL, 
  • OpenSceneGraph/trunk/src/osgWrappers/osgGA/TrackballManipulator.cpp

    r7212 r7423  
    3838                  Properties::VIRTUAL, 
    3939                  __C5_char_P1__className, 
    40                   "return the name of the object's class type. ", 
    41                   "Must be defined by derived classes. "); 
     40                  "", 
     41                  ""); 
    4242        I_Method1(void, setByMatrix, IN, const osg::Matrixd &, matrix, 
    4343                  Properties::VIRTUAL, 
  • OpenSceneGraph/trunk/src/osgWrappers/osgGA/UFOManipulator.cpp

    r7212 r7423  
    9999                  ""); 
    100100        I_Method1(void, getUsage, IN, osg::ApplicationUsage &, usage, 
    101                   Properties::VIRTUAL, 
     101                  Properties::NON_VIRTUAL, 
    102102                  __void__getUsage__osg_ApplicationUsage_R1, 
    103103                  "Reports Usage parameters to the application. ", 
  • OpenSceneGraph/trunk/src/osgWrappers/osgViewer/View.cpp

    r7340 r7423  
    2121#include <osgDB/DatabasePager> 
    2222#include <osgGA/EventQueue> 
    23 #include <osgGA/GUIEventHandler
     23#include <osgGA/GUIEventHandler.bkp
    2424#include <osgGA/MatrixManipulator> 
    2525#include <osgUtil/LineSegmentIntersector> 
  • OpenSceneGraph/trunk/src/osgWrappers/osgViewer/ViewerEventHandlers.cpp

    r6971 r7423  
    7474                  ""); 
    7575        I_Method2(bool, handle, IN, const osgGA::GUIEventAdapter &, ea, IN, osgGA::GUIActionAdapter &, aa, 
    76                   Properties::VIRTUAL, 
     76                  Properties::NON_VIRTUAL, 
    7777                  __bool__handle__C5_osgGA_GUIEventAdapter_R1__osgGA_GUIActionAdapter_R1, 
    78                   "deprecated, Handle events, return true if handled, false otherwise. ", 
     78                  "", 
    7979                  ""); 
    8080        I_Method1(void, getUsage, IN, osg::ApplicationUsage &, usage, 
     
    137137                  Properties::VIRTUAL, 
    138138                  __void__getUsage__osg_ApplicationUsage_R1, 
    139                   "Get the keyboard and mouse usage of this manipulator. ", 
     139                  "", 
    140140                  ""); 
    141141        I_Method2(bool, handle, IN, const osgGA::GUIEventAdapter &, ea, IN, osgGA::GUIActionAdapter &, aa, 
    142                   Properties::VIRTUAL, 
     142                  Properties::NON_VIRTUAL, 
    143143                  __bool__handle__C5_osgGA_GUIEventAdapter_R1__osgGA_GUIActionAdapter_R1, 
    144                   "deprecated, Handle events, return true if handled, false otherwise. ", 
     144                  "", 
    145145                  ""); 
    146146        I_SimpleProperty(int, KeyEventTogglePlayback,  
     
    209209                  Properties::VIRTUAL, 
    210210                  __bool__handle__C5_osgGA_GUIEventAdapter_R1__osgGA_GUIActionAdapter_R1, 
    211                   "deprecated, Handle events, return true if handled, false otherwise. ", 
     211                  "", 
    212212                  ""); 
    213213        I_Method1(void, getUsage, IN, osg::ApplicationUsage &, usage, 
     
    324324                  ""); 
    325325        I_Method2(bool, handle, IN, const osgGA::GUIEventAdapter &, ea, IN, osgGA::GUIActionAdapter &, aa, 
    326                   Properties::VIRTUAL, 
     326                  Properties::NON_VIRTUAL, 
    327327                  __bool__handle__C5_osgGA_GUIEventAdapter_R1__osgGA_GUIActionAdapter_R1, 
    328                   "deprecated, Handle events, return true if handled, false otherwise. ", 
     328                  "", 
    329329                  ""); 
    330330        I_SimpleProperty(bool, ChangeEndBarrierPosition,  
     
    406406                  Properties::VIRTUAL, 
    407407                  __bool__handle__C5_osgGA_GUIEventAdapter_R1__osgGA_GUIActionAdapter_R1, 
    408                   "deprecated, Handle events, return true if handled, false otherwise. ", 
     408                  "", 
    409409                  ""); 
    410410        I_ProtectedMethod1(void, toggleFullscreen, IN, osgViewer::GraphicsWindow *, window,