Lines Matching refs:rowIndex

16 	TableField(int32 rowIndex)
18 fRowIndex(rowIndex)
27 void SetRowIndex(int32 rowIndex)
29 fRowIndex = rowIndex;
46 TableModelListener::TableRowsAdded(TableModel* model, int32 rowIndex,
53 TableModelListener::TableRowsRemoved(TableModel* model, int32 rowIndex,
60 TableModelListener::TableRowsChanged(TableModel* model, int32 rowIndex,
95 TableModel::NotifyRowsAdded(int32 rowIndex, int32 count)
100 listener->TableRowsAdded(this, rowIndex, count);
106 TableModel::NotifyRowsRemoved(int32 rowIndex, int32 count)
111 listener->TableRowsRemoved(this, rowIndex, count);
117 TableModel::NotifyRowsChanged(int32 rowIndex, int32 count)
122 listener->TableRowsChanged(this, rowIndex, count);
237 TableListener::TableRowInvoked(Table* table, int32 rowIndex)
243 TableListener::TableCellMouseDown(Table* table, int32 rowIndex,
250 TableListener::TableCellMouseUp(Table* table, int32 rowIndex, int32 columnIndex,
454 Table::SelectRow(int32 rowIndex, bool extendSelection)
456 BRow* row = fRows.ItemAt(rowIndex);
471 Table::DeselectRow(int32 rowIndex)
473 if (BRow* row = fRows.ItemAt(rowIndex))
500 Table::GetCellRectAt(int32 rowIndex, int32 colIndex, BRect& _output) const
502 BRow* row = fRows.ItemAt(rowIndex);
524 int32 rowIndex = row != NULL ? _ModelIndexOfRow(row) : -1;
525 if (rowIndex < 0)
532 return fToolTipProvider->GetToolTipForTableCell(rowIndex, columnIndex,
566 int32 rowIndex = _ModelIndexOfRow(row);
568 if (rowIndex < 0 || columnIndex < 0)
574 fListeners.ItemAt(i)->TableCellMouseDown(this, rowIndex,
587 int32 rowIndex = _ModelIndexOfRow(row);
589 if (rowIndex < 0 || columnIndex < 0)
595 fListeners.ItemAt(i)->TableCellMouseUp(this, rowIndex, columnIndex,
603 Table::TableRowsAdded(TableModel* model, int32 rowIndex, int32 count)
606 int32 endRow = rowIndex + count;
609 for (int32 i = rowIndex; i < endRow; i++) {
648 Table::TableRowsRemoved(TableModel* model, int32 rowIndex, int32 count)
650 if (rowIndex == 0 && count == fRows.CountItems()) {
656 for (int32 i = rowIndex + count - 1; i >= rowIndex; i--) {
664 _UpdateRowIndices(rowIndex);
669 Table::TableRowsChanged(TableModel* model, int32 rowIndex, int32 count)
671 int32 endIndex = rowIndex + count;
672 for (int32 i = rowIndex; i < endIndex; i++) {