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 _POXT_NON_LINEAR_VALUE_LEGEND3_EDITOR_H
00025 #define _POXT_NON_LINEAR_VALUE_LEGEND3_EDITOR_H
00026
00027 #include <MeshViz/graph/editors/PoXtAutoValueLegendEditor.h>
00028 class SoDEPRECATED PoXtNonLinearValueLegend3Editor
00040 : public PoXtAutoValueLegendEditor
00041 {
00042
00043 public:
00044
00045 enum NonLinearValueLegend3Mask
00046 {
00047 NO_NON_LINEAR_VALUE_MASK = 0x00000000,
00048
00049 ALL_NON_LINEAR_VALUE_MASK = 0x00000000
00050 } ;
00051
00052
00053
00057 PoXtNonLinearValueLegend3Editor(SoWidget parent=NULL,
00058 const char * name=NULL,
00059 SbBool buildInsideParent=TRUE);
00060
00064 virtual ~PoXtNonLinearValueLegend3Editor();
00065
00072 void setNonLinearValueLegend3Filter(unsigned long inclusionMask,
00073 unsigned long exclusionMask);
00074
00079 void getNonLinearValueLegend3Filter(unsigned long & inclusionMask,
00080 unsigned long & exclusionMask) const;
00081
00082
00083 private:
00084 virtual void buildWidget (SoWidget Parent,
00085 const char * name,
00086 SbBool buildInsideParent);
00087 virtual void setFilter();
00088
00089 virtual SbString getDefaultWidgetName() const;
00090 virtual SbString getDefaultTitle() const;
00091 virtual SbString getDefaultIconTitle() const;
00092
00093 virtual void copyLegendFields(PoLegend * dest, PoLegend * source);
00094 virtual void updateLegendFromXtElements ();
00095
00096 virtual int getMenuItems();
00097
00098
00099 unsigned long _incNonLinearValueMask;
00100 unsigned long _excNonLinearValueMask;
00101
00102 private:
00103 int _classMenusNb;
00104 SbBool _isNonLinearValueSet;
00105
00106
00107 static void nonLinearValueElementsCallback (void *,
00108 const PoXtDialog::PoXtDialogDataCB *);
00109 };
00110
00111
00112 #endif
00113
00114