/inkscape/src/xml/ |
H A D | pi-node.h | 27 PINode(GQuark target, Util::ptr_shared<char> content, Document *doc) argument 28 : SimpleNode(target, doc)
|
H A D | simple-document.cpp | 70 Node *SimpleDocument::createPI(char const *target, char const *content) { argument 71 return new PINode(g_quark_from_string(target), Util::share_string(content), this);
|
/inkscape/src/ |
H A D | sp-tag.cpp | 20 * \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 D | snap-preferences.cpp | 44 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 D | snapped-point.cpp | 17 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 D | snapped-curve.cpp | 15 Inkscape::SnappedCurve::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) argument 32 _target = target; 150 // curve is the closest, so this is our primary snap target
|
H A D | snapped-line.cpp | 14 Inkscape::SnappedLineSegment::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) argument 20 _target = target; 93 Inkscape::SnappedLine::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) argument 98 _target = target; 166 // The type of the snap target is yet undefined, as we cannot tell whether
|
H A D | snap-candidate.h | 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) 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 D | snapped-point.h | 31 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 D | device-manager.cpp | 214 IdMatcher(Glib::ustring const& target):target(target) {} argument 215 bool operator ()(Glib::RefPtr<InputDeviceImpl>& dev) {return dev && (target == dev->getId());} 218 Glib::ustring const& target; member in class:Inkscape::IdMatcher::Glib 223 LinkMatcher(Glib::ustring const& target):target(target) {} argument 224 bool operator ()(Glib::RefPtr<InputDeviceImpl>& dev) {return dev && (target == dev->getLink());} 227 Glib::ustring const& target; member in class:Inkscape::LinkMatcher::Glib [all...] |
/inkscape/src/extension/dbus/ |
H A D | document-interface.h | 52 Inkscape::ActionContext target; ///< stores information about which document, selection, desktop etc this interface is linked to member in struct:_DocumentInterface
|
H A D | dbus-init.cpp | 97 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/libuemf/ |
H A D | symbol_convert.c | 943 //translates from Unicode to some non unicode font until the target font changes. 944 //A target font change is like symbol -> wingdings, or symbol -> no translation 949 unsigned char target=0; local 951 if(text && (target=to_font[*text])){ //There is actually something here to convert 952 while(*text && target==to_font[*text]){ 959 *edest=target;
|
/inkscape/src/svg/ |
H A D | svg-length-test.h | 103 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/src/ui/widget/ |
H A D | unit-tracker.cpp | 183 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) {
|
/inkscape/src/ui/dialog/ |
H A D | icon-preview.cpp | 355 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);
|
H A D | layer-properties.cpp | 249 SPObject* target = _desktop->currentLayer(); local 251 _addLayer( document, SP_OBJECT(root), 0, target, 0 ); 271 void LayerPropertiesDialog::_addLayer( SPDocument* doc, SPObject* layer, Gtk::TreeModel::Row* parentRow, SPObject* target, int level ) argument 290 if ( target && child == target ) { 299 _addLayer( doc, child, &row, target, level + 1 );
|
/inkscape/src/ui/ |
H A D | previewholder.cpp | 179 Gtk::Widget* target = kids[childCount - (j + 1)]; local 182 Glib::RefPtr<Gtk::Widget> handle(target); 183 _insides->remove( *target ); 186 target->set_hexpand(); 187 target->set_vexpand(); 188 _insides->attach( *target, col2, row2, 1, 1); 190 _insides->attach( *target, col2, col2+1, row2, row2+1, Gtk::FILL|Gtk::EXPAND, Gtk::FILL|Gtk::EXPAND );
|
H A D | control-manager.cpp | 288 double target = _sizeTable[item->ctrlType][_size - 1] + item->ctrlResize; local 290 g_object_set(item, "size", target, NULL);
|
/inkscape/src/widgets/ |
H A D | ink-action.cpp | 180 GdkPixbuf* target = icon->pb; local 181 if ( target ) { 182 child = gtk_image_new_from_pixbuf( target );
|
H A D | sp-widget.cpp | 37 SPWidgetImpl(SPWidget &target); 141 SPWidgetImpl::SPWidgetImpl(SPWidget &target) : argument 142 _target(target)
|
H A D | spw-utilities.cpp | 40 Gtk::Label * spw_label(Gtk::Grid *table, const gchar *label_text, int col, int row, Gtk::Widget* target) argument 42 Gtk::Label * spw_label(Gtk::Table *table, const gchar *label_text, int col, int row, Gtk::Widget* target) 47 if (target != NULL) 50 label_widget->set_mnemonic_widget(*target);
|
/inkscape/src/display/ |
H A D | nr-filter.cpp | 348 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/libgdl/ |
H A D | gdl-dock-object.h | 75 GdlDockObject *target; member in struct:_GdlDockRequest
|
/inkscape/src/libnrtype/ |
H A D | font-lister.cpp | 952 gboolean font_description_better_match(PangoFontDescription *target, PangoFontDescription *old_desc, PangoFontDescription *new_desc) argument 959 int old_distance = compute_distance(target, old_desc); 960 int new_distance = compute_distance(target, new_desc); 968 // font_description_dump( PangoFontDescription* target ) { 969 // std::cout << " Font: " << pango_font_description_to_string( target ) << std::endl; 970 // std::cout << " style: " << pango_font_description_get_style( target ) << std::endl; 971 // std::cout << " weight: " << pango_font_description_get_weight( target ) << std::endl; 972 // std::cout << " variant: " << pango_font_description_get_variant( target ) << std::endl; 973 // std::cout << " stretch: " << pango_font_description_get_stretch( target ) << std::endl; 974 // std::cout << " gravity: " << pango_font_description_get_gravity( target ) << st 1000 PangoFontDescription *target = pango_font_description_from_string(fontspec.c_str()); local [all...] |