Lines Matching refs:item
28 static void sp_ctrlcurve_update(SPCanvasItem *item, Geom::Affine const &affine, unsigned int flags);
29 static void sp_ctrlcurve_render(SPCanvasItem *item, SPCanvasBuf *buf);
49 ctrlcurve->item=NULL;
61 ctrlcurve->item=NULL;
68 sp_ctrlcurve_render(SPCanvasItem *item, SPCanvasBuf *buf)
70 SPCtrlCurve *cl = SP_CTRLCURVE (item);
99 sp_ctrlcurve_update(SPCanvasItem *item, Geom::Affine const &affine, unsigned int flags)
101 SPCtrlCurve *cl = SP_CTRLCURVE (item);
103 item->canvas->requestRedraw(item->x1, item->y1, item->x2, item->y2);
106 SP_CANVAS_ITEM_CLASS(sp_ctrlcurve_parent_class)->update(item, affine, flags);
108 sp_canvas_item_reset_bounds (item);
113 item->x1 = item->x2 = item->y1 = item->y2 = 0;
141 item->x1 = round( min_x - 1 );
142 item->y1 = round( min_y - 1 );
143 item->x2 = round( max_x + 1 );
144 item->y2 = round( max_y + 1 );
146 item->canvas->requestRedraw(item->x1, item->y1, item->x2, item->y2);