Ejemplo n.º 1
0
 Widget &currentChild() { return child(currentChildIndex()); }
Ejemplo n.º 2
0
 const Widget &currentChild() const { return child(currentChildIndex()); }
Ejemplo n.º 3
0
const Widget &WidgetContainer::current() const
{
    return (currentChildIndex() >= 0 ?
            child(currentChildIndex()).current() : *this);
}