Lines Matching defs:width
77 pixmap, 0, 0, 0, 0, pixmapbox->allocation.width, pixmapbox->allocation.height);
105 gint16 width, height;
115 width = widget->allocation.width;
121 gdk_draw_rectangle(*ppixmap, widget->style->white_gc, TRUE, 0, 0, width, height);
137 points[i].x = .5 + ((xcord[i] - xmn) * (width - 1) / (xmx - xmn));
158 gint16 width, height;
167 width = widget->allocation.width;
172 points[i].x = .5 + ((xcord[i] - xmn) * (width - 1) / (xmx - xmn));
175 width = points[1].x - points[0].x + 1;
177 gdk_draw_rectangle(*ppixmap, gc, TRUE, points[0].x, points[0].y, width, height);
192 int barwidth, /* bar width. 0=compute based on window size */
198 gint16 width, height, x, y, barheight;
209 width = widget->allocation.width;
215 gdk_draw_rectangle(*ppixmap, widget->style->white_gc, TRUE, 0, 0, width, height);
245 points[1].x = .5 + ((xcord[i] - xmn) * (width - 1) / (xmx - xmn));
250 x = .5 + ((xcord[i] - xmn) * (width - 1) / (xmx - xmn));
253 barwidth = (width / (n + 1)) - 1;
279 widget->allocation.width, widget->allocation.height, -1);
282 TRUE, 0, 0, widget->allocation.width, widget->allocation.height);
299 event->area.x, event->area.y, event->area.width, event->area.height);
310 gpk_plot_new(int width, int height)
315 gtk_drawing_area_size(GTK_DRAWING_AREA(pixmapbox), width, height);