00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #ifndef _SO_MENU_CHECK_BOX_LAUNCHER_
00024 #define _SO_MENU_CHECK_BOX_LAUNCHER_
00025
00026 #include <DialogViz/dialog/SoMenuCheckBox.h>
00027 #include <DialogViz/dialog/SoTopLevelDialog.h>
00028
00063 class SoMenuCheckBoxLauncher : public SoMenuCheckBox
00064 {
00065 SO_DG_HEADER(SoMenuCheckBoxLauncher);
00066
00067 public:
00068
00072 SoMenuCheckBoxLauncher();
00073
00078 SoDialogViz* searchForAuditorId(SbString id);
00079
00083 virtual void addChild(SoTopLevelDialog *child);
00084
00088 virtual void insertChild(SoTopLevelDialog *child, int newChildIndex);
00089
00093 virtual SoNode *getChild(int index) const;
00094
00098 virtual int getNumChildren() const;
00099
00103 virtual int findChild(const SoTopLevelDialog *child) const;
00104
00108 virtual void removeChild(int index);
00109
00113 virtual void removeChild(SoTopLevelDialog *child);
00114
00118 virtual void removeAllChildren();
00119
00123 virtual void replaceChild(int index, SoTopLevelDialog *newChild);
00124
00128 virtual void replaceChild(SoTopLevelDialog *oldChild, SoTopLevelDialog *newChild);
00129
00130
00131 private:
00132
00133
00134 virtual SoChildList *getChildren() const;
00135 static void initClass();
00136 static void exitClass();
00137 virtual void buildMenu(void* parent, SbBool isActive2d, int index = -1);
00138 virtual void menuEvent(void* parent, int itemId);
00139
00140
00141 virtual void internalRemoveChild( int index ) { removeChild(index); }
00142 virtual void internalRemoveChild( SoNode *child ) { removeChild(findChild(dynamic_cast<SoTopLevelDialog*>(child))); }
00143 virtual void internalRemoveAllChildren() { removeAllChildren(); }
00144 virtual void internalAddChild( SoNode *child ) { addChild(dynamic_cast<SoTopLevelDialog*>(child)); }
00145 virtual int internalFindChild( const SoNode *child ) const { return findChild(dynamic_cast<const SoTopLevelDialog*>(child)); }
00146 virtual void internalInsertChild( SoNode *child, int newChildIndex ) { insertChild(dynamic_cast<SoTopLevelDialog*>(child), newChildIndex); }
00147 virtual SoNode *internalGetChild( int index) const { return getChild(index); }
00148 virtual void internalReplaceChild( int index, SoNode *newChild) { replaceChild(index, dynamic_cast<SoTopLevelDialog*>(newChild)); }
00149 virtual void internalReplaceChild( SoNode *oldChild, SoNode *newChild) { replaceChild(dynamic_cast<SoTopLevelDialog*>(oldChild),dynamic_cast<SoTopLevelDialog*>(newChild)); }
00150
00151 private:
00152
00153
00154 virtual SbBool readInstance(SoInput *in, unsigned short flags);
00155
00156
00157 virtual SbBool readChildren(SoInput *in);
00158
00159 virtual ~SoMenuCheckBoxLauncher();
00160
00161 private:
00162 int m_numberOfChildren;
00163
00164 private:
00165 virtual void search(SoSearchAction *action);
00166 virtual void rayPick(SoRayPickAction *action);
00167 virtual void write(SoWriteAction *action);
00168
00169 };
00170
00171 #endif // _SO_MENU_CHECK_BOX_LAUNCHER_
00172
00173
00174