コード例 #1
0
ファイル: StGLButton.cpp プロジェクト: KindDragon/sview
void StGLButton::setFocus(const bool theValue) {
    StGLMenuItem* anItem = (StGLMenuItem* )getChildren()->getStart();
    if(anItem != NULL) {
        anItem->setFocus(theValue);
    }
}
コード例 #2
0
ファイル: StGLButton.cpp プロジェクト: angelstudio/sview
void StGLButton::setFocus(const bool theValue) {
    StGLMenuItem* anItem = getMenuItem();
    if(anItem != NULL) {
        anItem->setFocus(theValue);
    }
}