Lines Matching refs:up
271 Widget *up() in up() function in Widget
403 Widget *pParent = up(); in swapWithChild()
629 for ( Widget *pUp = pWidget->up(); pUp != NULL; pUp = pUp->up() ) in next()
660 bool moveWidget( Widget *pWidget, bool up /*or down*/ ) in moveWidget() argument
663 Widget *pOriContainer = pWidget->up(); in moveWidget()
667 Widget *pSibling = up ? pWidget->prev() : pWidget->next(); in moveWidget()
668 Widget *pContainer = pWidget->up(); in moveWidget()
676 if ( up ) in moveWidget()
696 if ( pSibling->addChild( pWidget, up ? 0xffff : 0 ) ) in moveWidget()
700 if ( pContainer->addChild( pWidget, childPos + (up ? 0 : 1) ) ) in moveWidget()
706 for ( ; pContainer && pContainer->up(); pContainer = pContainer->up() ) in moveWidget()
708 unsigned int childPos = pContainer->up()->getChildPos( pContainer ); in moveWidget()
709 if ( pContainer->up()->addChild( pWidget, childPos + (up ? 0 : 1) ) ) in moveWidget()
1654 pWidget->up()->removeChild( pWidget ); in removePressed()