more updates
[synfig.git] / synfig-core / trunk / src / synfig / valuenode_twotone.h
1 /* === S I N F G =========================================================== */
2 /*!     \file valuenode_twotone.h
3 **      \brief Template Header
4 **
5 **      $Id: valuenode_twotone.h,v 1.1.1.1 2005/01/04 01:23:15 darco Exp $
6 **
7 **      \legal
8 **      Copyright (c) 2002 Robert B. Quattlebaum Jr.
9 **
10 **      This software and associated documentation
11 **      are CONFIDENTIAL and PROPRIETARY property of
12 **      the above-mentioned copyright holder.
13 **
14 **      You may not copy, print, publish, or in any
15 **      other way distribute this software without
16 **      a prior written agreement with
17 **      the copyright holder.
18 **      \endlegal
19 */
20 /* ========================================================================= */
21
22 /* === S T A R T =========================================================== */
23
24 #ifndef __SINFG_VALUENODE_TWOTONE_H
25 #define __SINFG_VALUENODE_TWOTONE_H
26
27 /* === H E A D E R S ======================================================= */
28
29 #include "valuenode.h"
30
31 /* === M A C R O S ========================================================= */
32
33 /* === C L A S S E S & S T R U C T S ======================================= */
34
35 namespace sinfg {
36
37 struct ValueNode_TwoTone : public LinkableValueNode
38 {
39         typedef etl::handle<ValueNode_TwoTone> Handle;
40         typedef etl::handle<const ValueNode_TwoTone> ConstHandle;
41         
42 protected:
43
44         ValueNode_TwoTone();
45
46 private:
47
48         ValueNode::RHandle ref_a;
49         ValueNode::RHandle ref_b;
50
51 public:
52
53         virtual ~ValueNode_TwoTone();
54
55 //      static Handle create(ValueBase::Type id=ValueBase::TYPE_GRADIENT);
56
57         //! Sets the left-hand-side value_node
58         bool set_lhs(ValueNode::Handle a);
59
60         //! Gets the left-hand-side value_node
61         ValueNode::Handle get_lhs()const { return ref_a; }
62
63         //! Sets the right-hand-side value_node
64         bool set_rhs(ValueNode::Handle b);
65
66         //! Gets the right-hand-side value_node
67         ValueNode::Handle get_rhs()const { return ref_b; }
68
69
70         virtual bool set_link_vfunc(int i,ValueNode::Handle x);
71
72         virtual ValueNode::LooseHandle get_link_vfunc(int i)const;
73
74         virtual int link_count()const;
75
76         virtual String link_local_name(int i)const;
77         virtual String link_name(int i)const;
78         virtual int get_link_index_from_name(const String &name)const;
79
80         virtual ValueBase operator()(Time t)const;
81
82         virtual String get_name()const;
83         virtual String get_local_name()const;
84
85 //      static bool check_type(const ValueBase::Type &type);
86
87         LinkableValueNode* create_new()const;
88
89 public:
90         using sinfg::LinkableValueNode::get_link_vfunc;
91
92         using sinfg::LinkableValueNode::set_link_vfunc;
93         static bool check_type(ValueBase::Type type);
94         static ValueNode_TwoTone* create(const ValueBase &x=ValueBase::TYPE_GRADIENT);
95 }; // END of class ValueNode_TwoTone
96
97 }; // END of namespace sinfg
98
99 /* === E N D =============================================================== */
100
101 #endif