more updates
[synfig.git] / synfig-core / trunk / src / synfig / valuenode_scale.h
1 /* === S I N F G =========================================================== */
2 /*!     \file valuenode_scale.h
3 **      \brief Template Header
4 **
5 **      $Id: valuenode_scale.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_SCALE_H
25 #define __SINFG_VALUENODE_SCALE_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_Scale : public LinkableValueNode
38 {
39         typedef etl::handle<ValueNode_Scale> Handle;
40         typedef etl::handle<const ValueNode_Scale> ConstHandle;
41         
42 private:
43         ValueNode::RHandle value_node;
44         ValueNode::RHandle scalar;
45
46         ValueNode_Scale();
47
48 public:
49
50         //static Handle create(ValueBase::Type id=ValueBase::TYPE_NIL);
51
52         //static Handle create(ValueNode::Handle value_node, Real scalar);
53
54         virtual ~ValueNode_Scale();
55
56         //! \writeme
57         bool set_value_node(const ValueNode::Handle &a);
58
59         //! \writeme
60         ValueNode::Handle get_value_node()const;
61
62         void set_scalar(Real x);
63
64         bool set_scalar(const ValueNode::Handle &x);
65
66         ValueNode::Handle get_scalar()const;
67
68
69
70
71         virtual ValueNode::LooseHandle get_link_vfunc(int i)const;
72
73         virtual int link_count()const;
74
75         virtual String link_name(int i)const;
76         virtual int get_link_index_from_name(const String &name)const;
77
78         virtual ValueBase operator()(Time t)const;
79
80         virtual String get_name()const;
81         
82         virtual String get_local_name()const;
83
84         virtual String link_local_name(int i)const;
85
86 protected:
87         virtual bool set_link_vfunc(int i,ValueNode::Handle x);
88         
89         virtual LinkableValueNode* create_new()const;
90
91 public:
92         using sinfg::LinkableValueNode::get_link_vfunc;
93         using sinfg::LinkableValueNode::set_link_vfunc;
94         static bool check_type(ValueBase::Type type);
95         static ValueNode_Scale* create(const ValueBase &x);
96 }; // END of class ValueNode_Scale
97
98 }; // END of namespace sinfg
99
100 /* === E N D =============================================================== */
101
102 #endif