Enable tooltips and allow use the 'hint' descriptor for some types for the linkable...
[synfig.git] / synfig-studio / src / gui / cellrenderer / cellrenderer_value.h
index 14a425d..2d1e21f 100644 (file)
@@ -81,6 +81,7 @@ class CellRenderer_ValueBase : public Gtk::CellRendererText
        Glib::Property<synfig::ValueBase> property_value_;
        Glib::Property<etl::handle<synfig::Canvas> > property_canvas_;
        Glib::Property<synfig::ParamDesc> property_param_desc_;
+       Glib::Property<synfig::ParamDesc> property_child_param_desc_;
 
        void string_edited_(const Glib::ustring&,const Glib::ustring&);
 
@@ -98,10 +99,12 @@ public:
        Glib::PropertyProxy<synfig::ValueBase> property_value() { return property_value_.get_proxy();}
        Glib::PropertyProxy<etl::handle<synfig::Canvas> > property_canvas() { return property_canvas_.get_proxy();}
        Glib::PropertyProxy<synfig::ParamDesc> property_param_desc() { return property_param_desc_.get_proxy(); }
+       Glib::PropertyProxy<synfig::ParamDesc> property_child_param_desc() { return property_child_param_desc_.get_proxy(); }
        Glib::PropertyProxy<bool> property_inconsistent() { return property_foreground_set(); }
 
        etl::handle<synfig::Canvas> get_canvas()const { return property_canvas_; }
        synfig::ParamDesc get_param_desc()const { return property_param_desc_; }
+       synfig::ParamDesc get_child_param_desc()const { return property_child_param_desc_; }
 
        CellRenderer_ValueBase();
        ~CellRenderer_ValueBase();