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_CHOICE_
00024 #define _SO_DIALOG_CHOICE_
00025
00026 #include <DialogViz/dialog/SoDialogComponent.h>
00027 #include <Inventor/fields/SoMFString.h>
00028
00029 class SoDialogChoiceAuditor;
00030
00045 class SoDialogChoice : public SoDialogComponent
00046 {
00047 SO_DG_HEADER(SoDialogChoice);
00048
00049 public:
00050
00054 SoMFString items;
00055
00059 SoSFInt32 selectedItem;
00060
00064 void addAuditor(SoDialogChoiceAuditor* auditor);
00065
00069 void removeAuditor(SoDialogChoiceAuditor* auditor);
00070
00074 void addItem(SbString newItem);
00075
00079 void insertItem(int index, SbString newItem);
00080
00084 void removeItem(int index);
00085
00086
00087 private:
00088 virtual SoWidget getLabelWidget();
00089 static void initClass();
00090 static void exitClass();
00091 virtual void updateFromSensor(SoSensor* sensor);
00092 virtual void buildWidget(SoWidget parent, SbVec2i32 &rSize, SbVec2i32 & pos, SbBool isActive2d);
00093 virtual void destroyWidget();
00094
00095 void applyDlgCptAuditor();
00096
00097 private:
00098 int m_numItems;
00099
00100 SoDialogChoice();
00101 virtual ~SoDialogChoice();
00102
00103
00104 virtual void changeEnable() {};
00105 virtual void changeWidgetEnable(SbBool ) {};
00106 virtual void changeItems() {};
00107 virtual void changeLabel();
00108 virtual void changeLabelAlignment() {};
00109 virtual void changeLabelVisibility() {};
00110 virtual void changeSelectedItem() {};
00111 void fixItemsNumber();
00112
00113
00114 FIELD_SENSOR(items);
00115 FIELD_SENSOR(selectedItem);
00116
00118
00119 private:
00120
00121 private:
00122 SoText3 *choiceLabel;
00123 SoTranslation* choiceLabelTranslation;
00124 int m_initItem;
00125 int m_prevNumItems;
00126 int m_prevSelectedItem;
00127 SbBool m_needUpdate;
00128
00129 virtual void change3DSelectedItem() {};
00130 virtual void change3DItems() {};
00131
00133
00134 };
00135
00136 #endif // _SO_DIALOG_CHOICE_
00137
00138
00139