synfig-studio  1.0.3
valuedescexport.h
Go to the documentation of this file.
1 /* === S Y N F I G ========================================================= */
21 /* ========================================================================= */
22 
23 /* === S T A R T =========================================================== */
24 
25 #ifndef __SYNFIG_APP_ACTION_VALUEDESCEXPORT_H
26 #define __SYNFIG_APP_ACTION_VALUEDESCEXPORT_H
27 
28 /* === H E A D E R S ======================================================= */
29 
30 #include <synfigapp/action.h>
31 #include <synfigapp/value_desc.h>
32 #include <list>
33 
34 /* === M A C R O S ========================================================= */
35 
36 /* === T Y P E D E F S ===================================================== */
37 
38 /* === C L A S S E S & S T R U C T S ======================================= */
39 
40 namespace synfigapp {
41 
42 namespace Action {
43 
45  public Super
46 {
47 private:
48  synfig::GUID guid;
49  ValueDesc value_desc;
50  synfig::String name;
51 
52  void scan_canvas(synfig::Canvas::Handle prev_canvas, synfig::Canvas::Handle new_canvas, synfig::Canvas::Handle canvas);
53  void scan_layer(synfig::Canvas::Handle prev_canvas, synfig::Canvas::Handle new_canvas, synfig::Layer::Handle layer);
54  void scan_linkable_value_node(synfig::Canvas::Handle prev_canvas, synfig::Canvas::Handle new_canvas, synfig::LinkableValueNode::Handle linkable_value_node);
55 
56 public:
57 
59 
60  static ParamVocab get_param_vocab();
61  static bool is_candidate(const ParamList &x);
62 
63  virtual bool set_param(const synfig::String& name, const Param &);
64  virtual bool is_ready()const;
65 
66  virtual void prepare();
67 
69 };
70 
71 }; // END of namespace action
72 }; // END of namespace studio
73 
74 /* === E N D =============================================================== */
75 
76 #endif