Lines Matching defs:to
2 * The reference corresponding to href of <use> element.
45 _changed_connection = changedSignal().connect(sigc::bind(sigc::ptr_fun(sp_usepath_href_changed), this)); // listening to myself, this should be virtual instead
55 _changed_connection.disconnect(); // to do before unlinking
62 SPUsePath::link(char *to)
64 if ( to == NULL ) {
68 if ( !sourceHref || ( strcmp(to, sourceHref) != 0 ) ) {
70 sourceHref = g_strdup(to);
72 attach(Inkscape::URI(to));
93 SPUsePath::start_listening(SPObject* to)
95 if ( to == NULL ) {
98 sourceObject = to;
99 sourceRepr = to->getRepr();
100 _delete_connection = to->connectDelete(sigc::bind(sigc::ptr_fun(&sp_usepath_delete_self), this));
101 _transformed_connection = SP_ITEM(to)->connectTransformed(sigc::bind(sigc::ptr_fun(&sp_usepath_move_compensate), this));
102 _modified_connection = to->connectModified(sigc::bind<2>(sigc::ptr_fun(&sp_usepath_source_modified), this));