Lines Matching defs:BRow

170 class BRowContainer : public BObjectList<BRow>
275 void AddRow(BRow*, int32 index, BRow* TheRow);
276 BRow* CurrentSelection(BRow* lastSelected) const;
282 void ExpandOrCollapse(BRow* parent, bool expand);
283 void RemoveRow(BRow*);
285 void UpdateRow(BRow*);
286 bool FindParent(BRow* row, BRow** _parent,
288 int32 IndexOf(BRow* row);
289 void Deselect(BRow*);
290 void AddToSelection(BRow*);
292 BRow* FocusRow() const;
293 void SetFocusRow(BRow* row, bool select);
294 BRow* FindRow(float ypos, int32* _indent,
296 bool FindRect(const BRow* row, BRect* _rect);
297 void ScrollTo(const BRow* row);
323 void SelectRange(BRow* start, BRow* end);
324 int32 CompareRows(BRow* row1, BRow* row2);
325 void AddSorted(BRowContainer* list, BRow* row);
329 bool FindVisibleRect(BRow* row, BRect* _rect);
341 BRow* fFocusRow;
343 BRow* fRollOverRow;
345 BRow fSelectionListDummyHead;
346 BRow* fLastSelectedItem;
347 BRow* fFirstSelectedItem;
367 BRow* fCurrentRow;
378 BRow* fTargetRow;
393 BRow* CurrentRow() const;
526 BColumn::MouseMoved(BColumnListView* /*parent*/, BRow* /*row*/,
534 BColumn::MouseDown(BColumnListView* /*parent*/, BRow* /*row*/,
542 BColumn::MouseUp(BColumnListView* /*parent*/, BRow* /*row*/, BField* /*field*/)
550 BRow::BRow()
564 BRow::BRow(float height)
577 BRow::~BRow()
590 BRow::HasLatch() const
597 BRow::CountFields() const
604 BRow::GetField(int32 index)
611 BRow::GetField(int32 index) const
618 BRow::SetField(BField* field, int32 logicalFieldIndex)
633 BRow::Height() const
640 BRow::IsExpanded() const
647 BRow::IsSelected() const
654 BRow::Invalidate()
662 BRow::ValidateFields() const
670 BRow::ValidateField(const BField* field, int32 logicalFieldIndex) const
909 BColumnListView::ExpandOrCollapse(BRow* row, bool Open)
953 BRow*
968 BColumnListView::SetFocusRow(BRow* row, bool Select)
989 BColumnListView::Deselect(BRow* row)
996 BColumnListView::AddToSelection(BRow* row)
1009 BRow*
1010 BColumnListView::CurrentSelection(BRow* lastSelected) const
1294 const BRow*
1295 BColumnListView::RowAt(int32 Index, BRow* parentRow) const
1304 BRow*
1305 BColumnListView::RowAt(int32 Index, BRow* parentRow)
1314 const BRow*
1323 BRow*
1333 BColumnListView::GetRowRect(const BRow* row, BRect* outRect) const
1340 BColumnListView::FindParent(BRow* row, BRow** _parent, bool* _isVisible) const
1347 BColumnListView::IndexOf(BRow* row)
1354 BColumnListView::CountRows(BRow* parentRow) const
1366 BColumnListView::AddRow(BRow* row, BRow* parentRow)
1373 BColumnListView::AddRow(BRow* row, int32 index, BRow* parentRow)
1383 BColumnListView::RemoveRow(BRow* row)
1391 BColumnListView::UpdateRow(BRow* row)
1398 BColumnListView::SwapRows(int32 index1, int32 index2, BRow* parentRow1,
1399 BRow* parentRow2)
1401 BRow* row1 = NULL;
1402 BRow* row2 = NULL;
1452 BColumnListView::ScrollTo(const BRow* row)
1473 BColumnListView::InvalidateRow(BRow* row)
1632 BColumnListView::SuggestTextPosition(const BRow* row,
1646 BColumnListView::GetFieldRect(const BRow* row, const BColumn* inColumn) const
1686 BColumnListView::DrawLatch(BView* view, BRect rect, LatchType position, BRow*)
1832 BRow* focusRow = fOutlineView->FocusRow();
3271 OutlineView::Deselect(BRow* row)
3287 OutlineView::AddToSelection(BRow* row)
3315 BRow* row = list->RemoveItemAt(0L);
3346 BRow* row = iterator.CurrentRow();
3492 BRow* row = iterator.CurrentRow();
3656 BRow*
3664 BRow* row = iterator.CurrentRow();
3711 BRow* row = FindRow(position.y, &indent, &rowTop);
3717 BRow* new_row = 0;
3870 BRow* new_row = 0;
3876 BRow* row = FindRow(position.y, &indent, &top);
4004 BRow* target = FindRow(position.y, &indent, &top);
4019 BRow* target = FindRow(position.y, &indent, &top);
4148 BRow* newRow = FindRow(newRowPos, &indent, &top);
4154 BRow* oldFocusRow = fFocusRow;
4226 BRow*
4227 OutlineView::CurrentSelection(BRow* lastSelected) const
4229 BRow* row;
4285 OutlineView::ExpandOrCollapse(BRow* parentRow, bool expand)
4334 OutlineView::RemoveRow(BRow* row)
4339 BRow* parentRow = NULL;
4423 OutlineView::UpdateRow(BRow* row)
4427 BRow* parentRow = NULL;
4461 OutlineView::AddRow(BRow* row, int32 Index, BRow* parentRow)
4601 OutlineView::AddSorted(BRowContainer* list, BRow* row)
4632 OutlineView::CompareRows(BRow* row1, BRow* row2)
4692 OutlineView::FindVisibleRect(BRow* row, BRect* _rect)
4713 OutlineView::FindRect(const BRow* row, BRect* _rect)
4732 OutlineView::ScrollTo(const BRow* row)
4755 BRow* row = iterator.CurrentRow();
4767 BRow* row = fSelectionListDummyHead.fNextSelected;
4776 BRow*
4784 OutlineView::SetFocusRow(BRow* row, bool Select)
4811 BRow** items
4812 = (BRow**) BObjectList<BRow>::Private(list).AsBList()->Items();
4820 BRow* temp = items[step];
4898 BRow* parentRow = currentEntry->list->ItemAt(index);
4962 OutlineView::SelectRange(BRow* start, BRow* end)
4974 BRow* temp = start;
4985 BRow* row = iterator.CurrentRow();
5007 OutlineView::FindParent(BRow* row, BRow** outParent, bool* outParentIsVisible)
5016 for (BRow* currentRow = row->fParent; currentRow != NULL;
5033 OutlineView::IndexOf(BRow* row)
5059 for (RecursiveOutlineIterator iterator(&fRows); BRow* row =
5102 BRow*
5122 BRow* currentRow = fCurrentList->ItemAt(fCurrentListIndex);