Lines Matching refs:i_event
888 void UnoControlTableModel::notifyRowsInserted( GridDataEvent const & i_event ) const in notifyRowsInserted()
891 …ENSURE_OR_RETURN_VOID( i_event.FirstRow >= 0, "UnoControlTableModel::notifyRowsInserted: invalid f… in notifyRowsInserted()
892 …ENSURE_OR_RETURN_VOID( i_event.LastRow >= i_event.FirstRow, "UnoControlTableModel::notifyRowsInser… in notifyRowsInserted()
920 (*loop)->rowsInserted( i_event.FirstRow, i_event.LastRow ); in notifyRowsInserted()
925 void UnoControlTableModel::notifyRowsRemoved( GridDataEvent const & i_event ) const in notifyRowsRemoved()
933 (*loop)->rowsRemoved( i_event.FirstRow, i_event.LastRow ); in notifyRowsRemoved()
938 …olTableModel::notifyDataChanged( ::com::sun::star::awt::grid::GridDataEvent const & i_event ) const in notifyDataChanged()
940 ColPos const firstCol = i_event.FirstColumn == -1 ? 0 : i_event.FirstColumn; in notifyDataChanged()
941 … ColPos const lastCol = i_event.FirstColumn == -1 ? getColumnCount() - 1 : i_event.LastColumn; in notifyDataChanged()
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()