Lines Matching defs:view

186 BSearch(PoseList* table, const BPose* key, BPoseView* view,
191 PoseCompareAddWidget(const BPose* p1, const BPose* p2, BPoseView* view);
496 // Always realign columns, since the title-view snaps on resize anyway.
562 // recover if desktop window view state set wrong
580 // recover if desktop window view state set wrong
699 // save view state into object
936 // update item count view in window if necessary
967 // keep the view state in sync
1120 BorderedView* view = dynamic_cast<BorderedView*>(Parent());
1121 if (view != NULL)
1122 view->PoseViewFocused(focused);
1398 BPoseView* view = dynamic_cast<BPoseView*>(lock.Handler());
1399 ThrowOnAssert(view != NULL);
1408 EntryListBase* container = view->InitDirentIterator(&ref);
1410 view->HideBarberPole();
1418 uint32 watchMask = view->WatchNewNodeMask();
1465 // before we access the pose view, lock down the window
1473 if (!view->IsValidAddPosesThread(threadID)) {
1477 // for this view - if not then we're done
1478 view->HideBarberPole();
1480 view->ReturnDirentIterator(container);
1496 view->fZombieList->AddItem(model);
1501 view->ReadPoseInfo(model,
1511 view->CreateSymlinkPoseTarget(model);
1566 view->ReturnDirentIterator(container);
1567 view->fAddPosesThreads.erase(threadID);
1681 // above the top of the view (leaving you with an empty window)
1819 // the current view bounds, we do not need to draw.
1834 // the extent into the view for the first time:
1854 // the viewBounds top, it means the view is scrolled
1860 // if new pose above current view bounds, cache up
1878 // This is probably the bottom of the view or just
1879 // got scrolled into view.
1912 // were we passed the bounds of the view?
3082 // Try to lock the center of the pose view when scaling icons, but not
3102 // toggle view layout between listmode and non-listmode, if necessary
3130 // check if we need to re-place poses when they are out of view
3149 // it is going out of view for example
3153 // The pose location is still changed in view coordinates,
3534 // scroll icons into view so that leftmost icon is "fOffset" from left
3642 // on the desktop, don't allow icons outside of the view bounds
4108 // icon view modes without the need for an index/pos
4496 BPose* targetPose, BView* view, BPoint dropPoint)
4501 BPoseView* poseView = dynamic_cast<BPoseView*>(view);
4515 // the targetDirectory to it, else set it to this pose view
4583 view->ConvertToScreen(dropPoint));
4591 view->ConvertToScreen(dropPoint));
5042 // can't move in list view
5853 BView* view = Window()->FindView("MenuBar");
5854 if (view != NULL) {
5855 view = view->FindView("ThisContainer");
5856 if (view != NULL) {
5858 view->Invalidate();
6127 // next, if in list view mode try selecting the next item after
6349 // next, if in list view mode try selecting the next item after
6392 // next, if in list view mode try selecting the next item after
6669 // scroll to the top of the view
6678 // scroll to the bottom of the view
7264 // we now need to update the pose view's selection list by clearing it
7696 BView* view = new BView(bitmap->Bounds(), "", B_FOLLOW_NONE, 0);
7697 bitmap->AddChild(view);
7699 view->SetOrigin(0, 0);
7701 BRect clipRect(view->Bounds());
7704 view->ConstrainClippingRegion(&newClip);
7708 view->SetDrawingMode(B_OP_ALPHA);
7709 view->SetHighColor(0, 0, 0, uint8(fade ? 164 : 128));
7711 view->SetBlendingMode(B_CONSTANT_ALPHA, B_ALPHA_COMPOSITE);
7727 pose->Draw(poseRect, poseRect, this, view, true, offsetBy,
7749 pose->Draw(poseRect, poseRect, this, view, true, offsetBy,
7755 view->Sync();
8662 // in the parent view
9398 PoseCompareAddWidget(const BPose* p1, const BPose* p2, BPoseView* view)
9402 uint32 sort = view->PrimarySort();
9403 BColumn* column = view->ColumnFor(sort);
9409 if (!view->ReverseSort()) {
9422 widget1 = primary->AddWidget(view, column);
9426 widget2 = secondary->AddWidget(view, column);
9431 result = widget1->Compare(*widget2, view);
9439 sort = view->SecondarySort();
9443 column = view->ColumnFor(sort);
9453 BSearch(PoseList* table, const BPose* key, BPoseView* view,
9463 int32 compareResult = (cmp)(result, key, view);