Lines Matching defs:alloc
1264 GtkAllocation alloc;
1270 gtk_widget_get_allocation (GTK_WIDGET (object), &alloc);
1273 rel_x = x - alloc.x;
1274 rel_y = y - alloc.y;
1277 if (rel_x > 0 && rel_x < alloc.width &&
1278 rel_y > 0 && rel_y < alloc.height) {
1288 rx = (float) rel_x / alloc.width;
1289 ry = (float) rel_y / alloc.height;
1315 request->rect.width = alloc.width;
1316 request->rect.height = alloc.height;
1363 request->rect.x += alloc.x;
1364 request->rect.y += alloc.y;