Lines Matching refs:pEntry

128 …					AccessibleListBoxEntry* pEntry =static_cast< AccessibleListBoxEntry* >(m_xFocusedChild.get());  in ProcessWindowEvent()  local
129 if (pEntry) in ProcessWindowEvent()
131 pEntry->NotifyAccessibleEvent( AccessibleEventId::SELECTION_CHANGED, Any(), Any() ); in ProcessWindowEvent()
158 SvLBoxEntry* pEntry = static_cast< SvLBoxEntry* >( rVclWindowEvent.GetData() ); in ProcessWindowEvent() local
159 if ( pEntry ) in ProcessWindowEvent()
162 if (pEntryFocus && pEntryFocus->GetSvLBoxEntry() == pEntry) in ProcessWindowEvent()
172 MAP_ENTRY::iterator mi = m_mapEntry.find(pEntry); in ProcessWindowEvent()
180 … AccessibleListBoxEntry *pEntNew = new AccessibleListBoxEntry( *getListBox(), pEntry, NULL ); in ProcessWindowEvent()
182 m_mapEntry.insert(MAP_ENTRY::value_type(pEntry,pEntNew)); in ProcessWindowEvent()
199 SvLBoxEntry* pEntry = static_cast< SvLBoxEntry* >( rVclWindowEvent.GetData() ); in ProcessWindowEvent() local
200 if ( pEntry ) in ProcessWindowEvent()
202 RemoveChildEntries(pEntry); in ProcessWindowEvent()
226 SvLBoxEntry* pEntry = static_cast< SvLBoxEntry* >( rVclWindowEvent.GetData() ); in ProcessWindowEvent() local
227 if ( pEntry ) in ProcessWindowEvent()
230 new AccessibleListBoxEntry( *getListBox(), pEntry, this ); in ProcessWindowEvent()
255 SvLBoxEntry* pEntry = static_cast< SvLBoxEntry* >( rVclWindowEvent.GetData() ); in GetCurEventEntry() local
256 if ( !pEntry ) in GetCurEventEntry()
257 pEntry = getListBox()->GetCurEntry(); in GetCurEventEntry()
260 if (pEntryFocus && pEntry && pEntry != pEntryFocus->GetSvLBoxEntry()) in GetCurEventEntry()
263 MAP_ENTRY::iterator mi = m_mapEntry.find(pEntry); in GetCurEventEntry()
270 pAccCurOptionEntry =new AccessibleListBoxEntry( *getListBox(), pEntry, NULL ); in GetCurEventEntry()
288 void AccessibleListBox::RemoveChildEntries(SvLBoxEntry* pEntry) in RemoveChildEntries() argument
290 MAP_ENTRY::iterator mi = m_mapEntry.find(pEntry); in RemoveChildEntries()
302 SvLBoxEntry* pEntryChild = pBox->FirstChild(pEntry); in RemoveChildEntries()
408 SvLBoxEntry* pEntry = getListBox()->GetEntry(i); in getAccessibleChild() local
409 if ( !pEntry ) in getAccessibleChild()
414 return new AccessibleListBoxEntry( *getListBox(), pEntry, NULL ); in getAccessibleChild()
428 SvLBoxEntry* pEntry = getListBox()->GetEntry(0); in getRoleType() local
429 if ( pEntry ) in getRoleType()
431 if( pEntry->HasChildsOnDemand() || getListBox()->GetChildCount(pEntry) > 0 ) in getRoleType()
499 SvLBoxEntry* pEntry = getListBox()->GetEntry( nChildIndex ); in selectAccessibleChild() local
500 if ( !pEntry ) in selectAccessibleChild()
503 getListBox()->Select( pEntry, sal_True ); in selectAccessibleChild()
512 SvLBoxEntry* pEntry = getListBox()->GetEntry( nChildIndex ); in isAccessibleChildSelected() local
513 if ( !pEntry ) in isAccessibleChildSelected()
516 return getListBox()->IsSelected( pEntry ); in isAccessibleChildSelected()
529 SvLBoxEntry* pEntry = getListBox()->GetEntry( i ); in clearAccessibleSelection() local
530 if ( getListBox()->IsSelected( pEntry ) ) in clearAccessibleSelection()
531 getListBox()->Select( pEntry, sal_False ); in clearAccessibleSelection()
545 SvLBoxEntry* pEntry = getListBox()->GetEntry( i ); in selectAllAccessibleChildren() local
546 if ( !getListBox()->IsSelected( pEntry ) ) in selectAllAccessibleChildren()
547 getListBox()->Select( pEntry, sal_True ); in selectAllAccessibleChildren()
586 SvLBoxEntry* pEntry = getListBox()->GetEntry( i ); in getSelectedAccessibleChild() local
587 if ( getListBox()->IsSelected( pEntry ) ) in getSelectedAccessibleChild()
594 xChild = new AccessibleListBoxEntry( *getListBox(), pEntry, NULL ); in getSelectedAccessibleChild()
608 SvLBoxEntry* pEntry = getListBox()->GetEntry( nSelectedChildIndex ); in deselectAccessibleChild() local
609 if ( !pEntry ) in deselectAccessibleChild()
612 getListBox()->Select( pEntry, sal_False ); in deselectAccessibleChild()