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_DIALOG_PUSH_BUTTON_LAUNCHER_
00024 #define _SO_DIALOG_PUSH_BUTTON_LAUNCHER_
00025
00026 #include <DialogViz/dialog/SoDialogPushButton.h>
00027 #include <DialogViz/dialog/SoTopLevelDialog.h>
00028
00029
00078 class SoDialogPushButtonLauncher : public SoDialogPushButton
00079 {
00080 SO_DG_HEADER(SoDialogPushButtonLauncher);
00081
00082 public:
00083
00087 SoDialogPushButtonLauncher();
00088
00092 void applyAuditors();
00093
00098 SoDialogViz* searchForAuditorId(SbString id);
00099
00103 virtual void addChild(SoTopLevelDialog *child);
00104
00108 virtual void insertChild(SoTopLevelDialog *child, int newChildIndex);
00109
00113 virtual SoNode *getChild(int index) const;
00114
00118 virtual int getNumChildren() const;
00119
00123 virtual int findChild(const SoTopLevelDialog *child) const;
00124
00128 virtual void removeChild(int index);
00129
00133 virtual void removeChild(SoTopLevelDialog *child);
00134
00138 virtual void removeAllChildren();
00139
00143 virtual void replaceChild(int index, SoTopLevelDialog *newChild);
00144
00148 virtual void replaceChild(SoTopLevelDialog *oldChild, SoTopLevelDialog *newChild);
00149
00150
00151 private:
00152
00153
00154 virtual SoChildList *getChildren() const;
00155
00156 static void initClass();
00157 static void exitClass();
00158 virtual void buildWidget(SoWidget parent, SbVec2i32 &rSize, SbVec2i32 & pos, SbBool isActive2d);
00159 virtual void eventNotify(unsigned int event, uintptr_t param);
00160
00161
00162 virtual void internalRemoveChild( int index ) { removeChild(index); }
00163 virtual void internalRemoveChild( SoNode *child ) { removeChild(findChild(dynamic_cast<SoTopLevelDialog*>(child))); }
00164 virtual void internalRemoveAllChildren() { removeAllChildren(); }
00165 virtual void internalAddChild( SoNode *child ) { addChild(dynamic_cast<SoTopLevelDialog*>(child)); }
00166 virtual int internalFindChild( const SoNode *child ) const { return findChild(dynamic_cast<const SoTopLevelDialog*>(child)); }
00167 virtual void internalInsertChild( SoNode *child, int newChildIndex ) { insertChild(dynamic_cast<SoTopLevelDialog*>(child), newChildIndex); }
00168 virtual SoNode *internalGetChild( int index) const { return getChild(index); }
00169 virtual void internalReplaceChild( int index, SoNode *newChild) { replaceChild(index, dynamic_cast<SoTopLevelDialog*>(newChild)); }
00170 virtual void internalReplaceChild( SoNode *oldChild, SoNode *newChild) { replaceChild(dynamic_cast<SoTopLevelDialog*>(oldChild),dynamic_cast<SoTopLevelDialog*>(newChild)); }
00171
00172 private:
00173
00174
00175 virtual SbBool readInstance(SoInput *in, unsigned short flags);
00176
00177
00178 virtual SbBool readChildren(SoInput *in);
00179
00180 virtual ~SoDialogPushButtonLauncher();
00181
00182 private:
00183 int m_numberOfChildren;
00184
00185 private:
00186 virtual void search(SoSearchAction *action);
00187 virtual void rayPick(SoRayPickAction *action);
00188 virtual void write(SoWriteAction *action);
00189
00190 };
00191
00192 #endif // _SO_DIALOG_PUSH_BUTTON_LAUNCHER_
00193
00194
00195