Home
last modified time | relevance | path

Searched refs:RowPos (Results 1 – 17 of 17) sorted by relevance

/aoo4110/main/svtools/source/table/
H A Dtablecontrol_impl.hxx125 RowPos m_nCurRow;
127 RowPos m_nTopRow;
146 std::vector<RowPos> m_aSelectedRows;
150 RowPos m_nAnchor;
224 int getRowSelectedNumber(const ::std::vector<RowPos>& selectedRows, RowPos current);
227 void invalidateSelectedRegion( RowPos _nPrevRow, RowPos _nCurRow );
236 void invalidateRowRange( RowPos const i_firstRow, RowPos const i_lastRow );
328 virtual void rowsInserted( RowPos first, RowPos last );
329 virtual void rowsRemoved( RowPos first, RowPos last );
333 … cellsUpdated( ColPos const i_firstCol, ColPos i_lastCol, RowPos const i_firstRow, RowPos const…
[all …]
H A Dtablecontrol_impl.cxx538 void TableControl_Impl::rowsInserted( RowPos i_first, RowPos i_last ) in rowsInserted()
576 void TableControl_Impl::rowsRemoved( RowPos i_first, RowPos i_last ) in rowsRemoved()
1668 RowPos nNewRow = ::std::max( (RowPos)0, m_nCurRow - impl_getVisibleRows( false ) ); in dispatchAction()
1885 RowPos iter = m_nCurRow; in dispatchAction()
1911 RowPos iter = m_nCurRow; in dispatchAction()
2116 void TableControl_Impl::invalidateSelectedRegion( RowPos _nPrevRow, RowPos _nCurRow ) in invalidateSelectedRegion()
2167 void TableControl_Impl::invalidateRowRange( RowPos const i_firstRow, RowPos const i_lastRow ) in invalidateRowRange()
2324 RowPos nNewTopRow = in impl_ni_ScrollRows()
2326 ::std::min( (RowPos)( m_nTopRow + _nRowDelta ), (RowPos)( m_nRowCount - 1 ) ), in impl_ni_ScrollRows()
2327 (RowPos)0 in impl_ni_ScrollRows()
[all …]
H A Dtablegeometry.hxx74 RowPos m_nRowPos;
81 RowPos const _nRow,
87 RowPos getRow() const { return m_nRowPos; } in getRow()
93 bool impl_isValidRow( RowPos const i_row ) const;
139 RowPos const _nRow, in TableCellGeometry()
157 inline RowPos getRow() const { return m_aRow.getRow(); } in getRow()
H A Dgridtablerenderer.cxx122 RowPos nCurrentRow;
204 RowPos GridTableRenderer::getCurrentRow() const in getCurrentRow()
333 void GridTableRenderer::PrepareRow( RowPos _nRow, bool i_hasControlFocus, bool _bSelected, in PrepareRow()
590 …bool GridTableRenderer::FitsIntoCell( Any const & i_cellContent, ColPos const i_colPos, RowPos con… in FitsIntoCell()
633 …:GetFormattedCellString( Any const & i_cellValue, ColPos const i_colPos, RowPos const i_rowPos, ::… in GetFormattedCellString()
H A Dtablecontrol.cxx179 RowPos TableControl::GetTopRow() const in GetTopRow()
185 void TableControl::SetTopRow( RowPos _nRow ) in SetTopRow()
204 bool TableControl::GoTo( ColPos _nColumn, RowPos _nRow ) in GoTo()
234 void TableControl::SelectRow( RowPos const i_rowIndex, bool const i_select ) in SelectRow()
H A Dtablegeometry.cxx42 RowPos const _nRow, bool const i_allowVirtualRows ) in TableRowGeometry()
71 bool TableRowGeometry::impl_isValidRow( RowPos const i_row ) const in impl_isValidRow()
H A Dtabledatawindow.cxx107 RowPos const hitRow = m_rTableControl.getRowAtPoint( aMousePos ); in RequestHelp()
197 RowPos const hitRow = m_rTableControl.getRowAtPoint( aPoint ); in MouseButtonDown()
/aoo4110/main/svtools/inc/svtools/table/
H A Dtablemodel.hxx98 virtual void rowsInserted( RowPos first, RowPos last ) = 0;
110 virtual void rowsRemoved( RowPos first, RowPos last ) = 0;
142 … cellsUpdated( ColPos const i_firstCol, ColPos i_lastCol, RowPos const i_firstRow, RowPos const…
359 virtual bool isCellEditable( ColPos col, RowPos row ) const = 0;
431 …virtual void getCellContent( ColPos const i_col, RowPos const i_row, ::com::sun::star::uno::Any& o…
448 …virtual void getCellToolTip( ColPos const i_col, RowPos const i_row, ::com::sun::star::uno::Any & …
452 virtual ::com::sun::star::uno::Any getRowHeading( RowPos const i_rowPos ) const = 0;
H A Dtablecontrolinterface.hxx100 RowPos nRow;
110 TableCell( ColPos const i_column, RowPos const i_row ) in TableCell()
206 virtual RowPos getCurrentRow() const = 0;
209 virtual bool activateCell( ColPos const i_col, RowPos const i_row ) = 0;
242 virtual bool isRowSelected( RowPos _nRow ) const = 0;
H A Dgridtablerenderer.hxx71 RowPos getCurrentRow() const;
90 virtual void PrepareRow( RowPos _nRow, bool i_hasControlFocus, bool _bSelected,
105 ColPos const i_colPos, RowPos const i_rowPos,
111 ColPos const i_colPos, RowPos const i_rowPos,
H A Dtablecontrol.hxx81 RowPos GetTopRow() const;
83 void SetTopRow( RowPos _nRow );
118 bool GoTo( ColPos _nColumnPos, RowPos _nRow);
141 bool GoToRow( RowPos _nRow ) in GoToRow()
H A Dtabletypes.hxx39 typedef sal_Int32 RowPos; typedef
54 #define ROW_COL_HEADERS ((::svt::table::RowPos)-1)
59 #define ROW_INVALID ((::svt::table::RowPos)-2)
H A Dtablerenderer.hxx146 virtual void PrepareRow( RowPos _nRow, bool i_hasControlFocus, bool _bSelected,
254 ColPos const i_colPos, RowPos const i_rowPos,
274 ColPos const i_colPos, RowPos const i_rowPos,
/aoo4110/main/svtools/source/uno/
H A Dunocontroltablemodel.hxx71 virtual bool isCellEditable( ColPos col, RowPos row ) const;
82 …virtual void getCellContent( ColPos const i_col, RowPos const i_row, ::…
83 …virtual void getCellToolTip( ColPos const i_col, RowPos const i_row, ::…
84 virtual ::com::sun::star::uno::Any getRowHeading( RowPos const i_rowPos ) const;
H A Dunocontroltablemodel.cxx246 bool UnoControlTableModel::isCellEditable( ColPos col, RowPos row ) const in isCellEditable()
529 …void UnoControlTableModel::getCellContent( ColPos const i_col, RowPos const i_row, Any& o_cellCont… in getCellContent()
569 …void UnoControlTableModel::getCellToolTip( ColPos const i_col, RowPos const i_row, Any& o_cellTool… in getCellToolTip()
586 Any UnoControlTableModel::getRowHeading( RowPos const i_rowPos ) const in getRowHeading()
942 RowPos const firstRow = i_event.FirstRow == -1 ? 0 : i_event.FirstRow; in notifyDataChanged()
943 RowPos const lastRow = i_event.FirstRow == -1 ? getRowCount() - 1 : i_event.LastRow; in notifyDataChanged()
/aoo4110/main/svtools/inc/svtools/
H A Daccessibletable.hxx36 typedef sal_Int32 RowPos; typedef
/aoo4110/main/automation/source/server/
H A Dstatemnt.cxx6251 … if ( pTC->GoToRow( ::svt::table::RowPos( nNr1-1 ) ) ) in Execute()
6257 ::svt::table::RowPos nLastPos; in Execute()

Completed in 107 milliseconds