Lines Matching defs:to

15 #include <2geom/sbasis-to-bezier.h>
37 // required for linking to other paths
200 pButton->set_tooltip_text(_("Link to path on clipboard"));
246 * Only applies transform when not referring to other path!
251 // only apply transform when not referring to other path
271 // After the whole "writing to svg avalanche of function calling": force value upon pwd2 and don't recalculate.
283 * If this PathParam refers to another path, this link is removed (and replaced with explicit path data).
286 * The new path data is written to SVG. In this case the signal_path_changed signal
287 * is not directly emited in this method, because writing to SVG
288 * triggers the LPEObject to which this belongs to call Effect::setParameter which calls
291 * The new path data is not written to SVG. This method will emit the signal_path_changed signal.
335 PathParam::start_listening(SPObject * to)
337 if ( to == NULL ) {
340 linked_delete_connection = to->connectDelete(sigc::mem_fun(*this, &PathParam::linked_delete));
341 linked_modified_connection = to->connectModified(sigc::mem_fun(*this, &PathParam::linked_modified));
342 if (SP_IS_ITEM(to)) {
343 linked_transformed_connection = SP_ITEM(to)->connectTransformed(sigc::mem_fun(*this, &PathParam::linked_transformed));
345 linked_modified(to, SP_OBJECT_MODIFIED_FLAG); // simulate linked_modified signal, so that path data is updated
433 // remove possible link to path
474 // add '#' at start to make it an uri.
482 // check if linking to object to which LPE is applied (maybe delegated to PathReference
486 _("Link path parameter to path"));