Lines Matching refs:stopinfo

2501                             StructStopInfo *stopinfo = new StructStopInfo;
2502 stopinfo->spstop = stop;
2503 stopinfo->draggable = draggable;
2504 stopinfo->gradient = gradient;
2505 stopinfo->vector = vector;
2509 if ( ((StructStopInfo*)l->data)->spstop == stopinfo->spstop ) {
2515 endstoplist = g_slist_append(endstoplist, stopinfo);
2535 StructStopInfo *stopinfo = (StructStopInfo*) endstoplist->data;
2536 document = stopinfo->spstop->document;
2542 for ( SPObject *child = (stopinfo->vector)->firstChild() ; child ; child = child->getNext() )
2550 switch (stopinfo->draggable->point_type) {
2553 stopinfo->vector->getRepr()->removeChild(stopinfo->spstop->getRepr());
2555 SPLinearGradient *lg = SP_LINEARGRADIENT(stopinfo->gradient);
2558 SPStop *stop = stopinfo->vector->getFirstStop();
2564 Inkscape::XML::Node *repr = stopinfo->gradient->getRepr();
2571 SPStop *laststop = sp_last_stop(stopinfo->vector);
2582 stopinfo->vector->getRepr()->removeChild(stopinfo->spstop->getRepr());
2584 SPLinearGradient *lg = SP_LINEARGRADIENT(stopinfo->gradient);
2587 SPStop *laststop = sp_last_stop(stopinfo->vector);
2593 Inkscape::XML::Node *repr = stopinfo->gradient->getRepr();
2600 SPStop *stop = stopinfo->vector->getFirstStop();
2611 SPStop *newfirst = stopinfo->spstop->getNextStop();
2616 stopinfo->vector->getRepr()->removeChild(stopinfo->spstop->getRepr());
2622 stopinfo->vector->getRepr()->removeChild(stopinfo->spstop->getRepr());
2624 SPRadialGradient *rg = SP_RADIALGRADIENT(stopinfo->gradient);
2626 SPStop *laststop = sp_last_stop(stopinfo->vector);
2637 SPStop *stop = stopinfo->vector->getFirstStop();
2654 // stopinfo->spstop is the selected stop
2655 Inkscape::XML::Node *unselectedrepr = stopinfo->vector->getRepr()->firstChild();
2656 if (unselectedrepr == stopinfo->spstop->getRepr() ) {
2661 if (stopinfo->draggable->fill_or_stroke == Inkscape::FOR_FILL) {
2668 if (stopinfo->draggable->fill_or_stroke == Inkscape::FOR_FILL) {
2678 sp_repr_css_change(stopinfo->draggable->item->getRepr(), css, "style");
2682 endstoplist = g_slist_remove(endstoplist, stopinfo);
2683 delete stopinfo;