Lines Matching defs:target
27 /// Class to store data for points which are snap candidates, either as a source or as a target
33 SnapCandidatePoint(Geom::Point const &point, Inkscape::SnapSourceType const source, long const source_num, Inkscape::SnapTargetType const target, Geom::OptRect const &bbox)
36 _target_type(target),
43 SnapCandidatePoint(Geom::Point const &point, Inkscape::SnapSourceType const source, Inkscape::SnapTargetType const target)
46 _target_type(target),
93 // is a snap target, then _target_type must be defined. If it's yet unknown whether it will
94 // be a source or target, then both may be defined
103 // If this is a target and it belongs to a bounding box, e.g. when the target type is
133 SnapCandidatePath(Geom::PathVector* path, SnapTargetType target, Geom::OptRect bbox, bool edited = false)
134 : path_vector(path), target_type(target), target_bbox(bbox), currently_being_edited(edited) {};