Example #1
0
void StGLButton::setFocus(const bool theValue) {
    StGLMenuItem* anItem = (StGLMenuItem* )getChildren()->getStart();
    if(anItem != NULL) {
        anItem->setFocus(theValue);
    }
}
Example #2
0
void StGLButton::setFocus(const bool theValue) {
    StGLMenuItem* anItem = getMenuItem();
    if(anItem != NULL) {
        anItem->setFocus(theValue);
    }
}