00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024 #ifndef COIN_SOVRMLANCHOR_H
00025 #define COIN_SOVRMLANCHOR_H
00026
00027 #include <Inventor/VRMLnodes/SoVRMLParent.h>
00028 #include <Inventor/nodes/SoSubNode.h>
00029 #include <Inventor/fields/SoMFString.h>
00030 #include <Inventor/fields/SoSFString.h>
00031 #include <Inventor/fields/SoSFVec3f.h>
00032
00033 class SoVRMLAnchor;
00034 class SoVRMLAnchorP;
00035
00036 typedef void SoVRMLAnchorCB( const SbString &, void *, SoVRMLAnchor *);
00037
00038 class COIN_DLL_API SoVRMLAnchor : public SoVRMLParent
00039 {
00040 typedef SoVRMLParent inherited;
00041 SO_NODE_HEADER(SoVRMLAnchor);
00042
00043 public:
00044 static void initClass(void);
00045
00046 SoVRMLAnchor(void);
00047 SoMFString url;
00048 SoSFString description;
00049 SoMFString parameter;
00050
00051 SoSFVec3f bboxCenter;
00052 SoSFVec3f bboxSize;
00053
00054 static void setFetchURLCallBack(SoVRMLAnchorCB *, void * closure);
00055
00056 virtual void handleEvent(SoHandleEventAction * action);
00057
00058 protected:
00059 virtual ~SoVRMLAnchor();
00060
00061 private:
00062 static SoVRMLAnchorCB * fetchurlcb;
00063 static void * userdata;
00064
00065 SoVRMLAnchorP * pimpl;
00066 };
00067
00068 #endif // ! COIN_SOVRMLANCHOR_H