Lines Matching refs:pEle

79         Element* pEle = getElement( i );  in setParentWindow()  local
80 if( pEle ) // sanity check in setParentWindow()
83 if( pEle->m_pElement ) in setParentWindow()
85 OSL_VERIFY( pEle->m_pElement->GetParent() == i_pNewParent ); in setParentWindow()
88 if( pEle->m_pChild ) in setParentWindow()
89 pEle->m_pChild->setParentWindow( i_pNewParent ); in setParentWindow()
99 Element* pEle = getElement( i ); in show() local
100 if( pEle ) // sanity check in show()
102 pEle->m_bHidden = ! i_bShow; in show()
103 if( pEle->m_pElement ) in show()
104 pEle->m_pElement->Show( i_bShow ); in show()
105 if( pEle->m_pChild.get() ) in show()
106 pEle->m_pChild->show( i_bShow, false ); in show()
114 Element* pEle = m_pParentArranger->getElement( i ); in show() local
115 if( pEle && pEle->m_pChild.get() == this ) in show()
117 pEle->m_bHidden = ! i_bShow; in show()
137 const Element* pEle = getConstElement( i ); in isVisible() local
138 if( pEle->isVisible() ) in isVisible()
664 const Element* pEle = getConstElement( i ); in getLabelWidth() local
665 if( pEle && pEle->m_pChild.get() ) in getLabelWidth()
667 … const LabeledElement* pLabel = dynamic_cast< const LabeledElement* >(pEle->m_pChild.get()); in getLabelWidth()
697 const Element* pEle = getConstElement( i ); in getOptimalSize() local
698 if( pEle && pEle->m_pChild.get() ) in getOptimalSize()
700 … const LabeledElement* pLabel = dynamic_cast< const LabeledElement* >(pEle->m_pChild.get()); in getOptimalSize()
713 aElementSize = pEle->getOptimalSize( i_eType ); in getOptimalSize()
716 else if( pEle && pEle->m_pElement ) // a general window, treat is as a row in getOptimalSize()
718 aElementSize = pEle->getOptimalSize( i_eType ); in getOptimalSize()
745 Element* pEle = getElement( i ); in resize() local
746 if( pEle && pEle->m_pChild.get() ) in resize()
748 LabeledElement* pLabel = dynamic_cast< LabeledElement* >(pEle->m_pChild.get()); in resize()