Lines Matching refs:pEntry

134 		SvLBoxEntry* pEntry = getListBox()->GetEntryFromPath( m_aEntryPath );  in GetBoundingBox_Impl()  local
135 if ( pEntry ) in GetBoundingBox_Impl()
137 aRect = getListBox()->GetBoundingRect( pEntry ); in GetBoundingBox_Impl()
138 SvLBoxEntry* pParent = getListBox()->GetParent( pEntry ); in GetBoundingBox_Impl()
154 SvLBoxEntry* pEntry = getListBox()->GetEntryFromPath( m_aEntryPath ); in GetBoundingBoxOnScreen_Impl() local
155 if ( pEntry ) in GetBoundingBoxOnScreen_Impl()
157 aRect = getListBox()->GetBoundingRect( pEntry ); in GetBoundingBoxOnScreen_Impl()
215 SvLBoxEntry* pEntry = getListBox()->GetEntryFromPath( m_aEntryPath ); in implGetText() local
216 if ( pEntry ) in implGetText()
217 sRet = getListBox()->SearchEntryTextWithHeadTitle( pEntry ); in implGetText()
343 SvLBoxEntry* pEntry = getListBox()->GetEntryFromPath( m_aEntryPath ); in getAccessibleChildCount() local
345 if ( pEntry ) in getAccessibleChildCount()
346 nCount = getListBox()->GetLevelChildCount( pEntry ); in getAccessibleChildCount()
359 SvLBoxEntry* pEntry =GetRealChild(i); in getAccessibleChild() local
360 if ( !pEntry ) in getAccessibleChild()
363 return new AccessibleListBoxEntry( *getListBox(), pEntry, this ); in getAccessibleChild()
424 SvLBoxEntry* pEntry = getListBox()->GetEntry(0); in getRoleType() local
425 if ( pEntry ) in getRoleType()
427 if( pEntry->HasChildsOnDemand() || getListBox()->GetChildCount(pEntry) > 0 ) in getRoleType()
464 SvLBoxEntry* pEntry = pBox->GetEntryFromPath( m_aEntryPath ); in getAccessibleRole() local
465 SvButtonState eState = pBox->GetCheckButtonState( pEntry ); in getAccessibleRole()
490 SvLBoxEntry* pEntry = getListBox()->GetEntryFromPath( m_aEntryPath ); in getAccessibleDescription() local
493 return getListBox()->GetEntryLongDescription( pEntry ); in getAccessibleDescription()
498 sal_uInt16 iTotleItemCount = pEntry->ItemCount(); in getAccessibleDescription()
502 pItem = pEntry->GetItem( iCount ); in getAccessibleDescription()
516 return getListBox()->SearchEntryTextWithHeadTitle( pEntry ); in getAccessibleDescription()
530 SvLBoxEntry* pEntry = getListBox()->GetEntryFromPath( m_aEntryPath ); in getAccessibleName() local
532 String altText = getListBox()->GetEntryAltText( pEntry ); in getAccessibleName()
622 SvLBoxEntry* pEntry = getListBox()->GetEntry( VCLPoint( _aPoint ) ); in getAccessibleAtPoint() local
623 if ( !pEntry ) in getAccessibleAtPoint()
627 AccessibleListBoxEntry* pAccEntry = new AccessibleListBoxEntry( *getListBox(), pEntry, this ); in getAccessibleAtPoint()
707 SvLBoxEntry* pEntry = getListBox()->GetEntryFromPath( m_aEntryPath ); in getCharacterBounds() local
708 if ( pEntry ) in getCharacterBounds()
729 SvLBoxEntry* pEntry = getListBox()->GetEntryFromPath( m_aEntryPath ); in getIndexAtPoint() local
730 if ( pEntry ) in getIndexAtPoint()
830 SvLBoxEntry* pEntry = getListBox()->GetEntryFromPath( m_aEntryPath ); in doAccessibleAction() local
831 SvButtonState state = getListBox()->GetCheckButtonState( pEntry ); in doAccessibleAction()
833 getListBox()->SetCheckButtonState(pEntry, (SvButtonState)SV_BMP_UNCHECKED); in doAccessibleAction()
835 getListBox()->SetCheckButtonState(pEntry, (SvButtonState)SV_BUTTON_CHECKED); in doAccessibleAction()
839 SvLBoxEntry* pEntry = getListBox()->GetEntryFromPath( m_aEntryPath ); in doAccessibleAction() local
840 if ( pEntry ) in doAccessibleAction()
842 if ( getListBox()->IsExpanded( pEntry ) ) in doAccessibleAction()
843 getListBox()->Collapse( pEntry ); in doAccessibleAction()
845 getListBox()->Expand( pEntry ); in doAccessibleAction()
864 SvLBoxEntry* pEntry = getListBox()->GetEntryFromPath( m_aEntryPath ); in getAccessibleActionDescription() local
865 SvButtonState state = getListBox()->GetCheckButtonState( pEntry ); in getAccessibleActionDescription()
883 if( pEntry->HasChilds() || pEntry->HasChildsOnDemand() ) in getAccessibleActionDescription()
884 return getListBox()->IsExpanded( pEntry ) ? \ in getAccessibleActionDescription()
911 SvLBoxEntry* pEntry = GetRealChild(nChildIndex); in selectAccessibleChild() local
912 if ( !pEntry ) in selectAccessibleChild()
915 getListBox()->Select( pEntry, sal_True ); in selectAccessibleChild()
926 SvLBoxEntry* pEntry = getListBox()->GetEntry( pParent, nChildIndex ); in isAccessibleChildSelected() local
927 if ( !pEntry ) in isAccessibleChildSelected()
930 return getListBox()->IsSelected( pEntry ); in isAccessibleChildSelected()
947 SvLBoxEntry* pEntry = getListBox()->GetEntry( pParent, i ); in clearAccessibleSelection() local
948 if ( getListBox()->IsSelected( pEntry ) ) in clearAccessibleSelection()
949 getListBox()->Select( pEntry, sal_False ); in clearAccessibleSelection()
967 SvLBoxEntry* pEntry = getListBox()->GetEntry( pParent, i ); in selectAllAccessibleChildren() local
968 if ( !getListBox()->IsSelected( pEntry ) ) in selectAllAccessibleChildren()
969 getListBox()->Select( pEntry, sal_True ); in selectAllAccessibleChildren()
988 SvLBoxEntry* pEntry = getListBox()->GetEntry( pParent, i ); in getSelectedAccessibleChildCount() local
989 if ( getListBox()->IsSelected( pEntry ) ) in getSelectedAccessibleChildCount()
1015 SvLBoxEntry* pEntry = getListBox()->GetEntry( pParent, i ); in getSelectedAccessibleChild() local
1016 if ( getListBox()->IsSelected( pEntry ) ) in getSelectedAccessibleChild()
1021 xChild = new AccessibleListBoxEntry( *getListBox(), pEntry, this ); in getSelectedAccessibleChild()
1037 SvLBoxEntry* pEntry = getListBox()->GetEntry( pParent, nSelectedChildIndex ); in deselectAccessibleChild() local
1038 if ( !pEntry ) in deselectAccessibleChild()
1041 getListBox()->Select( pEntry, sal_False ); in deselectAccessibleChild()
1179 SvLBoxEntry* pEntry = pBox->GetEntryFromPath( m_aEntryPath ); in setCurrentValue() local
1180 if ( pEntry ) in setCurrentValue()
1192 pBox->SetCheckButtonState(pEntry, (SvButtonState) nValue ); in setCurrentValue()
1246 SvLBoxEntry* pEntry =NULL; in GetRealChild() local
1250 pEntry = getListBox()->GetEntry( pParent, nIndex ); in GetRealChild()
1251 if ( !pEntry && getAccessibleChildCount() > 0 ) in GetRealChild()
1254 pEntry = getListBox()->GetEntry( pParent, nIndex ); in GetRealChild()
1257 return pEntry; in GetRealChild()