537class SoDragger :
public SoInteractionKit {
539 SO_KIT_HEADER(SoDragger);
541 SO_KIT_CATALOG_ENTRY_HEADER(motionMatrix);
758 void addOtherEventCallback(
SoDraggerCB *f,
void *userData = NULL);
759 void removeOtherEventCallback(
SoDraggerCB *f,
void *userData = NULL);
760 void clearOtherEventCallbacks();
770 void registerChildDragger(SoDragger *child);
771 void unregisterChildDragger(SoDragger *child);
778 void registerChildDraggerMovingIndependently(SoDragger *child);
779 void unregisterChildDraggerMovingIndependently(SoDragger *child);
786 SbVec3f getLocalStartingPoint();
788 SbVec3f getWorldStartingPoint();
799 void getPartToLocalMatrix(
const SbName &partName,
804 void transformMatrixLocalToWorld(
const SbMatrix &fromMatrix,
806 void transformMatrixWorldToLocal(
const SbMatrix &fromMatrix,
808 void transformMatrixToLocalSpace(
const SbMatrix &fromMatrix,
822 const SbMatrix &getStartMotionMatrix() {
return startMotionMatrix; }
828 virtual void saveStartParameters();
831 const SoPath *getPickPath()
const;
832 const SoEvent *getEvent()
const;
838 SoPath *createPathToThis();
846 const SoPath *getSurrogatePartPickedOwner()
const
847 {
return pathToSurrogatePickOwner;}
850 const SbName &getSurrogatePartPickedName()
const
851 {
return surrogateNameInPickOwner; }
856 const SoPath *getSurrogatePartPickedPath()
const
857 {
return surrogatePathInPickOwner;}
861 void setStartingPoint(
const SoPickedPoint *newPoint );
865 void setStartingPoint(
const SbVec3f &newPoint );
890 const SbViewVolume &getViewVolume() {
return viewVolume; }
893 void setViewVolume(
const SbViewVolume &vol) { viewVolume = vol; }
896 const SbViewportRegion &getViewportRegion() {
return vpRegion; }
899 void setViewportRegion(
const SbViewportRegion ®) { vpRegion = reg; }
904 SoHandleEventAction *getHandleEventAction()
const {
return handleEventAction; }
905 void setHandleEventAction( SoHandleEventAction *newAction );
910 void setTempPathToThis(
const SoPath *somethingClose);
913 virtual void grabEventsSetup();
914 virtual void grabEventsCleanup();
929 void workFieldsIntoTransform( SbMatrix &mtx );
933 static void workValuesIntoTransform( SbMatrix &mtx,
934 const SbVec3f *translationPtr,
935 const SbRotation *rotationPtr,
936 const SbVec3f *scaleFactorPtr,
937 const SbRotation *scaleOrientationPtr,
938 const SbVec3f *centerPtr);
945 static void getTransformFast( SbMatrix &mtx, SbVec3f &translation,
946 SbRotation &rotation, SbVec3f &scaleFactor,
947 SbRotation &scaleOrientation,
948 const SbVec3f ¢er);
949 static void getTransformFast( SbMatrix &mtx, SbVec3f &translation,
950 SbRotation &rotation, SbVec3f &scaleFactor,
951 SbRotation &scaleOrientation);
956 static SbMatrix appendTranslation(
const SbMatrix &mtx,
957 const SbVec3f &translation,
958 const SbMatrix *conversion = NULL );
959 static SbMatrix appendScale(
const SbMatrix &mtx,
960 const SbVec3f &scale,
const SbVec3f &scaleCenter,
961 const SbMatrix *conversion = NULL );
962 static SbMatrix appendRotation(
const SbMatrix &mtx,
963 const SbRotation &rot,
const SbVec3f &rotCenter,
964 const SbMatrix *conversion = NULL );
967 SbBool isTrackerDirectMode()
const;
970 void GLRender(SoGLRenderAction *action);
972 static void initClass();
973 static void exitClass();
974 SB_THREAD_TLS_HEADER();
977 static void initClasses();
978 static void exitClasses();
985 enum ProjectorFrontSetting {
986 FRONT, BACK, USE_PICK
988 void setFrontOnProjector( ProjectorFrontSetting newVal )
989 { projectorFrontSetting = newVal; }
990 ProjectorFrontSetting getFrontOnProjector()
const
991 {
return projectorFrontSetting;}
993 inline void setInteracting(
bool flag) { m_draggerInteracting = flag; }
1001 SoFieldSensor* m_enableSensor;
1004 static void enableCB(
void *, SoSensor * );
1011 SbVec2f getNormalizedLocaterPosition();
1012 const SbVec2f& getLocaterPosition();
1015 SbLine getTrackerRay();
1018 const SbVec2f& getStartLocaterPosition()
const {
return startLocater; }
1023 void setStartLocaterPosition(
const SbVec2f& p) { startLocater = p; }
1027 SbBool isAdequateConstraintMotion();
1037 virtual SbBool shouldGrabBasedOnSurrogate(
const SoPath *pickPath,
1038 const SoPath *surrogatePath );
1043 void setCameraInfo(
SoAction *action );
1047 virtual void handleEvent(SoHandleEventAction *ha);
1056 void transferMotion(SoDragger *child);
1060 void setIgnoreInBbox(
SbBool newVal ) { ignoreInBbox = newVal; }
1061 SbBool isIgnoreInBbox() {
return ignoreInBbox; }
1066 virtual void getBoundingBox(SoGetBoundingBoxAction *action);
1070 static void childTransferMotionAndValueChangedCB(
void *, SoDragger *);
1071 static void childValueChangedCB(
void *, SoDragger *);
1072 static void childStartCB(
void *, SoDragger *);
1073 static void childMotionCB(
void *, SoDragger *);
1074 static void childFinishCB(
void *, SoDragger *);
1075 static void childOtherEventCB(
void *, SoDragger *);
1080 void setActiveChildDragger( SoDragger *newChildDragger );
1081 SoDragger *getActiveChildDragger()
const {
return activeChildDragger; }
1101 virtual void setDefaultOnNonWritingFields();
1105 virtual SbBool applyTrackerMotion();
1107 virtual ~SoDragger();
1111 SoGetMatrixAction *m_matrixAction;
1112 SoSearchAction *m_searchAction;
1124 SbVec3f m_trackerStartPos;
1126 SbRotation m_trackerStartRot;
1128 SbViewVolume viewVolume;
1129 SbViewportRegion vpRegion;
1134 SoCallbackList *startCallbacks;
1135 SoCallbackList *motionCallbacks;
1136 SoCallbackList *finishCallbacks;
1137 SoCallbackList *valueChangedCallbacks;
1139 SoCallbackList *otherEventCallbacks;
1141 SbBool valueChangedCallbacksEnabled;
1142 SoDragger *activeChildDragger;
1144 SoHandleEventAction *handleEventAction;
1151 SbVec3f startingWorldPoint;
1154 SbMatrix startMotionMatrix;
1157 SbVec2f startLocater;
1161 void setPickPath(
SoPath *newPickPath);
1165 void setNoPickedSurrogate();
1166 void setPickedSurrogate(
SoPath *pathToOwner, SbName &nameUsedByOwner,
1167 SoPath *pathUsedByOwner );
1169 SbName surrogateNameInPickOwner;
1170 SoPath *pathToSurrogatePickOwner;
1171 SoPath *surrogatePathInPickOwner;
1181 SoTempPath *tempPathToThis;
1182 SbPList *tempPathNumKidsHack;
1186 SbBool isTempPathToThisOk();
1188 SoTempPath *createTempPathFromFullPath(
const SoFullPath *fp )
const;
1197 static float minScale;
1205 void validateMatrices(
SoAction* );
1213 SbBool cachedPathToThisValid;
1214 SbBool cachedMotionMatrixValid;
1215 SbMatrix cachedMotionMatrix;
1217 SbMatrix postMotionToWorldMatrix;
1218 SbMatrix worldToPostMotionMatrix;
1220 SbMatrix preMotionToWorldMatrix;
1221 SbMatrix worldToPreMotionMatrix;
1228 bool m_draggerInteracting;
1230 ProjectorFrontSetting projectorFrontSetting;