optimized gwinGetVisible() and gwinGetEnabled()

ugfx_release_2.6
Joel Bodenmann 2014-01-04 16:05:42 +01:00
parent bad22f5fee
commit d365232a85
1 changed files with 4 additions and 6 deletions

View File

@ -222,11 +222,10 @@ bool_t gwinGetVisible(GHandle gh) {
#if GWIN_NEED_HIERARCHY
// return TRUE if all widgets (itself + parents) are visble, false otherwise
GHandle e = gh;
while (e) {
for(e = gh; e; e = e->parent) {
if (!(e->flags & GWIN_FLG_VISIBLE))
return FALSE;
e = e->parent;
};
}
return TRUE;
#else
return (gh->flags & GWIN_FLG_VISIBLE) ? TRUE : FALSE;
@ -251,11 +250,10 @@ bool_t gwinGetEnabled(GHandle gh) {
#if GWIN_NEED_HIERARCHY
// return TRUE if all widgets (itself + parents) are enabled, false otherwise
GHandle e = gh;
while (e) {
for(e = gh; e; e = e->parent) {
if (!(e->flags & GWIN_FLG_ENABLED))
return FALSE;
e = e->parent;
};
}
return TRUE;
#else
return (gh->flags & GWIN_FLG_ENABLED) ? TRUE : FALSE;