Lines Matching defs:to
2 * The reference corresponding to the inkscape:live-effect attribute
30 _changed_connection = changedSignal().connect(sigc::bind(sigc::ptr_fun(lpeobjectreference_href_changed), this)); // listening to myself, this should be virtual instead
37 _changed_connection.disconnect(); // to do before unlinking
53 LPEObjectReference::link(const char *to)
55 if ( to == NULL ) {
59 if ( !lpeobject_href || ( strcmp(to, lpeobject_href) != 0 ) ) {
61 lpeobject_href = g_strdup(to);
63 attach(Inkscape::URI(to));
84 LPEObjectReference::start_listening(LivePathEffectObject* to)
86 if ( to == NULL ) {
89 lpeobject = to;
90 lpeobject_repr = to->getRepr();
91 _delete_connection = to->connectDelete(sigc::bind(sigc::ptr_fun(&lpeobjectreference_delete_self), this));
92 _modified_connection = to->connectModified(sigc::bind<2>(sigc::ptr_fun(&lpeobjectreference_source_modified), this));