Searched defs:pos_obj (Results 1 - 3 of 3) sorted by relevance

/inkscape/src/
H A Dpath-chemistry.cpp507 SPObject const *pos_obj = 0; local
512 pos_obj = SP_OBJECT(rawptr);
513 while (dynamic_cast<SPString const *>(pos_obj) && pos_obj->parent) {
514 pos_obj = pos_obj->parent; // SPStrings don't have style
517 pos_obj->style->write( SP_STYLE_FLAG_IFDIFF, pos_obj->parent ? pos_obj->parent->style : NULL); // TODO investigate posibility
H A Dtext-editing.cpp137 SPObject const *pos_obj = sp_te_object_at_position(text, position); local
138 SPStyle *result = (pos_obj) ? pos_obj->style : 0;
148 SPObject const *pos_obj = 0; local
151 pos_obj = SP_OBJECT(rawptr);
152 if (pos_obj == 0) {
153 pos_obj = text;
155 while (pos_obj->style == NULL) {
156 pos_obj = pos_obj
[all...]
/inkscape/src/ui/tools/
H A Dtext-tool.cpp1480 SPObject *pos_obj = 0; local
1486 pos_obj = SP_OBJECT(rawptr);
1487 while (SP_IS_STRING(pos_obj) && pos_obj->parent) {
1488 pos_obj = pos_obj->parent; // SPStrings don't have style
1490 styles_list.insert(styles_list.begin(),(SPItem*)pos_obj);

Completed in 71 milliseconds