Searched refs:parent_text (Results 1 - 3 of 3) sorted by relevance

/inkscape/src/ui/dialog/
H A Dfont-substitution.cpp177 SPObject *parent_text = item; local
178 while (parent_text && !SP_IS_TEXT(parent_text)) {
179 parent_text = parent_text->parent;
181 if (parent_text != NULL) {
182 family = SP_TEXT(parent_text)->layout.getFontFamily(0);
185 for (SPObject *child = parent_text->firstChild() ; child ; child = child->getNext() ) {
186 family = SP_TEXT(parent_text)->layout.getFontFamily(ii);
/inkscape/src/
H A Dsp-tref.cpp193 SPObject const *parent_text = this; local
195 while ( parent_text && !SP_IS_TEXT(parent_text) ) {
196 parent_text = parent_text->parent;
199 if (parent_text == NULL) {
204 bbox = SP_TEXT(parent_text)->layout.bounds(transform,
205 sp_text_get_length_upto(parent_text, this), sp_text_get_length_upto(this, NULL) - 1);
H A Dsp-tspan.cpp141 SPObject const *parent_text = this; local
143 while (parent_text && !SP_IS_TEXT(parent_text)) {
144 parent_text = parent_text->parent;
147 if (parent_text == NULL) {
152 bbox = SP_TEXT(parent_text)->layout.bounds(transform, sp_text_get_length_upto(parent_text, this), sp_text_get_length_upto(this, NULL) - 1);

Completed in 105 milliseconds