Lines Matching refs:m_pTabListBox

68 		m_pTabListBox	( &rBox )  in DBG_NAME()
73 m_pTabListBox->AddEventListener( LINK( this, AccessibleTabListBoxTable, WindowEventListener ) ); in DBG_NAME()
82 m_pTabListBox = NULL; in ~AccessibleTabListBoxTable()
99m_pTabListBox->RemoveEventListener( LINK( this, AccessibleTabListBoxTable, WindowEventListener ) ); in ProcessWindowEvent()
100 m_pTabListBox = NULL; in ProcessWindowEvent()
123 if ( m_pTabListBox && m_pTabListBox->HasFocus() ) in ProcessWindowEvent()
128 sal_Int32 nRow = m_pTabListBox->GetEntryPos( pEntry ); in ProcessWindowEvent()
129 sal_uInt16 nCol = m_pTabListBox->GetCurrColumn(); in ProcessWindowEvent()
131 m_pTabListBox->CreateAccessibleCell( nRow, nCol ); in ProcessWindowEvent()
134 if ( m_pTabListBox->IsTransientChildrenDisabled() ) in ProcessWindowEvent()
138 if ( m_pTabListBox->IsCellCheckBox( nRow, nCol, eState ) ) in ProcessWindowEvent()
180 sal_Int32 nRow = m_pTabListBox->GetEntryPos( pEntry ); in ProcessWindowEvent()
181 …Reference< XAccessible > xChild = m_pTabListBox->CreateAccessibleCell( nRow, m_pTabListBox->GetCur… in ProcessWindowEvent()
183 if ( m_pTabListBox->IsCellCheckBox( nRow, m_pTabListBox->GetCurrColumn(), eState ) ) in ProcessWindowEvent()
198 if ( m_pTabListBox && m_pTabListBox->HasFocus() ) in ProcessWindowEvent()
204 sal_Int32 nRow = m_pTabListBox->GetEntryPos( pEntry ); in ProcessWindowEvent()
205 m_xCurChild = m_pTabListBox->CreateAccessibleCell( nRow, m_pTabListBox->GetCurrColumn() ); in ProcessWindowEvent()
220 if ( m_pTabListBox && m_pTabListBox->HasFocus() ) in ProcessWindowEvent()
225 sal_Int32 nRow = m_pTabListBox->GetEntryPos( pEntry ); in ProcessWindowEvent()
226 sal_uInt16 nCol = m_pTabListBox->GetCurrColumn(); in ProcessWindowEvent()
228 if ( m_pTabListBox->IsCellCheckBox( nRow, nCol, eState ) ) in ProcessWindowEvent()
231 m_pTabListBox->CreateAccessibleCell( nRow, nCol ); in ProcessWindowEvent()
234 pCell->SetChecked( m_pTabListBox->IsItemChecked( pEntry, nCol ) ); in ProcessWindowEvent()
243 if ( m_pTabListBox->IsTransientChildrenDisabled() ) in ProcessWindowEvent()
250 sal_Int32 nRow = m_pTabListBox->GetEntryPos( pEntry ); in ProcessWindowEvent()
253 m_pTabListBox->CreateAccessibleCell( nRow, nCol ); in ProcessWindowEvent()
256 ::rtl::OUString sNewText( m_pTabListBox->GetCellText( nRow, nCol ) ); in ProcessWindowEvent()
260 if ( m_pTabListBox->IsCellCheckBox( nRow, nCol, eState ) ) in ProcessWindowEvent()
285 DBG_ASSERT( ( (VclWindowEvent*)pEvent )->GetWindow() && m_pTabListBox, "no event window" ); in IMPL_LINK()
301 … return m_pTabListBox ? m_pTabListBox->IsSelected( m_pTabListBox->GetEntry( _nRow ) ) : sal_False; in implIsRowSelected()
306 if ( m_pTabListBox ) in implSelectRow()
307 m_pTabListBox->Select( m_pTabListBox->GetEntry( _nRow ), _bSelect ); in implSelectRow()
312 return m_pTabListBox ? m_pTabListBox->GetEntryCount() : 0; in implGetRowCount()
317 return m_pTabListBox ? m_pTabListBox->GetColumnCount() : 0; in implGetColumnCount()
322 return m_pTabListBox ? m_pTabListBox->GetSelectionCount() : 0; in implGetSelRowCount()
327 if ( m_pTabListBox ) in implGetSelRow()
330 SvLBoxEntry* pEntry = m_pTabListBox->FirstSelected(); in implGetSelRow()
335 return m_pTabListBox->GetEntryPos( pEntry ); in implGetSelRow()
336 pEntry = m_pTabListBox->NextSelected( pEntry ); in implGetSelRow()
386 m_pTabListBox->SetNoSelection(); in clearAccessibleSelection()
396 m_pTabListBox->SelectAll(); in selectAllAccessibleChildren()