/inkscape/src/ |
H A D | sp-anchor.h | 26 char *href; member in class:SPAnchor
|
H A D | sp-conn-end.h | 17 char *href; member in class:SPConnEnd 19 /** Change of href string (not a modification of the attributes of the referrent). */
|
H A D | sp-tag-use.h | 34 gchar *href; member in class:SPTagUse
|
H A D | sp-tref.h | 36 // Text stored in the xlink:href attribute 37 char *href; member in class:SPTRef
|
H A D | sp-use.h | 41 char *href; member in class:SPUse
|
H A D | sp-image.h | 45 char *href; member in class:SPImage
|
H A D | color-profile.h | 51 char* href; member in class:Inkscape::ColorProfile
|
H A D | sp-filter.h | 55 SPFilterReference *href; member in class:SPFilter
|
H A D | sp-pattern.h | 46 /* Reference (href) */ 47 Glib::ustring href; member in class:SPPattern
|
H A D | sp-hatch.h | 68 // Reference (href) 69 Glib::ustring href; member in class:SPHatch
|
H A D | resource-manager.cpp | 131 bool extractFilepath( Glib::ustring const &href, std::string &uri ); 148 bool ResourceManagerImpl::extractFilepath( Glib::ustring const &href, std::string &uri ) argument 154 std::string scheme = Glib::uri_parse_scheme(href); 158 // TODO debug g_message("--- is a file URI [%s]", href.c_str()); 161 uri = Glib::filename_from_uri(href); // TODO see if we can get this to throw 168 uri = Glib::filename_from_utf8( href ); 186 gchar const *href = ir->attribute("xlink:href"); local 187 if ( href && ( uniques.find(href) 313 gchar const *href = ir->attribute("xlink:href"); local [all...] |
H A D | sp-image.cpp | 78 static Inkscape::Pixbuf *sp_image_repr_read_image(gchar const *href, gchar const *absref, gchar const *base ); 126 this->href = 0; 139 this->readAttr( "xlink:href" ); 157 if (this->href) { 158 g_free (this->href); 159 this->href = NULL; 182 g_free (this->href); 183 this->href = (value) ? g_strdup (value) : NULL; 337 if (this->href) { 340 this->getRepr()->attribute("xlink:href"), 542 sp_image_repr_read_image(gchar const *href, gchar const *absref, gchar const *base) argument [all...] |
H A D | sp-lpe-item.cpp | 55 static void lpeobject_ref_modified(SPObject *href, guint flags, SPLPEItem *lpeitem); 141 std::string href; local 143 while (std::getline(iss, href, ';')) 148 path_effect_ref->link(href.c_str()); 334 lpeobject_ref_modified(SPObject */*href*/, guint /*flags*/, SPLPEItem *lpeitem) 808 * - create temporary href list
|
H A D | sp-pattern.cpp | 77 this->readAttr("xlink:href"); 185 if (value && this->href == value) { 189 this->href.clear(); 192 // First, set the href field; it's only used in the "unchanged" check above. 193 this->href = value; 302 // Conditional to avoid causing infinite loop if there's a cycle in the href chain. 337 repr->setAttribute("xlink:href", parent_ref); 350 if (pattern->href.empty() || pattern->hrefcount > _countHrefs(item)) { 352 Glib::ustring href = Glib::ustring::compose("url(#%1)", pattern->getRepr()->attribute("id")); local 355 sp_repr_css_set_property(css, property, href [all...] |
H A D | style-internal.h | 105 * SPIFilter for setting up the "href". (Currently, SPDocument is needed but this dependency 106 * should be removed as an "href" only needs the SPDocument for attaching an external document to 721 value.href = NULL; 729 value.href = NULL; 733 virtual ~SPIPaint(); // Clear and delete href. 749 value.href = rhs.value.href; 775 return (value.href) ? value.href->getObject() : 0; 798 SPPaintServerReference *href; member in struct:SPIPaint::__anon100 945 SPFilterReference *href; member in class:SPIFilter [all...] |
/inkscape/src/filters/ |
H A D | image.h | 29 gchar *href; member in class:SPFeImage
|
/inkscape/src/live_effects/parameter/ |
H A D | path.h | 68 gchar * href; // contains link to other object, e.g. "#path2428", NULL if PathParam contains pathdata itself member in class:Inkscape::LivePathEffect::PathParam
|
H A D | originalpatharray.h | 34 : href(NULL), 41 gchar *href; member in class:Inkscape::LivePathEffect::PathAndDirection
|
/inkscape/src/ui/dialog/ |
H A D | object-attributes.cpp | 47 { N_("Href:"), "xlink:href"}, 65 { N_("URL:"), "xlink:href"}, 144 const gchar *href = ir->attribute("xlink:href"); local 145 if ( (!href) || ((strncmp(href, "data:", 5) == 0)) )
|
H A D | symbols.cpp | 712 gchar const *href = use->getRepr()->attribute("xlink:href"); local 713 if( href ) { 714 Glib::ustring href2(href); 871 " <use id=\"the_use\" xlink:href=\"#the_symbol\"/>"
|
/inkscape/src/xml/ |
H A D | rebase-hrefs.cpp | 18 * Determine if a href needs rebasing. 20 static bool href_needs_rebasing(std::string const &href) argument 24 if ( href.empty() || (href[0] == '#') ) { 31 std::string scheme = Glib::uri_parse_scheme(href); 40 } else if (Glib::path_is_absolute(href)) { 47 * - We assume that if xlink:href is absolute then we honour it in preference to 48 * sodipodi:absref even if sodipodi:absref points to an existing file while xlink:href 49 * doesn't. This is because we aren't aware of any bugs in xlink:href handling when 53 * confident of our handling of xlink:href an 62 calc_abs_href(std::string const &abs_base_dir, std::string const &href, gchar const *const sp_absref) argument 240 std::string href = uri; local [all...] |
/inkscape/src/display/ |
H A D | nr-filter-image.cpp | 296 void FilterImage::set_href(const gchar *href){ argument 299 feImageHref = (href) ? g_strdup (href) : NULL;
|
/inkscape/src/live_effects/ |
H A D | effect.cpp | 346 gchar *href = g_strdup_printf("#%s", repr_id); local 347 SP_LPE_ITEM(item)->addPathEffect(href, true); 348 g_free(href);
|
/inkscape/src/ui/tools/ |
H A D | connector-tool.cpp | 341 bool ConnectorTool::_ptHandleTest(Geom::Point& p, gchar **href) { argument 345 *href = g_strdup_printf("#%s", this->active_handle->owner->getId()); 348 *href = NULL;
|
/inkscape/src/ui/ |
H A D | clipboard.cpp | 342 use->setAttribute("xlink:href", id.c_str() ); 1034 std::string href; local 1035 while (std::getline(iss, href, ';')) 1037 SPObject *obj = sp_uri_reference_resolve(_clipboardSPDoc, href.c_str());
|