Lines Matching refs:getListBox

79 	SvTreeListBox* AccessibleListBox::getListBox() const  in IMPLEMENT_FORWARD_XINTERFACE2()
92 if ( !getListBox() || !getListBox()->HasFocus() ) in ProcessWindowEvent()
104 if ( getListBox()->GetCheckButtonState( pCurOpEntry->GetSvLBoxEntry() ) == SV_BUTTON_CHECKED ) in ProcessWindowEvent()
126 if ( getListBox() && getListBox()->HasFocus() ) in ProcessWindowEvent()
138 SvTreeListBox* pBox = getListBox(); in ProcessWindowEvent()
180 … AccessibleListBoxEntry *pEntNew = new AccessibleListBoxEntry( *getListBox(), pEntry, NULL ); in ProcessWindowEvent()
230 new AccessibleListBoxEntry( *getListBox(), pEntry, this ); in ProcessWindowEvent()
239 if ( getListBox() && getListBox()->HasFocus() ) in ProcessWindowEvent()
257 pEntry = getListBox()->GetCurEntry(); in GetCurEventEntry()
270 pAccCurOptionEntry =new AccessibleListBoxEntry( *getListBox(), pEntry, NULL ); in GetCurEventEntry()
301 SvTreeListBox* pBox = getListBox(); in RemoveChildEntries()
396 SvTreeListBox* pSvTreeListBox = getListBox(); in getAccessibleChildCount()
408 SvLBoxEntry* pEntry = getListBox()->GetEntry(i); in getAccessibleChild()
414 return new AccessibleListBoxEntry( *getListBox(), pEntry, NULL ); in getAccessibleChild()
428 SvLBoxEntry* pEntry = getListBox()->GetEntry(0); in getRoleType()
431 if( pEntry->HasChildsOnDemand() || getListBox()->GetChildCount(pEntry) > 0 ) in getRoleType()
438 sal_Bool bHasButtons = (getListBox()->GetStyle() & WB_HASBUTTONS)!=0; in getRoleType()
439 if( !(getListBox()->GetTreeFlags() & TREEFLAG_CHKBTN) ) in getRoleType()
455 if(getListBox()) in getAccessibleRole()
457 short nType = getListBox()->GetAllEntriesAccessibleRoleType(); in getAccessibleRole()
465 sal_Bool bHasButtons = (getListBox()->GetStyle() & WB_HASBUTTONS)!=0; in getAccessibleRole()
466 if(!bHasButtons && (getListBox()->GetTreeFlags() & TREEFLAG_CHKBTN)) in getAccessibleRole()
480 return getListBox()->GetAccessibleDescription(); in getAccessibleDescription()
488 return getListBox()->GetAccessibleName(); in getAccessibleName()
499 SvLBoxEntry* pEntry = getListBox()->GetEntry( nChildIndex ); in selectAccessibleChild()
503 getListBox()->Select( pEntry, sal_True ); in selectAccessibleChild()
512 SvLBoxEntry* pEntry = getListBox()->GetEntry( nChildIndex ); in isAccessibleChildSelected()
516 return getListBox()->IsSelected( pEntry ); in isAccessibleChildSelected()
526 nCount = getListBox()->GetLevelChildCount( NULL ); in clearAccessibleSelection()
529 SvLBoxEntry* pEntry = getListBox()->GetEntry( i ); in clearAccessibleSelection()
530 if ( getListBox()->IsSelected( pEntry ) ) in clearAccessibleSelection()
531 getListBox()->Select( pEntry, sal_False ); in clearAccessibleSelection()
542 nCount = getListBox()->GetLevelChildCount( NULL ); in selectAllAccessibleChildren()
545 SvLBoxEntry* pEntry = getListBox()->GetEntry( i ); in selectAllAccessibleChildren()
546 if ( !getListBox()->IsSelected( pEntry ) ) in selectAllAccessibleChildren()
547 getListBox()->Select( pEntry, sal_True ); in selectAllAccessibleChildren()
568 int nTestCount = getListBox()->GetSelectionCount(); in getSelectedAccessibleChildCount()
583 nCount = getListBox()->GetLevelChildCount( NULL ); in getSelectedAccessibleChild()
586 SvLBoxEntry* pEntry = getListBox()->GetEntry( i ); in getSelectedAccessibleChild()
587 if ( getListBox()->IsSelected( pEntry ) ) in getSelectedAccessibleChild()
594 xChild = new AccessibleListBoxEntry( *getListBox(), pEntry, NULL ); in getSelectedAccessibleChild()
608 SvLBoxEntry* pEntry = getListBox()->GetEntry( nSelectedChildIndex ); in deselectAccessibleChild()
612 getListBox()->Select( pEntry, sal_False ); in deselectAccessibleChild()
618 if ( getListBox() && isAlive() ) in FillAccessibleStateSet()
622 if ( getListBox()->GetSelectionMode() == MULTIPLE_SELECTION ) in FillAccessibleStateSet()