Home | History | Annotate | Download | only in gtk

Lines Matching defs:allocation

61   // Check if all children's size allocation are inside the |box_|'s boundary.
78 int x = box_->allocation.x + border_width;
79 int width = box_->allocation.width - border_width * 2;
131 GtkAllocation allocation = { 0, 0, 0, 200 };
138 allocation.width = width;
140 // cause queue resize, so it's necessary to do another size allocation to
142 gtk_widget_size_allocate(box_, &allocation);
143 gtk_widget_size_allocate(box_, &allocation);
151 allocation.width = width;
154 // allocation to emulate the queue resize.
155 gtk_widget_size_allocate(box_, &allocation);
156 gtk_widget_size_allocate(box_, &allocation);
166 allocation.width = width;
167 gtk_widget_size_allocate(box_, &allocation);
168 gtk_widget_size_allocate(box_, &allocation);
176 allocation.width = width;
177 gtk_widget_size_allocate(box_, &allocation);
178 gtk_widget_size_allocate(box_, &allocation);
203 data.x = child->allocation.x;
204 data.width = child->allocation.width;