Main Page   Namespace List   Class Hierarchy   Compound List   File List   Namespace Members   Compound Members   File Members  

cybcolorinterpolatorc.h

Go to the documentation of this file.
00001 /*
00002 Copyright (C) 1999  Carsten Winkelholz
00003 
00004 Malte Weiß, 25.07.2002: Node completely implemented into framework.
00005 
00006 Address:  FGAN Forschungsgesellschaft fr Angewandte Naturwissenschaften e. V.
00007       Neuenahrer Str. 20
00008       D - 53343 Wachtberg
00009       
00010 Email:    winkelholz@fgan.de
00011 
00012 This program is free software; you can redistribute it and/or
00013 modify it under the terms of the GNU General Public License
00014 as published by the Free Software Foundation; either version 2
00015 of the License, or (at your option) any later version.
00016 
00017 This program is distributed in the hope that it will be useful,
00018 but WITHOUT ANY WARRANTY; without even the implied warranty of
00019 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00020 GNU General Public License for more details.
00021 
00022 You should have received a copy of the GNU General Public License
00023 along with this program; if not, write to the Free Software
00024 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
00025 */
00026 
00027 #ifndef CYBCOLORINTERPOLATOR_HC
00028 #define CYBCOLORINTERPOLATOR_HC
00029 
00030 #include "oaw/ctk/cybinterpolatorc.h"
00031 #include "oaw/ctk/cybwrlfields.h"
00032 #include "../oawconfig.h"
00033 
00034 OAW_BEGIN_NAMESPACE
00035 
00036 
00037 class OAW_DLLMAPPING CybColorInterpolatorC : public CybInterpolatorC
00038 {
00039 public:
00040   CybColorInterpolatorC(CybWorldC*);
00041   CybColorInterpolatorC(const CybColorInterpolatorC&);
00042   CybColorInterpolatorC& operator = (const CybColorInterpolatorC&);  
00043   virtual long GetInterfaceDataMinLength();
00044   virtual void SetInterfaceData(AnyC&); //const byteArray& data);
00045   virtual void CopyInterfaceData(AnyC&,long maxLen);
00046 
00047   // Key value loading
00048   inline virtual void SetKeyValue(const void *pData) { m_mvColor = *(MFColor*) pData; }
00049   inline virtual long GetKeyValueType()              { return CYBFT_MFCOLOR; }
00050   inline virtual long GetValueType()              { return CYBFT_SFCOLOR; }
00051 
00052 protected:
00053   virtual void CreateNewCopy(CybNodeC*);
00054   void SendValueChanged();
00055   virtual void SetDataToKeyIndex(long,double);
00056 
00057 protected:
00058   MFColor m_mvColor;
00059   SFColor m_vColor;
00060 };
00061 
00062 OAW_END_NAMESPACE
00063 
00064 
00065 #endif
00066 
00067 
00068 
00069 

Generated on Tue Jul 29 14:24:09 2003 for Open ActiveWrl by doxygen1.3-rc2