/trunk/main/svtools/inc/svtools/ |
H A D | svtabbx.hxx | 178 sal_Bool IsCellCheckBox( long _nRow, sal_uInt16 _nColumn, TriState& _rState ); 195 virtual ::rtl::OUString GetColumnDescription( sal_uInt16 _nColumn ) const; 201 virtual sal_Bool GoToCell( sal_Int32 _nRow, sal_uInt16 _nColumn ); 208 virtual void SelectColumn( sal_uInt16 _nColumn, sal_Bool _bSelect = sal_True ); 213 virtual sal_Bool IsColumnSelected( long _nColumn ) const; 218 virtual sal_Bool IsCellVisible( sal_Int32 _nRow, sal_uInt16 _nColumn ) const; 223 …virtual Rectangle GetFieldRectPixelAbs( sal_Int32 _nRow, sal_uInt16 _nColumn, sal_Bool _bIsHead… 225 virtual XACC CreateAccessibleCell( sal_Int32 _nRow, sal_uInt16 _nColumn ); 243 …ForCell( ::utl::AccessibleStateSetHelper& _rStateSet, sal_Int32 _nRow, sal_uInt16 _nColumn ) const;
|
H A D | brwbox.hxx | 814 virtual ::rtl::OUString GetColumnDescription( sal_uInt16 _nColumn ) const; 826 sal_Int32 _nRow, sal_uInt16 _nColumn ) const; 836 virtual sal_Bool GoToCell( sal_Int32 _nRow, sal_uInt16 _nColumn ); 837 virtual void SelectColumn( sal_uInt16 _nColumn, sal_Bool _bSelect = sal_True ); 838 virtual sal_Bool IsColumnSelected( long _nColumn ) const; 843 virtual sal_Bool IsCellVisible( sal_Int32 _nRow, sal_uInt16 _nColumn ) const;
|
/trunk/main/svtools/source/brwbox/ |
H A D | brwbox3.cxx | 323 OUString BrowseBox::GetColumnDescription( sal_uInt16 _nColumn ) const in GetColumnDescription() 325 return OUString( GetColumnTitle( GetColumnId( _nColumn ) ) ); in GetColumnDescription() 470 sal_Bool BrowseBox::GoToCell( sal_Int32 _nRow, sal_uInt16 _nColumn ) in GoToCell() argument 472 return GoToRowColumnId( _nRow, GetColumnId( _nColumn ) ); in GoToCell() 475 void BrowseBox::SelectColumn( sal_uInt16 _nColumn, sal_Bool _bSelect ) in SelectColumn() argument 477 SelectColumnPos( _nColumn, _bSelect ); in SelectColumn() 480 sal_Bool BrowseBox::IsColumnSelected( long _nColumn ) const in IsColumnSelected() 482 return ( pColSel && (0 <= _nColumn) && (_nColumn <= 0xFFF) ) ? in IsColumnSelected() 483 pColSel->IsSelected( static_cast< sal_uInt16 >( _nColumn ) ) : in IsColumnSelected()
|
/trunk/main/svtools/source/contnr/ |
H A D | svtabbx.cxx | 765 if ( nItemCount > ( _nColumn + 1 ) ) in IsCellCheckBox() 767 SvLBoxButton* pItem = (SvLBoxButton*)( pEntry->GetItem( _nColumn + 1 ) ); in IsCellCheckBox() 825 ::rtl::OUString SvHeaderTabListBox::GetColumnDescription( sal_uInt16 _nColumn ) const in GetColumnDescription() 840 sal_Bool SvHeaderTabListBox::GoToCell( sal_Int32 _nRow, sal_uInt16 _nColumn ) in GoToCell() argument 848 bRet = ( SetCurrentTabPos( _nColumn ) == true ); in GoToCell() 951 DBG_ASSERT( m_pImpl->m_pHeaderBar->GetItemCount() > _nColumn, "invalid column" ); in GetFieldRectPixelAbs() 1014 Reference< XAccessible > SvHeaderTabListBox::CreateAccessibleColumnHeader( sal_uInt16 _nColumn ) in CreateAccessibleColumnHeader() argument 1026 Reference< XAccessible > xChild = m_aAccessibleChildren[ _nColumn ]; in CreateAccessibleColumnHeader() 1032 _nColumn, m_pAccessible->getHeaderBar( ::svt::BBTYPE_COLUMNHEADERBAR ), in CreateAccessibleColumnHeader() 1037 m_aAccessibleChildren[ _nColumn ] = xChild; in CreateAccessibleColumnHeader() [all …]
|
/trunk/main/svtools/source/table/ |
H A D | tablecontrol_impl.cxx | 1957 …void TableControl_Impl::impl_getCellRect( ColPos _nColumn, RowPos _nRow, Rectangle& _rCellRect ) c… in impl_getCellRect() argument 1962 || ( COL_INVALID == _nColumn ) in impl_getCellRect() 1970 TableCellGeometry aCell( *this, impl_getAllVisibleCellsArea(), _nColumn, _nRow ); in impl_getCellRect() 2252 bool TableControl_Impl::goTo( ColPos _nColumn, RowPos _nRow ) in goTo() argument 2258 if ( ( _nColumn < 0 ) || ( _nColumn >= m_nColumnCount ) in goTo() 2267 m_nCurColumn = _nColumn; in goTo() 2279 DBG_ASSERT( ( _nColumn >= 0 ) && ( _nColumn < m_nColumnCount ) in ensureVisible() 2285 if ( _nColumn < m_nLeftColumn ) in ensureVisible() 2286 impl_scrollColumns( _nColumn - m_nLeftColumn ); in ensureVisible() 2290 if ( _nColumn > m_nLeftColumn + nVisibleColumns - 1 ) in ensureVisible() [all …]
|
H A D | tablecontrol.cxx | 204 bool TableControl::GoTo( ColPos _nColumn, RowPos _nRow ) in GoTo() argument 206 return m_pImpl->goTo( _nColumn, _nRow ); in GoTo() 414 ::rtl::OUString TableControl::GetColumnDescription( sal_uInt16 _nColumn) const in GetColumnDescription() 416 (void)_nColumn; in GetColumnDescription()
|
H A D | tablecontrol_impl.hxx | 205 bool goTo( ColPos _nColumn, RowPos _nRow ); 217 void ensureVisible( ColPos _nColumn, RowPos _nRow, bool _bAcceptPartialVisibility ); 376 void impl_getCellRect( ColPos _nColumn, RowPos _nRow, Rectangle& _rCellRect ) const;
|
/trunk/main/wizards/com/sun/star/wizards/report/ |
H A D | DBColumn.java | 120 private boolean assignCells(int _nColumn, boolean _bforce) in assignCells() argument 124 XCell xCell = CurRecordTable.xCellRange.getCellByPosition(_nColumn, 0); in assignCells() 132 xValCell = CurRecordTable.xCellRange.getCellByPosition(_nColumn, 1); in assignCells() 135 ValColumn = _nColumn; in assignCells()
|
/trunk/main/accessibility/inc/accessibility/extended/ |
H A D | accessibletablistboxtable.hxx | 78 …32 implGetIndex( sal_Int32 _nRow, sal_Int32 _nColumn ) const { return _nRow * implGetColumnCount()… in implGetIndex()
|
/trunk/main/svtools/inc/svtools/table/ |
H A D | tablecontrol.hxx | 128 inline bool GoToColumn( ColPos _nColumn ) in GoToColumn() argument 130 return GoTo( _nColumn, GetCurrentRow() ); in GoToColumn()
|
/trunk/main/accessibility/source/extended/ |
H A D | AccessibleBrowseBoxTableCell.cxx | 44 sal_Int32 getIndex_Impl( sal_Int32 _nRow, sal_uInt16 _nColumn, sal_uInt16 _nColumnCount ) in getIndex_Impl() argument 46 return _nRow * _nColumnCount + _nColumn; in getIndex_Impl()
|
H A D | AccessibleGridControlTableCell.cxx | 44 sal_Int32 getIndex_Impl( sal_Int32 _nRow, sal_uInt16 _nColumn, sal_uInt16 _nColumnCount ) in getIndex_Impl() argument 46 return _nRow * _nColumnCount + _nColumn; in getIndex_Impl()
|