Searched refs:target (Results 1 - 25 of 72) sorted by relevance

123

/inkscape/cxxtest/sample/
H A DMakefile.PL15 my $target = 'Makefile';
23 unlink($target);
24 $windows ? copy($source, $target) : symlink($source, $target);
/inkscape/src/
H A Dsnap-preferences.cpp44 void Inkscape::SnapPreferences::_mapTargetToArrayIndex(Inkscape::SnapTargetType &target, bool &always_on, bool &group_on) const argument
46 if (target == SNAPTARGET_BBOX_CATEGORY ||
47 target == SNAPTARGET_NODE_CATEGORY ||
48 target == SNAPTARGET_OTHERS_CATEGORY ||
49 target == SNAPTARGET_DATUMS_CATEGORY) {
52 always_on = (target == SNAPTARGET_DATUMS_CATEGORY);
57 if (target & SNAPTARGET_BBOX_CATEGORY) {
62 if (target & SNAPTARGET_NODE_CATEGORY) {
64 switch (target) {
66 target
162 setTargetSnappable(Inkscape::SnapTargetType const target, bool enabled) argument
[all...]
H A Dsnapped-point.h31 SnappedPoint(Geom::Point const &p, SnapSourceType const &source, long source_num, SnapTargetType const &target, Geom::Coord const &d, Geom::Coord const &t, bool const &a, bool const &at_intersection, bool const &constrained_snap, bool const &fully_constrained, Geom::Coord const &d2, Geom::Coord const &t2, bool const &a2);
32 SnappedPoint(Geom::Point const &p, SnapSourceType const &source, long source_num, SnapTargetType const &target, Geom::Coord const &d, Geom::Coord const &t, bool const &a, bool const &constrained_snap, bool const &fully_constrained, Geom::OptRect target_bbox = Geom::OptRect());
33 SnappedPoint(SnapCandidatePoint const &p, SnapTargetType const &target, Geom::Coord const &d, Geom::Coord const &t, bool const &a, bool const &constrained_snap, bool const &fully_constrained);
69 void setTarget(SnapTargetType const target) {_target = target;} argument
71 void setTargetBBox(Geom::OptRect const target) {_target_bbox = target;} argument
H A Dsnap-preferences.h25 void setTargetSnappable(Inkscape::SnapTargetType const target, bool enabled);
26 bool isTargetSnappable(Inkscape::SnapTargetType const target) const;
31 bool isSnapButtonEnabled(Inkscape::SnapTargetType const target) const;
63 * Map snap target to array index.
66 * of relevant boolean in that array, for any given type of snap target. For most snap targets, the enumerated value of that targets
71 * - For snap sources, just pass the corresponding snap target instead (each snap source should have a twin snap target, but not vice versa)
74 * @param target Stores the enumerated snap target, which can be modified to correspond to the array index of this snap target
[all...]
H A Dsnap-candidate.h27 /// 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) argument
36 _target_type(target),
43 SnapCandidatePoint(Geom::Point const &point, Inkscape::SnapSourceType const source, Inkscape::SnapTargetType const target) argument
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, Geo argument
[all...]
H A Dsp-tag.cpp20 * \param target - the SPItem to move into or after
21 * \param intoafter - move to after the target (false), move inside (sublayer) of the target (true)
23 void SPTag::moveTo(SPObject *target, gboolean intoafter) { argument
25 Inkscape::XML::Node *target_ref = ( target ? target->getRepr() : NULL );
44 // Move this inside of the target at the end
H A Dege-color-prof-tracker.h94 EgeColorProfTracker* ege_color_prof_tracker_new( GtkWidget* target );
H A Dsp-tag.h39 void moveTo(SPObject *target, gboolean intoafter);
H A Dsnapped-point.cpp17 Inkscape::SnappedPoint::SnappedPoint(Geom::Point const &p, SnapSourceType const &source, long source_num, SnapTargetType const &target, Geom::Coord const &d, Geom::Coord const &t, bool const &a, bool const &constrained_snap, bool const &fully_constrained, Geom::OptRect target_bbox) : argument
22 _target(target),
37 Inkscape::SnappedPoint::SnappedPoint(Inkscape::SnapCandidatePoint const &p, SnapTargetType const &target, Geom::Coord const &d, Geom::Coord const &t, bool const &a, bool const &constrained_snap, bool const &fully_constrained) : argument
42 _target(target),
57 Inkscape::SnappedPoint::SnappedPoint(Geom::Point const &p, SnapSourceType const &source, long source_num, SnapTargetType const &target, Geom::Coord const &d, Geom::Coord const &t, bool const &a, bool const &at_intersection, bool const &constrained_snap, bool const &fully_constrained, Geom::Coord const &d2, Geom::Coord const &t2, bool const &a2) : argument
62 _target(target),
162 // there's more than one). It is not useful when trying to find the best snapped target point.
H A Dsnapped-line.h26 SnappedLineSegment(Geom::Point const &snapped_point, Geom::Coord const &snapped_distance, SnapSourceType const &source, long source_num, SnapTargetType const &target, Geom::Coord const &snapped_tolerance,bool const &always_snap, Geom::Point const &start_point_of_line, Geom::Point const &end_point_of_line);
42 SnappedLine(Geom::Point const &snapped_point, Geom::Coord const &snapped_distance, SnapSourceType const &source, long source_num, SnapTargetType const &target, Geom::Coord const &snapped_tolerance, bool const &always_snap, Geom::Point const &normal_to_line, Geom::Point const &point_on_line);
H A Dsnapped-curve.h28 SnappedCurve(Geom::Point const &snapped_point, Geom::Point const &tangent, int num_path, int num_segm, Geom::Coord const &snapped_distance, Geom::Coord const &snapped_tolerance, bool const &always_snap, bool const &fully_constrained, Geom::Curve const *curve, SnapSourceType source, long source_num, SnapTargetType target, Geom::OptRect target_bbox);
H A Dege-color-prof-tracker.cpp201 EgeColorProfTracker* ege_color_prof_tracker_new( GtkWidget* target )
207 tracker->private_data->_target = target;
209 if ( target ) {
210 g_object_weak_ref( G_OBJECT(target), target_finalized, obj );
211 g_signal_connect( G_OBJECT(target), "hierarchy-changed", G_CALLBACK( target_hierarchy_changed_cb ), obj );
212 g_signal_connect( G_OBJECT(target), "screen-changed", G_CALLBACK( target_screen_changed_cb ), obj );
215 target_hierarchy_changed_cb( target, 0, obj );
216 target_screen_changed_cb( target, 0, obj );
/inkscape/src/xml/
H A Dpi-node.h27 PINode(GQuark target, Util::ptr_shared<char> content, Document *doc) argument
28 : SimpleNode(target, doc)
H A Ddocument.h96 virtual Node *createPI(char const *target, char const *content)=0;
H A Dsimple-document.cpp70 Node *SimpleDocument::createPI(char const *target, char const *content) { argument
71 return new PINode(g_quark_from_string(target), Util::share_string(content), this);
H A Dsimple-document.h49 Node *createPI(char const *target, char const *content);
/inkscape/src/extension/dbus/
H A Ddocument-interface.cpp230 if (doc_interface->target.getDesktop()) {
231 style = sp_desktop_get_style(doc_interface->target.getDesktop(), TRUE);
242 doc_interface->target.getSelection()->layers()->currentLayer()->appendChildRepr(newNode);
243 doc_interface->target.getSelection()->layers()->currentLayer()->updateRepr();
246 Inkscape::DocumentUndo::done(doc_interface->target.getDocument(), 0, (gchar *)desc);
263 SPDesktop *desk = doc_interface->target.getDesktop();
269 SPAction *action = verb->get_action(doc_interface->target);
273 Inkscape::DocumentUndo::done(doc_interface->target.getDocument(), verb->get_code(), verb->get_tip());
327 doc_interface->target = Inkscape::ActionContext();
345 sp_edit_clear_all(doc_interface->target
[all...]
H A Ddbus-init.cpp97 dbus_register_document(Inkscape::ActionContext const & target) argument
99 SPDocument *doc = target.getDocument();
121 doc_interface->target = target;
194 doc_interface->target = Inkscape::ActionContext(dt);
/inkscape/src/widgets/
H A Dspw-utilities.h35 Gtk::Label * spw_label(Gtk::Grid *table, gchar const *label_text, int col, int row, Gtk::Widget *target);
38 Gtk::Label * spw_label(Gtk::Table *table, gchar const *label_text, int col, int row, Gtk::Widget *target);
/inkscape/src/svg/
H A Dsvg-length-test.h103 SVGLength::Unit target = static_cast<SVGLength::Unit>(i); local
105 if ( (target != SVGLength::PX) ) {
106 gchar const* val = sp_svg_length_get_css_units(target);
118 SVGLength::Unit target = static_cast<SVGLength::Unit>(i); local
119 gchar const* val = sp_svg_length_get_css_units(target);
131 SVGLength::Unit target = static_cast<SVGLength::Unit>(i); local
132 gchar const* val = sp_svg_length_get_css_units(target);
/inkscape/packaging/macosx/Resources/etc/fonts/
H A Dfonts.conf40 <match target="pattern">
52 <match target="pattern">
64 <match target="pattern">
/inkscape/src/ui/dialog/
H A Dicon-preview.cpp355 SPObject *target = 0; local
358 target = (hold && !targetId.empty()) ? desktop->doc()->getObjectById( targetId.c_str() ) : 0;
359 if ( !target ) {
366 for(std::vector<SPItem*>::const_iterator i=items.begin();!target && i!=items.end();++i){
371 target = item;
377 target = desktop->currentRoot();
379 if ( target ) {
380 renderPreview(target);
/inkscape/src/ui/
H A Dclipboard.cpp177 // GTK automatically presents an "image/bmp" target as CF_DIB/CF_BITMAP
374 Glib::ustring target = _getBestTarget(); local
377 // Note that target priority is determined in _getBestTarget.
381 if ( target == CLIPBOARD_GDK_PIXBUF_TARGET ) {
385 if ( target == CLIPBOARD_TEXT_TARGET ) {
390 SPDocument *tempdoc = _retrieveClipboard(target);
604 SPDocument *tempdoc = _retrieveClipboard(); // any target will do here
633 SPDocument *tempdoc = _retrieveClipboard(); // any target will do here
936 * @param parent The node in the target document which will become the parent of the copied node
1070 Glib::ustring target local
1148 Glib::ustring target = sel.get_target(); local
1409 const Glib::ustring target = "image/x-emf"; local
[all...]
/inkscape/src/display/
H A Dnr-filter.cpp348 int Filter::replace_primitive(int target, FilterPrimitiveType type) argument
352 // Check that target is valid primitive inside this filter
353 if (target < 0) return -1;
354 if (static_cast<unsigned>(target) >= _primitive.size()) return -1;
362 delete _primitive[target];
363 _primitive[target] = created;
364 return target;
/inkscape/src/ui/widget/
H A Dunit-tracker.cpp183 GSList *target = g_slist_find(_actionList, where_the_object_was); local
184 if (target) {
193 GSList *target = g_slist_find(_adjList, where_the_object_was); local
194 if (target) {

Completed in 74 milliseconds

123