Esempio n. 1
0
void TWidget::Draw(TRenderTarget& target) {
    if (IsVisible() == false) {
        return;
    }
    _draw(target);
    _drawChildren(target);
}
Esempio n. 2
0
 void TreeNode::draw(){
     _draw();
     _drawChildren();
 }