00001 #ifndef XDKWRL_COLORINTERPOLATOR_H
00002 #define XDKWRL_COLORINTERPOLATOR_H
00003
00004 #include <xdkwrl/config.h>
00005 #include <xdkwrl/node.h>
00006 #include <xdkwrl/fieldtypes/mfcolor.h>
00007 #include <xdkwrl/fieldtypes/mffloat.h>
00008 #include <xdkwrl/fieldtypes/sfcolor.h>
00009 #include <xdkwrl/fieldtypes/sffloat.h>
00010
00011 namespace wrl
00012 {
00013
00014
00015
00016 class XDKWRL_EXPORT ColorInterpolator : public Node
00017 {
00018 public:
00019 ColorInterpolator(const char* name="");
00020 virtual ~ColorInterpolator();
00021 virtual inline unsigned int nbFields() const;
00022 virtual FieldHandle field(const std::string& n);
00023 virtual FieldHandle field(unsigned int i);
00024 virtual bool isSetToDefaultValue(unsigned int i) const;
00025 virtual inline unsigned int nbEventsIn() const;
00026 virtual EventInHandle eventIn(const std::string& n);
00027 virtual EventInHandle eventIn(unsigned int i);
00028 virtual inline unsigned int nbEventsOut() const;
00029 virtual EventOutHandle eventOut(const std::string& n);
00030 virtual EventOutHandle eventOut(unsigned int i);
00031 inline const char* typeName() const;
00032 virtual Node* duplicate() const;
00033 virtual Node* duplicate(std::map<const Node*,Node*>&) const;
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045 MFFloat key;
00046
00047
00048
00049
00050
00051 MFColor keyValue;
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063
00064
00065
00066
00067
00068 EventIn<SFFloat> set_fraction;
00069
00070
00071
00072 EventIn<MFFloat> set_key;
00073
00074
00075
00076 EventIn<MFColor> set_keyValue;
00077
00078
00079
00080
00081
00082
00083
00084
00085
00086 EventOut<SFColor> value_changed;
00087
00088
00089
00090 EventOut<MFFloat> key_changed;
00091
00092
00093
00094 EventOut<MFColor> keyValue_changed;
00095
00096 };
00097 };
00098
00099
00100
00101
00102
00103
00104 inline const char*
00105 wrl::ColorInterpolator::typeName() const
00106 {
00107 return "ColorInterpolator";
00108 }
00109
00110
00111
00112 inline unsigned int
00113 wrl::ColorInterpolator::nbFields() const
00114 {
00115 return 2;
00116 }
00117
00118
00119
00120 inline unsigned int
00121 wrl::ColorInterpolator::nbEventsIn() const
00122 {
00123 return 1;
00124 }
00125
00126
00127
00128 inline unsigned int
00129 wrl::ColorInterpolator::nbEventsOut() const
00130 {
00131 return 1;
00132 }
00133 #endif // XDKWRL_COLORINTERPOLATOR_H
00134
00135
00136
00137
00138
00139