Lines Matching refs:width
40 static void sp_svg_view_widget_view_resized (SPViewWidget *vw, Inkscape::UI::View::View *view, gdouble width, gdouble height);
156 req->width=width_min;
168 gdouble width, height;
171 width = (v->doc())->getWidth().value("px") * svgv->_hscale;
174 if (width <= vw->maxwidth) {
176 req->width = (gint) (width + 0.5);
179 req->width = (gint) (vw->maxwidth + 0.5);
197 *minimal_width = *natural_width = requisition.width;
221 (gdouble) allocation->width - 1.0, (gdouble) allocation->height - 1.0);
228 static void sp_svg_view_widget_view_resized(SPViewWidget *vw, Inkscape::UI::View::View */*view*/, gdouble width, gdouble height)
233 gtk_widget_set_size_request (svgvw->canvas, (int)width, (int)height);
251 void SPSVGSPViewWidget::setResize(bool resize, gdouble width, gdouble height)
253 g_return_if_fail( !resize || (width > 0.0) );
257 this->maxwidth = width;