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
00077 class SoDialogPushButtonLauncher : public SoDialogPushButton
00078 {
00079 SO_DG_HEADER(SoDialogPushButtonLauncher);
00080
00081 public:
00082
00086 SoDialogPushButtonLauncher();
00087
00091 void applyAuditors();
00092
00097 SoDialogViz* searchForAuditorId(SbString id);
00098
00102 virtual void addChild(SoTopLevelDialog *child);
00103
00107 virtual void insertChild(SoTopLevelDialog *child, int newChildIndex);
00108
00112 virtual SoNode *getChild(int index) const;
00113
00117 virtual int getNumChildren() const;
00118
00122 virtual int findChild(const SoTopLevelDialog *child) const;
00123
00127 virtual void removeChild(int index);
00128
00132 virtual void removeChild(SoTopLevelDialog *child);
00133
00137 virtual void removeAllChildren();
00138
00142 virtual void replaceChild(int index, SoTopLevelDialog *newChild);
00143
00147 virtual void replaceChild(SoTopLevelDialog *oldChild, SoTopLevelDialog *newChild);
00148
00149
00150 private:
00151
00152
00153 virtual SoChildList *getChildren() const;
00154
00155 static void initClass();
00156 static void exitClass();
00157 virtual void buildWidget(SoWidget parent, SbVec2i32 &rSize, SbVec2i32 & pos, SbBool isActive2d);
00158 virtual void eventNotify(unsigned int event, uintptr_t param);
00159
00160
00161 virtual void internalRemoveChild( int index ) { removeChild(index); }
00162 virtual void internalRemoveChild( SoNode *child ) { removeChild(findChild(dynamic_cast<SoTopLevelDialog*>(child))); }
00163 virtual void internalRemoveAllChildren() { removeAllChildren(); }
00164 virtual void internalAddChild( SoNode *child ) { addChild(dynamic_cast<SoTopLevelDialog*>(child)); }
00165 virtual int internalFindChild( const SoNode *child ) const { return findChild(dynamic_cast<const SoTopLevelDialog*>(child)); }
00166 virtual void internalInsertChild( SoNode *child, int newChildIndex ) { insertChild(dynamic_cast<SoTopLevelDialog*>(child), newChildIndex); }
00167 virtual SoNode *internalGetChild( int index) const { return getChild(index); }
00168 virtual void internalReplaceChild( int index, SoNode *newChild) { replaceChild(index, dynamic_cast<SoTopLevelDialog*>(newChild)); }
00169 virtual void internalReplaceChild( SoNode *oldChild, SoNode *newChild) { replaceChild(dynamic_cast<SoTopLevelDialog*>(oldChild),dynamic_cast<SoTopLevelDialog*>(newChild)); }
00170
00171 private:
00172
00173
00174 virtual SbBool readInstance(SoInput *in, unsigned short flags);
00175
00176
00177 virtual SbBool readChildren(SoInput *in);
00178
00179 virtual ~SoDialogPushButtonLauncher();
00180
00181 private:
00182 int m_numberOfChildren;
00183
00184 private:
00185 virtual void search(SoSearchAction *action);
00186 virtual void rayPick(SoRayPickAction *action);
00187 virtual void write(SoWriteAction *action);
00188
00189 };
00190
00191 #endif // _SO_DIALOG_PUSH_BUTTON_LAUNCHER_
00192
00193
00194