Lines Matching refs:root
297 skin_part_create_from_v1( AConfig* root, const char* basepath )
304 part->name = root->name;
306 node = aconfig_find(root, "background");
310 node = aconfig_find(root, "display");
314 node = aconfig_find(root, "button");
348 skin_part_create_from_v2( AConfig* root, const char* basepath )
355 part->name = root->name;
357 node = aconfig_find(root, "background");
361 node = aconfig_find(root, "display");
365 node = aconfig_find(root, "buttons");
483 skin_layout_create_from_v2( AConfig* root, SkinPart* parts )
492 width = aconfig_int( root, "width", 400 );
493 height = aconfig_int( root, "height", 400 );
495 node = aconfig_find( root, "event" );
507 layout->name = root->name;
508 layout->color = aconfig_unsigned( root, "color", 0x808080 ) | 0xff000000;
511 node = aconfig_find( root, "dpad-rotation" );
513 layout->dpad_rotation = aconfig_int( root, "dpad-rotation", 0 );
517 for (node = root->first_child; node; node = node->next)