swayfx/sway/container.c
2015-08-10 22:49:50 +02:00

19 lines
389 B
C

#include "container.h"
#include "layout.h"
void container_map(swayc_t *container, void (*f)(swayc_t *view, void *data), void *data) {
if (!container->children) {
return NULL;
}
int i;
for (i = 0; i < container->children->length; ++i) {
swayc_t *child = container->children->items[i];
f(child, data);
if(child->children)
container_map(child, f, data);
}
return NULL;
}