You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
389 B
19 lines
389 B
9 years ago
|
#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;
|
||
|
}
|
||
|
|