synfig-core  1.0.3
advanced_outline.h
Go to the documentation of this file.
1 /* === S Y N F I G ========================================================= */
22 /* ========================================================================= */
23 
24 /* === S T A R T =========================================================== */
25 
26 #ifndef __SYNFIG_ADVANCED_OUTLINE_H
27 #define __SYNFIG_ADVANCED_OUTLINE_H
28 
29 /* === H E A D E R S ======================================================= */
30 
31 #include <list>
32 #include <vector>
34 #include <synfig/segment.h>
35 #include <synfig/value.h>
36 
37 /* === M A C R O S ========================================================= */
38 
39 /* === T Y P E D E F S ===================================================== */
40 
41 /* === C L A S S E S & S T R U C T S ======================================= */
42 
43 using namespace synfig;
44 using namespace std;
45 using namespace etl;
46 
48 {
50 private:
52  ValueBase param_bline;
54  ValueBase param_wplist;
56  ValueBase param_dilist;
58  ValueBase param_start_tip;
60  ValueBase param_end_tip;
62  ValueBase param_cusp_type;
64  ValueBase param_width;
66  ValueBase param_expand;
68  ValueBase param_smoothness;
70  ValueBase param_homogeneous;
72  ValueBase param_dash_offset;
74  ValueBase param_dash_enabled;
76  ValueBase param_fast;
77 
78  bool old_version;
79 
80 public:
81  enum CuspType
82  {
83  TYPE_SHARP =0,
84  TYPE_ROUNDED =1,
85  TYPE_BEVEL =2
86  };
87 
90  void sync();
91  virtual bool set_param(const String & param, const synfig::ValueBase &value);
92  virtual ValueBase get_param(const String & param)const;
93  virtual Vocab get_param_vocab()const;
94  using Layer::set_time;
95  virtual void set_time(IndependentContext context, Time time)const;
96  virtual void set_time(IndependentContext context, Time time, Vector pos)const;
97  virtual bool set_version(const synfig::String &ver);
99  virtual bool connect_dynamic_param(const String& param, etl::loose_handle<ValueNode> x );
100 
101 private:
102 
103  bool connect_bline_to_wplist(etl::loose_handle<ValueNode> x);
104  bool connect_bline_to_dilist(etl::loose_handle<ValueNode> x);
105  Real bline_to_bezier(Real bline_pos, Real origin, Real bezier_size);
106  Real bezier_to_bline(Real bezier_pos, Real origin, Real bezier_size);
107  void add_tip(std::vector<Point> &side_a, std::vector<Point> &side_b, const Point vertex, const Vector tangent, const WidthPoint wp, const Real gv);
108  void add_cusp(std::vector<Point> &side_a, std::vector<Point> &side_b, const Point vertex, const Vector curr, const Vector last, Real width);
109 };
110 
111 /* === E N D =============================================================== */
112 
113 #endif