Searched defs:href (Results 1 - 25 of 28) sorted by relevance

12

/inkscape/src/
H A Dsp-anchor.h26 char *href; member in class:SPAnchor
H A Dsp-conn-end.h17 char *href; member in class:SPConnEnd
19 /** Change of href string (not a modification of the attributes of the referrent). */
H A Dsp-tag-use.h34 gchar *href; member in class:SPTagUse
H A Dsp-tref.h36 // Text stored in the xlink:href attribute
37 char *href; member in class:SPTRef
H A Dsp-use.h41 char *href; member in class:SPUse
H A Dsp-image.h45 char *href; member in class:SPImage
H A Dcolor-profile.h51 char* href; member in class:Inkscape::ColorProfile
H A Dsp-filter.h55 SPFilterReference *href; member in class:SPFilter
H A Dsp-pattern.h46 /* Reference (href) */
47 Glib::ustring href; member in class:SPPattern
H A Dsp-hatch.h68 // Reference (href)
69 Glib::ustring href; member in class:SPHatch
H A Dresource-manager.cpp131 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 Dsp-image.cpp78 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 Dsp-lpe-item.cpp55 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 Dsp-pattern.cpp77 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 Dstyle-internal.h105 * 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 Dimage.h29 gchar *href; member in class:SPFeImage
/inkscape/src/live_effects/parameter/
H A Dpath.h68 gchar * href; // contains link to other object, e.g. "#path2428", NULL if PathParam contains pathdata itself member in class:Inkscape::LivePathEffect::PathParam
H A Doriginalpatharray.h34 : href(NULL),
41 gchar *href; member in class:Inkscape::LivePathEffect::PathAndDirection
/inkscape/src/ui/dialog/
H A Dobject-attributes.cpp47 { 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 Dsymbols.cpp712 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 Drebase-hrefs.cpp18 * 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 Dnr-filter-image.cpp296 void FilterImage::set_href(const gchar *href){ argument
299 feImageHref = (href) ? g_strdup (href) : NULL;
/inkscape/src/live_effects/
H A Deffect.cpp346 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 Dconnector-tool.cpp341 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 Dclipboard.cpp342 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());

Completed in 47 milliseconds

12