Fix bugs in previous commit that caused FTBFS in synfig and ETL FTBFS with older...
[synfig.git] / synfig-core / tags / synfig_0_61_03 / synfig-core / src / synfig / valuenode_timedswap.h
1 /* === S Y N F I G ========================================================= */
2 /*!     \file valuenode_timedswap.h
3 **      \brief Template Header
4 **
5 **      $Id: valuenode_timedswap.h,v 1.1.1.1 2005/01/04 01:23:15 darco Exp $
6 **
7 **      \legal
8 **      Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
9 **
10 **      This package is free software; you can redistribute it and/or
11 **      modify it under the terms of the GNU General Public License as
12 **      published by the Free Software Foundation; either version 2 of
13 **      the License, or (at your option) any later version.
14 **
15 **      This package is distributed in the hope that it will be useful,
16 **      but WITHOUT ANY WARRANTY; without even the implied warranty of
17 **      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 **      General Public License for more details.
19 **      \endlegal
20 */
21 /* ========================================================================= */
22
23 /* === S T A R T =========================================================== */
24
25 #ifndef __SYNFIG_VALUENODE_TIMEDSWAP_H
26 #define __SYNFIG_VALUENODE_TIMEDSWAP_H
27
28 /* === H E A D E R S ======================================================= */
29
30 #include "valuenode.h"
31
32 /* === M A C R O S ========================================================= */
33
34 /* === C L A S S E S & S T R U C T S ======================================= */
35
36 namespace synfig {
37
38 struct ValueNode_TimedSwap : public LinkableValueNode
39 {
40         typedef etl::handle<ValueNode_TimedSwap> Handle;
41         typedef etl::handle<const ValueNode_TimedSwap> ConstHandle;
42         
43 private:
44
45         ValueNode::RHandle before;
46         ValueNode::RHandle after;
47         ValueNode::RHandle swap_time;
48         ValueNode::RHandle swap_length;
49
50         ValueNode_TimedSwap(ValueBase::Type id);
51
52 public:
53
54 //      static Handle create(ValueBase::Type id);
55
56         virtual ~ValueNode_TimedSwap();
57
58         bool set_before(const ValueNode::Handle &a);
59         ValueNode::Handle get_before()const;
60         bool set_after(const ValueNode::Handle &a);
61         ValueNode::Handle get_after()const;
62
63         void set_swap_time_real(Time x);
64         bool set_swap_time(const ValueNode::Handle &x);
65         ValueNode::Handle get_swap_time()const;
66
67         void set_swap_length_real(Time x);
68         bool set_swap_length(const ValueNode::Handle &x);
69         ValueNode::Handle get_swap_length()const;
70
71
72         virtual bool set_link_vfunc(int i,ValueNode::Handle x);
73         virtual ValueNode::LooseHandle get_link_vfunc(int i)const;
74         virtual int link_count()const;
75         virtual String link_local_name(int i)const;
76         virtual String link_name(int i)const;
77         virtual int get_link_index_from_name(const String &name)const;
78
79         virtual ValueBase operator()(Time t)const;
80
81         virtual String get_name()const; 
82         virtual String get_local_name()const;
83 //      static bool check_type(const ValueBase::Type &type);
84
85 protected:
86         
87         virtual LinkableValueNode* create_new()const;
88
89 public:
90         using synfig::LinkableValueNode::get_link_vfunc;
91         using synfig::LinkableValueNode::set_link_vfunc;
92         static bool check_type(ValueBase::Type type);
93         static ValueNode_TimedSwap* create(const ValueBase &x);
94 }; // END of class ValueNode_TimedSwap
95
96 }; // END of namespace synfig
97
98 /* === E N D =============================================================== */
99
100 #endif